/* Behold Studios — Agero homepage */

:root {
  --pg: #cfcfcd;
  --pgsoft: #cfcfcd99;
  --pn: #ebebe9;
  --ink: #0f0f0f;
  --ink2: #3a3a3a;
  --mut: #5e5e5c;
  --mut2: #8e8e8c;
  --line: #0f0f0f22;
  --line2: #0f0f0f33;
  --ac: #b8112a;
  --ac2: #920d21;
  --acsoft: #b8112a18;
}

html {
  scroll-padding-top: 96px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--pg);
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--ac);
  text-decoration: none;
}

a:hover {
  color: var(--ac2);
}

::selection {
  background: var(--ac);
  color: #fff;
}

img,
video {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

details summary::-webkit-details-marker {
  display: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@keyframes agUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes agFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-8px) rotate(var(--r, 0deg));
  }
}

#ag {
  background: var(--pg);
  min-height: 100vh;
  padding: 12px;
}

.ag-pad {
  padding-left: 40px;
  padding-right: 40px;
}

.ag-panel {
  margin-top: 12px;
  background: var(--pn);
  border-radius: 20px;
}

.ag-panel--ink {
  background: var(--ink);
  color: #fff;
}

.ag-eyebrow {
  margin: 0;
  font-size: 14px;
  color: var(--mut);
}

.ag-panel--ink .ag-eyebrow {
  color: #ffffffa3;
}

.ag-h2 {
  margin: 14px 0 0;
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.ag-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.ag-link:hover {
  color: var(--ac);
}

.ag-g2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
}

.ag-g2-faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}

.ag-g2-contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}

.ag-g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ag-g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.ag-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

/* ── Nav ──────────────────────────────────── */

.ag-nav {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--pn);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.ag-brand {
  font-family: "Stack Sans Notch", sans-serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.ag-brand:hover {
  color: var(--ac);
}

.ag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.ag-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #61c554;
  display: inline-block;
  animation: blink 2s ease-in-out infinite;
}

.ag-navlinks {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.ag-navlinks a {
  color: var(--ink);
}

.ag-navlinks a:hover {
  color: var(--ac);
}

.ag-nav-cta {
  background: var(--ink) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.ag-nav-cta:hover {
  background: var(--ac) !important;
  color: #fff !important;
}

.ag-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.ag-mobile-menu {
  display: none;
  background: var(--pn);
  border-radius: 14px;
  margin-top: 8px;
  padding: 12px 16px 16px;
  flex-direction: column;
  gap: 2px;
}

.ag-mobile-menu.is-open {
  display: flex;
}

.ag-mobile-menu a {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  padding: 12px 4px;
  border-bottom: 1px solid var(--pg);
}

.ag-mobile-menu a:last-of-type {
  border-bottom: none;
}

.ag-mobile-cta {
  margin-top: 12px !important;
  background: var(--ac) !important;
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 50px;
  font-weight: 700;
  border-bottom: none !important;
}

/* ── Hero ─────────────────────────────────── */

.ag-hero {
  margin-top: 12px;
  background: var(--pn);
  border-radius: 20px;
  padding: 72px 40px 40px;
  text-align: center;
}

.ag-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ag-avatars {
  display: flex;
}

.ag-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pn);
  display: block;
}

.ag-avatars img + img {
  margin-left: -10px;
}

.ag-trust-row p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--mut);
}

.ag-hero h1 {
  margin: 24px auto 0;
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-size: 68px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 960px;
  text-wrap: balance;
}

.ag-hero h1 .ac {
  color: var(--ac);
}

.ag-chip {
  display: inline-block;
  vertical-align: middle;
  width: 1.32em;
  height: 1.32em;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0.1em;
  animation: agFloat 5s ease-in-out infinite;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.ag-chip:nth-of-type(2) {
  animation-delay: -1.6s;
}

.ag-chip:nth-of-type(3) {
  animation-delay: -3.2s;
}

.ag-hero-sub {
  margin: 22px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--mut);
  max-width: 520px;
  text-wrap: pretty;
}

.ag-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 36px;
}

.ag-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-ink {
  background: var(--ink);
  color: #fff;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-ink:hover {
  background: var(--ac);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #0f0f0f33;
  color: var(--ink);
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ac {
  background: var(--ac);
  color: #fff;
  padding: 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: block;
  text-align: center;
}

.btn-ac:hover {
  background: var(--ac2);
  color: #fff;
}

.ag-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.ag-stats strong {
  display: block;
  font-family: "Cal Sans", sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.ag-stats span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--mut);
}

.ag-shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.ag-shots img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.ag-in {
  opacity: 0;
  animation: agUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ag-d1 {
  animation-delay: 0.05s;
}
.ag-d2 {
  animation-delay: 0.16s;
}
.ag-d3 {
  animation-delay: 0.27s;
}
.ag-d4 {
  animation-delay: 0.38s;
}

/* ── Logo marquee ─────────────────────────── */

.ag-logos {
  margin-top: 12px;
  background: var(--ink);
  border-radius: 20px;
  padding: 28px 0;
  overflow: hidden;
}

.ag-logos-label {
  margin: 0 0 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffffa3;
  font-weight: 600;
}

.ag-marquee {
  overflow: hidden;
}

.ag-marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
  padding: 0 32px;
}

.ag-marquee-track img {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ── Services ─────────────────────────────── */

.ag-services {
  padding: 56px 40px;
}

.ag-svc {
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.ag-svc--dark {
  background: var(--ink);
  color: #fff;
}

.ag-svc--light {
  background: var(--pg);
  color: var(--ink);
}

.ag-svc-n {
  margin: 0;
  font-size: 13px;
}

.ag-svc--dark .ag-svc-n,
.ag-svc--dark .ag-svc-body {
  color: #ffffffa3;
}

.ag-svc--light .ag-svc-n,
.ag-svc--light .ag-svc-body {
  color: var(--mut);
}

.ag-svc-title {
  margin: 16px 0 0;
  font-family: "Cal Sans", sans-serif;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
}

.ag-svc-body {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.ag-tags {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ag-tags li {
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  padding: 6px 12px;
}

.ag-svc--dark .ag-tags li {
  border: 1px solid #ffffff29;
  color: #fff;
}

.ag-svc--light .ag-tags li {
  border: 1px solid #0f0f0f33;
  color: var(--ink);
}

.ag-svc-from {
  margin-top: auto;
  padding-top: 24px;
  font-size: 14px;
  font-weight: 600;
}

.ag-svc--dark .ag-svc-from {
  color: var(--ac);
}

.ag-svc--light .ag-svc-from {
  color: var(--ink);
}

/* ── Work ─────────────────────────────────── */

.ag-work {
  padding: 56px 40px;
}

.ag-proj-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
}

.ag-proj {
  display: grid;
  grid-template-columns: 120px 1fr 180px 160px 40px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.ag-proj:hover {
  background: var(--pgsoft);
  color: var(--ink);
}

.ag-proj img {
  width: 120px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.ag-proj-title {
  font-family: "Cal Sans", sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.ag-proj-meta {
  font-size: 13px;
  color: var(--mut);
}

.ag-proj-meta small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mut2);
}

.ag-proj-arrow {
  font-size: 20px;
  color: var(--ac);
  text-align: right;
}

/* ── Ads ──────────────────────────────────── */

.ag-ads-sec {
  padding: 56px 40px;
}

.ag-ads-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: center;
}

.ag-ads-phone {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 260px;
}

.ag-ads-phone video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
  background: #222;
  display: block;
}

.ag-ad-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ag-ad-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid #ffffff29;
  background: #ffffff0d;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.15s;
  color: #fff;
  width: 100%;
}

.ag-ad-chip.is-active {
  border-color: var(--ac);
  background: var(--acsoft);
}

.ag-ad-chip-n {
  font-family: "Cal Sans", sans-serif;
  font-size: 14px;
  color: #ffffff66;
  width: 24px;
}

.ag-ad-chip.is-active .ag-ad-chip-n,
.ag-ad-chip.is-active .ag-ad-chip-play {
  color: var(--ac);
}

.ag-ad-chip-body {
  flex: 1;
  min-width: 0;
}

.ag-ad-chip-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.ag-ad-chip-desc {
  display: block;
  margin-top: 1px;
  font-size: 13px;
  color: #ffffffa3;
}

.ag-ad-chip-play {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff66;
  white-space: nowrap;
}

.ag-ads-cta {
  margin-top: 12px;
}

.ag-ads-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #ffffffa3;
  max-width: 340px;
}

/* ── Testimonials ─────────────────────────── */

.ag-quotes {
  padding: 56px 40px;
}

.ag-quote {
  margin: 0;
  background: var(--pg);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ag-quote-n {
  margin: 0;
  font-size: 13px;
  color: var(--mut2);
}

.ag-quote-text {
  margin: 0;
  flex: 1;
  font-size: 17px;
  line-height: 1.5;
}

.ag-quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ag-quote footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.ag-quote footer span {
  font-size: 13px;
  color: var(--mut);
}

.ag-quote footer strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

/* ── About ────────────────────────────────── */

.ag-about {
  padding: 56px 40px;
}

.ag-about-copy {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink2);
  max-width: 560px;
  text-wrap: pretty;
}

.ag-about .ag-g2 > div:first-child {
  position: sticky;
  top: 96px;
  align-self: start;
}

.ag-timeline {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}

.ag-timeline-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.ag-timeline-row span:last-child {
  color: var(--mut);
}

.ag-about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.ag-awards {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.ag-award {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.ag-award p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.ag-award span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--mut);
}

/* ── Pricing ──────────────────────────────── */

.ag-pricing {
  padding: 56px 40px;
}

.ag-tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--pg);
  border-radius: 50px;
  padding: 4px;
}

.ag-tab {
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--mut);
}

.ag-tab.is-active {
  background: var(--ink);
  color: #fff;
}

.ag-plan {
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.ag-plan--dark {
  background: var(--ink);
  color: #fff;
}

.ag-plan--light {
  background: var(--pg);
  color: var(--ink);
}

.ag-plan-name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.ag-plan-who {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.ag-plan--dark .ag-plan-who,
.ag-plan--dark .ag-plan-feats,
.ag-plan--dark .ag-plan-unit {
  color: #ffffffa3;
}

.ag-plan--light .ag-plan-who,
.ag-plan--light .ag-plan-feats,
.ag-plan--light .ag-plan-unit {
  color: var(--mut);
}

.ag-plan-price {
  margin: 22px 0 0;
  font-family: "Cal Sans", sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 400;
}

.ag-plan-unit {
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.ag-plan-feats {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.ag-plan-cta {
  margin-top: auto;
  padding-top: 28px;
  display: block;
}

.ag-plan-cta span {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 600;
}

.ag-plan--dark .ag-plan-cta span {
  background: var(--ac);
  color: #fff;
}

.ag-plan--light .ag-plan-cta span {
  background: var(--ink);
  color: #fff;
}

.ag-plan-panel[hidden] {
  display: none !important;
}

/* ── FAQ ──────────────────────────────────── */

.ag-faq {
  padding: 56px 40px;
}

.ag-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ag-faq-item {
  background: var(--pg);
  border-radius: 12px;
  padding: 18px 22px;
}

.ag-faq-item summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.ag-faq-item summary span {
  color: var(--ac);
  font-size: 18px;
}

.ag-faq-item p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink2);
  text-wrap: pretty;
}

/* ── Contact ──────────────────────────────── */

.ag-contact {
  padding: 56px 40px;
}

.ag-contact h2 {
  margin: 14px 0 0;
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.ag-contact h2 .ac {
  color: var(--ac);
}

.ag-cal-card {
  display: block;
  margin-top: 30px;
  padding: 22px 26px;
  background: #ffffff14;
  border: 1px solid #ffffff29;
  border-radius: 16px;
  color: #fff;
}

.ag-cal-card:hover {
  border-color: var(--ac);
  color: #fff;
}

.ag-cal-card strong {
  font-size: 17px;
  font-weight: 600;
}

.ag-cal-card span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #ffffffa3;
}

.ag-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ag-form input,
.ag-form textarea {
  background: #ffffff14;
  border: 1px solid #ffffff29;
  border-radius: 12px;
  padding: 15px 18px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  width: 100%;
}

.ag-form input::placeholder,
.ag-form textarea::placeholder {
  color: #ffffff80;
}

.ag-form textarea {
  resize: vertical;
  min-height: 110px;
}

.ag-interest {
  display: flex;
  gap: 8px;
}

.ag-interest-btn {
  flex: 1;
  padding: 12px;
  border-radius: 50px;
  border: 1px solid #ffffff29;
  background: #ffffff0d;
  color: #ffffffa3;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.ag-interest-btn.is-active {
  border-color: var(--ac);
  background: var(--acsoft);
  color: var(--ac);
}

.ag-form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 14px;
  color: #ffffffa3;
}

/* ── Footer ───────────────────────────────── */

.ag-footer {
  padding: 48px 40px 28px;
}

.ag-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}

.ag-footer-brand {
  margin: 0;
  font-family: "Stack Sans Notch", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
}

.ag-footer-desc {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mut);
  max-width: 300px;
}

.ag-footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
}

.ag-footer-col-label {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mut2);
  font-weight: 600;
}

.ag-footer-col a {
  color: var(--mut);
}

.ag-footer-col a:hover {
  color: var(--ink);
}

.ag-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--mut2);
}

/* ── Motion ───────────────────────────────── */

.ag-rev {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.ag-rev.is-in {
  opacity: 1;
}

.ag-stagger > * {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ag-stagger.is-in > * {
  opacity: 1;
}

.ag-stagger.is-in > *:nth-child(1) {
  transition-delay: 0.05s;
}
.ag-stagger.is-in > *:nth-child(2) {
  transition-delay: 0.12s;
}
.ag-stagger.is-in > *:nth-child(3) {
  transition-delay: 0.19s;
}
.ag-stagger.is-in > *:nth-child(4) {
  transition-delay: 0.26s;
}
.ag-stagger.is-in > *:nth-child(5) {
  transition-delay: 0.33s;
}
.ag-stagger.is-in > *:nth-child(6) {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .ag-rev,
  .ag-stagger > *,
  .ag-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Responsive ───────────────────────────── */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

#ag {
  overflow-x: clip;
  max-width: 100%;
}

@media (max-width: 809.98px) {
  #ag {
    padding: 8px;
  }

  .ag-pad,
  .ag-hero,
  .ag-services,
  .ag-work,
  .ag-ads-sec,
  .ag-quotes,
  .ag-about,
  .ag-pricing,
  .ag-faq,
  .ag-contact,
  .ag-footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ag-services,
  .ag-work,
  .ag-ads-sec,
  .ag-quotes,
  .ag-about,
  .ag-pricing,
  .ag-faq,
  .ag-contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ag-nav {
    top: 8px;
    padding: 10px 14px;
    gap: 12px;
  }

  .ag-brand {
    font-size: 18px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ag-hero {
    padding-top: 40px;
    padding-bottom: 24px;
    border-radius: 16px;
  }

  .ag-hero h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.5rem) !important;
    line-height: 1.12;
    margin-top: 18px;
  }

  .ag-chip {
    width: 1.15em;
    height: 1.15em;
  }

  .ag-hero-sub {
    font-size: 16px;
    margin-top: 16px;
  }

  .ag-hero-actions {
    margin-top: 28px;
    gap: 24px;
    width: 100%;
  }

  .ag-cta-row {
    width: 100%;
    flex-direction: column;
  }

  .ag-cta-row .btn-ink,
  .ag-cta-row .btn-ghost {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .ag-h2,
  .ag-contact h2 {
    font-size: clamp(1.7rem, 7vw, 1.9rem) !important;
  }

  .ag-g2,
  .ag-g2-faq,
  .ag-g2-contact,
  .ag-g3,
  .ag-ads-layout,
  .ag-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .ag-about .ag-g2 {
    display: flex;
    flex-direction: column;
  }

  .ag-about .ag-g2 > div:first-child {
    position: static;
    order: 2;
  }

  .ag-about .ag-g2 > div:last-child {
    order: 1;
  }

  .ag-about-photo {
    max-height: 420px;
    width: 100%;
    object-fit: cover;
  }

  .ag-about-copy {
    font-size: 16px;
  }

  .ag-timeline-row {
    gap: 12px;
    align-items: baseline;
  }

  .ag-timeline-row span:first-child {
    min-width: 0;
  }

  .ag-timeline-row span:last-child {
    flex-shrink: 0;
    text-align: right;
  }

  .ag-ads-layout {
    justify-items: center;
  }

  .ag-ads-layout > :first-child {
    max-width: 220px !important;
    width: 100%;
  }

  .ag-ad-chips {
    width: 100%;
  }

  .ag-ads-lead {
    max-width: none;
  }

  .ag-row,
  .ag-hero-actions,
  .ag-footer-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .ag-pricing .ag-row {
    align-items: stretch !important;
    gap: 20px;
  }

  .ag-tabs {
    width: 100%;
  }

  .ag-tab {
    flex: 1;
    text-align: center;
  }

  .ag-navlinks,
  .ag-pill {
    display: none !important;
  }

  .ag-burger {
    display: flex !important;
    flex-shrink: 0;
  }

  .ag-shots {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
    margin-top: 28px;
  }

  .ag-proj {
    grid-template-columns: 72px 1fr 28px !important;
    gap: 14px;
    padding: 16px 0;
  }

  .ag-proj img {
    width: 72px;
    height: 48px;
  }

  .ag-proj-title {
    font-size: 17px;
  }

  .ag-proj-meta {
    display: none !important;
  }

  .ag-stats {
    width: 100%;
    gap: 16px;
  }

  .ag-stats strong {
    font-size: 22px;
  }

  .ag-interest {
    flex-wrap: wrap;
  }

  .ag-interest-btn {
    flex: 1 1 calc(50% - 4px);
    min-height: 44px;
  }

  .ag-svc {
    min-height: 0;
  }

  .ag-plan-price {
    font-size: 34px;
  }

  .ag-marquee-track {
    gap: 40px;
  }

  .ag-marquee-track img {
    height: 30px;
  }

  .ag-footer {
    padding-top: 36px;
    padding-bottom: 24px;
  }

  .ag-footer-bar {
    font-size: 12px;
  }
}

@media (max-width: 479.98px) {
  .ag-hero h1 {
    font-size: 1.75rem !important;
  }

  .ag-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .ag-shots {
    grid-template-columns: 1fr !important;
  }

  .ag-interest-btn {
    flex: 1 1 100%;
  }
}

@media (min-width: 810px) and (max-width: 1239.98px) {
  .ag-g3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .ag-g3 > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .ag-ads-layout {
    grid-template-columns: 220px 1fr !important;
  }

  .ag-g2,
  .ag-g2-faq,
  .ag-g2-contact {
    grid-template-columns: 1fr !important;
  }

  .ag-about .ag-g2 {
    grid-template-columns: 1fr 0.9fr !important;
  }

  .ag-proj {
    grid-template-columns: 100px 1fr 140px 40px !important;
  }

  .ag-proj .ag-proj-meta:nth-of-type(2) {
    display: none !important;
  }
}
