:root {
  color-scheme: dark;
  --bg: #071726;
  --bg-deep: #04111d;
  --surface: #0d2439;
  --surface-raised: #102c46;
  --text: #eef5f9;
  --text-soft: #cedae2;
  --muted: #a9b7c2;
  --border: rgba(173, 196, 211, .21);
  --border-strong: rgba(173, 196, 211, .36);
  --blue: #2f6df4;
  --blue-hover: #1f5bdd;
  --blue-soft: rgba(47, 109, 244, .15);
  --gold: #fbbf24;
  --shadow: 0 24px 60px rgba(1, 10, 20, .34);
  --radius: 18px;
  background: var(--bg);
  scroll-padding-top: 5.5rem;
  scroll-behavior: smooth;
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 2%, rgba(47, 109, 244, .14), transparent 34rem),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 32%, #081b2c 100%);
  color: var(--text-soft);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--text); letter-spacing: -.035em; text-wrap: balance; }
h1 { margin-bottom: 20px; font-size: clamp(3.05rem, 4.6vw, 4.2rem); line-height: .98; }
h2 { margin-bottom: 17px; font-size: clamp(2rem, 3.8vw, 3.35rem); line-height: 1.04; }
h3 { margin-bottom: 7px; font-size: 1.04rem; line-height: 1.3; }
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid #7eb0ff; outline-offset: 3px; border-radius: 8px; }
::selection { background: rgba(47, 109, 244, .28); color: var(--text); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 2px solid var(--blue);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 140ms ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), 1180px); margin-inline: auto; }
.section { padding: 80px 0; scroll-margin-top: 5.5rem; }
.section-rule { border-top: 1px solid var(--border); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p { max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: 1.06rem; }
.eyebrow {
  display: block;
  margin-bottom: 15px;
  color: #7eb0ff;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(1px); }
.button-primary { background: var(--blue); color: #fff; box-shadow: 0 14px 30px rgba(47, 109, 244, .25); }
.button-primary:hover { background: var(--blue-hover); box-shadow: 0 18px 36px rgba(47, 109, 244, .31); }
.button-secondary { border-color: var(--border-strong); background: rgba(13, 36, 57, .78); color: var(--text); }
.button-secondary:hover { border-color: #7eb0ff; background: var(--blue-soft); }
.button-compact { min-height: 44px; padding-inline: 15px; font-size: .84rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(4, 17, 29, .93);
  box-shadow: 0 8px 28px rgba(1, 10, 20, .25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav { min-height: 68px; display: flex; align-items: center; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 850; text-decoration: none; white-space: nowrap; }
.brand svg { width: 30px; height: 30px; flex: 0 0 auto; color: var(--blue); }
.brand span span { color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 5px; margin-left: auto; }
.nav-links a, .sign-in {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--text-soft);
  font-size: .86rem;
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover, .sign-in:hover { color: #8cbbff; }
.nav-actions { display: flex; align-items: center; gap: 5px; }

.hero { padding: 58px 0 42px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 44px; align-items: center; }
.hero-copy { min-width: 0; animation: lift-in .65s cubic-bezier(.16, 1, .3, 1) both; }
.hero-copy > p { max-width: 580px; margin-bottom: 25px; color: var(--text-soft); font-size: clamp(1.03rem, 1.5vw, 1.18rem); }
.hero-actions { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; }
.hero-visual { min-width: 0; margin: 0; display: flex; flex-direction: column; animation: lift-in .75s .08s cubic-bezier(.16, 1, .3, 1) both; }
.hero-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #f6f8fb;
  box-shadow: var(--shadow);
}
.hero-shot::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65); }
.hero-shot img { width: 100%; aspect-ratio: 1.556 / 1; object-fit: cover; object-position: center; }
.visual-caption { display: flex; justify-content: space-between; gap: 16px; margin: 11px 3px 0; color: var(--muted); font-size: .78rem; }
.visual-caption strong { color: var(--text-soft); }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 46px 0 0; padding: 0; border-block: 1px solid var(--border); }
.hero-stats div { min-width: 0; padding: 20px 22px; border-right: 1px solid var(--border); }
.hero-stats div:first-child { padding-left: 0; }
.hero-stats div:last-child { padding-right: 0; border-right: 0; }
.hero-stats dt { color: var(--text); font-size: .92rem; font-weight: 800; line-height: 1.3; }
.hero-stats dd { margin: 4px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.4; }

.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.proof-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.proof-card h3 { margin-top: 8px; }
.proof-card p { margin-bottom: 24px; color: var(--muted); }
.card-kicker, .price-band { display: inline-flex; font-size: .75rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.card-kicker { color: #7eb0ff; }
.price-band { margin-top: auto; color: #fde68a; }

.band { padding: 80px 0; background: rgba(10, 30, 49, .72); scroll-margin-top: 5.5rem; }
.band-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
.band-copy p { max-width: 570px; margin-bottom: 0; color: var(--text-soft); font-size: 1.03rem; }
.steps { display: grid; gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--border); list-style: none; }
.steps li { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 21px 0; border-bottom: 1px solid var(--border); }
.steps strong { color: var(--text); line-height: 1.35; }
.steps span { color: var(--muted); font-size: .9rem; }
.terms-note {
  margin-top: 34px;
  padding: 20px 22px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: rgba(13, 36, 57, .72);
  color: var(--muted);
  font-size: .88rem;
}
.terms-note p { margin: 0 0 7px; }
.terms-note a, .final-sign-in { color: #8cbbff; font-weight: 750; text-underline-offset: 4px; }

.final-wrap { padding: 70px 0; }
.final-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 42px; align-items: center; padding: 42px 0; border-block: 1px solid var(--border-strong); }
.final-panel h2 { max-width: 720px; margin-bottom: 12px; }
.final-panel p { max-width: 640px; margin-bottom: 0; color: var(--muted); }
.final-action { min-width: 286px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-sign-in { margin-top: 12px; font-size: .86rem; }
.final-action small { display: block; max-width: 300px; margin-top: 8px; color: var(--muted); font-size: .76rem; line-height: 1.45; }

.site-footer { padding: 40px 0; border-top: 1px solid var(--border); background: var(--bg-deep); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; }
.footer-summary { max-width: 470px; margin: 13px 0 0; color: var(--muted); font-size: .87rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--text-soft); font-size: .85rem; font-weight: 700; text-underline-offset: 4px; }

@keyframes lift-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero-grid, .band-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 820px; }
  .band-grid { gap: 44px; }
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; }
  .section, .band { padding: 66px 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .final-panel { grid-template-columns: 1fr; }
  .final-action { justify-self: start; align-items: flex-start; text-align: left; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), 1180px); }
  .nav.container { width: min(calc(100% - 20px), 1180px); }
  .nav { min-height: 64px; gap: 7px; }
  .brand { gap: 5px; font-size: .78rem; }
  .brand svg { width: 25px; height: 25px; }
  .sign-in { padding-inline: 3px; font-size: .75rem; }
  .nav-actions { gap: 4px; }
  .nav-actions .button { min-height: 40px; padding-inline: 8px; font-size: .7rem; }
  h1 { font-size: clamp(2.3rem, 11.7vw, 3.25rem); line-height: 1.01; }
  h2 { font-size: clamp(1.9rem, 9vw, 2.55rem); }
  .hero { padding: 28px 0 32px; }
  .hero-grid { gap: 24px; }
  .hero-copy > p { margin-bottom: 20px; font-size: 1rem; line-height: 1.5; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .hero-actions .button { width: 100%; }
  .hero-shot img { aspect-ratio: 1.33 / 1; object-position: center top; }
  .visual-caption { flex-direction: column; gap: 2px; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 34px; }
  .hero-stats div, .hero-stats div:first-child, .hero-stats div:last-child { min-height: 0; padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .hero-stats div:last-child { border-bottom: 0; }
  .section, .band { padding: 52px 0; }
  .section-heading { margin-bottom: 28px; }
  .section-heading p { font-size: .98rem; }
  .proof-card { padding: 21px; }
  .steps li { grid-template-columns: 1fr; gap: 5px; padding: 18px 0; }
  .final-wrap { padding: 48px 0; }
  .final-panel { padding: 32px 0; }
  .final-action, .final-action .button { width: 100%; }
  .final-action { align-items: stretch; text-align: center; }
  .final-action small { max-width: none; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; }
}

@media (forced-colors: active) {
  .button, .hero-shot, .proof-card { border: 1px solid CanvasText; }
}
