/* Vehicle Information App — Premium Landing
   Design language: confident type, deliberate whitespace, edge-to-edge sections,
   subtle gradients, refined shadows, system-font fast paint. */

/* ---------- Tokens ---------- */
:root {
  --brand: #1A6BFF;
  --brand-2: #6B5BFF;
  --brand-dark: #0E47A6;
  --brand-soft: #EDF2FE;
  --brand-tint: #F3F6FF;
  --ink: #0A1729;
  --ink-2: #1B2A47;
  --muted: #5A6A85;
  --muted-2: #8A98AE;
  --line: #E5EAF2;
  --line-2: #EEF2F8;
  --bg: #FFFFFF;
  --bg-tint: #F7F9FC;
  --bg-deep: #0A1729;
  --gold: #FFB800;
  --success: #16A34A;

  --gradient-brand: linear-gradient(135deg, #1A6BFF 0%, #6B5BFF 100%);
  --gradient-soft: linear-gradient(180deg, #F7F9FC 0%, #FFFFFF 100%);

  --shadow-1: 0 1px 2px rgba(10, 23, 41, .04), 0 1px 3px rgba(10, 23, 41, .06);
  --shadow-2: 0 4px 12px rgba(10, 23, 41, .06), 0 12px 32px rgba(10, 23, 41, .08);
  --shadow-3: 0 24px 60px rgba(10, 23, 41, .14), 0 60px 120px rgba(10, 23, 41, .10);
  --shadow-brand: 0 12px 32px rgba(26, 107, 255, .25);

  --r-xs: 8px;
  --r-sm: 12px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --container: 1200px;
  --pad: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-dark); }
button { font: inherit; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 0;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-1);
}
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: var(--shadow-2); color: #fff; }
.btn-brand {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-brand:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(26, 107, 255, .35); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-tint); color: var(--ink); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.play-badge {
  display: inline-flex;
  transition: transform .15s ease, filter .15s ease;
  border-radius: 12px;
}
.play-badge:hover { transform: translateY(-2px); filter: drop-shadow(0 12px 24px rgba(0,0,0,.18)); }
.play-badge img, .play-badge svg { height: 56px; width: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand img { width: 36px; height: 36px; border-radius: 9px; box-shadow: var(--shadow-1); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta { margin-left: auto; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 10px;
}
.nav-toggle:hover { background: var(--bg-tint); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px var(--pad) 20px;
    box-shadow: var(--shadow-2);
  }
  .nav.open .nav-links li { width: 100%; }
  .nav.open .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-2);
    font-size: 16px;
  }
  .nav.open .nav-links li:last-child a { border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 75% -8%, rgba(107, 91, 255, .12) 0%, transparent 60%),
    radial-gradient(800px 400px at 10% 0%, rgba(26, 107, 255, .10) 0%, transparent 55%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .01em;
  border: 1px solid rgba(26, 107, 255, .14);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 3px rgba(26, 107, 255, .15);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 18px 0 18px;
  font-weight: 800;
  color: var(--ink);
}
.hero h1 .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero .trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
}
.trust-item .rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-item .rating svg { flex: 0 0 auto; transform: translateY(-1px); }
.trust-item span { font-size: 13px; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 1px; }

/* Hero phones — staggered */
.hero-art {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: .12;
  filter: blur(60px);
  z-index: 0;
}
.phone {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  width: 280px;
  aspect-ratio: 1080 / 1920;
  background: #fff;
  z-index: 1;
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.phone-stack .phone:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-78%, -50%) rotate(-6deg);
  width: 232px;
  opacity: .9;
  z-index: 1;
}
.phone-stack .phone:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.phone-stack .phone:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-22%, -50%) rotate(6deg);
  width: 232px;
  opacity: .9;
  z-index: 1;
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  z-index: 4;
  border: 1px solid var(--line-2);
}
.float-card .ico {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
}
.float-card.f1 { top: 12%; left: -8%; }
.float-card.f1 .ico { background: var(--success); }
.float-card.f2 { bottom: 14%; right: -6%; }
.float-card.f2 .ico { background: var(--brand); }

@media (max-width: 880px) {
  .hero { padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero .trust { justify-content: center; gap: 24px; }
  .hero-art { height: 540px; }
  .hero-art::before { width: 320px; height: 320px; }
  .phone-stack .phone:nth-child(1),
  .phone-stack .phone:nth-child(3) { display: none; }
  .float-card.f1 { left: 4%; top: 10%; }
  .float-card.f2 { right: 4%; bottom: 12%; }
}
@media (max-width: 480px) {
  :root { --pad: 18px; }
  .hero { padding: 32px 0 24px; }
  .hero h1 { font-size: 1.85rem; line-height: 1.15; letter-spacing: -0.02em; }
  .hero .lead { font-size: 16px; }
  .float-card { padding: 8px 10px; font-size: 11px; }
  .float-card .ico { width: 22px; height: 22px; }
  .float-card .ico svg { width: 12px; height: 12px; }
  .hero .trust { gap: 16px; }
  .trust-item strong { font-size: 18px; }
  .section-head h2 { font-size: 1.6rem; }
  .stats { padding: 48px 0; }
  .feature, .review { padding: 24px; }
  .nav { height: 60px; }
  .nav.open .nav-links { top: 60px; }
}

/* ---------- Section base ---------- */
section { padding: 110px 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-weight: 800;
  color: var(--ink);
}
.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
  line-height: 1.55;
}
.section-tint { background: var(--bg-tint); }
.section-dark { background: var(--bg-deep); color: #fff; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,.7); }

@media (max-width: 880px) {
  section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ---------- Stats band ---------- */
.stats {
  background: var(--bg-deep);
  color: #fff;
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #99B8FF 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* ---------- Coverage / state pills ---------- */
.state-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}
.state-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: transform .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.state-pills .pill:hover {
  border-color: rgba(26, 107, 255, .35);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.state-pills .pill code {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", monospace;
  font-weight: 700;
  font-size: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  padding: 2px 6px;
  border-radius: 5px;
  letter-spacing: 0.04em;
}
.state-pills .pill.more {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.state-pills .pill.more:hover { color: #fff; transform: translateY(-2px); }

/* Brand strip */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: 14px;
}
.brands-strip span {
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted-2);
  text-transform: uppercase;
  font-size: 12px;
}
.brands-strip strong {
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Hindi tagline */
.devanagari {
  font-family: "Hind", "Noto Sans Devanagari", "Mangal", system-ui, sans-serif;
  font-feature-settings: "kern";
}

/* Made-in-India footer chip */
.made-in {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 153, 51, .15), rgba(255, 255, 255, 0), rgba(19, 136, 8, .15));
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}
.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(26, 107, 255, .2);
}
.feature .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: transform .2s ease;
}
.feature:hover .ico { transform: scale(1.05) rotate(-3deg); }
.feature .ico svg { width: 24px; height: 24px; }
.feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 20%, var(--line) 80%, transparent 100%);
  z-index: 0;
}
.step {
  position: relative;
  text-align: center;
  background: var(--bg);
  padding: 0 12px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--brand);
  color: var(--brand);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--bg);
}
.step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
}

/* ---------- Screenshots (full-bleed scroller) ---------- */
.shots-section { overflow: hidden; padding-bottom: 110px; }
.shots-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 16px 24px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shots-rail::-webkit-scrollbar { display: none; }
.shot {
  flex: 0 0 auto;
  width: 260px;
  aspect-ratio: 1080 / 1920;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  scroll-snap-align: center;
  box-shadow: var(--shadow-2);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--line-2);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.review .stars { font-size: 16px; margin-bottom: 12px; display: block; }
.review p {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}
.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.review .who-meta strong { display: block; font-size: 14px; color: var(--ink); }
.review .who-meta span { font-size: 12px; color: var(--muted); }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list details {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 4px 24px;
  margin-bottom: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-list details[open] { border-color: rgba(26, 107, 255, .25); box-shadow: var(--shadow-1); }
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A6BFF' stroke-width='2.5' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  transition: transform .25s ease;
}
.faq-list details[open] summary::after { transform: rotate(135deg); }
.faq-list .answer {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Disclaimer + Contact ---------- */
.disclaimer {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}
.disclaimer .card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}
.disclaimer h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.disclaimer p { color: var(--muted); margin: 0 0 12px; font-size: 15px; line-height: 1.6; }
.contact-card {
  background: var(--gradient-brand) !important;
  border: 0 !important;
  color: #fff;
}
.contact-card h3 { color: #fff; }
.contact-card p { color: rgba(255,255,255,.85); }
.contact-card a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.contact-card a:hover { border-bottom-color: #fff; color: #fff; }
@media (max-width: 720px) { .disclaimer { grid-template-columns: 1fr; } }

/* ---------- Final CTA ---------- */
.cta-strip {
  position: relative;
  background: var(--bg-deep);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(107, 91, 255, .35) 0%, transparent 60%),
    radial-gradient(600px 300px at 50% 100%, rgba(26, 107, 255, .25) 0%, transparent 60%);
  z-index: -1;
}
.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: #fff;
}
.cta-strip p {
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 18px;
}
.cta-strip .play-badge img,
.cta-strip .play-badge svg { height: 64px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 320px;
}
.foot-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  margin: 0 0 16px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col a {
  color: var(--muted);
  font-size: 14px;
}
.foot-col a:hover { color: var(--brand); }
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted-2);
  gap: 12px;
}
@media (max-width: 880px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px var(--pad) 96px;
}
.legal h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0 0 8px;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 {
  font-size: 20px;
  margin: 36px 0 10px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.legal p, .legal li { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.legal ul { padding-left: 22px; }

.notfound {
  text-align: center;
  padding: 140px 20px;
}
.notfound .num {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  line-height: 1;
}
.notfound p { color: var(--muted); margin: 16px 0 28px; font-size: 18px; }

/* ---------- pSEO pages ---------- */
.page-hero {
  padding: 56px 0 32px;
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(107, 91, 255, .10) 0%, transparent 60%),
    radial-gradient(700px 300px at 10% 0%, rgba(26, 107, 255, .08) 0%, transparent 55%);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 14px 0 14px;
  font-weight: 800;
  color: var(--ink);
}
.page-hero .lead { font-size: 17px; color: var(--muted); max-width: 760px; margin: 0 0 24px; }
.page-hero .cta-row { gap: 12px; }

.bread {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.bread a { color: var(--muted); }
.bread a:hover { color: var(--brand); }
.bread span { margin: 0 8px; color: var(--muted-2); }
.bread strong { color: var(--ink); font-weight: 600; }

/* State directory grid (used on /rto/, /rto-code/) */
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.state-link {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.state-link:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 107, 255, .3);
  box-shadow: var(--shadow-2);
  text-decoration: none;
}
.state-link-code {
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", Consolas, monospace;
  font-weight: 700;
  font-size: 11px;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.state-link-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-top: 4px; }
.state-link-meta { font-size: 12px; color: var(--muted); }

/* RTO grid (state page + RTO detail neighbours) */
.rto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.rto-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.rto-card:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 107, 255, .3);
  box-shadow: var(--shadow-1);
  text-decoration: none;
}
.rto-card-code {
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", Consolas, monospace;
  font-weight: 700;
  font-size: 13px;
  color: var(--brand);
  letter-spacing: 0.03em;
}
.rto-card-city { font-size: 14px; color: var(--ink); font-weight: 500; }

/* RTO detail card (enriched info — address, hours, official link) */
.rto-detail-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-top: 16px;
  overflow: hidden;
}
.rto-detail-row {
  display: flex;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line-2);
  align-items: flex-start;
}
.rto-detail-row:last-child { border-bottom: 0; }
.rto-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.rto-detail-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.rto-detail-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.rto-detail-body strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.rto-detail-body strong a { color: var(--brand); }
.rto-detail-link {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  margin-top: 6px;
}
.rto-detail-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 480px) {
  .rto-detail-row { padding: 18px 20px; gap: 14px; }
  .rto-detail-icon { width: 36px; height: 36px; }
  .rto-detail-body strong { font-size: 15px; }
}

/* RTO info quick card */
.rto-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.rto-info-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rto-info-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.rto-info-value { font-size: 18px; color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
.rto-info-value a { color: var(--ink); }
.rto-info-value a:hover { color: var(--brand); }

/* Brand grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.brand-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.brand-card:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 107, 255, .3);
  box-shadow: var(--shadow-1);
  text-decoration: none;
}
.brand-card h3 { margin: 0; font-size: 16px; color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
.brand-card p { margin: 0; font-size: 13px; color: var(--muted); }

/* Model strip */
.model-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.model-strip .pill {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  transition: border-color .15s ease;
}
.model-strip .pill:hover { border-color: var(--brand); color: var(--brand); }

/* Guide layout */
.guide-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.guide-toc {
  position: sticky;
  top: 88px;
  background: var(--bg-tint);
  border-radius: var(--r);
  padding: 20px 22px;
  font-size: 14px;
}
.guide-toc strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 12px;
}
.guide-toc ol {
  list-style: decimal inside;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}
.guide-toc ol li::marker { color: var(--brand); font-weight: 700; }
.guide-toc a { color: var(--ink-2); }
.guide-toc a:hover { color: var(--brand); }

.guide-content { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.guide-content h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 36px 0 12px;
  scroll-margin-top: 88px;
}
.guide-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--ink);
}
.guide-content p { margin: 0 0 16px; }
.guide-content ul { padding-left: 22px; margin: 0 0 16px; }
.guide-content ul li { margin-bottom: 6px; }

.inline-cta {
  background: linear-gradient(135deg, var(--brand-soft) 0%, #FFFFFF 100%);
  border: 1px solid rgba(26, 107, 255, .15);
  border-radius: var(--r-lg);
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}
.inline-cta strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.inline-cta p { color: var(--muted); margin-bottom: 14px !important; font-size: 14px; }
.inline-cta .play-badge { margin: 0 auto; }

@media (max-width: 880px) {
  .guide-body { grid-template-columns: 1fr; gap: 24px; }
  .guide-toc { position: static; }
}

/* Prose for misc content */
.prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.prose p { margin: 0 0 16px; }
.prose h3 { font-size: 18px; margin: 24px 0 10px; color: var(--ink); }
.prose ul { padding-left: 22px; margin: 0 0 16px; }
.prose ul li { margin-bottom: 6px; }
.prose code {
  background: var(--brand-soft);
  color: var(--brand);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "SF Mono", Consolas, monospace;
  font-size: 0.9em;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
