:root {
  --bg: #07080c;
  --surface: #0d1018;
  --heading: #f3f5fb;
  --muted: #9aa3b8;
  --faint: #6d7386;
  --accent: #1d4ed8;
  --accent-hover: #1e40af;
  --accent-fg: #ffffff;
  --accent-text: #93c5fd;
  --line: rgb(120 160 230 / 0.14);
  --danger: #f87171;
  --shadow: 0 0 28px rgb(43 127 255 / 0.38), 0 8px 24px rgb(0 0 0 / 0.35);
  --font: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { color-scheme: dark; background: var(--bg); scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { margin: 0; min-height: 100dvh; display: flex; flex-direction: column; background: var(--bg); color: var(--muted); font-family: var(--font); padding-top: 3.5rem; }
body::before { content: ""; pointer-events: none; position: fixed; inset: 0; z-index: 70; opacity: 0.045; mix-blend-mode: overlay; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>"); }
#main { flex: 1; }
h1, h2, h3 { color: var(--heading); text-wrap: balance; margin: 0; font-weight: 500; letter-spacing: -0.03em; }
p { text-wrap: pretty; }
a { color: var(--heading); }
img { max-width: 100%; height: auto; display: block; }
button:not(:disabled) { cursor: pointer; }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 60; background: var(--accent); color: var(--accent-fg); padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.875rem; font-weight: 500; text-decoration: none; }
.skip:focus { top: 1rem; }
.top { position: fixed; top: 0; left: 0; right: 0; z-index: 40; border-bottom: 1px solid var(--line); background: rgb(7 8 12 / 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.top-inner { max-width: 64rem; margin: 0 auto; min-height: 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0 1rem; }
/* fixed header offset handled via body padding-top */
.brand { text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--heading); display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-logo { width: 2rem; height: 2rem; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.nav-desk { display: none; gap: 1.5rem; }
.nav-desk a, .nav-mob a { text-decoration: none; color: var(--muted); font-size: 0.875rem; }
.nav-desk a.on, .nav-desk a:hover, .nav-mob a { color: var(--heading); }
.top-actions { display: flex; align-items: center; gap: 0.5rem; }
.menu-btn { min-height: 44px; min-width: 44px; background: none; border: 0; color: var(--heading); font: inherit; font-size: 0.875rem; -webkit-tap-highlight-color: transparent; }
.nav-mob { display: none; flex-direction: column; gap: 0; padding: 0.5rem 1rem 1rem; border-top: 1px solid var(--line); background: var(--bg); position: relative; z-index: 42; }
.nav-mob.is-open { display: flex; }
.nav-scrim { display: none; position: fixed; inset: 0; top: 3.5rem; z-index: 35; background: rgb(10 10 12 / 0.78); -webkit-tap-highlight-color: transparent; }
.nav-scrim.is-open { display: block; }
body.nav-lock { overflow: hidden; touch-action: none; }
.nav-mob a { min-height: 44px; display: flex; align-items: center; text-decoration: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 1.5rem; border-radius: 999px; background: var(--accent); color: var(--accent-fg); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em; border: 0; font-family: inherit; box-shadow: var(--shadow); }
.btn:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--heading); box-shadow: none; border: 1px solid var(--line); }
.btn-block { width: 100%; }
.btn-sm { min-height: 44px; }
.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: inline-flex; } }
@media (min-width: 768px) {
  .nav-desk { display: flex; }
  .menu-btn, .nav-mob, .nav-scrim { display: none !important; }
}
.hero { position: relative; display: flex; align-items: center; justify-content: center; overflow-x: hidden; padding: 2.5rem 1.5rem 4rem; text-align: center; }
@media (min-width: 768px) { .hero { min-height: calc(100dvh - 3.5rem); padding: 3rem 1.5rem 5rem; } }
.halo { pointer-events: none; position: absolute; top: 0; left: 50%; width: min(120vw, 48rem); height: min(120vw, 48rem); translate: -50% -8%; border-radius: 9999px; background: radial-gradient(circle at 50% 46%, rgb(43 127 255 / 0.34) 0%, rgb(43 127 255 / 0.12) 32%, rgb(43 127 255 / 0.03) 54%, transparent 70%); }
.hero-inner { position: relative; z-index: 1; max-width: 36rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero-standard { margin: 0; font-size: 1.125rem; font-weight: 500; letter-spacing: -0.02em; color: var(--accent-text); line-height: 1.35; }
@media (min-width: 768px) { .hero-standard { font-size: 1.375rem; } }
.hero h1 { font-size: 1.25rem; line-height: 1.35; }
@media (min-width: 768px) { .hero h1 { font-size: 1.5rem; } }
.lede { max-width: 36rem; margin: 0 auto; font-size: 1rem; line-height: 1.65; color: var(--muted); }
.wrap { max-width: 64rem; margin: 0 auto; padding: 5rem 1.5rem; }
.wrap.tight { padding-top: 2rem; padding-bottom: 2rem; }
.wrap.narrow { max-width: 42rem; }
.center { text-align: center; }
.rule { width: 7rem; height: 1px; margin: 0 auto 2.5rem; background: var(--line); position: relative; }
.rule::before, .rule::after { content: ""; position: absolute; top: -1.5px; width: 4px; height: 4px; border-radius: 99px; background: var(--accent); }
.rule::before { left: 0; }
.rule::after { right: 0; }
.kicker { text-align: center; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.kicker.accent { color: var(--accent-text); }
.cards { list-style: none; margin: 3rem 0 0; padding: 0; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { border: 1px solid var(--line); background: linear-gradient(180deg, rgb(43 127 255 / 0.08), transparent 46%), var(--surface); border-radius: 22px; padding: 1.75rem; text-align: center; box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.045); }
.card.hot { border-color: rgb(43 127 255 / 0.42); box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06), 0 0 48px rgb(43 127 255 / 0.1); }
.card.tall { text-align: left; }
.card ul { margin: 1.25rem 0 0; padding-left: 1.1rem; color: var(--muted); font-size: 0.875rem; line-height: 1.5; display: flex; flex-direction: column; gap: 0.75rem; }
.num, .steps .num, .card .num { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.28em; color: #93c5fd; margin: 0; }
.card h3, .card h2 { margin-top: 0.75rem; }
.card p { margin: 0.75rem 0 0; font-size: 0.875rem; line-height: 1.6; }
.price { font-size: 1.75rem; color: var(--heading); font-weight: 500; }
.price s { font-size: 1rem; color: var(--faint); margin-right: 0.35rem; }
.fine { font-size: 0.75rem; color: var(--muted); }
.proof { text-align: center; font-size: 1.5rem; font-weight: 500; color: var(--heading); line-height: 1.35; margin: 0; }
.proof span { color: var(--muted); }
.steps { list-style: none; margin: 3rem 0 0; padding: 0; display: grid; gap: 2.5rem; }
.steps li { text-align: center; max-width: 28rem; margin-inline: auto; }
.steps h3 { font-size: 1rem; margin-top: 0.75rem; }
.steps p { margin: 0.5rem 0 0; font-size: 0.875rem; line-height: 1.6; }
.form-intro { text-align: center; max-width: 28rem; margin: 0 auto 2rem; }
.form-intro h2 { font-size: 1.5rem; }
.form-intro p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; }
.form { max-width: 28rem; margin: 0 auto; border: 1px solid var(--line); background: linear-gradient(180deg, rgb(43 127 255 / 0.08), transparent 46%), var(--surface); border-radius: 22px; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.045); }
.form label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }
.form input, .form textarea { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg); color: var(--heading); font: inherit; padding: 0 0.875rem; }
.form textarea { min-height: 8rem; padding: 0.75rem; }
.form input:focus, .form textarea:focus { outline: 2px solid rgb(43 127 255 / 0.4); border-color: var(--accent); }
.hp { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }
.err { color: var(--danger); font-size: 0.875rem; margin: 0; }
.success { max-width: 28rem; margin: 0 auto; border: 1px solid var(--line); background: var(--surface); border-radius: 32px; padding: 3.5rem 1.5rem; text-align: center; }
.ok-title { color: var(--heading); font-size: 1.125rem; font-weight: 500; }
.page-hero { max-width: 42rem; margin: 0 auto; padding: 4rem 1.5rem 2rem; text-align: center; }
.page-hero h1 { font-size: 2.25rem; margin-top: 1rem; }
@media (min-width: 768px) { .page-hero h1 { font-size: 3rem; } }
.page-hero .lede { margin-top: 1rem; }
details { border-bottom: 1px solid var(--line); }
details:first-of-type { border-top: 1px solid var(--line); margin-top: 2.5rem; }
details summary { list-style: none; min-height: 44px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; color: var(--heading); font-weight: 500; padding: 0.75rem 0; }
details summary::-webkit-details-marker { display: none; }
details p { margin: 0 0 1rem; font-size: 0.875rem; line-height: 1.6; }
.compare { display: grid; gap: 2rem; }
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; } }
figure { margin: 0; }
figcaption { margin-top: 1rem; font-size: 0.875rem; line-height: 1.6; }
.tired { background: #f3e6c4; color: #1a1208; font-family: "Times New Roman", Times, serif; overflow: hidden; border-radius: 8px; }
.tired-bar { background: #7a1a1a; color: #fff2c8; text-align: center; font-weight: 700; padding: 0.5rem; font-size: 0.875rem; }
.tired-nav { background: #d4c49a; text-align: center; font-size: 0.75rem; padding: 0.35rem; color: #0000ee; }
.tired-body { padding: 1rem; font-size: 0.8125rem; line-height: 1.4; text-align: center; }
.tired-h { color: #7a1a1a; font-size: 1.125rem; font-weight: 700; }
.tired-flash { background: #fff8dc; font-weight: 700; padding: 0.5rem; font-size: 0.75rem; }
.tired-fine { font-size: 0.625rem; color: #5a4a32; }
.this-mock { background: #0a0a0c; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; text-align: center; padding-bottom: 1.5rem; }
.this-bar { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding: 0.5rem 0.75rem; font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--heading); }
.chip { background: var(--accent); color: var(--accent-fg); border-radius: 4px; padding: 0.2rem 0.4rem; letter-spacing: 0; text-transform: none; }
.this-mock img { width: 7rem; margin: 1.5rem auto 0.75rem; }
.this-mock p { padding: 0 1rem; font-size: 0.6875rem; color: var(--heading); }
.mock-points { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; margin: 1rem 0 0; color: var(--muted) !important; font-size: 0.6875rem !important; }
.mock-cta { display: inline-block; margin-top: 1.25rem; }
.about { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .about { grid-template-columns: minmax(0, 16rem) 1fr; align-items: start; } }
.photo-slot { width: 10rem; height: 10rem; display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); margin-inline: auto; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (min-width: 768px) { .photo-slot { width: auto; height: auto; aspect-ratio: 4/5; max-width: none; margin-inline: 0; } }
.prose { display: flex; flex-direction: column; gap: 1rem; font-size: 0.9375rem; line-height: 1.6; }
.prose a { color: var(--heading); }
.foot { border-top: 1px solid var(--line); padding: 3rem 1.5rem; }
.foot-grid { max-width: 64rem; margin: 0 auto; display: grid; gap: 2rem; }
@media (min-width: 768px) { .foot-grid { grid-template-columns: 1fr 1fr 1fr; } }
.brand-foot { color: var(--heading); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.875rem; font-weight: 500; margin: 0; }
.tag { letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.75rem; margin: 0.5rem 0 1rem; }
.eyebrow { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 0.5rem; }
.socials { list-style: none; margin: 0.75rem 0 0; padding: 0; display: flex; align-items: center; gap: 0.15rem; }
.socials a { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--heading); }
.socials a:hover { color: var(--accent-text); }
.socials svg { width: 20px; height: 20px; }
.foot a { color: var(--heading); }
.foot nav { display: flex; flex-direction: column; }
.foot nav a { min-height: 44px; display: flex; align-items: center; text-decoration: none; color: var(--muted); font-size: 0.875rem; }
.foot nav a:hover { color: var(--heading); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.promise { margin: 0.75rem 0 0; text-align: center; font-size: 0.875rem; color: var(--muted); }
.pricing-list { display: flex; flex-direction: column; gap: 1.25rem; }
.price-card { border: 1px solid var(--line); background: linear-gradient(180deg, rgb(43 127 255 / 0.08), transparent 46%), var(--surface); border-radius: 22px; padding: 1.5rem 1.5rem 0.5rem; box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.045); }
.price-card.hot { border-color: rgb(43 127 255 / 0.42); box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06), 0 0 48px rgb(43 127 255 / 0.1); }
.price-head h2 { margin: 0; font-size: 1.25rem; }
.price-head .price { margin-top: 0.5rem; }
.price-head p { margin: 0.75rem 0 0; font-size: 0.875rem; line-height: 1.6; }
.launch-gap { margin-top: 1rem !important; color: var(--heading); }
.price-card details { border: 0; margin-top: 0.5rem; }
.price-card details:first-of-type { border-top: 1px solid var(--line); margin-top: 1rem; }
.price-card details summary { font-size: 0.875rem; }
.price-card details ul { margin: 0 0 1rem; padding-left: 1.1rem; color: var(--muted); font-size: 0.875rem; line-height: 1.5; display: flex; flex-direction: column; gap: 0.75rem; }
.mock-standard { color: var(--accent-text) !important; font-weight: 500; margin: 1.5rem 1rem 0.75rem !important; font-size: 0.8125rem !important; }
/* header-fix:fixed-v1 */
