:root {
  --bg: #0a0d11;
  --bg-soft: #121821;
  --panel: rgba(21, 29, 39, 0.88);
  --panel-strong: #161e29;
  --panel-alt: #0f141c;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f7fb;
  --muted: #9eacbb;
  --accent: #c8ff47;
  --accent-deep: #a8df26;
  --accent-soft: rgba(200, 255, 71, 0.14);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 255, 71, 0.08), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(101, 227, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #0b0f14 0%, var(--bg) 54%, #07090d 100%);
}

a { color: inherit; }
.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), rgba(0,0,0,0.18));
}
.wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(10, 13, 17, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #9cf1ff);
  color: #111;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 30px rgba(200, 255, 71, 0.22);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-copy strong {
  font-size: 16px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}
.brand-copy span {
  color: var(--muted);
  font-size: 12px;
}
.top-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.top-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  color: #111;
  background: linear-gradient(135deg, var(--accent), #9cf1ff);
  box-shadow: 0 16px 34px rgba(156, 241, 255, 0.18);
}
.button-secondary {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}
.button.wide { width: 100%; }
.hero-section {
  padding: 34px 0 28px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 20px;
  align-items: start;
}
.hero-main,
.hero-card,
.panel,
.guard-card,
.plan-card,
.doc-link,
.doc,
.site-footer {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22, 30, 41, 0.9), rgba(12, 16, 22, 0.94));
  box-shadow: var(--shadow);
}
.hero-main {
  min-height: 100%;
  padding: 30px;
  border-radius: var(--radius-lg);
}
.eyebrow,
.section-kicker,
.mini-label,
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(200, 255, 71, 0.22);
  background: var(--accent-soft);
  color: #dfff9f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-main h1 {
  margin: 20px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-side {
  display: grid;
  gap: 16px;
}
.hero-card {
  border-radius: var(--radius-lg);
  padding: 22px;
}
.hero-card-accent {
  background:
    radial-gradient(circle at top left, rgba(200, 255, 71, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(22, 30, 41, 0.96), rgba(12, 16, 22, 0.98));
}
.hero-card h2,
.panel h3,
.guard-card h3,
.plan-name,
.doc-link strong,
.rail-item h3,
.section-heading h2,
.doc h1,
.doc h2 {
  font-family: "Space Grotesk", sans-serif;
}
.hero-card h2 {
  margin: 16px 0 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.hero-card p,
.panel p,
.guard-card p,
.plan-card p,
.rail-item p,
.section-heading p,
.doc p,
.doc li {
  color: var(--muted);
  line-height: 1.75;
}
.hero-stack {
  display: grid;
  gap: 16px;
}
.section {
  padding: 30px 0;
}
.section-offset {
  padding-top: 18px;
}
.section-contrast {
  margin: 20px 0;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.92), rgba(6, 8, 11, 0.98));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section-heading {
  margin-bottom: 18px;
}
.section-heading.compact {
  max-width: 760px;
}
.section-heading.light h2,
.section-heading.light .section-kicker {
  color: var(--text);
}
.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.inside-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 16px;
}
.panel {
  border-radius: var(--radius-lg);
  padding: 24px;
}
.panel-large {
  grid-row: span 2;
}
.panel-large h3 {
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 12px;
}
.panel h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.panel-stats {
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(156, 241, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(16, 21, 30, 0.95), rgba(10, 13, 18, 0.98));
}
.panel-stats div {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.panel-stats div:first-child {
  border-top: 0;
  padding-top: 0;
}
.panel-stats strong {
  display: block;
  font-size: 24px;
  color: #dfff9f;
}
.panel-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.format-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  align-items: start;
}
.format-rail {
  display: grid;
  gap: 14px;
}
.rail-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(19, 26, 35, 0.94), rgba(12, 16, 22, 0.96));
}
.rail-item span {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.rail-item h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.1;
}
.guard-grid,
.plans-grid,
.docs-dock {
  display: grid;
  gap: 16px;
}
.guard-grid {
  grid-template-columns: repeat(3, 1fr);
}
.guard-card {
  border-radius: var(--radius-md);
  padding: 22px;
}
.guard-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.plans-grid {
  grid-template-columns: repeat(3, 1fr);
}
.plan-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.plan-card.featured {
  background:
    radial-gradient(circle at top, rgba(200, 255, 71, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(23, 32, 44, 0.98), rgba(11, 15, 21, 0.98));
  border-color: rgba(200, 255, 71, 0.22);
}
.feature-pill {
  margin-bottom: 18px;
}
.plan-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.plan-name {
  font-size: 24px;
}
.plan-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.docs-layout {
  display: grid;
  gap: 18px;
}
.docs-dock {
  grid-template-columns: repeat(4, 1fr);
}
.doc-link {
  border-radius: var(--radius-md);
  padding: 20px;
  text-decoration: none;
}
.doc-link strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}
.doc-link span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.site-footer {
  margin: 26px auto 34px;
  width: min(1200px, calc(100% - 32px));
  border-radius: var(--radius-md);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  align-items: center;
}
.footer-row strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}
.footer-row span,
.footer-row a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.doc {
  max-width: 920px;
  margin: 34px auto;
  padding: 28px;
  border-radius: 28px;
}
.doc-top {
  margin-bottom: 16px;
}
.doc-top a {
  color: #dfff9f;
  text-decoration: none;
}
.doc h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
}
.doc h2 {
  margin: 22px 0 10px;
  font-size: 22px;
}
.doc ul {
  padding-left: 22px;
}
@media (max-width: 1100px) {
  .hero-layout,
  .format-layout,
  .inside-grid,
  .guard-grid,
  .plans-grid,
  .docs-dock {
    grid-template-columns: 1fr;
  }
  .panel-large {
    grid-row: auto;
  }
}
@media (max-width: 820px) {
  .header-row,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-nav {
    gap: 12px;
  }
  .top-nav a { font-size: 13px; }
  .hero-main,
  .hero-card,
  .panel,
  .guard-card,
  .plan-card,
  .doc-link,
  .doc {
    padding: 20px;
  }
  .rail-item {
    grid-template-columns: 1fr;
  }
  .rail-item span {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .wrap,
  .site-footer {
    width: min(100% - 20px, 1200px);
  }
  .site-header {
    position: static;
  }
  .hero-main h1 {
    font-size: clamp(38px, 13vw, 62px);
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .button,
  .button.wide {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .plan-top {
    align-items: flex-start;
    flex-direction: column;
  }
}
