/* ==========================================================================
   Dunzo marketing site
   Design language mirrors the app (src/theme/tokens.ts): monochrome,
   generous whitespace, quiet surfaces, one loud ink color. Hierarchy comes
   from weight, size, and space — not hue.
   ========================================================================== */

:root {
  --ink: #0A0A0A;
  --ink-soft: #1C1C1E;
  --paper: #FFFFFF;
  --canvas: #F7F7F5;
  --raised: #F2F2F0;
  --line: #EAEAE7;
  --line-strong: #DCDCD8;
  --gray-900: #171717;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-400: #A3A3A3;
  --gray-300: #D4D4D4;
  --on-ink-soft: rgba(255, 255, 255, 0.64);
  --on-ink-faint: rgba(255, 255, 255, 0.38);
  --on-ink-line: rgba(255, 255, 255, 0.14);
  --on-ink-raised: rgba(255, 255, 255, 0.08);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-card: 0 6px 16px rgba(10, 10, 10, 0.06);
  --shadow-float: 0 12px 28px rgba(10, 10, 10, 0.14);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;

  --gutter: 24px;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Type scale ---------- */

.display {
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.display em { color: var(--gray-400); }
.on-ink.display em, .section-ink .display em { color: var(--on-ink-faint); }

.title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.title em { color: var(--gray-400); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--gray-500);
  margin-top: 20px;
  max-width: 34em;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.center { text-align: center; }
.center.lede, .narrow { margin-left: auto; margin-right: auto; }

.on-ink { color: #fff; }
.lede.on-ink { color: var(--on-ink-soft); }
.eyebrow.on-ink { color: var(--on-ink-faint); }

/* ---------- Buttons & badges ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: 14px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }

.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--gray-900); box-shadow: var(--shadow-card); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

.btn-ghost {
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  background: var(--paper);
}
.btn-ghost:hover { border-color: var(--gray-400); }

.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 10px 22px 10px 16px;
  border: 1.5px solid var(--ink);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.appstore-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-float); }
.appstore-badge .apple { width: 26px; height: 26px; fill: currentColor; }
.badge-text { display: flex; flex-direction: column; line-height: 1.15; }
.badge-text small { font-size: 0.66rem; font-weight: 500; opacity: 0.75; letter-spacing: 0.02em; }
.badge-text strong { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }

.badge-light { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark { width: 30px; height: 30px; }
.brand-word {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }

/* ---------- Hero ---------- */

.hero { padding: clamp(56px, 9vw, 120px) 0 clamp(40px, 6vw, 80px); overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-fineprint {
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-400);
}

/* Phone mockup */

.hero-phone { position: relative; display: flex; justify-content: center; }

.phone {
  width: min(320px, 82vw);
  background: var(--ink);
  border-radius: 48px;
  padding: 12px;
  box-shadow: var(--shadow-float), 0 40px 80px rgba(10, 10, 10, 0.18);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 2;
}
.screen {
  background: var(--canvas);
  border-radius: 38px;
  padding: 58px 18px 24px;
  min-height: 560px;
}

.screen-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.s-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--gray-500);
}
.s-title { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-top: 2px; }

.s-points {
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  border-radius: 999px;
  padding: 7px 14px;
}
.s-points span { font-size: 0.62rem; font-weight: 600; opacity: 0.6; margin-left: 3px; }

.scorecard {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 8px 0 18px;
}
.ring { width: 148px; height: 148px; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: var(--line-strong); stroke-width: 9; }
.ring-fill {
  fill: none;
  stroke: var(--ink);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}
.ring-label strong { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.ring-label span { font-size: 0.66rem; font-weight: 600; color: var(--gray-500); margin-top: 4px; }

.s-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
.s-task { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.s-check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.s-check.done { background: var(--ink); border-color: var(--ink); }
.s-check.done::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.s-task-title { font-size: 0.92rem; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.s-task-sub { font-size: 0.78rem; color: var(--gray-500); margin-top: 1px; }

.s-quest { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.s-pill {
  background: var(--raised);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 11px;
  white-space: nowrap;
}

.s-reward { margin-top: 4px; padding: 0 4px; }
.s-reward-bar {
  height: 7px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  margin-bottom: 7px;
}
.s-reward-bar span {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: inherit;
  background: var(--ink);
}

/* Floating chips */

.chip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-float);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 10px 16px;
  white-space: nowrap;
}
.chip strong { color: var(--ink); font-weight: 800; margin-left: 4px; }

.chip-float { position: absolute; z-index: 3; animation: bob 5s ease-in-out infinite; }
.chip-a { top: 9%; left: -4%; }
.chip-b { bottom: 14%; right: -6%; animation-delay: -2.5s; }
.chip-c { position: absolute; top: 20px; left: -14px; animation-delay: -1.2s; z-index: 3; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Marquee ---------- */

.marquee-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--paper);
}
.marquee { overflow: hidden; display: flex; }
.marquee-track {
  display: flex;
  gap: 12px;
  padding-right: 12px;
  flex-shrink: 0;
  animation: scroll 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes scroll {
  to { transform: translateX(-100%); }
}

.m-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  white-space: nowrap;
}
.m-item b { color: var(--ink); font-weight: 800; }

/* ---------- Sections ---------- */

.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-canvas { background: var(--canvas); }
.section-ink { background: var(--ink); }

.narrow-wrap { max-width: 760px; }

/* Loop cards */

.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 64px);
}

.loop-card {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.loop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
  background: var(--paper);
}
.loop-photo { position: relative; }
.loop-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.loop-illo {
  position: absolute;
  left: 26px;
  bottom: -26px;
  width: 56px;
  height: 56px;
  padding: 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  color: var(--ink);
  z-index: 2;
}
.loop-illo svg { width: 100%; height: 100%; }
.loop-body { padding: 44px 30px 34px; }
.loop-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.loop-body p { font-size: 0.95rem; color: var(--gray-500); }

/* Split (magic moment) */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.ticklist { list-style: none; margin-top: 28px; }
.ticklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}
.ticklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--ink);
}
.ticklist li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.split-visual { position: relative; }

.magic-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.found-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 34px;
  box-shadow: var(--shadow-float);
  position: relative;
  width: min(400px, 88%);
  margin: -170px 0 0 auto;
  transform: translateX(20px);
}
.found-title {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 6px 0 24px;
}
.found-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.found-facts div {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 8px;
  text-align: center;
}
.found-facts strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.found-facts span { font-size: 0.7rem; font-weight: 600; color: var(--gray-500); }
.found-systems { display: flex; flex-wrap: wrap; gap: 8px; }

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  margin-top: clamp(44px, 5vw, 72px);
}
.step { position: relative; padding-top: 8px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.step p { font-size: 0.95rem; color: var(--gray-500); }

/* Numbers band */

.numbers {
  background: var(--canvas);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(52px, 7vw, 84px) 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
.num strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.num > span { font-size: 0.88rem; color: var(--gray-500); }

/* Photo band */

.photo-band { position: relative; background: var(--ink); }
.photo-band > img {
  width: 100%;
  height: clamp(360px, 56vh, 580px);
  object-fit: cover;
  opacity: 0.92;
}
.band-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(36px, 5vw, 64px);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.25) 38%, rgba(10, 10, 10, 0) 62%);
}
.band-caption .container { width: 100%; }
.band-line {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: #fff;
}

/* Rewards (on ink) */

.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 64px);
}
.reward-card {
  background: var(--on-ink-raised);
  border: 1px solid var(--on-ink-line);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.reward-card:hover { background: rgba(255, 255, 255, 0.13); transform: translateY(-6px); }
.reward-card .s-eyebrow { color: var(--on-ink-faint); }
.reward-card h3 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 10px;
}
.reward-card p { color: var(--on-ink-soft); font-size: 0.95rem; }

/* Quotes */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 64px);
}
.quote {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.quote blockquote {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--ink);
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.quote figcaption span span { font-weight: 500; color: var(--gray-500); }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

/* FAQ */

.faq-list { margin-top: clamp(36px, 4vw, 56px); }
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 26px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: solid var(--gray-500);
  border-width: 0 2px 2px 0;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-list details p {
  padding: 0 26px 24px;
  font-size: 0.95rem;
  color: var(--gray-500);
  max-width: 60ch;
}

/* ---------- Finale ---------- */

.finale {
  background: var(--ink);
  padding: clamp(88px, 12vw, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finale-inner { position: relative; }

.house-draw {
  width: clamp(120px, 16vw, 180px);
  margin: 0 auto 36px;
  overflow: visible;
}
.house-draw .draw {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}
.finale.in .p1 { animation: draw 1.1s ease forwards 0.1s; }
.finale.in .p2 { animation: draw 1.1s ease forwards 0.5s; }
.finale.in .p3 { animation: draw 0.9s ease forwards 1.0s; }
.finale.in .p4 { animation: draw 0.9s ease forwards 1.3s; }
.finale.in .p5 { animation: draw 0.7s ease forwards 1.6s; }

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

.finale .lede { max-width: 32em; margin-left: auto; margin-right: auto; }

.finale-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.finale-android { font-size: 0.85rem; font-weight: 600; color: var(--on-ink-faint); }

/* ---------- Footer ---------- */

.footer { background: var(--paper); padding: 64px 0 32px; border-top: 1px solid var(--line); }
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand p { margin-top: 14px; font-size: 0.9rem; color: var(--gray-500); }
.footer-links { display: flex; gap: clamp(40px, 6vw, 96px); }
.footer-links .s-eyebrow { margin-bottom: 14px; }
.footer-links a {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--ink); }
.footer-legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer-legal p { font-size: 0.8rem; color: var(--gray-400); }

/* ---------- Photo treatment ----------
   Shared hook for all photography. Add a filter here (e.g. grayscale) to
   re-tone every photo on the site at once. */

.ph { }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .chip-float { animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; }
  .house-draw .draw { stroke-dashoffset: 0; animation: none !important; }
  .ring-fill { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-phone { margin-top: 24px; }
  .chip-a { left: 2%; }
  .chip-b { right: 2%; }

  .loop-grid, .steps, .reward-grid, .quote-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .found-card { width: min(400px, 94%); margin-top: -120px; transform: none; margin-right: auto; padding: 26px; }
  .chip-c { left: auto; right: -6px; }
  .loop-grid, .steps, .reward-grid, .quote-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .chip-a, .chip-b { display: none; }
  .found-facts { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { flex-direction: column; }
}
