/* ============================================================
   OneBloc Cloud — Fully Managed Windows NVMe VPS
   Production stylesheet. Ported from the Claude Design handoff.
   Re-theme the accent by overriding --accent / --accent-2.
   ============================================================ */
:root {
  --ink:      #070e24;
  --ink-1:    #0a1330;
  --ink-2:    #0e1942;
  --ink-3:    #14224d;
  --ink-card: #111e46;
  --line-d:   rgba(150,178,255,.14);
  --line-d2:  rgba(150,178,255,.22);

  /* OneBloc Cloud module hue — orange (key #F7991C). Wordmark stays blue;
     only the bloc + UI accents take the orange. */
  --accent:   #f7991c;   /* Cloud key / left face */
  --accent-2: #ffc062;   /* lighter — top face / gradient + icon accents */
  --accent-deep: #ce7208;/* right face / hover */
  --accent-ink: #1a1206; /* dark ink on orange buttons (legible) */
  --cyan:     #43dcff;
  --ok:       #2bd66f;    /* "included" check colour on feature lists */

  --paper:    #f4f7fe;
  --paper-2:  #eaf0fc;
  --white:    #ffffff;

  --text-d:   #e8eefc;
  --muted-d:  #94a4cc;
  --head:     #0c1734;
  --body:     #4c597f;
  --line:     #e3eafa;

  --r-sm: 10px; --r: 16px; --r-lg: 22px; --r-xl: 30px;
  --maxw: 1200px;
  --shadow-card: 0 1px 2px rgba(12,23,52,.04), 0 12px 32px -12px rgba(12,23,52,.16);
  --shadow-pop: 0 2px 4px rgba(12,23,52,.06), 0 30px 60px -20px rgba(20,34,77,.4);

  --ff-display: "Space Grotesk", system-ui, sans-serif;
  --ff-body: "Hanken Grotesk", system-ui, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--white); color: var(--body);
  font-family: var(--ff-body);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { font-family: var(--ff-display); color: var(--head); margin: 0; line-height: 1.08; letter-spacing: -.02em; font-weight: 600; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
.mono { font-family: var(--ff-mono); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
::selection { background: var(--accent); color: #fff; }
img, svg { display: block; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-body);
  font-weight: 700; font-size: 15.5px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  padding: 14px 24px; transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, border-color .25s; white-space: nowrap; }
.btn svg { transition: transform .25s cubic-bezier(.2,.7,.3,1); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 24px -8px var(--accent); }
.btn-primary:hover { box-shadow: 0 14px 34px -8px var(--accent); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost-d { background: rgba(255,255,255,.06); color: var(--text-d); border-color: var(--line-d2); }
.btn-ghost-d:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--head); color: #fff; }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }

/* ---------- eyebrow / chips ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-mono);
  font-size: 12.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow.on-dark { color: var(--accent-2); }
.eyebrow.on-light { color: var(--accent); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 22%, transparent); }

.pill { display:inline-flex; align-items:center; gap:7px; padding:7px 13px; border-radius:999px;
  font-size:13px; font-weight:600; font-family:var(--ff-body); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { transition-delay: var(--d, 0ms); }
body.no-motion .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1 !important; transform:none !important; } }

/* ---------- sections ---------- */
section { position: relative; }
.pad { padding: clamp(64px, 9vw, 122px) 0; }
.section-head { max-width: 680px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin: 16px 0 0; }
.section-head p { margin-top: 18px; font-size: 18px; color: var(--body); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.dark-bg { background: var(--ink-1); color: var(--text-d); }
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4 { color: #fff; }

.app-loading { display:flex; align-items:center; justify-content:center; min-height:100vh; color:var(--muted-d); background:var(--ink-1); font-family:var(--ff-mono); letter-spacing:.1em; }

.grad-text { background: linear-gradient(100deg, var(--accent-2), var(--cyan)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.br-d { display: block; }

/* ================= NAV ================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 18px; }
.nav--solid { background: rgba(255,255,255,.86); backdrop-filter: saturate(1.4) blur(14px); box-shadow: 0 1px 0 var(--line), 0 8px 28px -18px rgba(12,23,52,.4); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--muted-d); transition: color .2s; white-space: nowrap; }
.nav--solid .nav-links a { color: var(--body); }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-mono); font-size: 13.5px; font-weight: 500; color: var(--text-d); }
.nav--solid .nav-phone { color: var(--head); }
.nav-phone:hover { color: var(--accent); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--text-d); border-radius: 2px; }
.nav--solid .nav-burger span { background: var(--head); }
.nav-mobile { display: none; }
.nav-mobile.open { display: flex; flex-direction: column; gap: 4px; padding: 14px 28px 22px; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); box-shadow: 0 12px 30px -16px rgba(12,23,52,.4); }
.nav-mobile a { padding: 12px 4px; font-weight: 600; color: var(--head); border-bottom: 1px solid var(--line); }
.nav-mobile a.btn { border: 0; margin-top: 10px; color: #fff; justify-content: center; }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark { position: relative; width: 34px; height: 34px; flex: 0 0 auto; display: inline-flex; }
.logo-word { font-family: var(--ff-display); font-weight: 700; font-size: 18.6px; letter-spacing: -.02em; color: #fff; line-height: 1; }
.nav--solid .logo-word { color: var(--head); }
.logo-word .dot { color: var(--accent); }

/* header platform pill (Windows / Linux page switch) */
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-os { display: inline-flex; gap: 3px; padding: 4px; background: rgba(255,255,255,.06); border: 1px solid var(--line-d2); border-radius: 999px; }
.nav--solid .nav-os { background: var(--paper); border-color: var(--line); }
.nav-os-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: 999px; font-family: var(--ff-body); font-size: 13px; font-weight: 700; color: var(--muted-d); white-space: nowrap; transition: color .2s, background .2s; }
.nav--solid .nav-os-btn { color: var(--body); }
.nav-os-btn:hover { color: var(--accent); }
.nav-os-btn.on, .nav--solid .nav-os-btn.on { color: var(--accent-ink); background: var(--accent); box-shadow: 0 6px 16px -8px var(--accent); }
.nav-os-btn svg { width: 16px; height: 16px; }
.nav-os-m { display: none; }   /* the in-dropdown copy, shown only on mobile */

/* ================= HERO ================= */
.hero { padding: 120px 0 96px; overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #16235a 0%, transparent 60%), linear-gradient(180deg, #0a1330 0%, #070e24 100%); }
.hero-grid-bg, .final-grid-bg { position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-d) 1px, transparent 1px), linear-gradient(90deg, var(--line-d) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(900px 600px at 70% 10%, #000 0%, transparent 75%); -webkit-mask-image: radial-gradient(900px 600px at 70% 10%, #000 0%, transparent 75%); opacity: .6; }
.hero-glow { position: absolute; width: 620px; height: 620px; right: -120px; top: -160px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 38%, transparent) 0%, transparent 62%); filter: blur(20px); }
.hero-streaks { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-streaks span { position: absolute; left: -30%; height: 1px; width: 30%; top: calc(8% + var(--i) * 13%);
  background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0;
  animation: streak 5s linear infinite; animation-delay: calc(var(--i) * .7s); }
@keyframes streak { 0% { transform: translateX(0); opacity: 0; } 12% { opacity: .55; } 60% { opacity: .4; } 100% { transform: translateX(440%); opacity: 0; } }
body.no-motion .hero-streaks { display: none; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(34px, 4.6vw, 58px); margin: 22px 0 0; font-weight: 700; }
.hero-sub { margin-top: 22px; font-size: 19px; line-height: 1.55; color: var(--muted-d); max-width: 540px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-price { margin-top: 36px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-price-main { display: flex; align-items: baseline; gap: 6px; color: #fff; }
.hp-from { font-size: 14px; color: var(--muted-d); font-weight: 600; margin-right: 2px; }
.hp-cur { font-size: 19px; font-weight: 700; color: var(--accent-2); }
.hp-amt { font-size: 42px; font-weight: 600; letter-spacing: -.02em; }
.hp-per { font-size: 16px; color: var(--muted-d); }
.hero-price-meta { display: flex; flex-direction: column; gap: 6px; }
.hp-strike { font-size: 14px; color: var(--muted-d); text-decoration: line-through; text-decoration-color: color-mix(in srgb, var(--muted-d) 60%, transparent); }
.hp-renew { background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent-2); border: 1px solid var(--line-d2); }

/* ----- console panel ----- */
.console { background: linear-gradient(180deg, #111e46, #0c1738); border: 1px solid var(--line-d2);
  border-radius: var(--r-lg); box-shadow: var(--shadow-pop); overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg); transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.console:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(0deg) translateY(-4px); }
body.no-motion .console { transform: none; }
.console-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line-d); background: rgba(255,255,255,.02); }
.cdot { width: 11px; height: 11px; border-radius: 50%; background: #2c3a68; }
.cdot:nth-child(1){ background:#ff6058; } .cdot:nth-child(2){ background:#ffbe2e; } .cdot:nth-child(3){ background:#28c93f; }
.console-title { font-size: 12px; color: var(--muted-d); margin-left: 8px; }
.console-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-mono); font-size: 11px; font-weight: 600; color: #28c93f; letter-spacing: .1em; }
.lpulse { width: 7px; height: 7px; border-radius: 50%; background: #28c93f; box-shadow: 0 0 0 0 rgba(40,201,63,.6); animation: lpulse 1.8s infinite; }
@keyframes lpulse { 0%{ box-shadow:0 0 0 0 rgba(40,201,63,.5);} 70%{ box-shadow:0 0 0 8px rgba(40,201,63,0);} 100%{ box-shadow:0 0 0 0 rgba(40,201,63,0);} }
.console-body { padding: 22px; }
.console-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.console-name { font-family: var(--ff-display); font-weight: 600; font-size: 19px; color: #fff; }
.console-os { font-size: 11.5px; color: var(--muted-d); margin-top: 4px; }
.console-managed { background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent-2); border: 1px solid var(--line-d2); }
.nvme-meter { margin: 22px 0; padding: 16px; border-radius: var(--r); background: rgba(255,255,255,.03); border: 1px solid var(--line-d); }
.nvme-meter-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.nvme-label { font-size: 11px; letter-spacing: .1em; color: var(--muted-d); display: inline-flex; align-items: center; gap: 6px; }
.nvme-label svg { color: var(--cyan); }
.nvme-val { font-size: 22px; font-weight: 600; color: #fff; } .nvme-val small { font-size: 11px; color: var(--muted-d); font-weight: 500; }
.nvme-track { display: flex; gap: 3px; align-items: flex-end; height: 30px; }
.nvme-tick { flex: 1; height: 40%; border-radius: 2px; background: rgba(255,255,255,.08); transition: background .5s, height .5s; }
.nvme-tick.on { height: 100%; background: linear-gradient(180deg, var(--cyan), var(--accent)); }
.console-rows { display: flex; flex-direction: column; gap: 2px; }
.console-row { display: flex; align-items: center; gap: 11px; padding: 11px 4px; border-top: 1px solid var(--line-d); }
.cr-ico { color: var(--accent-2); display: inline-flex; }
.cr-label { font-size: 14px; color: var(--text-d); }
.cr-val { font-size: 13px; color: var(--muted-d); margin-left: auto; }
.cr-ok { width: 8px; height: 8px; border-radius: 50%; background: #28c93f; box-shadow: 0 0 0 3px rgba(40,201,63,.15); }

/* ================= TRUST ================= */
.trust { background: var(--head); padding: 26px 0; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; }
.trust-ico { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; color: var(--accent-2); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); }
.trust-stat { font-family: var(--ff-display); font-weight: 700; font-size: 22px; color: #fff; letter-spacing: -.01em; }
.trust-label { font-size: 13px; color: #9fb0d8; }

/* ================= WHY ================= */
.why { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.why-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--shadow-card); transition: transform .3s, box-shadow .3s, border-color .3s; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-pop); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.why-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.why-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: var(--accent);
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 14%, #fff), color-mix(in srgb, var(--accent) 4%, #fff)); border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); }
.why-k { font-size: 32px; font-weight: 600; color: var(--line); letter-spacing: -.02em; }
.why-card h3 { font-size: 23px; margin-bottom: 10px; }
.why-card > p { font-size: 16px; }
.why-list { list-style: none; margin: 22px 0 0; padding: 22px 0 0; border-top: 1px dashed var(--line); display: flex; flex-direction: column; gap: 12px; }
.why-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--head); }
.why-list svg { color: var(--accent); flex: 0 0 auto; }

/* ================= PRICING ================= */
.pricing { background: linear-gradient(180deg, #070e24, #0a1330); overflow: hidden; }
.pricing-glow { position: absolute; width: 800px; height: 500px; left: 50%; top: -100px; transform: translateX(-50%);
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 65%); filter: blur(30px); }
.term-toggle { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 46px auto 50px; position: relative; z-index: 1; }
.term-toggle-label { font-size: 11px; letter-spacing: .14em; color: var(--muted-d); }
.term-seg { display: inline-flex; padding: 5px; gap: 3px; background: rgba(255,255,255,.05); border: 1px solid var(--line-d2); border-radius: 999px; flex-wrap: wrap; justify-content: center; }
.term-btn { position: relative; border: 0; background: transparent; color: var(--muted-d); font-family: var(--ff-body); font-weight: 700; font-size: 14.5px; padding: 11px 20px; border-radius: 999px; cursor: pointer; transition: color .2s, background .2s; }
.term-btn:hover { color: var(--text-d); }
.term-btn.on { color: var(--accent-ink); background: var(--accent); box-shadow: 0 6px 18px -6px var(--accent); }
.term-save { position: absolute; top: -9px; right: -6px; font-family: var(--ff-mono); font-size: 8.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #062; background: var(--cyan); padding: 2px 6px; border-radius: 999px; }
/* platform + billing controls (stacked) */
.plan-controls { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 36px; margin: 46px auto 50px; position: relative; z-index: 1; }
.ctl-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.os-toggle { display: inline-flex; gap: 6px; padding: 6px; background: rgba(255,255,255,.05); border: 1px solid var(--line-d2); border-radius: 999px; }
.os-btn { display: inline-flex; align-items: center; gap: 9px; border: 0; background: transparent; color: var(--muted-d); font-family: var(--ff-body); font-weight: 700; font-size: 15px; padding: 12px 26px; border-radius: 999px; cursor: pointer; transition: color .2s, background .2s; }
.os-btn:hover { color: var(--text-d); }
.os-btn.on { color: var(--accent-ink); background: var(--accent); box-shadow: 0 6px 18px -6px var(--accent); }
.os-btn svg { width: 20px; height: 20px; }
.pricing-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pcard { position: relative; background: linear-gradient(180deg, #101d44, #0d1838); border: 1px solid var(--line-d2); border-radius: var(--r-lg); padding: 28px 22px; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s, border-color .3s; }
.pcard:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 50%, transparent); box-shadow: var(--shadow-pop); }
.pcard--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 30px 60px -24px color-mix(in srgb, var(--accent) 70%, transparent); background: linear-gradient(180deg, #14245a, #0e1942); }
.pcard--value { border-color: color-mix(in srgb, var(--cyan) 55%, transparent); }
.pcard-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--ff-body); font-weight: 700; font-size: 12px; padding: 7px 15px; border-radius: 999px; color: #fff; background: var(--accent); box-shadow: 0 8px 20px -6px var(--accent); }
.pcard--value .pcard-badge { background: linear-gradient(90deg, var(--accent), var(--cyan)); color: #04263a; }
.pcard-name { font-family: var(--ff-display); font-weight: 700; font-size: 21px; color: #fff; }
.pcard-tag { font-size: 13.5px; color: var(--muted-d); margin-top: 4px; }
.pcard-price { margin: 22px 0; padding-bottom: 22px; border-bottom: 1px solid var(--line-d); }
.pcard-amt { display: flex; align-items: baseline; gap: 5px; color: #fff; }
.pcard-cur { font-size: 17px; font-weight: 700; color: var(--accent-2); }
.pcard-num { font-size: 38px; font-weight: 600; letter-spacing: -.025em; }
.pcard-per { font-size: 15px; color: var(--muted-d); }
.pcard-anchor { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.pcard-strike { font-size: 13.5px; color: var(--muted-d); text-decoration: line-through; text-decoration-color: color-mix(in srgb, var(--muted-d) 55%, transparent); }
.pcard-save { font-family: var(--ff-mono); font-size: 11.5px; font-weight: 600; color: #062; background: var(--cyan); padding: 2px 8px; border-radius: 6px; }
.pcard-cta { justify-content: center; width: 100%; margin-bottom: 22px; }
.pcard-specs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.pcard-specs li { display: flex; align-items: center; justify-content: space-between; font-size: 14.5px; }
.spec-k { display: inline-flex; align-items: center; gap: 9px; color: var(--muted-d); }
.spec-k svg { color: var(--accent-2); }
.spec-v { color: var(--text-d); font-weight: 500; font-size: 13.5px; }
.pcard-managed { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--line-d); display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--accent-2); font-weight: 600; }
.pcard-talk { font-family: var(--ff-display); font-weight: 600; font-size: 30px; letter-spacing: -.02em; color: #fff; line-height: 1.1; }
.pcard-note { font-size: 13px; color: var(--muted-d); }
.pcard-feats { list-style: none; margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line-d); display: flex; flex-direction: column; gap: 11px; }
.pcard-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.45; color: var(--text-d); }
.pcard-feat > svg { color: var(--ok); flex: 0 0 auto; margin-top: 2px; }
.pcard-feat b { color: #fff; font-weight: 700; }
.pcard-feat small { color: var(--muted-d); font-size: 11.5px; }
.pcard-feat .info { display: inline-flex; vertical-align: -2px; margin-left: 2px; color: var(--muted-d); cursor: help; }
.pcard-feat .info svg { color: var(--muted-d); }
.pcard--custom { border-style: dashed; border-color: var(--line-d2); }
.pcard--custom:hover { border-color: color-mix(in srgb, var(--cyan) 50%, transparent); }
.pricing-foot { text-align: center; margin-top: 44px; font-size: 14px; color: var(--muted-d); display: inline-flex; align-items: center; gap: 9px; width: 100%; justify-content: center; }
.pricing-foot svg { color: var(--cyan); flex: 0 0 auto; }

/* ================= FEATURES ================= */
.features { background: var(--white); }
.features-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.features .section-head { position: sticky; top: 96px; }
.hero-feature { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding: 22px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--head), #16245a); color: #fff; box-shadow: var(--shadow-pop); position: relative; overflow: hidden; }
.hf-ico { width: 56px; height: 56px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; color: var(--accent-2); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.hf-title { font-family: var(--ff-display); font-weight: 600; font-size: 17px; color: #fff; }
.hf-desc { font-size: 14px; color: #b9c6e8; margin-top: 4px; }
.hf-desc strong { color: var(--cyan); }
.hero-feature > div { flex: 1 1 auto; min-width: 0; }
.hf-tag { align-self: flex-start; flex: 0 0 auto; background: var(--cyan); color: #04263a; font-size: 11px; padding: 4px 10px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fcard { display: flex; gap: 13px; padding: 18px; border-radius: var(--r); border: 1px solid var(--line); background: var(--paper); height: 100%; transition: transform .25s, box-shadow .25s, border-color .25s, background .25s; }
.fcard:hover { transform: translateY(-3px); background: #fff; border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); box-shadow: var(--shadow-card); }
.fcard-ico { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 11px; display: grid; place-items: center; color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, #fff); border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent); }
.fcard-label { font-family: var(--ff-display); font-weight: 600; font-size: 15px; color: var(--head); }
.fcard-desc { font-size: 13px; color: var(--body); margin-top: 3px; line-height: 1.45; }

/* ================= USE CASES ================= */
.uses { background: linear-gradient(180deg, #0a1330, #0c1638); }
.uses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.ucard { padding: 26px 22px; border-radius: var(--r-lg); background: rgba(255,255,255,.03); border: 1px solid var(--line-d); transition: transform .3s, background .3s, border-color .3s; }
.ucard:hover { transform: translateY(-5px); background: rgba(255,255,255,.06); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.ucard-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: var(--accent-2); background: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid var(--line-d2); margin-bottom: 18px; }
.ucard-title { font-family: var(--ff-display); font-weight: 600; font-size: 16.5px; color: #fff; }
.ucard-desc { font-size: 13.5px; color: var(--muted-d); margin-top: 8px; line-height: 1.5; }

/* ================= ADD-ONS ================= */
.addons { background: var(--paper); }
.addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 50px; }
.acard { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: transform .25s, box-shadow .25s, border-color .25s; }
.acard:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.acard-ico { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, #fff); border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent); }
.acard-title { font-family: var(--ff-display); font-weight: 600; font-size: 15.5px; color: var(--head); }
.acard-desc { font-size: 13.5px; color: var(--body); margin-top: 2px; }
.acard-plus { margin-left: auto; font-family: var(--ff-display); font-size: 26px; font-weight: 400; color: var(--line); transition: color .25s, transform .25s; flex: 0 0 auto; }
.acard:hover .acard-plus { color: var(--accent); transform: rotate(90deg); }

/* ================= FAQ ================= */
.faq { background: var(--white); }
.faq-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-aside { position: sticky; top: 96px; }
.faq-aside h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 16px 0 14px; }
.faq-aside p { margin-bottom: 24px; font-size: 17px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); overflow: hidden; transition: border-color .25s, background .25s, box-shadow .25s; }
.faq-item.open { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); background: #fff; box-shadow: var(--shadow-card); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--ff-display); font-weight: 600; font-size: 17.5px; color: var(--head); }
.faq-plus { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-plus i { position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s, opacity .3s; }
.faq-plus i:nth-child(1) { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-plus i:nth-child(2) { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.open .faq-plus i:nth-child(2) { transform: scaleY(0); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.faq-a p { padding: 0 24px 24px; font-size: 15.5px; line-height: 1.6; color: var(--body); }

/* ================= FINAL CTA ================= */
.final { padding: clamp(72px, 10vw, 124px) 0; background: radial-gradient(900px 500px at 50% 120%, #16245a, transparent 60%), linear-gradient(180deg, #0a1330, #070e24); overflow: hidden; text-align: center; }
.final-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.final-inner h2 { font-size: clamp(32px, 5vw, 56px); margin: 20px 0 0; }
.final-inner > p { margin: 22px auto 0; font-size: 19px; color: var(--muted-d); max-width: 560px; }
.final-cta { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.final-meta { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; font-size: 14px; color: var(--muted-d); flex-wrap: wrap; }
.final-meta a, .final-meta span { display: inline-flex; align-items: center; gap: 8px; }
.final-meta a:hover { color: var(--accent-2); }
.final-meta svg { color: var(--accent-2); }
.final-sep { width: 1px; height: 16px; background: var(--line-d2); }

/* ================= FOOTER ================= */
.footer { background: #060c1f; padding: 64px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; padding-bottom: 44px; border-bottom: 1px solid var(--line-d); }
.footer-brand p { margin-top: 18px; font-size: 14.5px; color: var(--muted-d); max-width: 340px; line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-cols h4 { font-family: var(--ff-display); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-cols a { display: block; font-size: 14.5px; color: var(--muted-d); margin-bottom: 11px; transition: color .2s; }
.footer-cols a:hover { color: var(--accent-2); }
.footer-base { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 12.5px; color: #5e6e96; gap: 16px; flex-wrap: wrap; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .console { transform: none; max-width: 480px; }
  .features-layout, .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .features .section-head, .faq-aside { position: static; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .uses-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .nav-left .nav-os { display: none; }                 /* desktop pill hidden… */
  .nav-mobile .nav-os-m { display: inline-flex; align-self: flex-start; margin-bottom: 6px; }  /* …shown in dropdown */
  .why-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .trust-item { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .pricing-grid, .addons-grid { grid-template-columns: 1fr; }
  /* keep dense, compact cards 2-up on phones — easier to scan, far less scrolling */
  .features-grid, .uses-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fcard { flex-direction: column; gap: 10px; padding: 14px; }   /* icon on top → label gets full width */
  .ucard { padding: 18px 15px; }
  .ucard-ico { width: 42px; height: 42px; margin-bottom: 12px; }
  .br-d { display: none; }
  .hero { padding: 104px 0 72px; }
  .hp-amt { font-size: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .term-toggle { gap: 10px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
}

/* ================= THEME TOGGLE ================= */
.theme-toggle { display: inline-grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 999px; cursor: pointer; border: 1px solid var(--line-d2); background: rgba(255,255,255,.06); color: var(--text-d);
  transition: background .25s, border-color .25s, color .25s, transform .18s cubic-bezier(.2,.7,.3,1); }
.theme-toggle:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.nav--solid .theme-toggle { color: var(--head); border-color: var(--line); background: var(--paper); }
.nav--solid .theme-toggle:hover { background: var(--paper-2); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .tt-sun, .theme-toggle .tt-moon { display: inline-flex; }
.theme-toggle .tt-moon { display: none; }
html[data-theme="light"] .theme-toggle .tt-sun { display: none; }
html[data-theme="light"] .theme-toggle .tt-moon { display: inline-flex; }

.nav-mobile-toggle { display: none; align-items: center; width: 100%; padding: 14px 4px; margin-top: 4px;
  background: none; border: 0; border-top: 1px solid var(--line); cursor: pointer;
  font-family: var(--ff-body); font-weight: 600; font-size: 16px; color: var(--head); text-align: left; }
.nav-mobile-toggle .tt-sun, .nav-mobile-toggle .tt-moon { align-items: center; gap: 10px; }
.nav-mobile-toggle .tt-sun { display: inline-flex; }
.nav-mobile-toggle .tt-moon { display: none; }
.nav-mobile-toggle svg { width: 18px; height: 18px; color: var(--accent); }
html[data-theme="light"] .nav-mobile-toggle .tt-sun { display: none; }
html[data-theme="light"] .nav-mobile-toggle .tt-moon { display: inline-flex; }
@media (max-width: 860px) {
  .nav-cta .theme-toggle { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* ================= LIGHT MODE ================= */
html[data-theme="light"] {
  --line-d:  rgba(20,34,77,.10);
  --line-d2: rgba(20,34,77,.16);
  --text-d:  #16223f;   /* was light-on-dark → now dark-on-light */
  --muted-d: #5a6a8c;
  --ok:      #15a44e;   /* deeper green for contrast on white cards */
}
html[data-theme="light"] body { background: var(--white); }

/* dark sections → light text */
html[data-theme="light"] .dark-bg { color: var(--body); }
html[data-theme="light"] .dark-bg h1,
html[data-theme="light"] .dark-bg h2,
html[data-theme="light"] .dark-bg h3,
html[data-theme="light"] .dark-bg h4 { color: var(--head); }
html[data-theme="light"] .eyebrow.on-dark { color: var(--accent-deep); }
html[data-theme="light"] .logo-word { color: var(--head); }   /* nav-top + footer */
html[data-theme="light"] .nav-os { background: rgba(20,34,77,.05); border-color: var(--line); }

/* hero */
html[data-theme="light"] .hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, color-mix(in srgb, var(--accent) 16%, #fff) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}
html[data-theme="light"] .hero-glow { opacity: .45; }
html[data-theme="light"] .hero-price-main { color: var(--head); }
html[data-theme="light"] .hp-cur { color: var(--accent-deep); }
html[data-theme="light"] .grad-text {
  background: linear-gradient(100deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text; background-clip: text;
}

/* console — stays dark on purpose (re-pin its tokens locally) */
html[data-theme="light"] .console {
  --text-d: #e8eefc; --muted-d: #94a4cc;
  --line-d: rgba(150,178,255,.14); --line-d2: rgba(150,178,255,.22);
  background: linear-gradient(180deg, #111e46, #0c1738);
  border-color: rgba(150,178,255,.22);
}

/* trust band + the "managed" highlight card intentionally stay dark (they use --head) */

/* pricing */
html[data-theme="light"] .pricing { background: linear-gradient(180deg, var(--paper), #ffffff); }
html[data-theme="light"] .term-seg,
html[data-theme="light"] .os-toggle { background: rgba(20,34,77,.04); }
html[data-theme="light"] .pcard { background: #fff; border-color: var(--line); box-shadow: var(--shadow-card); }
html[data-theme="light"] .pcard--featured { background: #fff; border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-pop); }
html[data-theme="light"] .pcard--value { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
html[data-theme="light"] .pcard-name,
html[data-theme="light"] .pcard-amt,
html[data-theme="light"] .pcard-talk,
html[data-theme="light"] .pcard-feat b { color: var(--head); }
html[data-theme="light"] .pcard-cur,
html[data-theme="light"] .pcard-managed { color: var(--accent-deep); }

/* use cases */
html[data-theme="light"] .uses { background: linear-gradient(180deg, var(--paper-2), var(--paper)); }
html[data-theme="light"] .ucard { background: #fff; border-color: var(--line); box-shadow: var(--shadow-card); }
html[data-theme="light"] .ucard:hover { background: #fff; border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); box-shadow: var(--shadow-pop); }
html[data-theme="light"] .ucard-title { color: var(--head); }
html[data-theme="light"] .ucard-ico { color: var(--accent); }

/* final CTA */
html[data-theme="light"] .final {
  background:
    radial-gradient(900px 500px at 50% 120%, color-mix(in srgb, var(--accent) 16%, #fff), transparent 60%),
    linear-gradient(180deg, var(--paper), #ffffff);
}
html[data-theme="light"] .final-meta svg { color: var(--accent-deep); }

/* footer */
html[data-theme="light"] .footer { background: var(--paper-2); border-top: 1px solid var(--line); }
html[data-theme="light"] .footer-cols h4 { color: var(--head); }
html[data-theme="light"] .footer-base { color: #6a7482; }

/* ghost-on-dark buttons → light outline buttons */
html[data-theme="light"] .btn-ghost-d { background: #fff; border-color: var(--line); color: var(--head); }
html[data-theme="light"] .btn-ghost-d:hover { background: var(--paper); }
