:root {
  --ink: #171717;
  --muted: #a3a3a3;
  --mid: #737373;
  --line: #e7e7e7;
  --rule: #e0d9cd;
  --orange: #fbae17;
  --orange-dot: #fb8b4b;
  --sunset: linear-gradient(135deg, #FFC44D 0%, #FB8B4B 55%, #F1584B 100%);
  --black: #120e0a;
  --warm-white: #fffcf7;
  --soft: #f6f6f6;
  --max: 1420px;
  --side: clamp(20px, 3.2vw, 48px);
  --radius: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* The canvas paints the rubber-band area. Left transparent, body's warm white
     propagates to it and bouncing past the footer exposes a light void. Pinning
     the canvas to the footer colour fixes the bottom on every page, and the
     landing page's hero is dark too, so both ends are covered there. Bounce and
     pull-to-refresh are deliberately left alone. */
  background: var(--black);
}
/* Inner pages open on warm white, so they need a light top. A fixed element is
   the only thing that paints into the overscroll region; it sits behind body's
   own background, so nothing inside the viewport changes. */
html.inner::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0 0 auto;
  height: 50vh;
  height: 50dvh;
  background: var(--warm-white);
  pointer-events: none;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p, blockquote { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
p, li, figcaption, blockquote { text-wrap: pretty; }
.stat-card strong, .story-stat strong, .deal-field strong, .old-price, .new-price, .how-caption > span, .chat-speed, .listing-chips small, .campaign-metrics strong, .reactivation-chips, .price-kicker, .footer-bottom { font-variant-numeric: tabular-nums; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 20px;
  top: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #8b76f0; outline-offset: 4px; }

.section-shell { width: min(calc(100% - (var(--side) * 2)), var(--max)); margin-inline: auto; }
.section-space { padding-block: 104px; }
.section-space--small { padding-block: 68px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  transition-property: transform, box-shadow, background-color;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(.2, 0, 0, 1);
}
.button:hover { transform: translateY(-1px); box-shadow: 0 12px 34px rgba(0, 0, 0, .14); }
.button:active { transform: scale(.96); }
.button--orange { background: var(--orange); box-shadow: none; }
.button--orange:hover { background: var(--sunset); }
.button--white { background: rgba(255, 255, 255, .96); }
.button--soft { background: #f5f5f5; box-shadow: none; }
.button--large { min-height: 64px; padding-inline: 36px; font-size: 18px; }

/* Floating navigation */
.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; pointer-events: none; }
.nav-pill {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), 1420px);
  min-height: 78px;
  margin: 16px auto 0;
  padding: 9px 14px 9px 28px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 999px;
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .1);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  pointer-events: auto;
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled .nav-pill { background: rgba(255, 255, 255, .96); box-shadow: 0 14px 42px rgba(0, 0, 0, .16); }
.brand-lockup {
  display: inline-flex;
  width: max-content;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  font-family: Archivo, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  color: #171717;
}
.brand-lockup .brand-mark { width: auto; height: 30px; flex: none; object-fit: contain; }
.brand { height: 48px; opacity: 1; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2vw, 34px); }
.nav-link, .nav-trigger, .login-link { font-size: 15px; font-weight: 500; white-space: nowrap; }
.nav-link, .nav-trigger { transition: opacity .2s ease; }
.nav-link:hover, .nav-trigger:hover { opacity: .55; }
.nav-menu { position: relative; }
.nav-trigger { display: flex; align-items: center; gap: 5px; padding: 16px 0; border: 0; background: none; cursor: pointer; }
.nav-trigger span { display: inline-block; font-size: 15px; transition: transform .2s ease; }
.nav-menu.is-open .nav-trigger span { transform: rotate(180deg); }
.nav-actions { display: flex; align-items: center; gap: 26px; }
.button--nav { min-height: 54px; padding-inline: 28px; }

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 340px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .17);
  opacity: 0;
  visibility: hidden;
  filter: blur(4px);
  transform: translate(-50%, 8px);
  transform-origin: 50% 0;
  transition-property: opacity, transform, filter, visibility;
  transition-duration: 150ms, 150ms, 150ms, 0s;
  transition-delay: 0s, 0s, 0s, 150ms;
  transition-timing-function: ease-in;
}
.nav-menu.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translate(-50%, 0);
  transition-duration: 220ms, 220ms, 220ms, 0s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(.2, 0, 0, 1);
}
.mega-menu--wide { width: min(730px, calc(100vw - 64px)); }
.menu-title { padding: 2px 8px 13px; color: var(--mid); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.service-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-menu a, .menu-muted { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 14px; transition: background .2s ease; }
.mega-menu a:hover { background: #f5f5f5; }
.menu-icon { display: grid; flex: 0 0 40px; width: 40px; height: 40px; place-items: center; border-radius: 11px; background: #f1f1f1; font-family: Archivo, sans-serif; }
.menu-icon--svg svg { width: 18px; height: 18px; fill: currentColor; }
.mega-menu b { display: block; font-size: 14px; font-weight: 600; }
.mega-menu small { display: block; margin-top: 2px; color: var(--mid); font-size: 12px; line-height: 1.25; }
.menu-list { display: grid; gap: 4px; }
.menu-list--small { width: 310px; }
.menu-muted { color: var(--muted); }
.result-menu { display: grid; width: 560px; grid-template-columns: 1fr 1fr; gap: 8px; }
.result-menu-card { min-height: 150px; align-content: end; align-items: end !important; padding: 18px !important; color: #fff; background-size: cover !important; background-position: center !important; }
.result-menu-card.earth { background: linear-gradient(180deg, transparent, rgba(0,0,0,.8)), url('../assets/media/card-showroom.jpg'); }
.result-menu-card.jekyll { background: linear-gradient(180deg, transparent, rgba(0,0,0,.8)), url('../assets/media/card-detailing.jpg'); }
.result-menu-card span { align-self: end; }
.result-menu-card small { color: rgba(255,255,255,.72); }
.menu-footer-link { grid-column: 1 / -1; justify-content: space-between; }
.menu-footer-link span { color: var(--mid); font-size: 12px; }
.mobile-toggle, .mobile-menu { display: none; }

/* Hero */
.hero { position: relative; height: max(700px, 92vh); min-height: 720px; overflow: hidden; background: #262626; }
.hero::after { content: ""; position: absolute; z-index: 1; inset: 0; background: rgba(251,139,75,.07); mix-blend-mode: soft-light; pointer-events: none; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.3), transparent 58%), linear-gradient(0deg, rgba(0,0,0,.44), transparent 55%); }
.hero-content { position: absolute; z-index: 2; left: max(var(--side), calc((100vw - var(--max)) / 2)); bottom: 62px; }
.hero h1 { display: flex; flex-direction: column; font-family: Archivo, sans-serif; font-size: clamp(52px, 5.2vw, 78px); font-weight: 500; line-height: 1.03; letter-spacing: -.045em; }
.hero h1 span:first-child { color: #fff; }
.hero h1 span:last-child { color: rgba(255, 255, 255, .55); }
.hero-content .button { margin-top: 38px; }
.hero-chat { position: absolute; z-index: 2; top: 50%; right: max(var(--side), calc((100vw - var(--max)) / 2)); display: flex; width: min(340px, 30vw); flex-direction: column; align-items: flex-start; gap: 10px; transform: translateY(-42%); }
.chat-bubble, .chat-speed { border: 1px solid rgba(255,255,255,.32); color: #fff; backdrop-filter: blur(13px); -webkit-backdrop-filter: blur(13px); box-shadow: inset 0 1px rgba(255,255,255,.16), 0 12px 32px rgba(0,0,0,.12); }
.chat-bubble { max-width: 100%; padding: 16px 18px; border-radius: 20px; background: rgba(19,19,19,.32); font-size: 14px; line-height: 1.45; opacity: 0; }
.chat-bubble--customer { align-self: flex-end; background: rgba(255,255,255,.16); }
.chat-bubble--question { animation: heroQuestion 14s cubic-bezier(.2, 0, 0, 1) infinite; }
.chat-reply-slot { display: grid; width: 100%; align-items: start; }
.chat-reply-slot > * { grid-area: 1 / 1; }
.chat-bubble--typing { display: flex; width: fit-content; gap: 5px; padding: 14px 17px; animation: heroTyping 14s cubic-bezier(.2, 0, 0, 1) infinite; }
.chat-bubble--typing i { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: typing .8s ease-in-out infinite alternate; }
.chat-bubble--typing i:nth-child(2) { animation-delay: -.2s; }.chat-bubble--typing i:nth-child(3) { animation-delay: -.4s; }
.chat-bubble--agent { animation: heroReply 14s cubic-bezier(.2, 0, 0, 1) infinite; }
.chat-bubble--confirmation { animation: heroConfirmation 14s cubic-bezier(.2, 0, 0, 1) infinite; }
.chat-speed { align-self: flex-end; padding: 9px 14px; border-radius: 999px; background: rgba(0,0,0,.3); font-size: 11px; opacity: 0; animation: heroSpeed 14s cubic-bezier(.2, 0, 0, 1) infinite; }
@keyframes heroQuestion { 0%, 3% { opacity: 0; filter: blur(3px); transform: translateY(14px) scale(.97); } 7%, 82% { opacity: 1; filter: blur(0); transform: none; } 90%, 100% { opacity: 0; filter: blur(2px); transform: translateY(-8px) scale(.99); } }
@keyframes heroTyping { 0%, 16% { opacity: 0; filter: blur(3px); transform: scale(.8); } 20%, 26% { opacity: 1; filter: blur(0); transform: scale(1); } 29%, 100% { opacity: 0; filter: blur(3px); transform: scale(.8); } }
@keyframes heroReply { 0%, 29% { opacity: 0; filter: blur(3px); transform: translateY(8px) scale(.98); } 33%, 82% { opacity: 1; filter: blur(0); transform: none; } 90%, 100% { opacity: 0; filter: blur(2px); transform: translateY(-8px) scale(.99); } }
@keyframes heroConfirmation { 0%, 50% { opacity: 0; filter: blur(3px); transform: translateY(12px) scale(.97); } 54%, 82% { opacity: 1; filter: blur(0); transform: none; } 90%, 100% { opacity: 0; filter: blur(2px); transform: translateY(-8px) scale(.99); } }
@keyframes heroSpeed { 0%, 62% { opacity: 0; filter: blur(3px); transform: translateY(10px) scale(.97); } 66%, 82% { opacity: 1; filter: blur(0); transform: none; } 90%, 100% { opacity: 0; filter: blur(2px); transform: translateY(-8px) scale(.99); } }
@keyframes typing { to { opacity: .35; transform: translateY(-2px); } }

/* Marquee */
.logo-marquee { width: 100%; max-width: 100vw; height: 122px; display: flex; align-items: center; overflow: hidden; overflow-x: clip; contain: paint; background: var(--warm-white); }
.logo-track { display: flex; width: max-content; animation: marquee 60s linear infinite; will-change: transform; }
.logo-run { display: flex; flex-shrink: 0; align-items: center; gap: 96px; padding-right: 96px; }
.logo-run img { width: auto; max-width: 240px; height: 27px; object-fit: contain; filter: grayscale(1); opacity: .85; }
.logo-run .marquee-brand--majestic { height: 34px; }
.logo-run .marquee-brand--earth { height: 38px; }
.logo-run .marquee-brand--cargurus { height: 26px; }
.logo-run .marquee-brand--guntherwerks { height: 28px; }
.logo-run .marquee-brand--jekyll { height: 34px; }

.logo-run .marquee-brand--gm { height: 30px; }
.logo-run .marquee-brand--lotus { height: 34px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Type */
.center-title, .section-title, .split-heading h2, .final-copy h2 { font-family: Archivo, sans-serif; font-weight: 500; letter-spacing: -.04em; line-height: 1.06; }
.center-title { text-align: center; font-size: clamp(44px, 4.1vw, 62px); }
.center-title span, .section-title span, .split-heading h2 span, .final-copy h2 span { color: var(--muted); }
.section-title { font-size: clamp(48px, 4.2vw, 64px); }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.split-heading h2 { font-size: clamp(39px, 3.1vw, 48px); }
.split-heading p { max-width: 390px; padding-bottom: 8px; color: var(--mid); font-size: 17px; }
.center-action { margin-top: 52px; text-align: center; }

/* How it works */
.how { padding-top: 150px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 112px; }
.how-card { display: flex; min-width: 0; height: 612px; flex-direction: column; padding: 40px; overflow: hidden; border-radius: 24px; background: var(--black); color: #fff; }
.how-card h3 { font-family: Archivo, sans-serif; font-size: clamp(34px, 2.6vw, 45px); font-weight: 500; line-height: 1.04; letter-spacing: -.04em; }
.how-card h3 span { color: #8f8f8f; }
.lead-notifications, .answer-flow, .crm-sync { display: flex; width: 100%; min-height: 280px; max-height: 320px; flex: 1 1 300px; justify-content: center; flex-direction: column; margin-block: auto; filter: none; opacity: 1; }
.lead-notifications { gap: 10px; perspective: 800px; }
.lead-pill { display: grid; min-height: 72px; grid-template-columns: 10px 1fr auto; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: #1c1c1e; box-shadow: 0 14px 30px rgba(0,0,0,.3); opacity: 0; animation: leadSlide 12.4s cubic-bezier(.2, 0, 0, 1) infinite; }
.lead-pill:nth-child(2) { animation-delay: .9s; }.lead-pill:nth-child(3) { animation-delay: 1.8s; }
.lead-pill b, .lead-pill small { display: block; }.lead-pill b { color: #fff; font-size: 15px; font-weight: 600; }.lead-pill small { margin-top: 2px; color: #a3a3a3; font-size: 13px; }.lead-pill em { align-self: start; padding-top: 3px; color: #a3a3a3; font-size: 12px; font-style: normal; }
.source-dot { width: 9px; height: 9px; border-radius: 50%; }.source-dot--cg { background: #00a4f5; }.source-dot--at { background: #f46d22; }.source-dot--fb { background: #3478f6; }
@keyframes leadSlide { 0%, 5% { opacity: 0; transform: translateY(16px) scale(.97); } 8.7%, 72% { opacity: 1; transform: translateY(0) scale(1); } 79%, 100% { opacity: 0; transform: translateY(-14px) scale(.985); } }
.answer-flow { gap: 0; align-items: center; }
.answer-step { position: relative; display: flex; width: 94%; min-height: 66px; justify-content: center; flex-direction: column; gap: 4px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.06); border-radius: 17px; color: #fff; background: #161618; opacity: .52; transition-property: opacity, background-color; transition-duration: 900ms; transition-timing-function: cubic-bezier(.2, 0, 0, 1); }
.answer-step:nth-of-type(2) { min-height: 96px; }
.answer-step small { color: var(--orange-dot); font-size: 10px; font-weight: 600; letter-spacing: .11em; line-height: 1.2; }
.answer-step > span { font-size: 13px; line-height: 1.35; }
.answer-connector { display: grid; width: 100%; flex: 0 0 28px; place-items: center; color: #6f6f73; font-size: 14px; font-weight: 300; line-height: 1; }
.answer-step.active { background: #2a2a2c; opacity: 1; }
.crm-sync { align-items: stretch; }
.sync-label { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font-size: 14px; letter-spacing: .04em; }
.sync-icon { display: inline-grid; width: 22px; height: 22px; place-items: center; animation: syncRotate 2.4s linear infinite; }
.mini-crm-fields, .crm-wide-fields { display: grid; gap: 6px; }
.crm-field-row { display: grid; min-width: 0; grid-template-columns: minmax(78px, .8fr) minmax(0, 1.35fr); align-items: center; gap: 12px; min-height: 36px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: #1d1d1f; }
.crm-field-row > span { color: #858589; font-size: 10px; letter-spacing: .02em; }
.crm-field-row > strong { min-width: 0; overflow: hidden; color: #f4f4f4; font-size: 11px; font-weight: 600; line-height: 1.25; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.crm-field-row--deal > strong { justify-self: end; padding: 3px 7px; border-radius: 5px; background: var(--sunset); color: #17110b; }
[data-type-text].is-typing::after { content: ""; display: inline-block; width: 1px; height: 1em; margin-left: 3px; background: currentColor; vertical-align: -.12em; animation: caretBlink .7s steps(1, end) infinite; }
.crm-complete-chip, .crm-synced-chip { width: fit-content; margin: 10px 0 0 auto; padding: 7px 10px; border-radius: 999px; background: var(--sunset); color: #21130a; font-size: 10px; font-weight: 600; opacity: .24; transform: translateY(5px) scale(.98); transition-property: opacity, transform, box-shadow; transition-duration: 320ms; transition-timing-function: cubic-bezier(.2, 0, 0, 1); }
.type-sequence.is-complete .crm-complete-chip, .type-sequence.is-complete .crm-synced-chip { opacity: 1; transform: none; box-shadow: 0 0 22px rgba(251,139,75,.24); }
.type-sequence .crm-field-row { transition-property: opacity, transform; transition-duration: 300ms; transition-timing-function: cubic-bezier(.2, 0, 0, 1); }
.type-sequence.is-clearing .crm-field-row, .type-sequence.is-clearing .crm-complete-chip, .type-sequence.is-clearing .crm-synced-chip { opacity: 0; transform: translateY(-5px); }
@keyframes caretBlink { 50% { opacity: 0; } }
@keyframes syncRotate { to { transform: rotate(360deg); } }
.how-caption { display: grid; grid-template-columns: 68px 1fr; align-items: baseline; gap: 12px; }
.how-caption > span { font-family: Archivo, sans-serif; font-size: clamp(44px, 3.2vw, 48px); font-weight: 600; line-height: 1; }
.how-caption p { max-width: 36ch; padding-top: 2px; color: #a3a3a3; font-size: 15px; line-height: 1.45; }

/* Trust */
.trust { padding-block: 112px; }
.trust-title { margin-bottom: 72px; font-size: clamp(54px, 5.4vw, 82px); }
.trust-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); align-items: center; gap: 56px 28px; margin-top: 0; }
.trust-grid > * { min-width: 0; grid-column: span 2; }
.trust-grid > *:nth-child(5) { grid-column: 2 / span 2; }
.trust-grid img { width: 140px; height: 46px; margin: auto; object-fit: contain; filter: grayscale(1); }
.trust-grid .trust-brand { width: auto; max-width: 100%; }
.trust-grid .trust-brand--earth { height: 57px; }
.trust-grid .trust-brand--cargurus { height: 34px; }
.trust-grid .trust-brand--gm { height: 44px; }
.trust-grid .trust-brand--guntherwerks { height: 40px; }
.trust-grid .trust-brand--lotus { height: 72px; }
.trust-grid .trust-brand--jekyll { height: 48px; }

/* Gradient panel */
.gradient-wrap { padding-inline: var(--side); padding-top: 0; }
.gradient-panel { position: relative; isolation: isolate; display: flex; width: min(100%, var(--max)); min-height: 0; margin: auto; align-items: center; flex-direction: column; overflow: clip; padding: 68px clamp(24px, 6vw, 90px); border-radius: 24px; color: #fff; background: radial-gradient(120% 140% at 8% 0%, #FFC44D 0%, #FB8B4B 34%, #E86A8A 68%, #8b76f0 100%); background-size: 120% 120%; animation: gradientDrift 14s ease-in-out infinite alternate; }
.gradient-panel::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(80% 70% at 88% 4%, rgba(255,255,255,.14), rgba(255,255,255,0) 70%); pointer-events: none; }
.gradient-panel h2 { max-width: 900px; text-align: center; font-family: Archivo, sans-serif; font-size: clamp(56px, 4vw, 60px); font-weight: 500; line-height: 1.03; letter-spacing: -.04em; text-wrap: balance; }
.glass-grid { display: grid; width: 100%; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 48px 0; }
.glass-grid article { position: relative; display: flex; height: clamp(210px, 15vw, 240px); min-height: 210px; max-height: 240px; flex-direction: column; padding: 28px; border: 1px solid rgba(255,255,255,.38); border-radius: 18px; background: rgba(255,255,255,.14); box-shadow: inset 0 1px 0 rgba(255,255,255,.35); backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%); transition: transform 300ms cubic-bezier(.2, 0, 0, 1), background-color 300ms cubic-bezier(.2, 0, 0, 1); }
.glass-grid article:hover { background: rgba(255,255,255,.19); transform: translateY(-3px); }
.glass-grid h3 { max-width: 100%; font-family: Archivo, sans-serif; font-size: 28px; font-weight: 600; line-height: 1.08; letter-spacing: -.03em; }
.glass-grid p { max-width: 85%; margin-top: 14px; color: rgba(255,255,255,.85); font-size: 18px; }
.gradient-panel > .button { box-shadow: 0 8px 28px rgba(59,35,118,.16); }
@keyframes gradientDrift { from { background-position: 0% 0%; filter: hue-rotate(0deg); } to { background-position: 8% 6%; filter: hue-rotate(3deg); } }

/* Features */
.features { padding-top: 48px; padding-bottom: 104px; }
.features .section-title { margin-bottom: 72px; }
.feature-row { display: grid; grid-template-columns: minmax(0, 58fr) minmax(330px, 38fr); align-items: center; gap: 64px; margin-top: 88px; }
.feature-row:first-of-type { margin-top: 0; }
.feature-row--reverse { grid-template-columns: minmax(330px, 38fr) minmax(0, 58fr); }
.feature-row--reverse .feature-visual { order: 2; }.feature-row--reverse .feature-copy { order: 1; }
.feature-visual { position: relative; display: grid; height: 540px; place-items: center; overflow: hidden; border-radius: 24px; background: radial-gradient(80% 60% at 50% 40%, rgba(251,139,75,.09), transparent), var(--black); }
.feature-copy { max-width: 530px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; font-family: Archivo, sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--sunset); box-shadow: 0 0 18px rgba(251,139,75,.55); }
.feature-copy h3 { margin-bottom: 14px; font-family: Archivo, sans-serif; font-size: 32px; font-weight: 600; line-height: 1.1; letter-spacing: -.03em; text-wrap: balance; }
.feature-copy p { max-width: 46ch; color: #525252; font-size: 17px; line-height: 1.6; }
.feature-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 0 14px; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--rule); }
.feature-chips span { position: relative; padding-right: 14px; color: #6b635b; font-size: 14px; line-height: 1.9; }
.feature-chips span:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: 0; width: 1px; height: 12px; background: var(--rule); transform: translateY(-50%); }
.phone-chat { display: flex; width: min(72%, 540px); flex-direction: column; gap: 14px; padding: 22px; border-radius: 36px; background: linear-gradient(145deg, #30231a, #17100b); box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 30px 70px rgba(0,0,0,.6); color: #fff; }
.phone-top { display: flex; justify-content: space-between; padding: 0 3px 18px; color: #aaa; font-size: 13px; }
.phone-thread { display: flex; flex-direction: column; gap: 8px; }
.phone-bubble { width: fit-content; max-width: 82%; padding: 10px 13px; border-radius: 14px; font-size: 11px; line-height: 1.35; opacity: 0; animation: threadBubble 7s cubic-bezier(.2, 0, 0, 1) infinite; }
.phone-bubble--customer { align-self: flex-end; border-bottom-right-radius: 4px; background: #eee; color: var(--ink); }
.phone-bubble--agent { align-self: flex-start; border-bottom-left-radius: 4px; background: #333; color: #fff; animation-delay: .9s; }
.phone-bubble--short { animation-delay: 1.8s; }
.wave-bars { display: flex; width: 60%; height: 38px; flex: none; align-items: center; justify-content: center; gap: 4px; margin-inline: auto; }
.wave-bars i { width: 4px; height: 38px; border-radius: 10px; background: var(--sunset); transform: scaleY(.34); animation: wave 1.1s ease-in-out infinite alternate; }
.wave-bars i:nth-child(2n) { animation-delay: -.6s; }.wave-bars i:nth-child(3n) { animation-delay: -.3s; }.wave-bars i:nth-child(4n) { animation-delay: -.9s; }
.reply-pill { width: fit-content; margin: 0 auto; padding: 11px 16px; border: 1px solid #666; border-radius: 999px; background: #333; font-size: 12px; }
.reply-pill span { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--sunset); animation: blink 1s ease-in-out infinite; }
@keyframes threadBubble { 0%, 8% { opacity: 0; transform: translateY(12px) scale(.97); } 14%, 76% { opacity: 1; transform: translateY(0) scale(1); } 88%, 100% { opacity: 0; transform: translateY(-8px) scale(.99); } }
@keyframes wave { to { transform: scaleY(1); } } @keyframes blink { 50% { opacity: .3; } }
.listing-card { width: min(72%, 520px); overflow: hidden; padding: 2px; border-radius: 22px; background: #222; box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 28px 70px rgba(0,0,0,.55); color: #fff; }
.listing-card img { width: 100%; height: 260px; object-fit: cover; object-position: center 58%; outline: 1px solid rgba(255,255,255,.1); outline-offset: -1px; border-radius: 20px 20px 0 0; }
.listing-body { padding: 20px 18px 18px; }.listing-body small { color: #888; font-size: 10px; letter-spacing: .08em; }.listing-body h4 { margin: 5px 0 17px; font-family: Archivo, sans-serif; font-size: 20px; font-weight: 500; }
.listing-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }.listing-chips span { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 5px; padding: 9px 10px; border-radius: 12px; background: #303030; color: #9a9a9a; font-size: 10px; opacity: .42; animation: chipCycle 9s cubic-bezier(.2, 0, 0, 1) infinite; }.listing-chips span:nth-child(2){animation-delay:3s}.listing-chips span:nth-child(3){animation-delay:6s}.listing-chips b { white-space: nowrap; font-weight: 600; }.listing-chips span small { color: #777; font-size: 8px; letter-spacing: 0; }
@keyframes chipCycle { 0%, 4% { opacity: .42; background: #303030; color: #9a9a9a; transform: translateY(3px); } 8%, 29% { opacity: 1; background: var(--orange); color: #111; transform: translateY(0); } 33%, 100% { opacity: .42; background: #303030; color: #9a9a9a; transform: translateY(0); } }
.campaign-card { width: min(76%, 540px); overflow: hidden; padding: 22px; border-radius: 24px; background: #211811; box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 28px 70px rgba(0,0,0,.55); color: #fff; }
.campaign-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; color: #a89b91; font-size: 10px; font-weight: 600; letter-spacing: .1em; }.campaign-card__header b { padding: 5px 8px; border-radius: 999px; background: rgba(251,139,75,.14); color: #ffc44d; font-size: 9px; }
.campaign-ad { display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 16px; padding: 10px; border-radius: 16px; background: #30231a; box-shadow: inset 0 0 0 1px rgba(255,255,255,.07); opacity: 0; transform: translateX(18px); transition-property: opacity, transform; transition-duration: 520ms; transition-timing-function: cubic-bezier(.2, 0, 0, 1); }.campaign-ad img { width: 112px; height: 92px; object-fit: cover; border-radius: 12px; outline: 1px solid rgba(255,255,255,.1); outline-offset: -1px; opacity: 0; transform: translateX(-18px); transition-property: opacity, transform; transition-duration: 520ms; transition-timing-function: cubic-bezier(.2, 0, 0, 1); }.campaign-ad small, .campaign-ad strong { display: block; }.campaign-ad small { margin-bottom: 6px; color: #9f9186; font-size: 9px; letter-spacing: .08em; }.campaign-ad strong { min-height: 42px; font-family: Archivo, sans-serif; font-size: 17px; font-weight: 600; line-height: 1.2; }
.campaign-card.is-assembling .campaign-ad, .campaign-card.is-assembling .campaign-ad img { opacity: 1; transform: none; }
.campaign-title.is-typing::after { content: ""; display: inline-block; width: 1px; height: 1em; margin-left: 3px; background: #ffc44d; vertical-align: -.1em; animation: caretBlink .7s steps(1, end) infinite; }
.campaign-lifecycle { position: relative; height: 38px; margin: 14px 0; }
.campaign-push, .campaign-sold { position: absolute; inset: 0 auto auto 0; display: flex; align-items: center; gap: 6px; padding: 9px 13px; border-radius: 999px; background: var(--sunset); color: #21130a; font-size: 10px; font-weight: 600; opacity: 0; transform: translateY(6px) scale(.97); transition-property: opacity, transform; transition-duration: 300ms; transition-timing-function: cubic-bezier(.2, 0, 0, 1); }
.platform-dot { width: 7px; height: 7px; border-radius: 50%; }.platform-dot--meta { background: #0866ff; }.platform-dot--google { background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0); }
.campaign-card.is-pushed .campaign-push, .campaign-card.is-sold .campaign-sold { opacity: 1; transform: none; }
.campaign-card.is-sold .campaign-push { opacity: 0; transform: translateY(-5px) scale(.98); }
.campaign-card.is-sold .campaign-ad { opacity: 0; transform: translateX(-120%); }
.campaign-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.campaign-metrics span { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 12px; background: #30231a; box-shadow: inset 0 0 0 1px rgba(255,255,255,.07); }.campaign-metrics small { color: #9f9186; font-size: 10px; }.campaign-metrics strong { color: #ffc44d; font-size: 15px; font-weight: 600; }
.campaign-leads { width: fit-content; margin-top: 10px; padding: 7px 10px; border: 1px solid rgba(251,174,23,.34); border-radius: 999px; color: #ffc44d; font-size: 10px; font-weight: 600; opacity: 0; transform: scale(.25); filter: blur(4px); transition-property: opacity, transform, filter; transition-duration: 300ms; transition-timing-function: cubic-bezier(.2, 0, 0, 1); }
.campaign-card.is-metrics .campaign-leads { opacity: 1; transform: scale(1); filter: blur(0); }
.campaign-card.is-reduced .campaign-ad, .campaign-card.is-reduced .campaign-ad img, .campaign-card.is-reduced .campaign-push, .campaign-card.is-reduced .campaign-leads { opacity: 1; transform: none; filter: none; }
.crm-autopilot-card { width: min(82%, 620px); padding: 28px 34px; border-radius: 24px; background: #211811; box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 28px 70px rgba(0,0,0,.55); color: #fff; }
.crm-wave { display: flex; height: 66px; align-items: center; justify-content: center; gap: 7px; opacity: 1; transition: opacity 320ms cubic-bezier(.2, 0, 0, 1); }.crm-wave i { width: 6px; height: 54px; border-radius: 999px; background: var(--sunset); transform: scaleY(.3); animation: wave 1.1s ease-in-out infinite alternate; }.crm-wave i:nth-child(2n) { animation-delay: -.5s; }.crm-wave i:nth-child(3n) { animation-delay: -.8s; }
.crm-wide-fields { margin-top: 10px; }
.crm-autopilot-card .crm-field-row { grid-template-columns: minmax(92px, .7fr) minmax(0, 1.6fr); min-height: 40px; padding: 8px 13px; }
.crm-autopilot-card .crm-field-row > span { font-size: 11px; }
.crm-autopilot-card .crm-field-row > strong { font-size: 12px; }
.crm-autopilot-card .crm-synced-chip { margin-top: 14px; padding: 9px 13px; font-size: 11px; }
.crm-autopilot-card.is-complete .crm-wave { opacity: .28; }
.price-drop-card { width: min(72%, 510px); padding: 38px; border-radius: 22px; background: #211811; box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 28px 70px rgba(0,0,0,.55); color: #fff; }
.price-kicker { margin-bottom: 24px; color: #888; font-size: 11px; letter-spacing: .08em; }
.old-price { position: relative; width: fit-content; color: #b1b1b1; font-family: Archivo, sans-serif; font-size: 35px; }.old-price::after { content: ""; position: absolute; top: 52%; left: 0; width: 100%; height: 2px; background: #777; transform: scaleX(0); transform-origin: left; animation: priceStrike 7s cubic-bezier(.2, 0, 0, 1) infinite; }
.new-price { width: fit-content; margin: 4px 0 28px; padding: 0 8px; border-radius: 4px; background: var(--sunset); color: #050505; font-family: Archivo, sans-serif; font-size: clamp(50px, 5vw, 76px); line-height: 1.25; box-shadow: 0 0 32px rgba(251,139,75,.26); opacity: 0; animation: priceArrive 7s cubic-bezier(.2, 0, 0, 1) infinite; }
.reactivation-chips { display: flex; gap: 6px; }.reactivation-chips span { flex: 1; padding: 9px 7px; border: 1px solid rgba(251,174,23,.45); border-radius: 999px; background: rgba(251,174,23,.06); color: #fff; text-align: center; font-size: 9px; opacity: .32; animation: reactivate 7s cubic-bezier(.2, 0, 0, 1) infinite; }.reactivation-chips span:nth-child(2){animation-delay:.5s}.reactivation-chips span:nth-child(3){animation-delay:1s}
@keyframes priceStrike { 0%, 11% { transform: scaleX(0); } 18%, 88% { transform: scaleX(1); } 100% { transform: scaleX(0); transform-origin: right; } }
@keyframes priceArrive { 0%, 16% { opacity: 0; transform: translateY(14px); } 24%, 88% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-6px); } }
@keyframes reactivate { 0%, 25% { opacity: .32; transform: translateY(4px); } 32%, 68% { opacity: 1; border-color: var(--orange); background: rgba(251,174,23,.16); transform: translateY(0); } 76%, 100% { opacity: .32; transform: translateY(0); } }

/* Dots */
.dots-section { position: relative; display: grid; min-height: 580px; place-items: center; overflow: hidden; background-color: #fbf6ee; background-image: radial-gradient(#c8b8a6 2px, transparent 2px); background-size: 44px 44px; }
.dots-content { position: relative; z-index: 2; text-align: center; }
.dots-content h2 { margin-bottom: 60px; font-family: Archivo, sans-serif; font-size: clamp(58px, 7vw, 106px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.dot-orb { position: absolute; z-index: 1; overflow: hidden; border: 5px solid #fbf6ee; border-radius: 50%; box-shadow: 0 10px 34px rgba(0,0,0,.12); }
.dot-orb img { width: 100%; height: 100%; object-fit: cover; outline: 1px solid rgba(0,0,0,.1); outline-offset: -1px; }.dot-orb--one { top: 58px; right: 13%; width: 140px; height: 140px; }.dot-orb--two { top: 300px; right: 7%; width: 90px; height: 90px; }.dot-orb--three { bottom: 42px; left: 10%; width: 70px; height: 70px; }
.dot-chat { position: absolute; top: 92px; left: 8%; max-width: 320px; padding: 12px 18px; border-radius: 999px; background: var(--orange); box-shadow: 0 12px 30px rgba(251,174,23,.25); font-size: 13px; white-space: nowrap; }
/* Testimonials and success */
.testimonial { padding-block: 72px 20px; }
.testimonial-card { position: relative; min-height: 630px; overflow: hidden; border-radius: var(--radius); color: #fff; }
.testimonial-card > :is(img, video):not(.testimonial-brand) { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; outline: 1px solid rgba(255,255,255,.1); outline-offset: -1px; }.testimonial-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.5), rgba(0,0,0,.25)), linear-gradient(0deg, rgba(0,0,0,.35), transparent); }
img.testimonial-brand { position: relative; z-index: 1; display: block; width: auto; max-width: calc(100% - 104px); height: 56px; margin: 50px 0 0 52px; object-fit: contain; filter: brightness(0) invert(1); }
.testimonial-card blockquote { position: absolute; top: 50px; right: 50px; width: min(48%, 630px); font-family: Archivo, sans-serif; font-size: clamp(25px, 2.2vw, 34px); font-weight: 500; line-height: 1.2; letter-spacing: -.03em; }
.testimonial-card cite { display: block; margin-top: 28px; color: rgba(255,255,255,.65); font-family: "Public Sans", sans-serif; font-size: 13px; font-style: normal; letter-spacing: 0; }
.success { padding-top: 20px; }
.success-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.success-card { position: relative; min-height: 580px; overflow: hidden; border-radius: var(--radius); }
.quote-card { display: flex; flex-direction: column; justify-content: space-between; padding: 48px; background: #f3f3ec; }
.quote-card blockquote { max-width: 620px; font-family: Archivo, sans-serif; font-size: clamp(27px, 2.4vw, 38px); font-weight: 500; line-height: 1.25; letter-spacing: -.035em; }.quote-card p { font-size: 14px; }
.story-card { color: #fff; }.story-card > :is(img, video):not(.story-brand) { position: absolute; width: 100%; height: 100%; object-fit: cover; outline: 1px solid rgba(255,255,255,.1); outline-offset: -1px; }.story-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12) 28%, rgba(0,0,0,.8) 100%); }
.story-brand, .story-chip, .story-stat, .story-card .button { position: absolute; z-index: 1; }.story-brand { top: 38px; left: 38px; font-family: Archivo, sans-serif; font-size: 25px; font-weight: 700; }img.story-brand--logo { position: relative; top: auto; left: auto; display: block; width: auto; max-width: calc(100% - 76px); height: 40px; margin: 38px 0 0 38px; object-fit: contain; filter: brightness(0) invert(1); }.story-chip { left: 38px; bottom: 180px; padding: 9px 14px; border-radius: 999px; background: rgba(18,14,10,.8); font-size: 12px; }.story-chip i { background: var(--sunset); background-clip: text; -webkit-background-clip: text; color: transparent; font-style: normal; }.story-stat { left: 38px; bottom: 38px; }.story-stat strong { display: block; font-family: Archivo, sans-serif; font-size: clamp(64px, 6vw, 90px); font-weight: 500; line-height: .95; letter-spacing: -.055em; }.story-stat p { margin-top: 9px; font-size: 18px; }.story-card .button { right: 28px; bottom: 28px; min-height: 52px; }

/* Final CTA */
.final-cta { display: grid; min-height: 540px; grid-template-columns: 40% 60%; align-items: center; padding-left: max(var(--side), calc((100vw - var(--max)) / 2)); overflow: hidden; background: #fbf6ee; }
.final-copy { position: relative; z-index: 2; }
.final-copy h2 { font-size: clamp(54px, 5.1vw, 76px); }
.final-copy .button { margin-top: 50px; }
.chrome-field { display: flex; align-items: center; gap: clamp(14px, 2vw, 34px); width: max-content; transform: translateX(-2%); }
.chrome-ball { display: block; flex: none; width: clamp(180px, 16vw, 245px); aspect-ratio: 1; border: 1px solid #b96843; border-radius: 50%; background: radial-gradient(circle at 29% 20%, #fff7df 0 3%, #ffd77a 8%, #fb8b4b 31%, #f1584b 58%, #5b271c 82%, #ffc44d 93%, #8b3b2a 100%); box-shadow: inset -8px -8px 20px rgba(82,31,19,.52), inset 8px 8px 14px rgba(255,244,202,.7), 0 28px 35px rgba(102,45,24,.18); filter: contrast(1.05); animation: chromeFloat 4.2s ease-in-out infinite; }.chrome-ball--two { animation-delay: -.7s; }.chrome-ball--three { animation-delay: -1.4s; }.chrome-ball--four { animation-delay: -2.1s; }
@keyframes chromeFloat { 50% { transform: translateY(-14px) rotate(2deg); } }

/* Footer */
.footer { background: var(--black); color: #fff; }
.footer-main { display: grid; grid-template-columns: 190px 1fr .85fr 2fr; gap: clamp(42px, 5vw, 80px); padding-block: 68px 76px; }
.footer-brand { width: max-content; align-self: start; }
.brand-lockup--footer { min-height: 48px; gap: 12px; color: #fff; font-size: 28px; }
.brand-lockup--footer .brand-mark { height: 40px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }.footer h3 { margin-bottom: 8px; font-size: 15px; font-weight: 500; }.footer-column a { color: #8f8f8f; font-size: 14px; transition: color .2s ease; }.footer-column a:hover { color: #fff; }.footer-subhead { margin-top: 22px; }
.subscribe { justify-self: end; max-width: 470px; }.subscribe > p { color: #8f8f8f; font-size: 15px; }.subscribe form { display: grid; margin-top: 32px; }.subscribe label { margin-bottom: 8px; font-size: 14px; }.subscribe input { width: 100%; height: 56px; padding: 0 18px; border: 0; border-radius: 10px; background: #fff; }.subscribe button { width: fit-content; min-height: 48px; margin-top: 16px; }.subscribe small { margin-top: 26px; color: #777; font-size: 11px; }.subscribe small a { color: #aaa; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 26px max(var(--side), calc((100vw - var(--max))/2)); border-top: 1px solid #34271e; background: #1a130e; color: #93877f; font-size: 12px; }.footer-bottom > div:first-child { display: flex; gap: 30px; }.footer-bottom a:hover { color: #fff; }.socials { display: flex; gap: 18px; }.socials a { width: 20px; height: 20px; color: #fff; }.socials svg { width: 100%; fill: currentColor; }

/* Inner pages */
.nav-pill--simple { display: flex; justify-content: space-between; }
.inner-page { min-height: 100vh; background: var(--warm-white); }
.inner-shell { width: min(calc(100% - (var(--side) * 2)), 1120px); margin-inline: auto; }
.page-eyebrow { color: #8a623e; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.case-study-main { padding: 190px 0 120px; }
.case-hero { display: flex; min-height: 500px; justify-content: flex-end; flex-direction: column; padding-bottom: 78px; border-bottom: 1px solid #ddcfbf; }
.case-hero h1 { max-width: 950px; margin-top: 20px; font-family: Archivo, sans-serif; font-size: clamp(64px, 8vw, 116px); font-weight: 500; line-height: .94; letter-spacing: -.065em; }
.case-client-logo { align-self: flex-start; width: auto; max-width: min(100%, 360px); margin-top: 52px; object-fit: contain; object-position: left center; }
.case-client-logo--jekyll { height: 54px; }.case-client-logo--earth { height: 66px; }.case-client-logo--majestic { height: 54px; }
/* Case study photo header */
.case-study-main--photo { padding-top: 0; }
.case-hero--photo { position: relative; display: flex; min-height: 620px; justify-content: flex-end; flex-direction: column; width: 100%; padding: 190px 0 62px; overflow: hidden; border-bottom: 0; color: #fff; background: #1a1512; }
.case-hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-hero--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,9,7,.86), rgba(12,9,7,.55) 52%, rgba(12,9,7,.3)), linear-gradient(0deg, rgba(12,9,7,.8), rgba(12,9,7,.15) 62%); }
.case-hero--photo > .inner-shell { position: relative; z-index: 1; }
.case-hero--photo .page-eyebrow { color: #ffcf85; }
.case-hero--photo h1 { max-width: 15ch; margin-top: 18px; font-family: Archivo, sans-serif; font-size: clamp(48px, 6vw, 88px); font-weight: 500; line-height: .98; letter-spacing: -.055em; text-shadow: 0 2px 30px rgba(0,0,0,.45); }
.case-hero--photo .case-client-logo { align-self: flex-start; width: auto; max-width: min(100%, 320px); height: 52px; margin-top: 40px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.case-hero--photo .case-client-logo--majestic { height: 66px; }
/* already white in the file: inverting it again would grey the edges */
.case-hero--photo .case-client-logo--prewhite { filter: none; }
.case-hero--photo .case-client-logo--earth { height: 62px; }

.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-block: 76px; }
.case-stats article { display: flex; min-height: 220px; justify-content: space-between; flex-direction: column; padding: 28px; border-radius: 20px; background: #f3ede4; box-shadow: inset 0 0 0 1px rgba(23,23,23,.05); }
.case-stats strong { font-family: Archivo, sans-serif; font-size: clamp(52px, 5vw, 74px); font-weight: 500; line-height: 1; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.case-stats span { max-width: 22ch; color: #655d56; font-size: 14px; }
.case-narrative { border-top: 1px solid #ddcfbf; }
.case-narrative article { display: grid; grid-template-columns: minmax(150px, 1fr) minmax(0, 3fr); gap: 48px; padding-block: 58px; border-bottom: 1px solid #ddcfbf; }
.case-narrative h2 { font-family: Archivo, sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
.case-narrative p { max-width: 62ch; color: #4f4944; font-size: 19px; line-height: 1.65; }
.case-cta { display: flex; min-height: 300px; align-items: center; justify-content: space-between; gap: 48px; margin-top: 96px; padding: 52px; border-radius: var(--radius); background: var(--black); color: #fff; }
.case-cta h2 { max-width: 620px; margin-top: 10px; font-family: Archivo, sans-serif; font-size: clamp(42px, 4vw, 58px); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.case-cta .page-eyebrow { color: #c9a77f; }
.legal-main { padding: 190px 0 120px; }
.legal-shell { width: min(calc(100% - (var(--side) * 2)), 720px); margin-inline: auto; }
.legal-header { padding-bottom: 64px; border-bottom: 1px solid #ddcfbf; }
.legal-header h1 { margin: 16px 0 20px; font-family: Archivo, sans-serif; font-size: clamp(52px, 7vw, 82px); font-weight: 500; line-height: .98; letter-spacing: -.055em; }
.legal-header > p:last-child { color: var(--mid); font-size: 14px; }
.legal-copy { padding-top: 28px; }
.legal-copy section { padding-block: 34px; border-bottom: 1px solid #e7ded3; }
.legal-copy h2 { margin-bottom: 14px; font-family: Archivo, sans-serif; font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.legal-copy p { color: #514b45; font-size: 16px; line-height: 1.75; }
.legal-copy a { text-decoration: underline; text-underline-offset: 3px; }
.inner-footer { background: var(--black); color: #aaa; }
.inner-footer__content { display: flex; width: min(calc(100% - (var(--side) * 2)), 1120px); min-height: 96px; align-items: center; justify-content: space-between; gap: 30px; margin-inline: auto; font-size: 12px; }
.inner-footer nav { display: flex; flex-wrap: wrap; gap: 24px; }.inner-footer a:hover { color: #fff; }

/* Scroll reveals */
.reveal, .reveal-stagger > *, .stagger-group > .stagger-child { opacity: 0; transform: translateY(20px); transition: opacity 650ms cubic-bezier(.2, 0, 0, 1), transform 650ms cubic-bezier(.2, 0, 0, 1); }
.reveal.is-visible, .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger-group.is-visible > .stagger-child { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }.reveal-stagger.is-visible > *:nth-child(n+6) { transition-delay: 450ms; }

@media (max-width: 1180px) {
  .nav-pill { grid-template-columns: 130px 1fr auto; padding-left: 22px; }
  .desktop-nav { gap: 17px; }.nav-link, .nav-trigger, .login-link { font-size: 13px; }.nav-actions { gap: 16px; }.button--nav { min-height: 48px; padding-inline: 21px; font-size: 13px; }
  .how-card { height: 600px; padding-inline: 32px; }.how-caption { grid-template-columns: 58px 1fr; }.how-caption > span { font-size: 44px; }
  .feature-row { gap: 60px; }.feature-visual { height: 460px; }
  .final-cta { grid-template-columns: 44% 56%; }
  .footer-main { grid-template-columns: 150px .9fr .8fr 1.5fr; gap: 38px; }
}

@media (max-width: 900px) {
  .section-space { padding-block: 110px; }
  .nav-pill { grid-template-columns: 1fr auto; min-height: 68px; padding: 8px 12px 8px 22px; }.desktop-nav, .nav-actions { display: none; }.mobile-toggle { display: grid; width: 50px; height: 50px; place-content: center; gap: 6px; border: 0; border-radius: 50%; background: var(--orange); cursor: pointer; }.mobile-toggle span { display: block; width: 20px; height: 1.5px; background: #111; transition: transform .25s ease; }.mobile-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }.mobile-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; display: block; inset: 0; padding: 110px 24px 32px; background: rgba(255,255,255,.98); opacity: 0; visibility: hidden; transform: translateY(-20px); transition-property: opacity, transform, visibility; transition-duration: 300ms, 300ms, 0s; transition-delay: 0s, 0s, 300ms; transition-timing-function: var(--ease); pointer-events: auto; overflow: auto; }.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }.mobile-menu-inner { display: flex; width: min(100%, 620px); margin: auto; flex-direction: column; }.mobile-menu-brand { align-self: flex-start; margin-bottom: 20px; }.mobile-menu-inner > a:not(.button):not(.mobile-menu-brand), .mobile-menu summary { padding: 18px 3px; border-bottom: 1px solid var(--line); font-family: Archivo, sans-serif; font-size: 30px; font-weight: 500; list-style: none; cursor: pointer; }.mobile-menu summary::after { content: "+"; float: right; color: var(--muted); }.mobile-menu details[open] summary::after { content: "−"; }.mobile-menu details div { display: grid; padding: 8px 0 18px 20px; gap: 8px; color: var(--mid); }.mobile-menu .button { margin-top: 28px; }
  .hero { min-height: 760px; height: 92vh; }.hero-content { bottom: 44px; }.hero h1 { font-size: clamp(46px, 8vw, 68px); }.hero-chat { top: 25%; right: var(--side); width: 310px; transform: none; }.chat-bubble { padding: 12px 14px; font-size: 12px; }
  .how-grid { grid-template-columns: 1fr; margin-top: 90px; }.how-card { height: 600px; }.lead-notifications, .answer-flow, .crm-sync { width: min(100%, 520px); align-self: center; }
  .trust { padding-block: 88px; }.trust-title { margin-bottom: 56px; }.trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 28px; }.trust-grid > * { grid-column: auto !important; }.trust-grid > *:last-child { grid-column: 1 / -1 !important; }.trust-grid .trust-brand { max-width: 100%; height: auto; }.trust-grid .trust-brand--earth { width: 106px; }.trust-grid .trust-brand--cargurus { width: 222px; }.trust-grid .trust-brand--gm { width: 165px; }.trust-grid .trust-brand--guntherwerks { width: 129px; }.trust-grid .trust-brand--lotus { width: 72px; }.trust-grid .trust-brand--jekyll { width: 150px; }
  .glass-grid { grid-template-columns: 1fr; margin-top: 64px; }.glass-grid article { min-height: 210px; max-height: 240px; }.gradient-panel { min-height: 0; }
  .features .section-title { margin-bottom: 80px; }.feature-row, .feature-row--reverse { grid-template-columns: 1fr; gap: 45px; margin-top: 110px; }.feature-row--reverse .feature-visual { order: 1; }.feature-row--reverse .feature-copy { order: 2; }.feature-copy { max-width: 650px; }.eyebrow { margin-bottom: 35px; }.feature-visual { height: 470px; }
  .testimonial-card { min-height: 670px; }.testimonial-card blockquote { top: auto; right: 36px; bottom: 42px; left: 36px; width: auto; }img.testimonial-brand { margin: 38px 0 0 36px; }
  .success-card { min-height: 530px; }
  .final-cta { grid-template-columns: minmax(0, 1fr); min-height: 0; padding: 88px var(--side) 0; row-gap: 48px; }.chrome-field { min-width: 0; }.chrome-field { align-self: end; transform: translateX(-10%); }.chrome-ball { width: 170px; }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }.footer-brand { grid-column: 1 / -1; }.subscribe { grid-column: 1 / -1; justify-self: stretch; max-width: none; }
  .case-study-main, .legal-main { padding-top: 150px; }
  .case-hero { min-height: 430px; }
  .case-hero--photo { min-height: 520px; padding-top: 160px; }.case-narrative article { grid-template-columns: 1fr; gap: 16px; }.case-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  :root { --side: 18px; --radius: 20px; }
  .section-space { padding-block: 88px; }.section-space--small { padding-block: 72px; }
  .nav-pill { width: calc(100% - 24px); margin-top: 12px; }
  .hero { height: 790px; min-height: 0; }.hero-video { object-position: 47% center; }.hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 70%); }.hero-content { right: var(--side); bottom: 35px; }.hero h1 { font-size: clamp(40px, 12vw, 52px); }.hero-content .button { margin-top: 26px; }.button--large { min-height: 57px; font-size: 16px; }.hero-chat { top: 112px; right: 16px; width: min(300px, calc(100% - 32px)); }.chat-bubble--agent { max-width: 92%; }
  .logo-marquee { height: 100px; }.logo-run { gap: 60px; padding-right: 60px; }.logo-run img { width: auto; }
  .center-title { font-size: 39px; }.how { padding-top: 95px; }.how-grid { margin-top: 70px; gap: 14px; }.how-card { height: 600px; padding: 30px 22px; }.how-card h3 { font-size: 34px; }.deal-field strong { font-size: 38px; }.how-caption { grid-template-columns: 50px 1fr; }.how-caption > span { font-size: 44px; }.how-caption p { font-size: 14px; }.center-action { margin-top: 48px; }
  .split-heading { display: block; }.split-heading h2 { font-size: 38px; }.split-heading p { margin-top: 18px; }
  .trust { padding-block: 72px; }.trust-title { margin-bottom: 44px; font-size: 49px; }.trust-grid { grid-template-columns: 1fr; gap: 34px; margin-top: 0; }.trust-grid > *, .trust-grid > *:last-child { min-width: 0; grid-column: 1 !important; }
  .gradient-wrap { padding-inline: 12px; }.gradient-panel { padding: 88px 18px; }.gradient-panel h2 { font-size: 38px; }.glass-grid { margin: 64px 0; }.glass-grid article { min-height: 210px; max-height: 240px; padding: 22px; }.glass-grid h3 { font-size: 28px; }.glass-grid p { margin-top: 14px; color: rgba(255,255,255,.85); font-size: 18px; }
  .section-title { font-size: 43px; }.features { padding-bottom: 110px; }.feature-row { margin-top: 95px; }.feature-visual { height: 460px; }.feature-copy { padding-inline: 2px; }.eyebrow { margin-bottom: 24px; font-size: 15px; }.feature-copy h3 { font-size: 28px; }.feature-copy p { font-size: 16px; }.feature-chips span { font-size: 12px; }.listing-card, .phone-chat, .campaign-card, .crm-autopilot-card, .price-drop-card { width: 88%; }.phone-chat { padding: 16px; border-radius: 30px; }.phone-bubble { font-size: 9px; }.campaign-card { padding: 16px; }.campaign-ad { grid-template-columns: 92px 1fr; gap: 11px; }.campaign-ad img { width: 92px; height: 82px; }.campaign-ad strong { font-size: 15px; }.crm-autopilot-card { padding: 26px; }.listing-card img { height: 210px; }.listing-body h4 { font-size: 17px; }.listing-chips span { padding-inline: 7px; font-size: 8px; }.price-drop-card { padding: 27px 22px; }.new-price { font-size: 51px; }.reactivation-chips span { white-space: nowrap; font-size: 8px; }
  .crm-autopilot-card .crm-field-row { grid-template-columns: 74px minmax(0, 1fr); min-height: 46px; gap: 8px; }.crm-autopilot-card .crm-field-row > strong { overflow: visible; font-size: 10px; text-overflow: clip; white-space: normal; }
  .dots-section { min-height: 600px; }.dots-content h2 { margin-bottom: 42px; font-size: 58px; }.dot-orb--one { top: 112px; right: 10px; width: 96px; height: 96px; }.dot-orb--two { top: 392px; right: 24px; width: 68px; height: 68px; }.dot-orb--three { bottom: 32px; left: 24px; width: 60px; height: 60px; }.dot-chat { top: 42px; left: 18px; max-width: calc(100% - 130px); padding: 10px 13px; overflow: hidden; font-size: 10px; text-overflow: ellipsis; }
  .testimonial { width: calc(100% - 24px); padding-top: 72px; }.testimonial-card { min-height: 590px; }img.testimonial-brand { max-width: calc(100% - 48px); margin: 28px 0 0 24px; }.testimonial-card blockquote { right: 24px; bottom: 28px; left: 24px; font-size: 25px; }.testimonial-card cite { margin-top: 17px; font-size: 11px; }
  .success-grid { grid-template-columns: 1fr; gap: 12px; }.success-card { min-height: 500px; }.quote-card { padding: 30px; }.quote-card blockquote { font-size: 27px; }.story-brand { top: 28px; left: 25px; }img.story-brand--logo { max-width: calc(100% - 50px); margin: 28px 0 0 25px; }.story-chip { left: 25px; bottom: 160px; }.story-stat { left: 25px; bottom: 28px; }.story-stat strong { font-size: 62px; }.story-stat p { max-width: 200px; font-size: 14px; }.story-card .button { right: 20px; bottom: 20px; min-height: 45px; padding-inline: 18px; }
  .final-cta { min-height: 0; padding-top: 76px; padding-bottom: 0; row-gap: 40px; }.final-copy h2 { font-size: 38px; }.final-copy .final-sub { font-size: 16px; }.final-copy .button { margin-top: 28px; }.chrome-field { transform: translateX(-14%); gap: 12px; }.chrome-ball { width: 128px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 55px 30px; padding-block: 72px; }.footer-column:nth-of-type(2) { grid-column: 2; }.subscribe { grid-column: 1 / -1; }.footer-bottom { align-items: flex-start; flex-direction: column; }.footer-bottom > div:first-child { flex-wrap: wrap; gap: 12px 22px; }
  .nav-pill--simple { padding-left: 18px; }.nav-pill--simple .button--nav { display: inline-flex; }
  .case-study-main, .legal-main { padding: 132px 0 82px; }.case-hero { min-height: 390px; padding-bottom: 56px; }.case-hero h1 { font-size: 58px; }.case-client-logo { margin-top: 40px; }.case-client-logo--majestic { height: 66px; }
  .case-stats { grid-template-columns: 1fr; gap: 10px; padding-block: 56px; }.case-stats article { min-height: 170px; padding: 24px; }.case-narrative article { padding-block: 40px; }.case-narrative p { font-size: 17px; }.case-cta { min-height: 330px; margin-top: 68px; padding: 30px; }.case-cta h2 { font-size: 42px; }
  .legal-header { padding-bottom: 44px; }.legal-header h1 { font-size: 52px; }.legal-copy section { padding-block: 28px; }
  .inner-footer__content { min-height: 130px; align-items: flex-start; justify-content: center; flex-direction: column; padding-block: 28px; }.inner-footer nav { gap: 12px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .logo-track, .lead-pill, .sync-icon, .gradient-panel, .phone-bubble, .wave-bars i, .reply-pill span, .listing-chips span, .crm-wave i, .old-price::after, .new-price, .reactivation-chips span, .chrome-ball, .chat-bubble, .chat-speed, [data-type-text]::after, .campaign-title::after { animation-play-state: paused !important; }
  .lead-pill, .phone-bubble, .new-price, .chat-bubble, .chat-speed { opacity: 1; filter: none; transform: none; }
  .old-price::after { transform: scaleX(1); }
  .chat-reply-slot .chat-bubble--typing { visibility: hidden; opacity: 0 !important; }.chat-reply-slot .chat-bubble--agent { opacity: 1; }
  .crm-wave { opacity: .25; transform: none; }.crm-synced-chip, .crm-complete-chip { opacity: 1; transform: none; }
  .reactivation-chips span { opacity: .85; transform: none; }
  .reveal, .reveal-stagger > *, .stagger-group > .stagger-child { opacity: 1; transform: none; }
}

/* ---------- Price-drop offer page ---------- */

/* Offer badge */
.offer-badge { display: inline-flex; width: max-content; align-items: center; gap: 10px; margin-bottom: 24px; padding: 9px 16px 9px 13px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; background: rgba(19,19,19,.34); backdrop-filter: blur(13px); -webkit-backdrop-filter: blur(13px); color: #fff; font-size: 13px; font-weight: 600; }
.offer-badge i { width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--sunset); box-shadow: 0 0 14px rgba(251,139,75,.85); animation: badgePulse 2.4s ease-in-out infinite; }
.offer-badge--light { border-color: rgba(23,23,23,.1); background: #fff; color: var(--ink); box-shadow: 0 6px 20px rgba(0,0,0,.06); }
@keyframes badgePulse { 50% { opacity: .3; transform: scale(.8); } }

/* Offer hero */
.hero--offer { height: max(780px, 94vh); min-height: 800px; }
.hero--offer .hero-shade { background: linear-gradient(90deg, rgba(10,8,6,.92) 0%, rgba(10,8,6,.78) 30%, rgba(10,8,6,.5) 55%, rgba(10,8,6,.22) 78%, rgba(10,8,6,.12) 100%), linear-gradient(0deg, rgba(10,8,6,.55), rgba(10,8,6,.1) 55%), linear-gradient(180deg, rgba(10,8,6,.45), transparent 26%); }
.hero--offer .hero-content { top: 50%; bottom: auto; max-width: min(58vw, 780px); transform: translateY(-46%); }
.hero--offer h1 { font-size: clamp(44px, 4.5vw, 67px); }
.hero--offer h1 span { color: #fff; }
.hero--offer h1 { text-shadow: 0 2px 28px rgba(8,6,4,.55); }
.hero--offer h1 span:last-child { color: rgba(255,255,255,.76); }
.hero-sub { max-width: 46ch; margin-top: 22px; color: rgba(255,255,255,.92); font-size: 18px; line-height: 1.55; text-shadow: 0 1px 18px rgba(8,6,4,.6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-content .hero-actions .button { margin-top: 0; }

/* Hero price-drop widget */
.hero-drop { position: absolute; z-index: 2; top: 50%; right: max(var(--side), calc((100vw - var(--max)) / 2)); display: flex; width: min(374px, 31vw); flex-direction: column; gap: 12px; transform: translateY(-48%); }
.hero-drop [data-animate] { opacity: 0; filter: blur(4px); transform: translateY(12px); transition-property: opacity, filter, transform; transition-duration: 520ms; transition-timing-function: cubic-bezier(.2, 0, 0, 1); }
.hero-drop [data-animate].is-on { opacity: 1; filter: blur(0); transform: none; }
.hero-drop [data-animate].is-out { opacity: 0; filter: blur(3px); transform: translateY(-8px); }

.drop-card, .drop-run { width: 100%; padding: 18px 20px; border: 1px solid rgba(255,255,255,.3); border-radius: 20px; background: rgba(19,19,19,.42); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); box-shadow: inset 0 1px rgba(255,255,255,.18), 0 16px 40px rgba(0,0,0,.24); color: #fff; }
.drop-head { display: flex; align-items: center; gap: 9px; color: #ffcf85; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.drop-head i { width: 7px; height: 7px; flex: none; border-radius: 50%; background: var(--sunset); box-shadow: 0 0 12px rgba(251,139,75,.9); animation: badgePulse 1.6s ease-in-out infinite; }
.drop-unit { margin-top: 12px; font-family: Archivo, sans-serif; font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.drop-prices { display: flex; align-items: baseline; gap: 12px; margin-top: 7px; font-variant-numeric: tabular-nums; }
.drop-prices s { position: relative; color: rgba(255,255,255,.5); font-size: 16px; text-decoration: none; }
.drop-prices s::after { content: ""; position: absolute; top: 50%; left: -2px; width: calc(100% + 4px); height: 1.5px; background: rgba(255,255,255,.66); transform: scaleX(0); transform-origin: left; transition: transform 420ms cubic-bezier(.2, 0, 0, 1); }
.drop-prices s.is-cut::after { transform: scaleX(1); }
.drop-prices strong { font-family: Archivo, sans-serif; font-size: 33px; font-weight: 600; line-height: 1; letter-spacing: -.035em; background: var(--sunset); background-clip: text; -webkit-background-clip: text; color: transparent; }
.drop-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.drop-meta span { padding: 5px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.82); font-size: 11px; }

.drop-run__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.drop-run__head span { color: rgba(255,255,255,.6); }
.drop-run__head b { color: #ffcf85; white-space: nowrap; }
.drop-fan { display: grid; gap: 7px; margin-top: 13px; }
.drop-line { padding: 9px 12px; border-radius: 12px 12px 12px 4px; background: rgba(255,255,255,.13); font-size: 12px; line-height: 1.35; }
.drop-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.drop-chip { padding: 6px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: 11px; font-weight: 500; white-space: nowrap; }
.drop-chip--solid { border-color: transparent; background: var(--sunset); color: #1a1006; font-weight: 600; }

/* Matched-buyer visual */
.match-card { width: min(86%, 400px); padding: 24px; border: 1px solid rgba(255,255,255,.09); border-radius: 20px; background: #141416; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.match-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.09); }
.match-head span { color: #8f8f93; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.match-head b { font-family: Archivo, sans-serif; font-size: 28px; font-weight: 600; line-height: 1; letter-spacing: -.04em; background: var(--sunset); background-clip: text; -webkit-background-clip: text; color: transparent; }
.match-card .lead-notifications { min-height: 0; max-height: none; margin: 16px 0 0; gap: 8px; }
.match-card .lead-pill { min-height: 62px; }
.match-card .lead-pill em { color: #ffcf85; font-size: 11px; font-weight: 600; }
.match-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.09); color: #d4d4d4; font-size: 13px; font-weight: 600; text-align: center; }

/* Five-step rail */
.flow-rail { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 60px 0 0; padding: 0; border-top: 1px solid var(--rule); list-style: none; }
.flow-step { position: relative; display: flex; min-width: 0; flex-direction: column; padding: 30px 30px 0; border-left: 1px solid var(--rule); }
.flow-step:first-child { padding-left: 0; border-left: 0; }
.flow-step:last-child { padding-right: 0; }
.flow-num { font-family: Archivo, sans-serif; font-size: 44px; font-weight: 600; line-height: 1; letter-spacing: -.05em; font-variant-numeric: tabular-nums; color: #FFC44D; }
.flow-step:nth-child(2) .flow-num { color: #FB8B4B; }
.flow-step:nth-child(3) .flow-num { color: #F1584B; }
.flow-step:nth-child(4) .flow-num { color: #E86A8A; }
.flow-step:nth-child(5) .flow-num { color: #8b76f0; }
.flow-step h3 { margin-top: 16px; font-family: Archivo, sans-serif; font-size: 20px; font-weight: 600; line-height: 1.18; letter-spacing: -.025em; }
.flow-step p { margin-top: 11px; color: #6b635b; font-size: 14px; line-height: 1.55; }
.flow-tag { width: fit-content; margin-top: auto; padding-top: 26px; color: #9a9188; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.flow-tag--accent { background: var(--sunset); background-clip: text; -webkit-background-clip: text; color: transparent; }
.flow-step--wide .flow-tag { align-self: flex-start; }

.cases { padding-top: 64px; }

/* Closing panel: the offer terms and the CTA in one block */
.gradient-wrap.closing { padding-block: 0 96px; }
.closing .gradient-panel { padding-block: 76px 72px; }
.closing-sub { max-width: 40ch; margin-top: 18px; color: rgba(255,255,255,.9); font-size: clamp(19px, 1.5vw, 22px); text-align: center; }
.closing-note { max-width: 54ch; margin: 0 0 32px; color: rgba(255,255,255,.85); font-size: 16px; line-height: 1.6; text-align: center; }
.closing .glass-grid { margin: 44px 0 36px; }
.closing .glass-grid article { height: auto; min-height: 0; max-height: none; padding: 26px 28px 28px; }

/* Case capsules */
.case-capsules { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 52px; border-top: 1px solid var(--rule); }
.capsule { display: flex; min-width: 0; flex-direction: column; padding: 34px 38px 0; border-left: 1px solid var(--rule); }
.capsule:first-child { padding-left: 0; border-left: 0; }
.capsule:last-child { padding-right: 0; }
.capsule-logo { width: 100%; max-width: 190px; height: 46px; object-fit: contain; object-position: left center; }
.capsule-logo--majestic { height: 44px; }
.capsule-stat { margin-top: 30px; font-family: Archivo, sans-serif; font-size: clamp(56px, 4.4vw, 70px); font-weight: 500; line-height: 1; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.capsule-line { max-width: 31ch; min-height: calc(3 * 1.55em); margin-top: 12px; color: #4f4944; font-size: 16px; line-height: 1.55; }
.capsule-facts { display: grid; margin: 24px 0 0; padding: 0; border-top: 1px solid var(--rule); list-style: none; }
.capsule-facts li { padding: 11px 0; border-bottom: 1px solid var(--rule); color: #6b635b; font-size: 14px; line-height: 1.45; }
.capsule-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 24px; font-size: 15px; font-weight: 600; }
.capsule-link span { transition: transform .2s ease; }
.capsule-link:hover span { transform: translateX(4px); }

/* Reviews */
.reviews { padding-block: 0 0; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 52px; border-top: 1px solid var(--rule); }
.review-card { display: flex; min-width: 0; flex-direction: column; padding: 34px 38px 0; border-left: 1px solid var(--rule); }
.review-card:first-child { padding-left: 0; border-left: 0; }
.review-card:last-child { padding-right: 0; }
.review-card blockquote { font-family: Archivo, sans-serif; font-size: 20px; font-weight: 500; line-height: 1.4; letter-spacing: -.022em; }
.review-card footer { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 26px; }
.review-logo { width: 108px; height: 30px; flex: none; object-fit: contain; object-position: left center; filter: grayscale(1); opacity: .75; }
.review-card footer > span { display: flex; min-width: 0; flex-direction: column; font-size: 14px; font-weight: 600; }
.review-card footer small { color: var(--mid); font-size: 12px; font-weight: 400; }

/* Final CTA copy */
@media (min-width: 901px) {
  .final-cta { grid-template-columns: 46% 54%; }
  .final-copy h2 { font-size: clamp(46px, 4.2vw, 60px); }
}
.final-copy .final-sub { max-width: 42ch; margin-top: 22px; color: #5b544e; font-size: 17px; line-height: 1.6; }
.final-copy .offer-badge { margin-bottom: 26px; }
.final-copy .button { margin-top: 36px; }

@media (max-width: 1180px) {
  .hero--offer .hero-content { max-width: min(60vw, 660px); }
  .hero-drop { width: min(320px, 30vw); }
  .drop-prices strong { font-size: 30px; }
  .flow-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .flow-step--wide { grid-column: span 2; }
  .flow-step:nth-child(4) { padding-left: 0; border-left: 0; }
  .capsule { padding: 30px 28px 28px; }
  .capsule, .review-card { padding: 30px 26px 0; }
  .review-card blockquote { font-size: 18px; }
}

@media (max-width: 900px) {
  .hero--offer { display: flex; height: auto; min-height: 0; flex-direction: column; gap: 44px; padding: 148px var(--side) 64px; }
  .hero--offer .hero-video { position: absolute; inset: 0; }
  .hero--offer .hero-shade { background: linear-gradient(0deg, rgba(10,8,6,.88), rgba(10,8,6,.6) 55%, rgba(10,8,6,.72)); }
  .hero--offer .hero-content { position: static; max-width: 640px; transform: none; }
  .hero--offer h1 { font-size: clamp(42px, 7.4vw, 60px); }
  .hero-sub { font-size: 17px; }
  .hero-drop { position: static; width: min(420px, 100%); transform: none; }
  .flow-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 56px; }
  .flow-step--wide { grid-column: 1 / -1; }
  .flow-step:nth-child(odd) { padding-left: 0; border-left: 0; }
  .flow-step:nth-child(even) { padding-right: 0; }
  .case-capsules, .review-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .capsule, .review-card { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--rule); }
  .capsule:last-child, .review-card:last-child { border-bottom: 0; }
  .capsule-line { max-width: 46ch; min-height: 0; }
}

@media (max-width: 640px) {
  .hero--offer { padding: 128px var(--side) 52px; gap: 36px; }
  .hero--offer .hero-content { bottom: auto; right: auto; }
  .hero--offer h1 { font-size: clamp(36px, 9.4vw, 46px); }
  .hero-sub { margin-top: 18px; font-size: 16px; }
  .hero-actions { margin-top: 28px; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .offer-badge { margin-bottom: 20px; font-size: 12px; }
  .drop-card { padding: 18px; }
  .drop-prices strong { font-size: 30px; }
  .flow-rail { grid-template-columns: 1fr; margin-top: 40px; }
  .flow-step, .flow-step--wide { grid-column: auto; padding: 24px 0; border-left: 0; border-bottom: 1px solid var(--rule); }
  .flow-step:last-child { border-bottom: 0; }
  .flow-tag { margin-top: 0; padding-top: 18px; }
  .capsule-stat { font-size: 52px; }
  .review-card blockquote { font-size: 19px; }
  .final-copy .final-sub { font-size: 16px; }
  .final-copy .button { margin-top: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .drop-card, .hero-drop .drop-text, .hero-drop .drop-reply, .hero-drop .drop-chip { animation-play-state: paused !important; opacity: 1; filter: none; transform: none; }
  .offer-badge i, .drop-head i { animation-play-state: paused !important; opacity: 1; transform: none; }
}
