/* Hauserman Listing Guard: shared styles */
:root {
  --page: #fbfbfd;
  --white: #ffffff;
  --mist: #f5f5f7;
  --ink: #1d1d1f;
  --ink-2: #424245;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --blue: #0a47c2;
  --blue-deep: #0a2f7a;
  --blue-soft: #e8efff;
  --flag: #c4302b;
  --ok: #1a7f4b;
  --grad: linear-gradient(100deg, #0a2f7a 0%, #1d5cf0 55%, #3d9bff 100%);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(.22, .8, .2, 1);
  --nav-h: 52px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--page);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid #2f6bff;
  outline-offset: 3px;
  border-radius: 8px;
}
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
}
.skip:focus { top: 10px; text-decoration: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { width: min(1080px, 100% - 44px); margin-inline: auto; }
.wrap-wide { width: min(1240px, 100% - 32px); margin-inline: auto; }
.center { text-align: center; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--muted);
  margin-bottom: 14px;
}
.eyebrow.blue { color: var(--blue); }
.display {
  font-size: clamp(48px, 9vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.headline {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.title {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.lede {
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  font-weight: 500;
}
.muted { color: var(--muted); }
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.mono { font-family: var(--mono); letter-spacing: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 48px; padding: 12px 24px;
  border-radius: 980px; border: 0;
  font: 500 17px/1.2 var(--font); letter-spacing: -0.01em;
  cursor: pointer; transition: background-color .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #0839a0; }
.btn-primary:active { transform: scale(.98); }
.link-arrow { font-size: 17px; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; min-height: 48px; }
.link-arrow::after { content: "\203A"; font-size: 1.25em; line-height: 1; transform: translateY(-1px); transition: transform .2s var(--ease); }
.link-arrow:hover::after { transform: translate(3px, -1px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; }
.center .actions, .actions.center { justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(251, 251, 253, .72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.nav .wrap-wide { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 600; font-size: 16px; letter-spacing: -0.02em; white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand-mark { width: 24px; height: 24px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-2); font-size: 13px; font-weight: 400; letter-spacing: -0.005em; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-cta {
  background: var(--blue); color: #fff !important; font-size: 13px !important; font-weight: 500 !important;
  padding: 6px 14px; border-radius: 980px; white-space: nowrap;
}
.nav-cta:hover { background: #0839a0; }
.menu-btn {
  display: none; width: 44px; height: 44px; margin-right: -10px;
  background: none; border: 0; cursor: pointer; border-radius: 10px; color: var(--ink);
}
.menu-btn span { display: block; width: 18px; height: 1.5px; background: currentColor; margin: 5px auto; transition: transform .3s var(--ease), opacity .2s; }
.nav.open .menu-btn span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav.open .menu-btn span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: clamp(96px, 13vw, 160px) 0; }
.section.tight { padding: clamp(72px, 9vw, 112px) 0; }
.bg-white { background: var(--white); }
.bg-mist { background: var(--mist); }
.section-head { max-width: 820px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; }
.section-head .lede { margin-top: 20px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(64px, 9vw, 112px) 0 0; text-align: center; overflow: hidden; background: var(--page); }
.hero .eyebrow { font-size: clamp(17px, 2vw, 21px); color: var(--blue); }
.hero .display { margin: 0 auto; }
.display .line, .headline .line { display: block; }
.display .grad { padding-bottom: .06em; }
.hero .lede { max-width: 640px; margin: 26px auto 0; }
.hero .actions { margin-top: 32px; justify-content: center; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 980px;
  background: var(--white); border: 1px solid rgba(0,0,0,.08);
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); display: block; }

.stage {
  position: relative; margin-top: clamp(48px, 7vw, 80px);
  height: clamp(560px, 68vw, 720px);
  display: flex; justify-content: center;
}
.stage::before {
  content: ""; position: absolute; left: 50%; top: 18%;
  width: min(900px, 140vw); height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(29,92,240,.16), rgba(29,92,240,0) 70%);
  pointer-events: none;
}

/* ---------- Phone (signature) ---------- */
.phone {
  position: relative; z-index: 2;
  width: 330px; height: 680px; flex: none;
  border-radius: 56px; padding: 12px;
  background: linear-gradient(145deg, #e9e9ee, #c9cad1 45%, #f4f4f7 60%, #bfc0c8);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.08),
    inset 0 0 0 1.5px rgba(255,255,255,.7),
    0 50px 90px -30px rgba(10, 30, 80, .35),
    0 30px 40px -30px rgba(0,0,0,.3);
}
.screen {
  position: relative; height: 100%; border-radius: 45px; overflow: hidden;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
}
.island {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 29px; border-radius: 20px; background: #0b0b0c; z-index: 5;
}
.statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px 0 32px; height: 50px; font-size: 14px; font-weight: 600; color: var(--ink);
}
.statusbar .sb-icons { display: flex; gap: 5px; align-items: center; }
.statusbar .sb-icons b { display: block; width: 22px; height: 11px; border: 1.5px solid var(--ink); border-radius: 3.5px; position: relative; }
.statusbar .sb-icons b::after { content: ""; position: absolute; inset: 1.5px 5px 1.5px 1.5px; background: var(--ink); border-radius: 1px; }
.statusbar .sb-icons s { display: block; width: 16px; height: 10px; background: linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 4.5px, var(--ink) 4.5px 7.5px, transparent 7.5px 9px, var(--ink) 9px 12px, transparent 12px 13.5px, var(--ink) 13.5px); clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.app-bar {
  display: flex; align-items: center; gap: 10px; padding: 10px 18px 12px;
  font-size: 13px; color: var(--muted);
}
.app-bar .search {
  flex: 1; height: 34px; border-radius: 10px; background: var(--mist);
  display: flex; align-items: center; padding: 0 12px; gap: 8px; color: var(--muted); font-size: 13px;
}
.app-bar .search svg { width: 14px; height: 14px; }
.listing { position: relative; padding: 0 18px; transition: opacity .6s var(--ease), filter .6s var(--ease); }
.listing-img {
  position: relative; height: 290px; border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, #eef1f7, #dfe4ee);
  display: flex; align-items: center; justify-content: center;
}
.listing-img svg { width: 150px; height: auto; }
.plat-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.9); border-radius: 980px; padding: 4px 10px;
  font-size: 11px; font-weight: 600; color: var(--ink-2);
}
.scanline {
  position: absolute; left: 0; right: 0; top: 0; height: 90px;
  background: linear-gradient(180deg, rgba(47,107,255,0) 0%, rgba(47,107,255,.12) 70%, rgba(47,107,255,.55) 98%, rgba(47,107,255,0) 100%);
  border-bottom: 2px solid #2f6bff;
  box-shadow: 0 6px 18px rgba(47,107,255,.45);
  transform: translateY(-100px); opacity: 0;
}
.box-hit {
  position: absolute; inset: 42px 70px 44px 70px;
  border: 2px solid #2f6bff; border-radius: 14px; opacity: 0; transform: scale(1.12);
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.box-hit::before, .box-hit::after {
  content: ""; position: absolute; width: 8px; height: 8px; background: #fff; border: 2px solid #2f6bff; border-radius: 2px;
}
.box-hit::before { top: -6px; left: -6px; }
.box-hit::after { bottom: -6px; right: -6px; }
.listing-meta { padding: 14px 4px 0; }
.listing-meta .l-title { font-size: 15px; font-weight: 600; line-height: 1.3; letter-spacing: -0.02em; }
.listing-meta .l-seller { font-size: 12px; color: var(--muted); margin-top: 4px; }
.listing-meta .l-price { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
.listing-meta .l-price b { font-size: 20px; letter-spacing: -0.02em; }
.listing-meta .l-price s { font-size: 13px; color: var(--muted); }
.buy { margin: 14px 4px 0; height: 42px; border-radius: 12px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; }

.hud {
  position: absolute; left: 14px; right: 14px; bottom: 16px; z-index: 4;
  border-radius: 22px; padding: 14px 16px;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(18px) saturate(180%); backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 12px 30px -8px rgba(10,30,80,.3), 0 0 0 1px rgba(0,0,0,.06);
  transform: translateY(130%); transition: transform .6s var(--ease);
}
.hud-row { display: flex; align-items: center; gap: 12px; }
.hud-icon {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  display: flex; align-items: center; justify-content: center; color: #fff; background: var(--blue);
  transition: background-color .4s;
}
.hud-icon svg { width: 18px; height: 18px; }
.hud-text { min-width: 0; }
.hud-k { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.hud-v { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; white-space: nowrap; }
.hud-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 12px; }
.hud-steps i { display: block; height: 3px; border-radius: 2px; background: #e3e3e8; transition: background-color .4s; }

/* phone states: scan -> flag -> filed -> removed */
.phone[data-state="scan"] .scanline { animation: scan 1.8s var(--ease) infinite; }
.phone[data-state="scan"] .hud,
.phone[data-state="flag"] .hud,
.phone[data-state="filed"] .hud,
.phone[data-state="removed"] .hud { transform: none; }
.phone[data-state="flag"] .box-hit,
.phone[data-state="filed"] .box-hit { opacity: 1; transform: none; }
.phone[data-state="flag"] .hud-icon { background: var(--flag); }
.phone[data-state="filed"] .hud-icon { background: var(--blue-deep); }
.phone[data-state="removed"] .hud-icon { background: var(--ok); }
.phone[data-state="removed"] .listing { opacity: .28; filter: grayscale(1) blur(1.5px); }
.phone .hud-steps i:nth-child(1) { background: #2f6bff; }
.phone:is([data-state="flag"], [data-state="filed"], [data-state="removed"]) .hud-steps i:nth-child(2),
.phone:is([data-state="filed"], [data-state="removed"]) .hud-steps i:nth-child(3),
.phone[data-state="removed"] .hud-steps i:nth-child(4) { background: #2f6bff; }
.removed-stamp {
  position: absolute; top: 200px; left: 50%; z-index: 3;
  transform: translate(-50%, 10px) scale(.9); opacity: 0;
  padding: 10px 18px; border-radius: 980px; background: var(--white);
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.25), 0 0 0 1px rgba(0,0,0,.06);
  font-size: 14px; font-weight: 600; color: var(--ok); white-space: nowrap;
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.phone[data-state="removed"] .removed-stamp { opacity: 1; transform: translate(-50%, 0) scale(1); }

@keyframes scan {
  0% { transform: translateY(-100px); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateY(290px); opacity: 0; }
}

/* floating cards beside phone */
.float {
  position: absolute; z-index: 3; top: 22%;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-radius: 20px; padding: 16px 18px; text-align: left;
  box-shadow: 0 20px 50px -20px rgba(10,30,80,.3), 0 0 0 1px rgba(0,0,0,.05);
  width: 230px;
}
.float.left { left: calc(50% - 400px); }
.float.right { right: calc(50% - 400px); top: 46%; }
.float .f-k { font-size: 12px; color: var(--muted); font-weight: 500; }
.float .f-v { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; margin-top: 2px; }
.float .f-list { margin-top: 10px; display: grid; gap: 6px; }
.float .f-list li { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13px; color: var(--ink-2); }
.float .f-list li span:last-child { font-family: var(--mono); font-size: 11px; color: var(--blue); }

/* ---------- Statement ---------- */
.statement { text-align: center; }
.statement .headline { max-width: 14ch; margin: 0 auto; }
.statement .line { display: block; }
.statement .ghost { display: inline-block; transition: opacity 1.4s var(--ease) .5s, filter 1.4s var(--ease) .5s; }
.statement.in .ghost { opacity: .14; filter: blur(3px); }
.statement .lede { max-width: 680px; margin: 34px auto 0; }

/* ---------- Problem list ---------- */
.problems { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.problem {
  background: var(--white); border-radius: var(--radius-lg); padding: 34px 34px 36px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}
.problem h3 { font-size: 24px; letter-spacing: -0.03em; line-height: 1.15; }
.problem p { margin-top: 12px; color: var(--muted); font-size: 17px; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.tile {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl); background: var(--white);
  padding: 40px; min-height: 340px;
  display: flex; flex-direction: column;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}
.bg-white .tile { background: var(--mist); box-shadow: none; }
.tile .t-k { font-size: 17px; font-weight: 600; color: var(--muted); letter-spacing: -0.01em; }
.tile h3 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.08; letter-spacing: -0.035em; margin-top: 8px; }
.tile p { margin-top: 14px; color: var(--muted); font-size: 17px; max-width: 42ch; }
.span-4 { grid-column: span 4; }
.span-3 { grid-column: span 3; }
.span-2 { grid-column: span 2; }
.span-6 { grid-column: span 6; }
.tile-dark { background: #0b0d12 !important; color: #f5f5f7; }
.tile-dark .t-k { color: #8fb3ff; }
.tile-dark p { color: #a1a1a6; }
.tile-dark .big-quote {
  margin-top: auto; padding-top: 30px;
  font-size: clamp(56px, 7vw, 88px); line-height: .95; letter-spacing: -0.05em; font-weight: 700;
  background: linear-gradient(100deg, #8fb3ff, #ffffff 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* compare card */
.compare {
  margin-top: auto; padding-top: 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center;
}
.cmp-card { background: var(--white); border-radius: 20px; padding: 12px; box-shadow: 0 10px 30px -12px rgba(10,30,80,.18), 0 0 0 1px rgba(0,0,0,.05); }
.bg-white .cmp-card { background: var(--white); }
.cmp-img { height: 150px; border-radius: 12px; background: linear-gradient(160deg, #eef1f7, #dfe4ee); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.cmp-img svg { width: 70px; }
.cmp-card figcaption { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; font-size: 13px; font-weight: 600; gap: 6px; }
.cmp-card figcaption span { font-size: 11px; font-weight: 500; color: var(--muted); }
.cmp-card.copy .cmp-img { outline: 2px solid #2f6bff; outline-offset: -2px; }
.cmp-vs { font-size: 13px; font-weight: 600; color: var(--muted); }
.meter { margin-top: 18px; display: grid; gap: 10px; }
.meter-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 12px; align-items: center; font-size: 13px; }
.meter-row .m-label { color: var(--ink-2); font-weight: 500; }
.meter-row .m-val { font-family: var(--mono); font-size: 12px; color: var(--blue); min-width: 60px; text-align: right; }
.bar { height: 6px; border-radius: 6px; background: #e3e3e8; overflow: hidden; }
.bar b { display: block; height: 100%; width: 0; border-radius: 6px; background: var(--grad); transition: width 1.6s var(--ease) .3s; }
.in .bar b { width: var(--w); }

/* platform chips tile */
.plat-stack { margin-top: auto; padding-top: 28px; display: grid; gap: 10px; }
.plat {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border-radius: 14px; padding: 14px 16px;
  font-weight: 600; font-size: 16px; letter-spacing: -0.02em;
  box-shadow: 0 0 0 1px rgba(0,0,0,.05);
}
.plat small { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.plat small::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2fbf71; box-shadow: 0 0 0 3px rgba(47,191,113,.18); }

/* timeline tile */
.track { margin-top: auto; padding-top: 28px; display: grid; gap: 0; }
.track li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start; position: relative; padding-bottom: 16px; }
.track li:last-child { padding-bottom: 0; }
.track li::before { content: ""; width: 12px; height: 12px; border-radius: 50%; margin: 5px 5px 0; background: var(--white); border: 2px solid #2f6bff; }
.track li.done::before { background: #2f6bff; }
.track li::after { content: ""; position: absolute; left: 10px; top: 20px; bottom: 0; width: 2px; background: #d5defa; }
.track li:last-child::after { display: none; }
.track b { font-size: 15px; letter-spacing: -0.02em; display: block; }
.track span { font-size: 13px; color: var(--muted); }

/* report tile */
.report { margin-top: auto; padding-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.report div { background: var(--white); border-radius: 14px; padding: 14px 12px; box-shadow: 0 0 0 1px rgba(0,0,0,.05); }
.report b { display: block; height: 42px; border-radius: 8px; background: var(--blue-soft); position: relative; overflow: hidden; }
.report b::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: var(--h); background: var(--grad); border-radius: 8px; }
.report span { display: block; font-size: 12px; font-weight: 600; margin-top: 8px; color: var(--ink-2); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step {
  position: relative; border-radius: var(--radius-lg); background: var(--white); padding: 34px 30px 32px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}
.bg-white .step { background: var(--mist); box-shadow: none; }
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 15px; font-weight: 600; color: var(--blue); background: var(--blue-soft);
}
.step h3 { font-size: 24px; letter-spacing: -0.03em; margin-top: 22px; line-height: 1.15; }
.step p { margin-top: 10px; color: var(--muted); font-size: 16px; }
.rail { position: relative; height: 2px; background: #dfe3ec; border-radius: 2px; margin: 0 auto 40px; max-width: 900px; overflow: hidden; }
.rail b { position: absolute; inset: 0; transform-origin: left; transform: scaleX(0); background: var(--grad); transition: transform 2.2s var(--ease) .2s; }
.rail.in b { transform: scaleX(1); }

/* ---------- Human review ---------- */
.human .stack { display: grid; gap: clamp(14px, 2vw, 26px); text-align: center; }
.human .stack p {
  font-size: clamp(34px, 6.2vw, 80px); line-height: 1.04; letter-spacing: -0.045em; font-weight: 700;
}
.human .stack p.dim { color: #b8b8bf; }
.human .stack .small {
  font-size: clamp(19px, 2.1vw, 24px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.45;
  color: var(--ink-2); max-width: 720px; margin: 22px auto 0;
}
.filed { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: clamp(56px, 7vw, 88px); }
.filed-col { border-radius: var(--radius-lg); padding: 34px; background: var(--mist); }
.filed-col h3 { font-size: 21px; letter-spacing: -0.025em; margin-bottom: 14px; }
.filed-col li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; padding: 12px 0; border-top: 1px solid rgba(0,0,0,.07); font-size: 17px; color: var(--ink-2); }
.filed-col li svg { width: 20px; height: 20px; margin-top: 2px; }
.filed-col.yes svg { color: var(--blue); }
.filed-col.no svg { color: #86868b; }

/* ---------- Pricing ---------- */
.prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price {
  border-radius: var(--radius-lg); background: var(--white); padding: 34px 28px 30px;
  display: flex; flex-direction: column;
  box-shadow: 0 0 0 1px rgba(0,0,0,.05);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(0,0,0,.05), 0 24px 50px -24px rgba(10,30,80,.25); }
.price.featured { box-shadow: 0 0 0 2px var(--blue); }
.price .p-tag { font-size: 12px; font-weight: 600; color: var(--blue); min-height: 18px; letter-spacing: .01em; }
.price h3 { font-size: 24px; letter-spacing: -0.03em; margin-top: 6px; line-height: 1.15; }
.price .p-from { font-size: 14px; color: var(--muted); margin-top: 18px; }
.price .p-amt { font-size: 44px; font-weight: 700; letter-spacing: -0.045em; line-height: 1; margin-top: 2px; }
.price .p-amt small { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink-2); }
.price .p-note { font-size: 14px; color: var(--muted); margin-top: 8px; min-height: 42px; }
.price ul { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,.08); display: grid; gap: 10px; }
.price li { font-size: 15px; color: var(--ink-2); padding-left: 22px; position: relative; line-height: 1.4; }
.price li::before { content: ""; position: absolute; left: 2px; top: 6px; width: 10px; height: 6px; border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(-45deg); }
.price .p-cta { margin-top: auto; padding-top: 24px; }
.price .p-cta a { font-size: 15px; font-weight: 500; }
.fine { max-width: 820px; margin: 36px auto 0; text-align: center; font-size: 14px; color: var(--muted); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about .title { max-width: 14ch; }
.about p.lede { margin-top: 22px; }
.creds { display: grid; gap: 12px; }
.cred { display: flex; align-items: baseline; gap: 18px; background: var(--mist); border-radius: 20px; padding: 22px 24px; }
.bg-mist .cred { background: var(--white); }
.cred b { font-size: 28px; letter-spacing: -0.04em; min-width: 72px; }
.cred span { color: var(--ink-2); font-size: 16px; }
.areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.areas li { padding: 8px 14px; border-radius: 980px; background: var(--white); box-shadow: 0 0 0 1px rgba(0,0,0,.08); font-size: 14px; color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 26px 48px 26px 0; font-size: clamp(19px, 2vw, 22px); font-weight: 600; letter-spacing: -0.025em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after, .faq summary::before {
  content: ""; position: absolute; right: 8px; top: 50%; width: 14px; height: 2px; background: var(--ink-2); border-radius: 2px;
  transition: transform .35s var(--ease);
}
.faq summary::before { transform: rotate(90deg); }
.faq details[open] summary::before { transform: rotate(0deg); }
.faq summary:focus-visible { outline-offset: 4px; }
.faq .ans { padding: 0 48px 28px 0; color: var(--ink-2); font-size: 17px; line-height: 1.6; }
.faq details[open] .ans { animation: fadeDown .45s var(--ease); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Audit form ---------- */
.audit { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.audit .title { max-width: 12ch; }
.audit .lede { margin-top: 20px; }
.audit-steps { margin-top: 30px; display: grid; gap: 14px; }
.audit-steps li { display: flex; gap: 14px; align-items: baseline; font-size: 17px; color: var(--ink-2); }
.audit-steps li b { color: var(--blue); font-weight: 600; font-size: 15px; min-width: 20px; }
.form {
  background: var(--white); border-radius: var(--radius-xl); padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 0 0 1px rgba(0,0,0,.05), 0 30px 60px -30px rgba(10,30,80,.22);
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.field { display: grid; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font: 400 17px/1.4 var(--font); color: var(--ink);
  background: var(--page); border: 1px solid #c9c9cf; border-radius: 12px;
  padding: 13px 14px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: #2f6bff; box-shadow: 0 0 0 4px rgba(47,107,255,.2); }
.field .hint { font-size: 13px; color: var(--muted); }
.form .btn { grid-column: 1 / -1; width: 100%; margin-top: 4px; }
.form .form-note { grid-column: 1 / -1; font-size: 13px; color: var(--muted); text-align: center; }

/* ---------- Closing CTA ---------- */
.closing { text-align: center; }
.closing .headline { max-width: 14ch; margin: 0 auto; }
.closing .actions { margin-top: 32px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--mist); padding: 40px 0 44px; font-size: 12px; color: var(--muted); line-height: 1.6; }
.footer .f-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.footer .f-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer a { color: var(--ink-2); }
.footer .f-legal { margin-top: 18px; display: grid; gap: 8px; max-width: 900px; }
.footer .f-legal strong { color: var(--ink-2); font-weight: 600; }

/* ---------- Sub page hero ---------- */
.subhero { padding: clamp(72px, 10vw, 128px) 0 clamp(40px, 6vw, 64px); text-align: center; }
.subhero .display { font-size: clamp(44px, 8vw, 96px); max-width: 13ch; margin: 0 auto; }
.subhero .lede { max-width: 660px; margin: 24px auto 0; }
.subhero .actions { margin-top: 30px; justify-content: center; }
.subhero .chips { margin-top: 26px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px) scale(.985); transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.zoom { transform: scale(.92); }
.reveal.zoom.in { transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .prices { grid-template-columns: repeat(2, 1fr); }
  .float.left { left: 2%; }
  .float.right { right: 2%; }
}
@media (max-width: 960px) {
  .span-4, .span-3, .span-2 { grid-column: span 6; }
  .float { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about, .audit { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .menu-btn { display: block; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(251,251,253,.96);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    padding: 8px 22px 20px; border-bottom: 1px solid rgba(0,0,0,.08);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s;
  }
  .nav.open .nav-links { visibility: visible; opacity: 1; transform: none; transition: opacity .25s, transform .3s var(--ease); }
  .nav-links a { font-size: 17px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
  .nav-links a.nav-cta { margin-top: 14px; text-align: center; padding: 13px; font-size: 16px !important; border: 0; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .problems, .filed, .prices, .steps { grid-template-columns: 1fr; }
  .tile { padding: 30px 24px; min-height: 0; border-radius: 26px; }
  .problem, .filed-col, .step { padding: 28px 24px; }
  .price { padding: 30px 24px 26px; }
  .price .p-note { min-height: 0; }
  .form { grid-template-columns: 1fr; }
  .compare { gap: 8px; }
  .cmp-img { height: 110px; }
  .cmp-img svg { width: 52px; }
  .meter-row { grid-template-columns: 92px 1fr auto; gap: 8px; }
  .meter-row .m-val { min-width: 0; }
  .report { grid-template-columns: repeat(2, 1fr); }
  .stage { height: 600px; margin-top: 44px; }
  .phone { transform: scale(.84); transform-origin: top center; }
  .faq .ans { padding-right: 0; }
  .cred { flex-direction: column; gap: 4px; }
  .brand span.long { display: none; }
}
@media (min-width: 681px) { .brand span.short { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .reveal { opacity: 1; transform: none; }
  .scanline { display: none; }
}

/* ---------- Refinements ---------- */
ol { margin: 0; padding: 0; list-style: none; }
.phone, .phone * { text-align: left; }
.phone .buy, .phone .island { text-align: center; }
.listing-img { height: 262px; }
.span-2 h3 { font-size: clamp(26px, 2.5vw, 32px); }
.report b { height: 72px; }
.price h3 { min-height: 2.3em; }
.cred { display: grid; grid-template-columns: 120px 1fr; align-items: baseline; }
.cred b { white-space: nowrap; min-width: 0; }
@media (max-width: 1100px) { .price h3 { min-height: 0; } }
@media (max-width: 680px) { .cred { grid-template-columns: 1fr; gap: 4px; } }
@media (max-width: 680px) { .cmp-card figcaption span { display: none; } .cmp-card figcaption { font-size: 12px; } }
