/* Aurelo SEO — redesign */
:root {
  --bg: #f2ede4;
  --bg-2: #ebe5d8;
  --ink: #0d0d0d;
  --ink-2: #1a1a1a;
  --muted: #6b6258;
  --line: #d9d2c2;
  --line-2: #e7e1d2;
  --paper: #fbf8f1;
  --google-blue: #0099ff;
  --rank-green: #008e23;
  --rank-red: #d93025;
  --rank-amber: #f4b400;
  --shadow-1: 0 1px 0 rgba(13,13,13,0.04), 0 8px 24px -12px rgba(13,13,13,0.12);
  --shadow-2: 0 1px 0 rgba(13,13,13,0.04), 0 24px 60px -24px rgba(13,13,13,0.18);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', 'Inter Placeholder', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
}
.mono { font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-feature-settings: normal; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img { display: block; max-width: 100%; }

/* ----- layout ----- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ----- nav ----- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; }
.brand-logo { width: 28px; height: 28px; object-fit: contain; }
.brand-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center; font-weight: 700; font-size: 13px; letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: var(--ink); color: var(--bg); font-size: 13.5px; font-weight: 500; transition: transform .15s ease; }
.nav-cta:hover { transform: translateY(-1px); }
.nav-phone { font-size: 13.5px; color: var(--muted); }
@media (max-width: 820px) { .nav-links, .nav-phone { display: none; } }

/* ----- type ----- */
h1, h2, h3 { margin: 0; letter-spacing: -0.025em; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rank-green); box-shadow: 0 0 0 4px color-mix(in oklab, var(--rank-green) 18%, transparent); }
.h-display { font-size: clamp(44px, 6.4vw, 92px); line-height: 0.96; letter-spacing: -0.035em; font-weight: 600; }
.h-section { font-size: clamp(32px, 4vw, 56px); line-height: 1; letter-spacing: -0.03em; font-weight: 600; }
.h-section .accent { color: var(--google-blue); font-style: italic; font-weight: 500; }
.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); max-width: 56ch; line-height: 1.55; }
.kicker { font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }

/* ----- buttons ----- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 999px; font-weight: 500; font-size: 15px; transition: transform .18s ease, box-shadow .18s ease; }
.btn-primary { background: var(--ink); color: var(--bg); box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 6px 20px -10px rgba(0,0,0,.45); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--paper); }
.btn-arrow { width: 22px; height: 22px; border-radius: 50%; background: color-mix(in oklab, currentColor 12%, transparent); display: grid; place-items: center; font-size: 11px; }

/* ----- hero ----- */
.hero { padding: 40px 0 32px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px 56px;
  align-items: start;
}
.hero-left { display: flex; flex-direction: column; }
.hero-right { display: flex; flex-direction: column; gap: 16px; padding-top: 4px; }
.hero-right .tracker { width: 100%; }
.hero-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow-2);
}
.hero-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hero-cta-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-cta-bar .hero-cta-row { margin: 0; }
.hero-cta-bar .hero-trust { margin: 0; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta-bar { flex-direction: column; align-items: stretch; }
  .hero-cta-bar .hero-cta-row { justify-content: stretch; }
  .hero-cta-bar .hero-cta-row .btn { flex: 1; justify-content: center; }
}
.hero h1 .swap { display: inline-block; min-width: 6.5ch; color: var(--google-blue); font-style: italic; font-weight: 500; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 28px; align-items: center; }
.price-pill { display: inline-flex; align-items: baseline; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); }
.price-pill b { font-size: 22px; letter-spacing: -0.02em; }
.price-pill span { color: var(--muted); font-size: 13px; }
.guarantee {
  display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2);
}
.guarantee .seal {
  width: 24px; height: 24px; border-radius: 50%; background: var(--google-blue); color: white; display: grid; place-items: center;
  box-shadow: 0 0 0 5px color-mix(in oklab, var(--google-blue) 14%, transparent);
}
.hero-cta-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { margin-top: 28px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; color: var(--muted); font-size: 13px; }
.hero-trust .stars { color: #f4b400; letter-spacing: 1px; }

/* ----- rank tracker (hero right) ----- */
.tracker {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.tracker-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.tracker-head .label { display: flex; align-items: center; gap: 10px; }
.tracker-head .label .live { width: 7px; height: 7px; border-radius: 50%; background: var(--rank-green); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--rank-green) 60%, transparent); } 50% { box-shadow: 0 0 0 8px color-mix(in oklab, var(--rank-green) 0%, transparent); } }
.tracker-keyword { font-weight: 600; letter-spacing: -0.01em; }
.tracker-row {
  display: grid; grid-template-columns: 28px 1fr auto; gap: 14px; align-items: center;
  padding: 10px 12px; border-radius: 10px; transition: background .3s ease;
  border: 1px solid transparent;
}
.tracker-row.is-you { background: color-mix(in oklab, var(--google-blue) 8%, transparent); border-color: color-mix(in oklab, var(--google-blue) 30%, transparent); }
.tracker-rank { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--muted); font-size: 14px; }
.tracker-row.is-you .tracker-rank { color: var(--google-blue); }
.tracker-name { font-size: 14px; }
.tracker-row.is-you .tracker-name { font-weight: 600; }
.tracker-stars { font-size: 12px; color: var(--muted); }
.tracker-stars .num { font-weight: 600; color: var(--ink-2); }
.tracker-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 12.5px; color: var(--muted); }
.tracker-delta { display: inline-flex; align-items: center; gap: 6px; color: var(--rank-green); font-weight: 600; }
.tracker-delta svg { width: 12px; height: 12px; }

/* moving rank label */
.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 6px;
  font-size: 12px; font-weight: 700; color: white; background: var(--muted);
  font-variant-numeric: tabular-nums;
}
.rank-badge.top { background: var(--rank-green); }

/* ----- marquee ----- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; background: var(--bg-2); }
.marquee-track { display: flex; gap: 36px; animation: marq 38s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.marquee-item .pin { width: 14px; height: 14px; }
.marquee-item .city { color: var(--muted); }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----- niches ----- */
.niches { padding: 72px 0 56px; }
.niches-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
@media (max-width: 720px) { .niches-head { flex-direction: column; align-items: flex-start; } }
.niche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 920px) { .niche-grid { grid-template-columns: 1fr; } }
.niche {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.niche:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.niche-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--bg); display: grid; place-items: center; }
.niche h3 { font-size: 22px; letter-spacing: -0.02em; }
.niche .keywords { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.niche .kw { font-size: 12px; color: var(--muted); padding: 4px 8px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg); }
.niche .stat { display: flex; justify-content: space-between; align-items: baseline; margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line); }
.niche .stat .v { font-size: 28px; letter-spacing: -0.02em; font-weight: 600; }
.niche .stat .l { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ----- before/after map ----- */
.compare { padding: 72px 0 72px; }
.compare-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 820px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-side { padding: 28px; }
.compare-side + .compare-side { border-left: 1px solid var(--line); }
@media (max-width: 820px) { .compare-side + .compare-side { border-left: 0; border-top: 1px solid var(--line); } }
.compare-side .label { display: flex; align-items: center; gap: 10px; }
.compare-side .label .tag { font-size: 11px; font-weight: 600; padding: 4px 8px; border-radius: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
.compare-side.before .label .tag { background: color-mix(in oklab, var(--rank-red) 12%, transparent); color: var(--rank-red); }
.compare-side.after .label .tag { background: color-mix(in oklab, var(--rank-green) 14%, transparent); color: var(--rank-green); }
.compare-side h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin: 4px 0 0; }
.metric-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--line-2); }
.metric-row:last-child { border-bottom: 0; }
.metric-label { color: var(--muted); font-size: 13px; }
.metric-value { font-variant-numeric: tabular-nums; font-weight: 600; letter-spacing: -0.01em; }

/* google-style maps mock */
.maps-mock { aspect-ratio: 4/3; background:
  radial-gradient(60% 60% at 30% 30%, #e8efe6 0%, #dfe8db 60%, #d4dccc 100%);
  position: relative; border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.maps-mock::before, .maps-mock::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
}
.maps-mock::before {
  background:
    linear-gradient(115deg, transparent 47%, #cdd5c0 47.4%, #cdd5c0 48%, transparent 48.4%) 0 0/220px 220px,
    linear-gradient(25deg, transparent 47%, #cdd5c0 47.4%, #cdd5c0 48%, transparent 48.4%) 0 0/180px 180px,
    linear-gradient(70deg, transparent 47%, #d6dcc8 47.6%, #d6dcc8 48%, transparent 48.4%) 0 0/300px 300px;
  opacity: 0.9;
}
.maps-mock::after {
  background:
    radial-gradient(circle at 25% 75%, #c8d2bb 0 8%, transparent 8.4%),
    radial-gradient(circle at 75% 30%, #c8d2bb 0 6%, transparent 6.4%),
    radial-gradient(circle at 60% 80%, #c8d2bb 0 5%, transparent 5.4%);
  opacity: 0.7;
}
.maps-pin {
  position: absolute; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.18));
  z-index: 2;
}
.maps-pin .body {
  width: 28px; height: 28px; border-radius: 50% 50% 50% 0; background: var(--rank-red); transform: rotate(-45deg);
  display: grid; place-items: center; color: white; font-size: 11px; font-weight: 700;
}
.maps-pin .body span { transform: rotate(45deg); }
.maps-pin.you .body { background: var(--google-blue); }
.maps-pin.top .body { background: var(--rank-green); }
.maps-pin.buried { opacity: 0.55; }
.maps-pin .pulse { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--google-blue); opacity: 0; animation: ringpulse 2.2s ease-out infinite; }
@keyframes ringpulse { 0% { opacity: 0.5; transform: translateX(-50%) scale(0.6); } 100% { opacity: 0; transform: translateX(-50%) scale(2.6); } }

/* ----- process ----- */
.process { padding: 72px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 920px) { .process-grid { grid-template-columns: 1fr; } }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 920px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { padding: 24px; background: var(--bg); border: 1px solid var(--line); border-radius: 16px; }
.process-step h3 { font-size: 20px; letter-spacing: -0.02em; margin-top: 10px; }
.process-step p { margin: 10px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.step:last-child { border-bottom: 0; }
.step .num { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--muted); padding-top: 4px; }
.step h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 6px; transition: color .2s; }
.step.active h3 { color: var(--google-blue); }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; max-height: 0; overflow: hidden; transition: max-height .35s ease, margin .35s ease; }
.step.active p { max-height: 100px; margin-top: 4px; }

.dash-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 24px;
  box-shadow: var(--shadow-1);
  position: relative; overflow: hidden;
}
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.chip { font-size: 11px; padding: 4px 8px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--muted); }
.chip.live { color: var(--rank-green); border-color: color-mix(in oklab, var(--rank-green) 30%, transparent); background: color-mix(in oklab, var(--rank-green) 8%, transparent); }
.chart {
  height: 180px; position: relative;
}
.chart svg { width: 100%; height: 100%; }

/* ----- pricing ----- */
.pricing { padding: 72px 0; }
.price-card-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: stretch; }
@media (max-width: 920px) { .price-card-wrap { grid-template-columns: 1fr; } }
.price-card {
  background: var(--ink); color: var(--bg); border-radius: 24px; padding: 36px;
  position: relative; overflow: hidden;
}
.price-card .grid-bg {
  position: absolute; inset: 0; opacity: .14; pointer-events: none;
  background-image: linear-gradient(to right, rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 28px 28px; mask-image: radial-gradient(70% 60% at 70% 30%, black, transparent);
}
.price-card h3 { font-size: 20px; letter-spacing: -0.01em; }
.price-amt { font-size: clamp(56px, 7vw, 88px); letter-spacing: -0.04em; font-weight: 600; line-height: 1; margin-top: 18px; }
.price-amt sup { font-size: 0.4em; vertical-align: top; opacity: .7; margin-right: 4px; }
.price-amt small { font-size: 0.22em; color: rgba(255,255,255,.6); margin-left: 8px; font-weight: 400; letter-spacing: 0; }
.price-includes { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.price-includes li { display: flex; gap: 10px; font-size: 15px; color: rgba(255,255,255,.92); }
.price-includes li svg { flex: none; width: 18px; height: 18px; color: var(--google-blue); margin-top: 3px; }
.price-cta { margin-top: 28px; display: inline-flex; padding: 14px 22px; border-radius: 999px; background: var(--bg); color: var(--ink); font-weight: 500; }

.guarantee-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 36px;
  display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden;
}
.guarantee-seal-big {
  width: 72px; height: 72px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--google-blue), color-mix(in oklab, var(--google-blue) 60%, var(--ink)), var(--google-blue));
  display: grid; place-items: center; color: white;
  box-shadow: 0 8px 28px -10px color-mix(in oklab, var(--google-blue) 60%, transparent);
}
.guarantee-card h3 { font-size: 26px; letter-spacing: -0.02em; }
.guarantee-card p { color: var(--muted); margin: 0; }

/* ----- video ----- */
.video { padding: 56px 0 72px; }
.video-frame {
  position: relative; aspect-ratio: 16/9; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); background: #000; box-shadow: var(--shadow-2);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ----- proof ----- */
.proof { padding: 72px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 26px;
  display: flex; flex-direction: column; gap: 18px;
}
.testi-quote { font-size: 17px; line-height: 1.5; letter-spacing: -0.01em; }
.testi-foot { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px dashed var(--line); }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #c5b59a, #8b7c63); color: white; display: grid; place-items: center; font-weight: 600; font-size: 14px; flex: none; }
.testi-name { font-weight: 600; font-size: 14px; }
.testi-meta { font-size: 12px; color: var(--muted); }
.testi-rank { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.testi-rank .arr { color: var(--rank-green); font-weight: 600; }

/* ----- faq ----- */
.faq { padding: 72px 0; }
.faq-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; }
@media (max-width: 820px) { .faq-wrap { grid-template-columns: 1fr; gap: 28px; } }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; gap: 24px; }
.faq-q h4 { font-size: 19px; letter-spacing: -0.01em; font-weight: 500; }
.faq-q .toggle { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .25s, background .2s; flex: none; }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); background: var(--ink); color: var(--bg); border-color: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; color: var(--muted); }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 22px; }

/* ----- final CTA ----- */
.final {
  padding: 80px 0; background: var(--ink); color: var(--bg); position: relative; overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(60% 80% at 50% 30%, black, transparent);
}
.final-inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 920px) { .final-inner { grid-template-columns: 1fr; } }
.final h2 { font-size: clamp(40px, 5.5vw, 80px); letter-spacing: -0.035em; line-height: 1; font-weight: 600; }
.final h2 .accent { color: var(--google-blue); font-style: italic; font-weight: 500; }
.final p { color: rgba(255,255,255,.7); }

.audit-form { /* legacy, no longer rendered */ display: none; }

/* ===== page blur when modal open ===== */
.page-blur {
  filter: blur(8px) saturate(0.95);
  transform: scale(0.995);
  transition: filter .35s ease, transform .35s ease;
  pointer-events: none;
  user-select: none;
}

/* ===== audit modal ===== */
.audit-modal {
  position: fixed; inset: 0; z-index: 200;
  background: color-mix(in oklab, var(--ink) 38%, transparent);
  backdrop-filter: blur(2px);
  display: grid; place-items: center;
  padding: 24px;
  animation: bgIn .25s ease both;
}
.audit-modal[hidden] { display: none; }
@keyframes bgIn { from { opacity: 0; } to { opacity: 1; } }
.audit-modal-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  width: min(560px, 100%);
  max-height: 92vh;
  overflow: auto;
  padding: 36px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
  animation: cardIn .35s cubic-bezier(.16,1.2,.3,1) both;
}
.audit-modal-wide {
  width: min(960px, 100%);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.audit-video-side {
  background: var(--ink);
  color: white;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.audit-form-side {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.audit-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.audit-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 820px) {
  .audit-modal-wide { grid-template-columns: 1fr; max-height: 92vh; overflow: auto; }
  .audit-video-side, .audit-form-side { padding: 28px; }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.92); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}
.audit-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg); color: var(--ink-2);
  font-size: 22px; line-height: 1;
  display: grid; place-items: center;
  border: 1px solid var(--line); cursor: pointer;
  transition: background .15s, transform .15s;
  z-index: 10;
}
.audit-close:hover { background: var(--ink); color: var(--bg); transform: rotate(90deg); }

.audit-form-light { display: grid; gap: 12px; }
.audit-form-light .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .audit-form-light .row { grid-template-columns: 1fr; } }
.audit-form-light input {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  transition: border .2s, background .2s, box-shadow .2s;
}
.audit-form-light input::placeholder { color: var(--muted); }
.audit-form-light input:focus {
  outline: none;
  border-color: var(--google-blue);
  background: white;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--google-blue) 14%, transparent);
}
.audit-submit {
  background: var(--ink);
  color: var(--bg);
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .15s ease, filter .15s ease;
}
.audit-submit:hover { transform: translateY(-1px); }

/* ----- footer ----- */
.footer { padding: 48px 0; background: var(--ink); color: rgba(255,255,255,.6); border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer a { color: rgba(255,255,255,.85); }
.footer a:hover { color: white; }

/* utility */
.divider { height: 1px; background: var(--line); margin: 0; }
.fade-in { opacity: 0; transform: translateY(8px); animation: fade .8s ease forwards; }
@keyframes fade { to { opacity: 1; transform: none; } }

/* count up tab nums */
.tabular { font-variant-numeric: tabular-nums; }

/* aurelo logo wave */
.brand-mark svg { width: 16px; height: 16px; }

/* tiny check */
.svg-check { width: 14px; height: 14px; }

