:root {
  --bg: #08111f;
  --bg-soft: #0e1a2c;
  --panel: rgba(15, 27, 46, 0.82);
  --panel-solid: #12223a;
  --text: #e8f0fb;
  --muted: #a8b8d0;
  --line: rgba(168, 184, 208, 0.18);
  --accent: #2dd4bf;
  --accent-2: #7dd3fc;
  --gold: #f5c76b;
  --danger: #fb7185;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --container: min(1120px, calc(100vw - 2rem));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.12), transparent 24%),
    linear-gradient(180deg, #07111d 0%, #0a1626 55%, #09131f 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section--soft { background: rgba(255, 255, 255, 0.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stack-lg > * + * { margin-top: 2rem; }
.skip-link {
  position: absolute; left: -999px; top: 0;
}
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 200;
  background: #fff; color: #000; padding: 0.75rem 1rem; border-radius: 999px;
}
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(22px);
  background: rgba(7, 17, 29, 0.78);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 82px; gap: 1rem;
}
.brand img { width: min(260px, 56vw); height: auto; }
.site-nav { display: flex; align-items: center; gap: 0.8rem; }
.nav-link {
  padding: 0.75rem 0.95rem; border-radius: 999px;
  color: var(--muted); font-weight: 600; font-size: 0.95rem;
}
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.06); color: var(--text); }
.nav-toggle {
  display: none; width: 48px; height: 48px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.hero, .page-hero { padding: 5.4rem 0 3.2rem; }
.hero-grid, .split-grid {
  display: grid; gap: 2rem; align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hero-grid { min-height: 68vh; }
.page-hero--compact { padding-top: 4rem; }
.eyebrow {
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 700; font-size: 0.78rem;
  margin-bottom: 1rem;
}
.hero h1, .page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02; margin: 0 0 1.25rem;
}
.hero h2, .section-heading h2, .split-grid h2, .article-cta h2 { font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.08; margin: 0 0 1rem; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 64ch; }
.hero-actions, .hero-pills { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.75rem; }
.hero-pills span {
  padding: 0.72rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--line); color: var(--muted); font-size: 0.95rem;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.95rem 1.3rem; font-weight: 700;
  border: 1px solid transparent; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--solid {
  background: linear-gradient(135deg, var(--accent), #14b8a6);
  color: #052032; box-shadow: 0 16px 40px rgba(45, 212, 191, 0.22);
}
.button--ghost {
  background: rgba(255,255,255,0.03); border-color: var(--line); color: var(--text);
}
.button--small { padding: 0.8rem 1rem; font-size: 0.95rem; }
.button--full { width: 100%; }
.text-link { color: var(--accent-2); font-weight: 700; }
.launch-card, .price-card, .mini-card, .post-card, .role-card, .bullet-card, .portrait-card, .callout-banner, .quick-jump, .guide-detail {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-glow { box-shadow: 0 20px 70px rgba(125, 211, 252, 0.11), var(--shadow); }
.launch-card, .price-card, .post-card, .role-card, .mini-card, .bullet-card, .callout-banner, .quick-jump { padding: 1.5rem; }
.launch-card h2, .price-card h2, .mini-card h3, .post-card h3, .role-card h3 { margin-top: 0.75rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.38rem 0.72rem; border-radius: 999px; font-weight: 700; font-size: 0.82rem;
}
.badge--accent { background: rgba(245, 199, 107, 0.16); color: var(--gold); }
.badge--muted { background: rgba(255,255,255,0.06); color: var(--muted); }
.stat-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; margin: 1.25rem 0;
}
.stat-grid div { background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: var(--radius-xs); padding: 0.9rem; }
.stat-grid strong { display: block; font-size: 1.5rem; }
.stat-grid span, .microcopy, .price-meta { color: var(--muted); font-size: 0.92rem; }
.section-heading { margin-bottom: 2rem; text-align: center; }
.section-heading.left { text-align: left; }
.card-grid, .role-grid, .quick-jump-grid, .bullet-card-grid, .pricing-grid {
  display: grid; gap: 1.2rem;
}
.card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--two, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.role-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.role-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.quick-jump-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.quick-jump { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.quick-jump strong { font-size: 1.8rem; color: var(--accent); }
.price-card--featured { grid-column: span 2; }
.price {
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 800; margin: 0.2rem 0 1rem;
}
.price span { color: var(--muted); font-size: 1rem; font-weight: 600; }
.price-card ul, .checklist, .footer-links { padding-left: 1.1rem; }
.checklist li, .price-card li { margin-bottom: 0.55rem; }
.numbered { padding-left: 1.2rem; }
.guide-detail {
  display: grid; grid-template-columns: 96px 1fr; gap: 1.3rem; padding: 1.5rem;
}
.guide-detail__number {
  width: 72px; height: 72px; display: grid; place-items: center;
  border-radius: 22px; background: rgba(45, 212, 191, 0.12); color: var(--accent); font-size: 1.4rem; font-weight: 800;
}
.bullet-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1rem; }
.bullet-card h3 { margin-top: 0; }
.table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.comparison-table th, .comparison-table td { border: 1px solid var(--line); padding: 1rem; text-align: left; }
.comparison-table th { background: rgba(255,255,255,0.04); }
.portrait-card { max-width: 360px; margin: 0 auto; padding: 1.2rem; }
.portrait-card img { width: 100%; border-radius: 24px; }
.portrait-card--large { max-width: 420px; }
.faq-list { display: grid; gap: 1rem; }
.faq-item {
  padding: 1rem 1.2rem; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.faq-item summary { cursor: pointer; font-weight: 700; }
.article-content { max-width: 780px; }
.article-content p { color: #d7e3f3; }
.article-cta {
  margin-top: 2rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.03);
}
.callout-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.site-footer { border-top: 1px solid var(--line); background: rgba(6, 14, 24, 0.88); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1.6rem; padding: 2.4rem 0;
}
.footer-logo { width: 220px; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.55rem; color: var(--muted); }
.footer-bar { padding: 1rem 0 2rem; color: var(--muted); font-size: 0.95rem; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.92em; }
@media (max-width: 1024px) {
  .hero-grid, .split-grid, .footer-grid, .role-grid, .card-grid--three, .card-grid--two, .pricing-grid, .bullet-card-grid { grid-template-columns: 1fr; }
  .price-card--featured { grid-column: span 1; }
  .quick-jump-grid, .role-grid--compact { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; inset: calc(100% + 0.6rem) 1rem auto 1rem; flex-direction: column; align-items: stretch;
    background: rgba(9, 19, 31, 0.98); border: 1px solid var(--line); border-radius: 20px; padding: 0.8rem;
    transform-origin: top; transform: scaleY(0.95); opacity: 0; pointer-events: none;
  }
  body.nav-open .site-nav { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .guide-detail { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .callout-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .section { padding: 3.4rem 0; }
  .hero, .page-hero { padding-top: 3rem; }
  .hero-actions, .hero-pills { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
}

.billing-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}
.billing-pill-row span,
.price-alt {
  color: var(--muted);
}
.billing-pill-row span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  font-size: 0.94rem;
}
.price-alt {
  margin: -0.45rem 0 1rem;
  font-size: 0.98rem;
  font-weight: 600;
}
