:root {
  --bg: #07080d;
  --ink: #f4f6fb;
  --ink-2: #c5cad6;
  --muted: #8b93a7;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #ff6b3d;
  --accent-3: #38bdf8;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  --r: 20px;
  --r-sm: 14px;
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, rgba(255, 107, 61, 0.16), transparent 58%),
    radial-gradient(ellipse 65% 50% at 88% 12%, rgba(139, 92, 246, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 55% at 62% 88%, rgba(56, 189, 248, 0.12), transparent 58%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* Frosted panels — CSS only (fast, readable). Blur on nav + hero only. */
.glass {
  background: rgba(14, 16, 24, 0.78);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), var(--shadow);
}
.glass-blur {
  background: rgba(12, 14, 22, 0.62);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 40px rgba(0, 0, 0, 0.35);
}
.glass-strong {
  background: linear-gradient(155deg, rgba(24, 26, 38, 0.94), rgba(10, 12, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 56px rgba(0, 0, 0, 0.4);
}
@media (max-width: 860px) {
  .glass-blur {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(12, 14, 22, 0.92);
  }
}

.eyebrow {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--accent-3);
}
.lead { color: var(--ink-2); font-size: 18px; max-width: 58ch; }
.h2 { font-size: clamp(30px, 4.5vw, 46px); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8f4d);
  color: #111;
  box-shadow: 0 8px 28px rgba(255, 107, 61, 0.28);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(255, 107, 61, 0.38); }
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }

header { position: sticky; top: 12px; z-index: 40; padding: 0 16px; }
.nav-shell { border-radius: 999px; padding: 10px 18px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
}
.brand {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand small {
  display: block;
  font-family: "Hanken Grotesk";
  font-weight: 600;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-links a { font-weight: 600; font-size: 14px; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 860px) { .nav-links { display: none; } }

.hero { padding: 48px 0 28px; }
.hero-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.hero-main {
  grid-column: span 7;
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 48px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.28), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(56, 189, 248, 0.18), transparent 40%);
  pointer-events: none;
}
.hero-main h1 { font-size: clamp(38px, 5.5vw, 68px); max-width: 12ch; position: relative; }
.hero-main .lead { margin-top: 18px; position: relative; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; position: relative; }
.hero-meta {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  position: relative;
}
.hero-meta b { color: var(--ink); }
.hero-side { grid-column: span 5; display: grid; gap: 16px; }
.stat-card, .mini-card { border-radius: var(--r-sm); padding: 22px 24px; }
.stat-card .num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: #e8ecff;
}
.stat-card p, .mini-card p { color: var(--muted); font-size: 14px; margin-top: 6px; }
.mini-card h3 { font-size: 18px; margin-bottom: 6px; }
@media (max-width: 960px) {
  .hero-main, .hero-side { grid-column: span 12; }
  .hero-main { min-height: 300px; }
}

section {
  padding: 56px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}
.sec-head { max-width: 62ch; margin-bottom: 28px; }
.sec-head p { margin-top: 12px; color: var(--muted); }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento-card {
  border-radius: var(--r-sm);
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-card .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}
.bento-card h3 { font-size: 19px; margin-bottom: 8px; }
.bento-card p { color: var(--muted); font-size: 15px; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.glow-orange { box-shadow: inset 0 0 0 1px rgba(255,107,61,0.22); }
.glow-violet { box-shadow: inset 0 0 0 1px rgba(139,92,246,0.24); }
.glow-cyan { box-shadow: inset 0 0 0 1px rgba(56,189,248,0.22); }
@media (max-width: 900px) {
  .span-4, .span-6, .span-8 { grid-column: span 12; }
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.step { border-radius: var(--r-sm); padding: 24px; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--accent-3);
  display: block;
  margin-bottom: 8px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.price-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; }
.price { border-radius: var(--r); padding: 32px; }
.price.feature { border-color: rgba(255, 107, 61, 0.35); }
.price .kicker {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--accent-3);
}
.price .amt {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 48px);
  margin: 10px 0 6px;
}
.price .amt small { font-size: 18px; color: var(--muted); font-weight: 700; }
.price ul { list-style: none; margin: 18px 0 0; display: grid; gap: 10px; }
.price li { display: flex; gap: 10px; color: var(--ink-2); font-size: 15px; }
.price li::before { content: "✓"; color: var(--accent); font-weight: 800; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }

.cta-band {
  border-radius: var(--r);
  padding: clamp(32px, 5vw, 52px);
  margin: 8px 24px 0;
  max-width: calc(var(--max) + 48px);
  margin-inline: auto;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); max-width: 16ch; }
.cta-band p { color: var(--ink-2); margin-top: 12px; max-width: 52ch; }
.cta-band .hero-cta { margin-top: 24px; }

footer {
  padding: 48px 0 36px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
.foot-contact a { display: block; font-weight: 700; margin-top: 6px; }
.foot-contact a:hover { color: var(--accent-3); }
.axiom-teaser {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 14px;
}
.axiom-teaser .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.axiom-teaser a { color: var(--ink); border-bottom: 1px solid var(--accent); font-weight: 700; }
.legal { margin-top: 24px; color: var(--muted); font-size: 13px; }

.strip {
  margin: 8px 24px;
  border-radius: 999px;
  padding: 14px 0;
  max-width: calc(var(--max) + 48px);
  margin-inline: auto;
}
.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
