/* ============================================================
   AccelX Technologies — design tokens
   Palette pulled from the brand mark: deep navy ground, blue→orange
   diagonal energy, warm amber kicker. Paper tones for light sections,
   ink tones for dark. Receipt/mono treatment is structural, not
   decorative — it's literally what the products print.
   ============================================================ */
:root {
  --ink-950: #060b2c;
  --ink-900: #0a1442;
  --ink-800: #101d5c;
  --ink-700: #1a2a74;
  --blue-500: #2f6fed;
  --blue-300: #6fb2ff;
  --orange-600: #ff5b1f;
  --orange-400: #ff8a3d;
  --amber-400: #ffb020;
  --paper-0: #ffffff;
  --paper-50: #f6f7fb;
  --paper-100: #eef0f7;
  --line-200: #e0e3ee;
  --slate-600: #4b5568;
  --slate-500: #6b7488;
  --off-white: #eef1fb;
  --muted-cool: #9aa3c7;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

  --container: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(.22,.9,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper-50);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

:focus-visible {
  outline: 2.5px solid var(--amber-400);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--orange-600), var(--amber-400));
  display: inline-block;
}

.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn-primary {
  background: linear-gradient(120deg, var(--orange-600), var(--amber-400));
  color: var(--ink-950);
  box-shadow: 0 10px 24px -8px rgba(255, 91, 31, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(255, 91, 31, 0.65); }
.btn-ghost-dark {
  border-color: rgba(238,241,251,0.28);
  color: var(--off-white);
  background: rgba(238,241,251,0.04);
}
.btn-ghost-dark:hover { border-color: rgba(238,241,251,0.6); background: rgba(238,241,251,0.09); }
.btn-ghost-light {
  border-color: var(--line-200);
  color: var(--ink-900);
  background: var(--paper-0);
}
.btn-ghost-light:hover { border-color: var(--ink-900); }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(6, 11, 44, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px -12px rgba(6,11,44,0.5);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--off-white); letter-spacing: -0.01em; }
.brand-word b { background: linear-gradient(120deg, var(--orange-400), var(--amber-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--muted-cool);
  position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--orange-600), var(--amber-400));
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--off-white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav-links { position: fixed; inset: 64px 16px auto 16px; background: var(--ink-900); border: 1px solid rgba(238,241,251,0.12); border-radius: 16px; flex-direction: column; align-items: flex-start; padding: 20px 22px; gap: 18px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all .3s var(--ease); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-cta .btn-ghost-dark { display: none; }
  .nav-toggle { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; background: rgba(238,241,251,0.06); border: 1px solid rgba(238,241,251,0.18); border-radius: 10px; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:''; display:block; width: 18px; height: 2px; background: var(--off-white); position: relative; transition: transform .25s var(--ease), opacity .25s var(--ease); }
  .nav-toggle span::before { position:absolute; top:-6px; }
  .nav-toggle span::after { position:absolute; top:6px; }
  .nav-toggle.open span { background: transparent; }
  .nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background: radial-gradient(120% 100% at 12% -10%, #142263 0%, var(--ink-900) 46%, var(--ink-950) 100%);
  color: var(--off-white);
  overflow: hidden;
  padding: 168px 0 120px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(238,241,251,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238,241,251,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(60% 60% at 30% 30%, black, transparent 72%);
  pointer-events: none;
}
.hero-glow {
  position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,91,31,0.28), transparent 65%);
  top: -220px; right: -160px; filter: blur(10px); pointer-events: none;
}
.chip { position: absolute; border-radius: 4px; opacity: 0; animation: chip-drift 7s var(--ease) infinite; }
.chip.c1 { width: 14px; height: 14px; background: linear-gradient(120deg, var(--blue-300), var(--blue-500)); top: 22%; right: 18%; animation-delay: .1s; }
.chip.c2 { width: 10px; height: 10px; background: linear-gradient(120deg, var(--orange-400), var(--orange-600)); top: 34%; right: 10%; animation-delay: 1.1s; }
.chip.c3 { width: 8px; height: 8px; background: var(--amber-400); top: 15%; right: 28%; animation-delay: 2s; }
.chip.c4 { width: 12px; height: 12px; background: var(--blue-500); top: 48%; right: 22%; animation-delay: 2.9s; }
@keyframes chip-drift {
  0% { opacity: 0; transform: translate(0,10px) rotate(0deg); }
  15% { opacity: .9; }
  85% { opacity: .9; }
  100% { opacity: 0; transform: translate(-26px,-34px) rotate(24deg); }
}
@media (prefers-reduced-motion: reduce) { .chip { animation: none; opacity: .6; } }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-eyebrow { color: var(--muted-cool); }
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  font-weight: 600;
  margin: 22px 0 22px;
  color: var(--off-white);
}
.hero h1 .accent { background: linear-gradient(120deg, var(--orange-400), var(--amber-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.08rem; color: var(--muted-cool); max-width: 46ch; margin: 0 0 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-facts { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-facts div { border-left: 2px solid rgba(255,138,61,0.5); padding-left: 14px; }
.hero-facts strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--off-white); }
.hero-facts span { font-size: 0.82rem; color: var(--muted-cool); }

.hero-art { position: relative; }
.hero-art .frame {
  position: relative; border-radius: 22px; overflow: hidden;
  background: linear-gradient(160deg, rgba(238,241,251,0.06), rgba(238,241,251,0.02));
  border: 1px solid rgba(238,241,251,0.14);
  padding: 26px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55);
  animation: art-in 1.1s var(--ease) both;
}
@keyframes art-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.hero-art img { border-radius: 14px; }
.hero-art .tag {
  position: absolute; bottom: -18px; left: 28px;
  background: var(--paper-0); color: var(--ink-900);
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600;
  padding: 10px 16px; border-radius: 10px;
  box-shadow: 0 16px 30px -12px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 8px;
}
.tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #21c37a; box-shadow: 0 0 0 4px rgba(33,195,122,0.18); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 420px; }
  .hero { padding-top: 132px; }
}

/* ---------------- Reveal utility ---------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .02s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .14s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .2s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .32s; }

/* ---------------- Proof strip ---------------- */
.proof {
  background: var(--ink-950); color: var(--off-white);
  border-top: 1px solid rgba(238,241,251,0.08);
  padding: 46px 0;
}
.proof-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.proof-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: var(--off-white); }
.proof-item p { margin: 0; font-size: 0.9rem; color: var(--muted-cool); }
.proof-item .num { font-family: var(--font-mono); color: var(--orange-400); margin-right: 8px; }
@media (max-width: 780px) { .proof-row { grid-template-columns: 1fr; } }

/* ---------------- Section shell ---------------- */
section { padding: 108px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 16px 0 14px; font-weight: 600; }
.section-head p { color: var(--slate-600); font-size: 1.05rem; margin: 0; }
.on-dark .section-head p { color: var(--muted-cool); }

/* ---------------- Lifecycle ring (signature element) ---------------- */
.suite { background: var(--paper-50); }

.lifecycle-wrap { outline: none; }
.lifecycle-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 20px; align-items: stretch; }

.lc-visual { display: flex; flex-direction: column; }

.lc-stage-outer {
  position: relative;
  border-radius: 22px;
  background: radial-gradient(120% 120% at 50% 20%, #10205c 0%, var(--ink-950) 70%);
  overflow: hidden;
  min-height: 460px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 70px -30px rgba(10,20,66,0.4);
}
.lc-stage-outer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(238,241,251,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(238,241,251,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(65% 65% at 50% 55%, black, transparent 75%);
}
.lc-stage { position: relative; width: 100%; height: 460px; }
.lc-stage canvas { display: block; margin: 0 auto; }

/* Normal-flow row below the stage, not overlaid on top of it — an
   overlaid control bar collided with the front card's bottom edge
   whenever the card's projected height nearly filled the canvas. */
.lc-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 20px;
}
.lc-nav {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--line-200); background: var(--paper-0);
  color: var(--ink-800); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
  box-shadow: 0 4px 14px -8px rgba(10,20,66,0.25);
}
.lc-nav:hover { background: var(--paper-100); border-color: var(--orange-600); transform: translateY(-1px); }
.lc-dots { display: flex; gap: 8px; }
.lc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-200); border: none; cursor: pointer; padding: 0; transition: background .25s var(--ease), transform .25s var(--ease); }
.lc-dot.active { background: linear-gradient(120deg, var(--orange-600), var(--amber-400)); transform: scale(1.35); }
.lc-count { position: absolute; top: 18px; right: 20px; font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted-cool); z-index: 3; }

/* Detail panel */
.lc-detail {
  background: var(--paper-0); border: 1px solid var(--line-200); border-radius: 22px;
  padding: 38px 40px; display: flex; flex-direction: column;
  box-shadow: 0 20px 50px -30px rgba(10,20,66,0.22);
}
.lc-eyebrow { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-600); font-weight: 600; margin-bottom: 12px; }
.lc-detail h3 { font-size: 1.7rem; font-weight: 600; margin-bottom: 4px; }
.lc-full { font-size: 0.85rem; color: var(--slate-500); font-family: var(--font-mono); margin-bottom: 16px; }
.lc-platforms { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.lc-platforms span {
  font-size: 0.74rem; font-weight: 600; color: var(--ink-800);
  background: var(--paper-100); border: 1px solid var(--line-200);
  padding: 5px 12px; border-radius: 999px;
}
.lc-blurb { color: var(--slate-600); font-size: 1rem; line-height: 1.6; margin: 0 0 20px; }
.lc-features { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.lc-features li { position: relative; padding-left: 26px; font-size: 0.94rem; color: var(--ink-900); line-height: 1.45; }
.lc-features li::before {
  content: ''; position: absolute; left: 0; top: 5px; width: 15px; height: 15px; border-radius: 5px;
  background: linear-gradient(135deg, var(--orange-600), var(--amber-400));
}
.lc-features li::after {
  content: ''; position: absolute; left: 4.5px; top: 8.5px; width: 6px; height: 3px;
  border-left: 1.8px solid white; border-bottom: 1.8px solid white; transform: rotate(-45deg);
}
.lc-next-link {
  align-self: flex-start; font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  color: var(--ink-900); background: var(--paper-50); border: 1.5px solid var(--line-200);
  border-radius: 999px; padding: 11px 20px; cursor: pointer; transition: border-color .25s var(--ease), background .25s var(--ease);
}
.lc-next-link:hover { border-color: var(--orange-600); background: #fff4ee; }

@media (max-width: 980px) {
  .lifecycle-grid { grid-template-columns: 1fr; }
  .lc-stage-outer { min-height: 380px; }
  .lc-stage { height: 380px; }
}

/* 2D fallback strip (mobile / no WebGL) */
.lc-stage.lc-strip-mode { height: auto; display: flex; align-items: center; padding: 0 8px; }
.lc-stage-outer:has(.lc-strip-mode) { min-height: 0; padding: 26px 0; }
.lc-strip {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 10px 32px 18px; width: 100%; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lc-strip::-webkit-scrollbar { display: none; }
.lc-card {
  scroll-snap-align: center; flex: 0 0 auto;
  width: 148px; background: var(--paper-0); border-radius: 18px; border: 2px solid transparent;
  padding: 16px 14px 18px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; transition: transform .3s var(--ease), border-color .3s var(--ease), opacity .3s var(--ease);
  opacity: 0.55; transform: scale(0.92);
}
.lc-card.active { opacity: 1; transform: scale(1); border-color: var(--orange-500, #ff5b1f); }
.lc-card img { width: 100%; border-radius: 12px; }
.lc-card-glyph {
  width: 100%; aspect-ratio: 1; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.lc-card-glyph svg { width: 46%; height: 46%; }
.lc-card-name { font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--ink-900); text-align: center; }
.lc-card-phase { font-family: var(--font-mono); font-size: 0.66rem; color: var(--slate-500); text-align: center; }

/* Compact receipt recap (below the ring) */
.receipt-recap-head { text-align: center; margin: 64px 0 28px; }
.receipt-recap-head p { font-family: var(--font-mono); font-size: 0.82rem; color: var(--slate-500); letter-spacing: 0.04em; }
.receipt-wrap { display: flex; justify-content: center; }
.receipt {
  width: 100%; max-width: 760px;
  background: var(--paper-0);
  color: var(--ink-900);
  font-family: var(--font-mono);
  border-radius: 4px;
  box-shadow: 0 40px 90px -40px rgba(10,20,66,0.35), 0 2px 0 var(--line-200);
  position: relative;
  padding: 40px 40px 34px;
}
.receipt::before, .receipt::after {
  content: ''; position: absolute; left: 0; right: 0; height: 16px;
  background:
    radial-gradient(circle at 10px 8px, var(--paper-50) 8px, transparent 8.5px) repeat-x;
  background-size: 24px 16px;
}
.receipt::before { top: -8px; }
.receipt::after { bottom: -8px; transform: rotate(180deg); }

.receipt-head { text-align: center; margin-bottom: 22px; }
.receipt-head img { width: 46px; margin: 0 auto 12px; }
.receipt-head .rname { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.02em; }
.receipt-head .raddr { font-size: 0.74rem; color: var(--slate-500); margin-top: 4px; letter-spacing: 0.04em; }
.receipt-meta { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--slate-500); margin: 16px 0; }

.receipt-divider { border: none; border-top: 1.5px dashed var(--line-200); margin: 14px 0; }
.receipt-cols { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; font-size: 0.68rem; color: var(--slate-500); letter-spacing: 0.08em; padding-bottom: 6px; }

.line-item { border-bottom: 1px dashed var(--line-200); }
.line-item:last-of-type { border-bottom: none; }
.line-item-row {
  display: grid; grid-template-columns: 34px 1fr auto; gap: 10px;
  align-items: baseline; padding: 14px 0; cursor: pointer;
  background: transparent; border: none; width: 100%; text-align: left;
  font-family: var(--font-mono); color: inherit;
}
.line-item-row .qty { color: var(--orange-600); font-weight: 600; }
.line-item-row .name { font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em; }
.line-item-row .tag { font-size: 0.68rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.line-item-row .caret { transition: transform .3s var(--ease); color: var(--slate-500); }
.line-item[open] .caret { transform: rotate(90deg); }
.line-item-row::-webkit-details-marker { display: none; }

.line-item-body { padding: 0 0 18px 44px; font-family: var(--font-body); font-size: 0.88rem; color: var(--slate-600); }
.line-item-body p { margin: 0 0 10px; }
.line-item-body ul { margin: 0; padding-left: 18px; }
.line-item-body li { margin-bottom: 4px; }

.receipt-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 6px; }
.receipt-total .label { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--slate-500); }
.receipt-total .value { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-align: right; }
.receipt-thanks { text-align: center; margin-top: 22px; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--slate-500); }
.receipt-barcode { height: 34px; margin: 18px auto 4px; max-width: 220px;
  background: repeating-linear-gradient(90deg, var(--ink-900) 0 2px, transparent 2px 4px, var(--ink-900) 4px 5px, transparent 5px 9px, var(--ink-900) 9px 12px, transparent 12px 14px);
}

/* ---------------- Capabilities ---------------- */
.capabilities { background: var(--ink-950); color: var(--off-white); }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(238,241,251,0.1); border: 1px solid rgba(238,241,251,0.1); border-radius: 16px; overflow: hidden; }
.cap-card { background: var(--ink-950); padding: 30px 28px; transition: background .3s var(--ease); }
.cap-card:hover { background: #0d1650; }
.cap-card .ico { width: 38px; height: 38px; border-radius: 10px; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, rgba(255,91,31,0.18), rgba(255,176,32,0.12)); margin-bottom: 18px; color: var(--orange-400); }
.cap-card h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; color: var(--off-white); }
.cap-card p { margin: 0; font-size: 0.9rem; color: var(--muted-cool); line-height: 1.55; }
@media (max-width: 900px) { .cap-grid { grid-template-columns: 1fr; } }

/* ---------------- Approach ---------------- */
.approach { background: var(--paper-0); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.approach-copy p { color: var(--slate-600); font-size: 1.02rem; margin: 0 0 18px; }
.approach-copy p:last-child { margin-bottom: 0; }
.approach-copy strong { color: var(--ink-900); }
.approach-visual { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px -30px rgba(10,20,66,0.25); }
.approach-visual img { width: 100%; }
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; gap: 36px; } .approach-visual { order: -1; } }

/* ---------------- Segments ("who it's for") ---------------- */
.segments { background: var(--paper-0); padding-top: 0; }
.segment-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.segment-chip {
  font-family: var(--font-mono); font-size: 0.86rem; font-weight: 500;
  padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line-200);
  background: var(--paper-50); color: var(--ink-800);
}
.segment-note { color: var(--slate-600); font-size: 0.98rem; max-width: 62ch; margin: 0; }

/* ---------------- Pricing ---------------- */
.pricing { background: var(--paper-50); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card {
  background: var(--paper-0); border: 1.5px solid var(--line-200); border-radius: 18px;
  padding: 34px 30px; display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(10,20,66,0.28); }
.price-card.featured { border-color: var(--orange-600); position: relative; }
.price-card.featured::before {
  content: 'MOST COMMON'; position: absolute; top: -12px; left: 30px;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; font-weight: 600;
  background: linear-gradient(120deg, var(--orange-600), var(--amber-400)); color: var(--ink-950);
  padding: 5px 12px; border-radius: 999px;
}
.price-card h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 6px; }
.price-card .price-for { font-size: 0.86rem; color: var(--slate-500); margin-bottom: 22px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; flex-grow: 1; }
.price-card li { position: relative; padding-left: 22px; font-size: 0.9rem; color: var(--ink-900); line-height: 1.45; }
.price-card li::before { content: '+'; position: absolute; left: 0; top: 0; color: var(--orange-600); font-weight: 700; }
.price-note { text-align: center; color: var(--slate-500); font-size: 0.88rem; margin-top: 30px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------------- FAQ ---------------- */
.faq { background: var(--paper-0); }
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line-200); }
.faq-item:first-child { border-top: 1px solid var(--line-200); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--ink-900);
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--ink-800); transition: transform .3s var(--ease); }
.faq-q .plus::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { margin: 0 4px 22px; color: var(--slate-600); font-size: 0.95rem; line-height: 1.6; max-width: 66ch; }

/* ---------------- Contact form ---------------- */
.contact-form { text-align: left; background: rgba(255,255,255,0.06); border: 1px solid rgba(238,241,251,0.16); border-radius: 18px; padding: 32px; margin-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.78rem; color: var(--muted-cool); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 0.94rem; color: var(--ink-900);
  background: var(--paper-0); border: 1.5px solid transparent; border-radius: 10px;
  padding: 11px 14px; outline: none; transition: border-color .2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange-600); }
.form-field textarea { resize: vertical; min-height: 80px; font-family: var(--font-body); }
.form-honey { position: absolute; left: -9999px; opacity: 0; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.form-alt { font-size: 0.86rem; color: var(--muted-cool); }
.form-alt a { color: var(--off-white); text-decoration: underline; text-underline-offset: 3px; }
.form-status { font-size: 0.88rem; margin-top: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #6be6a5; }
.form-status.err { color: #ff9a8a; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ---------------- CTA band ---------------- */
.cta-band {
  background: linear-gradient(120deg, var(--ink-900), var(--ink-700) 55%, #35217a);
  color: var(--off-white); position: relative; overflow: hidden;
  padding: 90px 0;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 85% 20%, rgba(255,91,31,0.28), transparent 60%);
}
.cta-inner { position: relative; text-align: center; max-width: 620px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 16px; font-weight: 600; }
.cta-inner p { color: var(--muted-cool); margin: 0 0 30px; font-size: 1.02rem; }
.cta-inner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Footer ---------------- */
footer { background: var(--ink-950); color: var(--muted-cool); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(238,241,251,0.1); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 30px; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; color: var(--off-white); font-size: 1.05rem; }
.footer-tagline { font-size: 0.88rem; max-width: 30ch; line-height: 1.6; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--off-white); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: var(--muted-cool); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--off-white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.82rem; flex-wrap: wrap; gap: 16px 24px; }
.footer-bottom .tag-line { font-family: var(--font-mono); color: var(--muted-cool); }
.footer-legal a { color: var(--muted-cool); transition: color .2s var(--ease); }
.footer-legal a:hover { color: var(--off-white); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
