:root {
  --ink: #171717;
  --muted: #a3a3a3;
  --mid: #737373;
  --line: #e7e7e7;
  --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; }
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: 156px; }
.section-space--small { padding-block: 96px; }

.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 40s 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--earth { height: 30px; }
.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--hennessey { height: 26px; }
.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: 70px; 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: 14px; align-items: center; }
.answer-step { position: relative; display: flex; width: 94%; min-height: 66px; justify-content: center; flex-direction: column; gap: 4px; padding: 11px 42px 11px 16px; border: 1px solid rgba(255,255,255,.06); border-radius: 17px; color: #8a8a8a; background: #161618; transition-property: color, background-color, box-shadow, transform; transition-duration: 300ms; transition-timing-function: cubic-bezier(.2, 0, 0, 1); }
.answer-step:nth-child(2) { min-height: 96px; }
.answer-step small { color: #707074; font-size: 10px; font-weight: 600; letter-spacing: .11em; line-height: 1.2; }
.answer-step > span { font-size: 13px; line-height: 1.35; }
.answer-step > b { position: absolute; right: 17px; bottom: -18px; z-index: 2; color: #5e5e62; font-size: 18px; font-weight: 400; }
.answer-step:not(:last-child)::after { content: ""; position: absolute; right: 25px; bottom: -15px; width: 1px; height: 14px; background: rgba(255,255,255,.12); }
.answer-step.active { color: #fff; background: #2a2a2c; box-shadow: 0 0 24px rgba(251,146,60,.18); transform: scale(1.015); }
.answer-step.active small { color: var(--orange-dot); }
.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; }

/* Carousel */
.stats { padding-top: 0; overflow: hidden; }
.carousel { margin-top: 58px; cursor: grab; touch-action: pan-y; user-select: none; }
.carousel.is-dragging { cursor: grabbing; }
.carousel-track { display: flex; width: max-content; gap: 24px; padding-inline: max(var(--side), calc((100vw - var(--max))/2)); will-change: transform; }
.stat-card { position: relative; flex: 0 0 470px; height: 560px; overflow: hidden; border-radius: 24px; background: #fff; cursor: grab; transition: transform 300ms cubic-bezier(.2, 0, 0, 1), box-shadow 300ms cubic-bezier(.2, 0, 0, 1); }
.stat-card:hover { transform: translateY(-4px); }.carousel.is-dragging .stat-card { cursor: grabbing; }
.stat-card img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; outline: 1px solid rgba(255,255,255,.1); outline-offset: -1px; }
.stat-card--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.62) 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.stat-card > div { position: absolute; z-index: 1; inset: auto 36px 36px; display: flex; flex-direction: column; }
.stat-card strong { font-family: Archivo, sans-serif; font-size: 104px; font-weight: 600; line-height: 1; letter-spacing: -.02em; }
.stat-card span { margin-top: 10px; font-size: 17px; }
.stat-card--photo div { color: #fff; }

/* Trust */
.trust { padding-top: 0; }
.trust-title { font-size: clamp(54px, 5.4vw, 82px); }
.trust-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); align-items: center; gap: 76px 28px; margin-top: 100px; }
.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: 44px; }
.trust-grid .trust-brand--cargurus { height: 34px; }
.trust-grid .trust-brand--gm { height: 44px; }
.trust-grid .trust-brand--hennessey { height: 34px; }
.trust-grid .trust-brand--guntherwerks { height: 40px; }
.trust-grid .trust-brand--lotus { height: 56px; }
.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: 88px 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: 64px 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-bottom: 156px; }
.features .section-title { margin-bottom: 110px; }
.feature-row { display: grid; grid-template-columns: minmax(0, 58fr) minmax(330px, 38fr); align-items: center; gap: 64px; margin-top: 140px; }
.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; gap: 8px; margin-top: 24px; }
.feature-chips span { padding: 8px 11px; border: 1px solid #e5e5e5; border-radius: 999px; background: #f5f5f5; color: var(--ink); font-size: 13px; font-weight: 500; line-height: 1; }
.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: 96px 28px; }
.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: 44px; 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: 28px; }
.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); }img.story-brand--hennessey { height: 34px; }.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: 610px; 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: 92px 100px; }
.footer-brand { width: max-content; align-self: start; }
.brand-lockup--footer { color: #fff; }
.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 { width: auto; max-width: min(100%, 360px); margin-top: 52px; object-fit: contain; }
.case-client-logo--jekyll { height: 54px; }.case-client-logo--hennessey { height: 36px; }
.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-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap-inline: 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: 82px; }.trust-grid .trust-brand--cargurus { width: 222px; }.trust-grid .trust-brand--gm { width: 165px; }.trust-grid .trust-brand--hennessey { width: 311px; }.trust-grid .trust-brand--guntherwerks { width: 129px; }.trust-grid .trust-brand--lotus { width: 56px; }.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: 1fr; min-height: 770px; padding: 100px var(--side) 0; }.chrome-field { align-self: end; transform: translateX(-10%); }.chrome-ball { width: 205px; }
  .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-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; }.carousel { margin-top: 40px; }.stat-card { flex-basis: calc(100vw - 50px); height: 470px; }.stat-card strong { font-size: 68px; }.stat-card span { font-size: 16px; }
  .trust { padding-top: 20px; }.trust-title { font-size: 49px; }.trust-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 70px; }.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; }img.story-brand--hennessey { width: 300px; height: auto; }.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: 660px; padding-top: 88px; }.final-copy h2 { font-size: 47px; }.final-copy .button { margin-top: 35px; }.chrome-field { transform: translateX(-22%); }.chrome-ball { width: 142px; }
  .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--hennessey { width: min(100%, 300px); height: auto; }
  .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; }
}
