/* ==========================================================================
   NettForge — marketing site stylesheet
   Theme: deep charcoal + NettForge red (matches the Vault app)
   ========================================================================== */

/* ---------- self-hosted fonts (works fully offline) ---------- */
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('../fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url('../fonts/inter-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family:'JetBrains Mono'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/jetbrains-mono-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'JetBrains Mono'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/jetbrains-mono-latin-500-normal.woff2') format('woff2'); }

:root {
  /* surfaces — Aurora Vault identity: deep indigo ground + frosted glass,
     matched to the app so the site and the product feel like one thing. */
  --bg:        #0A0D1A;
  --bg-2:      #070A14;
  --surface:   rgba(255,255,255,0.045);
  --surface-2: rgba(255,255,255,0.075);
  --border:    rgba(255,255,255,0.09);
  --border-2:  rgba(255,255,255,0.17);

  /* Aurora violet accent (matches the Vault app + logo). --brand-rgb drives
     every accent tint site-wide, so this one line re-colours the whole site. */
  --brand-rgb: 124, 108, 255;
  --ember:      #7C6CFF;
  --ember-hot:  #6A5AF2;
  --ember-gold: #B3A8FF;
  --ember-soft: rgba(var(--brand-rgb), 0.14);
  --ember-glow: rgba(var(--brand-rgb), 0.42);

  /* aurora background orbs */
  --aurora-1: rgba(124,108,255,0.22);
  --aurora-2: rgba(45,140,239,0.16);
  --aurora-3: rgba(44,192,172,0.13);

  /* text */
  --text:      #EAECF6;
  --text-soft: #C3C6D6;
  --text-mute: #868BA3;

  /* misc */
  --ok:   #3DD68C;
  --warn: #F0B24A;
  --bad:  #FF5A6A;

  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1180px;
  --shadow:    0 24px 70px rgba(0,0,0,0.5);
  --grad-ember: linear-gradient(135deg, #9B8CFF 0%, #7C6CFF 48%, #6A5AF2 100%);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
/* living aurora background — subtle, drifting, behind everything */
body::before {
  content: ""; position: fixed; inset: -20%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 42% at 16% 8%, var(--aurora-1), transparent 62%),
    radial-gradient(42% 40% at 86% 14%, var(--aurora-2), transparent 60%),
    radial-gradient(46% 48% at 74% 92%, var(--aurora-3), transparent 62%),
    radial-gradient(40% 44% at 6% 86%, var(--aurora-1), transparent 60%);
  filter: saturate(1.1);
  animation: auroraDrift 32s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1); }
  50%  { transform: translate3d(3%, 2%, 0) scale(1.07); }
  100% { transform: translate3d(-1%, 3%, 0) scale(1.03); }
}
@media (prefers-reduced-motion: reduce) { body::before { animation: none; } }
a { color: inherit; text-decoration: none; }
/* keyboard-focus visibility for links, buttons and fields */
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 6px; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.maxw-680 { max-width: 680px; }
.maxw-760 { max-width: 760px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.28rem; font-weight: 700; letter-spacing: -0.01em; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--text-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ember-gold);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--grad-ember); border-radius: 2px; }
.text-grad {
  background: var(--grad-ember);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.muted { color: var(--text-mute); }
.soft  { color: var(--text-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 11px;
  font-weight: 650; font-size: 0.97rem; letter-spacing: 0.01em;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--grad-ember); color: #ffffff; font-weight: 750;
  box-shadow: 0 8px 24px rgba(var(--brand-rgb),0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(var(--brand-rgb),0.42); }
.btn--ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border-2); }
.btn--ghost:hover { border-color: var(--ember); color: #fff; background: var(--surface-2); }
.btn--lg { padding: 16px 30px; font-size: 1.03rem; }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 16px; font-size: 0.87rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,13,26,0.62);
  backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-scrolled { border-bottom-color: var(--border); background: rgba(10,13,26,0.82); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.brand svg { width: 30px; height: 30px; filter: drop-shadow(0 0 10px var(--ember-glow)); }
.brand span { color: #fff; }
.brand span b { color: var(--ember); font-weight: 800; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--text-soft); font-size: 0.94rem; font-weight: 500; transition: color .18s ease; }
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 40px; height: 40px; border-radius: 9px; border: 1px solid var(--border-2); align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 18px; height: 2px; background: #fff; position: relative; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff; }
.nav__toggle span::before { top: -6px; } .nav__toggle span::after { top: 6px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(620px 360px at 50% -6%, rgba(var(--brand-rgb),0.24), transparent 60%),
    radial-gradient(700px 420px at 82% 10%, rgba(45,140,239,0.14), transparent 62%),
    radial-gradient(640px 420px at 16% 30%, rgba(44,192,172,0.10), transparent 64%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(760px 480px at 50% 6%, #000 0%, transparent 78%);
  mask-image: radial-gradient(760px 480px at 50% 6%, #000 0%, transparent 78%);
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--ember-soft); border: 1px solid rgba(var(--brand-rgb),0.28);
  color: var(--ember-gold); font-size: 0.82rem; font-weight: 600;
  margin-bottom: 26px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 10px var(--ember); }
.hero h1 { margin: 0 auto 22px; max-width: 900px; }
.hero .lead { max-width: 640px; margin: 0 auto 34px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero__note { font-size: 0.86rem; color: var(--text-mute); display: inline-flex; align-items: center; gap: 8px; }
.hero__note svg { width: 15px; height: 15px; stroke: var(--ok); }

/* app mockup window */
.window {
  margin-top: 60px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-2); background: var(--bg-2);
  box-shadow: var(--shadow); position: relative; z-index: 1;
}
.window__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: var(--surface); border-bottom: 1px solid var(--border); }
.window__bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.window__bar i:nth-child(1){ background:#ff5f57; } .window__bar i:nth-child(2){ background:#febc2e; } .window__bar i:nth-child(3){ background:#28c840; }
.window__bar span { margin-left: 12px; font-size: 0.78rem; color: var(--text-mute); }
.window__body { padding: 0; }
.vault { display: grid; grid-template-columns: 210px 1fr; min-height: 360px; text-align: left; }
.vault__side { background: var(--surface); border-right: 1px solid var(--border); padding: 18px 14px; }
.vault__side h5 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute); margin: 6px 8px 12px; }
.vault__folder { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 8px; font-size: 0.9rem; color: var(--text-soft); }
.vault__folder:hover, .vault__folder.active { background: var(--surface-2); color: #fff; }
.vault__folder .fdot { width: 9px; height: 9px; border-radius: 3px; }
.vault__main { padding: 16px 20px; }
.vault__row { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 12px; padding: 12px 8px; border-bottom: 1px solid var(--border); }
.vault__row .fav { width: 26px; height: 26px; border-radius: 7px; background: var(--ember-soft); display:flex; align-items:center; justify-content:center; font-size:0.8rem; color: var(--ember-gold); font-weight: 700; }
.vault__row .name { font-weight: 600; font-size: 0.92rem; }
.vault__row .sub { font-size: 0.78rem; color: var(--text-mute); }
.vault__row .badge-dots { color: var(--text-mute); letter-spacing: 2px; font-size: 0.9rem; }

/* ---------- logos / trust strip ---------- */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trust__row { display: flex; flex-wrap: wrap; gap: 20px 48px; align-items: center; justify-content: center; padding: 30px 0; }
.trust__item { display: inline-flex; align-items: center; gap: 9px; color: var(--text-mute); font-weight: 600; font-size: 0.92rem; }
.trust__item svg { width: 18px; height: 18px; stroke: var(--ember); }

/* ---------- feature grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: 0 18px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--ember-soft); border: 1px solid rgba(var(--brand-rgb),0.25); margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; stroke: var(--ember); fill: none; }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--text-soft); font-size: 0.95rem; }

.section__head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.section__head .eyebrow { margin-bottom: 16px; }
.section__head h2 { margin-bottom: 14px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-2); }
.step__num {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #ffffff; background: var(--grad-ember); margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(var(--brand-rgb),0.3);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.94rem; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__body .eyebrow { margin-bottom: 16px; }
.split__body h2 { margin-bottom: 16px; }
.split__body p { color: var(--text-soft); margin-bottom: 14px; }
.checklist { margin-top: 22px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); font-size: 0.96rem; }
.checklist li svg { flex: 0 0 auto; width: 21px; height: 21px; margin-top: 2px; stroke: var(--ember); }
.split__media { position: relative; }
.media-card {
  border: 1px solid var(--border-2); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow);
}

/* code / terminal block */
.code {
  background: #0d0d10; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86rem; line-height: 1.9; color: var(--text-soft); overflow-x: auto;
}
.code .c-key { color: var(--ember-gold); } .code .c-val { color: #7ee0b0; } .code .c-mut { color: var(--text-mute); }

/* ---------- stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 26px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-2); }
.stat b { display: block; font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; }
.stat span { color: var(--text-mute); font-size: 0.9rem; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 30px; position: relative; transition: transform .2s ease, border-color .2s ease;
}
.plan:hover { transform: translateY(-4px); }
.plan--featured { border-color: rgba(var(--brand-rgb),0.5); background: linear-gradient(180deg, rgba(var(--brand-rgb),0.08), var(--bg-2) 40%); box-shadow: 0 24px 60px rgba(var(--brand-rgb),0.12); }
.plan__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-ember); color: #ffffff; font-weight: 750; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.plan h3 { font-size: 1.15rem; margin-bottom: 6px; }
.plan__desc { color: var(--text-mute); font-size: 0.9rem; min-height: 42px; }
.plan__price { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.plan__price b { font-size: 2.7rem; font-weight: 800; letter-spacing: -0.02em; }
.plan__price span { color: var(--text-mute); font-size: 0.95rem; }
.plan__note { color: var(--text-mute); font-size: 0.82rem; margin-bottom: 22px; }
.plan__list { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; color: var(--text-soft); }
.plan__list li svg { flex: 0 0 auto; width: 19px; height: 19px; stroke: var(--ember); margin-top: 2px; }
.plan__list li.off { color: var(--text-mute); } .plan__list li.off svg { stroke: var(--text-mute); }

/* billing toggle */
.billing-toggle { display: inline-flex; align-items: center; gap: 14px; padding: 8px; margin: 0 auto 44px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg-2); }
.billing-toggle button { padding: 9px 20px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; color: var(--text-soft); transition: all .18s ease; }
.billing-toggle button.active { background: var(--grad-ember); color: #ffffff; }
.billing-toggle .save { font-size: 0.74rem; color: var(--ember-gold); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; background: var(--bg-2); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-weight: 650; font-size: 1.02rem; text-align: left; }
.faq__q .ic { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; transition: transform .2s ease, background .2s ease; color: var(--ember); font-size: 1.1rem; }
.faq__item.open .faq__q .ic { transform: rotate(45deg); background: var(--ember-soft); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 22px 22px; color: var(--text-soft); font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 64px 40px; text-align: center; border: 1px solid rgba(var(--brand-rgb),0.3); background: linear-gradient(135deg, rgba(var(--brand-rgb),0.14), rgba(45,140,239,0.06)); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 260px at 50% 0%, rgba(var(--brand-rgb),0.22), transparent 70%); pointer-events: none; }
.cta-band h2 { position: relative; margin-bottom: 14px; }
.cta-band p { position: relative; color: var(--text-soft); max-width: 520px; margin: 0 auto 28px; }
.cta-band .hero__actions { position: relative; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 60px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; margin-bottom: 44px; }
.footer__brand p { color: var(--text-mute); font-size: 0.9rem; margin-top: 14px; max-width: 280px; }
.footer h6 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute); margin-bottom: 16px; }
.footer__links a { display: block; color: var(--text-soft); font-size: 0.92rem; padding: 6px 0; transition: color .16s ease; }
.footer__links a:hover { color: var(--ember); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--text-mute); font-size: 0.85rem; flex-wrap: wrap; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; transition: all .18s ease; }
.footer__social a:hover { border-color: var(--ember); color: var(--ember); }
.footer__social svg { width: 17px; height: 17px; }

/* ---------- auth pages ---------- */
.auth { min-height: calc(100vh - 68px); display: grid; grid-template-columns: 1fr 1fr; }
/* single-card auth pages (confirm email, log in, sign up) — centre the card on screen */
.auth--solo { grid-template-columns: 1fr; }
.auth--solo .auth__card { margin: 0 auto; }
.auth__aside { position: relative; padding: 60px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--border); background: linear-gradient(160deg, var(--bg-2), var(--bg)); overflow: hidden; }
.auth__aside .hero__glow { opacity: 0.8; }
.auth__aside-in { position: relative; z-index: 1; }
.auth__aside h2 { margin: 26px 0 16px; }
.auth__aside p { color: var(--text-soft); max-width: 400px; }
.auth__quote { position: relative; z-index: 1; border-left: 3px solid var(--ember); padding-left: 18px; color: var(--text-soft); font-size: 0.96rem; }
.auth__main { display: flex; align-items: center; justify-content: center; padding: 60px 40px; }
.auth__card { width: 100%; max-width: 420px; }
.auth__card h1 { font-size: 1.9rem; margin-bottom: 8px; }
.auth__card .sub { color: var(--text-mute); margin-bottom: 30px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-soft); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; padding: 13px 15px; background: var(--surface); border: 1px solid var(--border-2);
  border-radius: 10px; color: var(--text); font-size: 0.95rem; transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px var(--ember-soft); }
.field input::placeholder { color: #5c5c66; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field__hint { font-size: 0.78rem; color: var(--text-mute); margin-top: 6px; }
.divider { display: flex; align-items: center; gap: 14px; color: var(--text-mute); font-size: 0.82rem; margin: 22px 0; }
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; background: var(--border); }
.auth__foot { margin-top: 24px; text-align: center; font-size: 0.9rem; color: var(--text-mute); }
.auth__foot a { color: var(--ember); font-weight: 600; }

/* strength meter */
.meter { height: 6px; border-radius: 999px; background: var(--surface-2); overflow: hidden; margin-top: 10px; }
.meter__bar { height: 100%; width: 0; background: var(--bad); transition: width .25s ease, background .25s ease; border-radius: 999px; }

/* alerts */
.alert { padding: 12px 15px; border-radius: 10px; font-size: 0.88rem; margin-bottom: 18px; display: flex; gap: 10px; align-items: flex-start; }
.alert svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; }
.alert--info { background: var(--ember-soft); border: 1px solid rgba(var(--brand-rgb),0.3); color: var(--ember-gold); }
.alert--bad  { background: rgba(255,84,112,0.12); border: 1px solid rgba(255,84,112,0.35); color: #ff8ba0; }
.alert--ok   { background: rgba(62,207,142,0.12); border: 1px solid rgba(62,207,142,0.32); color: #7ee0b0; }

/* ---------- account dashboard ---------- */
.dash { padding: 48px 0 96px; }
.dash__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.dash__head h1 { font-size: 1.9rem; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px; font-size: 0.84rem; font-weight: 650; }
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.status-pill--active { background: rgba(62,207,142,0.12); color: #7ee0b0; border: 1px solid rgba(62,207,142,0.3); }
.status-pill--active .dot { background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.status-pill--locked { background: rgba(255,84,112,0.12); color: #ff8ba0; border: 1px solid rgba(255,84,112,0.35); }
.status-pill--locked .dot { background: var(--bad); box-shadow: 0 0 8px var(--bad); }
.status-pill--trial { background: var(--ember-soft); color: var(--ember-gold); border: 1px solid rgba(var(--brand-rgb),0.3); }
.status-pill--trial .dot { background: var(--ember); box-shadow: 0 0 8px var(--ember); }

.dash__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; }
.panel { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.panel h3 { margin-bottom: 6px; }
.panel .panel__sub { color: var(--text-mute); font-size: 0.88rem; margin-bottom: 20px; }
.kv { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.kv:last-child { border-bottom: none; }
.kv span { color: var(--text-mute); } .kv b { font-weight: 650; }

.locked-banner { border: 1px solid rgba(255,84,112,0.4); background: rgba(255,84,112,0.08); border-radius: var(--radius); padding: 26px; margin-bottom: 24px; display: flex; gap: 18px; align-items: flex-start; }
.locked-banner svg { width: 28px; height: 28px; flex: 0 0 auto; stroke: var(--bad); }
.locked-banner h3 { color: #ff8ba0; margin-bottom: 6px; }
.locked-banner p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 14px; }

.pay-row { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--border); border-radius: 11px; background: var(--surface); margin-bottom: 12px; cursor: pointer; transition: border-color .16s ease; }
.pay-row:hover, .pay-row.sel { border-color: var(--ember); }
.pay-row__ic { width: 42px; height: 30px; border-radius: 6px; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--text-soft); }
.pay-row b { font-size: 0.92rem; } .pay-row small { color: var(--text-mute); display: block; font-size: 0.8rem; }

/* progress / usage bar */
.usage { margin-top: 6px; }
.usage__bar { height: 9px; border-radius: 999px; background: var(--surface-2); overflow: hidden; margin: 8px 0 6px; }
.usage__fill { height: 100%; background: var(--grad-ember); border-radius: 999px; }

/* badge */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 0.76rem; font-weight: 650; background: var(--surface-2); color: var(--text-soft); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* page hero (inner pages) */
.page-hero { position: relative; padding: 80px 0 40px; overflow: hidden; text-align: center; }
.page-hero .hero__glow { opacity: 0.7; }
.page-hero-in { position: relative; z-index: 1; }
.page-hero h1 { max-width: 760px; margin: 18px auto; }
.page-hero .lead { max-width: 600px; margin: 0 auto; }

/* small print box */
.notebox { border: 1px dashed var(--border-2); border-radius: var(--radius); padding: 20px 22px; background: var(--bg-2); font-size: 0.9rem; color: var(--text-soft); display: flex; gap: 13px; }
.notebox svg { width: 20px; height: 20px; flex: 0 0 auto; stroke: var(--ember-gold); margin-top: 2px; }

/* ---------- legal / prose pages ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose .toc { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; background: var(--bg-2); margin-bottom: 40px; }
.prose .toc h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute); margin-bottom: 12px; }
.prose .toc a { display: inline-block; color: var(--text-soft); font-size: 0.92rem; padding: 4px 0; margin-right: 18px; }
.prose .toc a:hover { color: var(--ember); }
.prose h2 { font-size: 1.4rem; margin: 42px 0 14px; scroll-margin-top: 90px; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.08rem; margin: 26px 0 10px; color: var(--text); }
.prose p, .prose li { color: var(--text-soft); font-size: 0.98rem; margin-bottom: 14px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose ul li { list-style: disc; margin-bottom: 8px; }
.prose a { color: var(--ember); font-weight: 500; }
.prose strong { color: var(--text); }
.prose .meta { color: var(--text-mute); font-size: 0.88rem; margin-bottom: 6px; }
.prose .legal-note { border: 1px dashed var(--border-2); border-radius: var(--radius); padding: 16px 20px; background: var(--bg-2); font-size: 0.88rem; color: var(--text-mute); margin: 30px 0; display: flex; gap: 12px; }
.prose .legal-note svg { width: 18px; height: 18px; flex: 0 0 auto; stroke: var(--ember-gold); margin-top: 2px; }

/* contact layout */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__cards { display: grid; gap: 16px; }
.contact__card { display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-2); }
.contact__card .ic { width: 42px; height: 42px; border-radius: 11px; flex: 0 0 auto; background: var(--ember-soft); border: 1px solid rgba(var(--brand-rgb),0.25); display: flex; align-items: center; justify-content: center; }
.contact__card .ic svg { width: 20px; height: 20px; stroke: var(--ember); fill: none; }
.contact__card h4 { font-size: 1rem; margin-bottom: 3px; }
.contact__card p, .contact__card a { color: var(--text-soft); font-size: 0.9rem; }
.contact__card a:hover { color: var(--ember); }
.form-card { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-2); padding: 32px; }
.field textarea { width: 100%; padding: 13px 15px; background: var(--surface); border: 1px solid var(--border-2); border-radius: 10px; color: var(--text); font-size: 0.95rem; resize: vertical; min-height: 120px; }
.field textarea:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px var(--ember-soft); }

/* 404 */
.err-page { min-height: calc(100vh - 68px); display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; padding: 60px 24px; }
.err-page .hero__glow, .err-page .hero__grid { opacity: 0.6; }
.err-page__in { position: relative; z-index: 1; max-width: 520px; }
.err-page__code { font-size: clamp(5rem, 16vw, 9rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }

/* ---------- admin / business dashboard ---------- */
.admin { padding: 40px 0 90px; }
.admin__head { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:8px; }
.admin__head h1 { font-size:1.9rem; }
.metrics-row { display:grid; grid-template-columns:repeat(6,1fr); gap:14px; margin:22px 0 26px; }
.metric { background:var(--bg-2); border:1px solid var(--border); border-radius:var(--radius); padding:15px 16px; }
.metric b { display:block; font-size:1.6rem; font-weight:800; letter-spacing:-0.02em; line-height:1.2; }
.metric span { color:var(--text-mute); font-size:0.78rem; }
.admin__grid { display:grid; grid-template-columns:360px 1fr; gap:24px; align-items:start; }
.client-list { border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; background:var(--bg-2); max-height:660px; overflow-y:auto; }
.client-row { display:flex; align-items:center; gap:12px; padding:13px 15px; border-bottom:1px solid var(--border); cursor:pointer; transition:background .14s ease; }
.client-row:last-child { border-bottom:none; }
.client-row:hover, .client-row.sel { background:var(--surface); }
.client-row.sel { box-shadow:inset 3px 0 0 var(--ember); }
.client-row .av { width:36px; height:36px; border-radius:50%; flex:0 0 auto; background:var(--ember-soft); color:var(--ember-gold); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:0.78rem; }
.client-row .nm { font-weight:600; font-size:0.9rem; }
.client-row .em { font-size:0.76rem; color:var(--text-mute); }
.client-row .rt { margin-left:auto; flex:0 0 auto; }
.status-pill--sm { padding:4px 10px; font-size:0.72rem; }
.reason-callout { border-radius:var(--radius); padding:16px 18px; margin-bottom:22px; display:flex; gap:12px; align-items:flex-start; }
.reason-callout svg { width:20px; height:20px; flex:0 0 auto; margin-top:1px; }
.reason-callout.locked { border:1px solid rgba(255,84,112,0.4); background:rgba(255,84,112,0.08); } .reason-callout.locked svg { stroke:var(--bad); }
.reason-callout.canceled { border:1px solid var(--border-2); background:var(--surface); } .reason-callout.canceled svg { stroke:var(--text-mute); }
.reason-callout.trial { border:1px solid rgba(var(--brand-rgb),0.3); background:var(--ember-soft); } .reason-callout.trial svg { stroke:var(--ember); }
.reason-callout h4 { font-size:0.98rem; margin-bottom:3px; }
.reason-callout p { font-size:0.9rem; color:var(--text-soft); }
.admin-actions { display:flex; flex-wrap:wrap; gap:10px; margin:4px 0 8px; }
.act-groups { display:flex; flex-direction:column; gap:14px; margin:6px 0 10px; }
.act-group { display:flex; flex-direction:column; gap:6px; }
.act-label { font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color:var(--text-soft); font-weight:700; }
.act-group .admin-actions { margin:0; }
.timeline { margin-top:4px; }
.tl-item { display:flex; gap:12px; padding:11px 0; border-bottom:1px solid var(--border); }
.tl-item:last-child { border-bottom:none; }
.tl-ic { width:30px; height:30px; border-radius:8px; flex:0 0 auto; display:flex; align-items:center; justify-content:center; background:var(--surface-2); }
.tl-ic svg { width:15px; height:15px; }
.tl-body .lb { font-size:0.88rem; font-weight:600; }
.tl-body .mt { font-size:0.75rem; color:var(--text-mute); }
.tl-body .rs { font-size:0.82rem; color:var(--text-soft); margin-top:2px; }
.hist-row { display:flex; justify-content:space-between; align-items:center; padding:11px 0; border-bottom:1px solid var(--border); font-size:0.88rem; }
.hist-row:last-child { border-bottom:none; }
.empty-detail { border:1px dashed var(--border-2); border-radius:var(--radius); padding:70px 30px; text-align:center; color:var(--text-mute); background:var(--bg-2); }
.empty-detail svg { width:40px; height:40px; stroke:var(--border-2); margin:0 auto 16px; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .grid--3, .grid--4, .steps, .stats, .pricing { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split, .auth, .contact { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split { gap: 36px; }
  .auth__aside { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .dash__grid { grid-template-columns: 1fr; }
  .admin__grid { grid-template-columns: 1fr; }
  .metrics-row { grid-template-columns: repeat(3, 1fr); }
  .vault { grid-template-columns: 1fr; } .vault__side { display: none; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 10px 24px 20px; }
  .nav.open .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 22px; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .field__row { grid-template-columns: 1fr; }
  .nav__cta .btn--ghost { display: none; }
}

/* ---------- security & encryption panel (mirrors the Vault app) ---------- */
.specpanel { border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--surface), var(--bg-2)); padding: 24px 26px 12px; box-shadow: var(--shadow); }
.specpanel__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.specpanel__shield { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: rgba(62,207,142,0.12); border: 1px solid rgba(62,207,142,0.34); }
.specpanel__shield svg { width: 23px; height: 23px; stroke: var(--ok); fill: none; stroke-width: 2; }
.specpanel__head h3 { margin: 0 0 2px; font-size: 1.08rem; }
.specpanel__head p { color: var(--text-mute); font-size: 0.86rem; margin: 0; }
.badge--live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ok); }
.badge--live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.spec-row { display: flex; align-items: center; gap: 12px; padding: 13px 2px; border-top: 1px solid var(--border); }
.spec-row:first-of-type { border-top: none; }
.spec-tick { width: 22px; height: 22px; flex: 0 0 auto; border-radius: 6px; display: flex; align-items: center; justify-content: center; background: rgba(62,207,142,0.16); }
.spec-tick svg { width: 13px; height: 13px; stroke: var(--ok); stroke-width: 3.2; fill: none; }
.spec-row .lbl { font-size: 0.93rem; font-weight: 600; }
.spec-row .val { margin-left: auto; font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.78rem; color: var(--text-mute); text-align: right; }
.badge--argon { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 999px; border: 1px solid rgba(62,207,142,0.42); color: #7ee0b0; font-size: 0.78rem; font-weight: 650; background: rgba(62,207,142,0.08); white-space: nowrap; }
.badge--argon svg { width: 14px; height: 14px; stroke: var(--ok); fill: none; stroke-width: 2; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   NettForge — app showcase (real app screens shown in a browser frame),
   IT-teams wedge, "coming soon" plans, and the comparison table.
   Colours match the Vault app palette exactly so the previews read as the
   real thing. Added 2026-08-12 for the launch build.
   ========================================================================== */

/* ---- browser-chrome frame that wraps a live app screenshot ---- */
.appshot { border:1px solid var(--border); border-radius:16px; overflow:hidden; background:var(--surface); box-shadow:var(--shadow); }
.appshot__bar { display:flex; align-items:center; gap:7px; padding:11px 15px; background:var(--bg-2); border-bottom:1px solid var(--border); }
.appshot__bar i { width:11px; height:11px; border-radius:50%; background:#3a4150; display:inline-block; }
.appshot__bar i:nth-child(1){ background:#ff5f57; } .appshot__bar i:nth-child(2){ background:#febc2e; } .appshot__bar i:nth-child(3){ background:#28c840; }
.appshot__url { margin-left:10px; flex:1; font-size:.72rem; color:var(--text-mute); font-family:'JetBrains Mono',ui-monospace,monospace; background:var(--surface-2); border:1px solid var(--border); border-radius:7px; padding:4px 11px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.appshot__body { padding:0; }

/* generic app-surface tokens used inside the frames (mirror the app) */
.appui { display:grid; grid-template-columns:150px 1fr; min-height:280px; font-size:.82rem; }
.appui__side { background:#0B0D11; border-right:1px solid var(--border); padding:14px 12px; }
.appui__side h6 { font-size:.66rem; text-transform:uppercase; letter-spacing:.1em; color:var(--text-mute); margin:14px 0 8px; font-weight:700; }
.appui__side h6:first-child { margin-top:0; }
.appfolder { display:flex; align-items:center; gap:8px; padding:6px 8px; border-radius:7px; color:var(--text-soft); margin-bottom:2px; }
.appfolder.on { background:var(--ember-soft); color:#fff; }
.appfolder .fdot { width:9px; height:9px; border-radius:3px; flex:0 0 auto; }
.appui__main { padding:16px 18px; background:var(--surface); }
.approw { display:flex; align-items:center; gap:12px; padding:11px 4px; border-bottom:1px solid var(--border); }
.approw:last-child { border-bottom:none; }
.appicon { width:32px; height:32px; flex:0 0 auto; border-radius:9px; display:flex; align-items:center; justify-content:center; font-weight:800; color:#fff; font-size:.78rem; background:linear-gradient(135deg,#2a2f3a,#191c23); border:1px solid var(--border-2); }
.appicon--dev { background:linear-gradient(135deg,#5B8DEF,#3a63b8); }
.approw .nm { font-weight:650; color:var(--text); }
.approw .sb { font-size:.72rem; color:var(--text-mute); }
.appchip { margin-left:auto; display:inline-flex; align-items:center; gap:5px; padding:4px 9px; border-radius:999px; font-size:.66rem; font-weight:700; letter-spacing:.02em; }
.appchip--connect { color:#8ab8ff; background:rgba(91,141,239,.14); border:1px solid rgba(91,141,239,.34); }
.appchip--2fa { color:#7ee0b0; background:rgba(56,179,107,.13); border:1px solid rgba(56,179,107,.32); }
.appdots { margin-left:auto; letter-spacing:2px; color:var(--text-mute); font-size:.7rem; }

/* health / security tiles inside a frame */
.apptiles { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; padding:16px 18px; background:var(--surface); }
.apptile { border:1px solid var(--border); border-radius:12px; padding:14px; background:var(--bg-2); }
.apptile .big { font-size:1.5rem; font-weight:800; letter-spacing:-.02em; }
.apptile .cap { font-size:.72rem; color:var(--text-mute); margin-top:2px; }
.apptile--good .big { color:var(--ok); } .apptile--warn .big { color:var(--warn); } .apptile--red .big { color:var(--ember); }
/* Aurora dashboard mockup (score ring + verdict + quick actions) */
.mock-dash { padding:20px 20px 22px; background:linear-gradient(180deg, color-mix(in srgb, var(--ember) 8%, var(--surface)), var(--surface)); }
.mock-hero { display:flex; align-items:center; gap:20px; }
.mock-ring { width:118px; height:118px; flex:none; }
.mock-ring text { font-family:var(--font); }
.mv-lbl { font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; color:var(--text-mute); font-weight:800; }
.mv-word { font-size:1.5rem; font-weight:800; letter-spacing:-.02em; color:var(--ember); margin-top:3px; }
.mv-sub { font-size:.82rem; color:var(--text-soft); margin-top:6px; }
.mv-trend { display:inline-flex; align-items:center; gap:7px; margin-top:10px; font-size:.72rem; color:var(--text-soft); background:var(--surface-2); border:1px solid var(--border); border-radius:20px; padding:4px 10px; }
.mv-trend b { color:var(--ok); }
.mock-actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:18px; }
.mock-act { display:flex; align-items:center; gap:10px; padding:11px 12px; border-radius:11px; background:var(--surface-2); border:1px solid var(--border); }
.mock-act .ma-i { width:32px; height:32px; border-radius:9px; display:grid; place-items:center; background:var(--ember-soft); color:var(--ember); flex:none; }
.mock-act .ma-i svg { width:16px; height:16px; stroke:var(--ember); fill:none; }
.mock-act b { font-size:.82rem; font-weight:650; display:block; }
.mock-act i { font-size:.68rem; color:var(--text-mute); font-style:normal; }
/* colour-picker mockup (make it yours) */
.mock-swatches { display:flex; gap:10px; margin:14px 0 4px; }
.mock-sw { width:30px; height:30px; border-radius:9px; box-shadow:inset 0 0 0 1px rgba(255,255,255,.18); position:relative; }
.mock-sw.on::after { content:"✓"; position:absolute; inset:0; display:grid; place-items:center; color:#fff; font-weight:800; font-size:14px; text-shadow:0 1px 2px rgba(0,0,0,.5); }

/* ---- live RGB preview (the accent drifts through the spectrum in real time) ---- */
@keyframes nfHue { to { filter: hue-rotate(360deg); } }
.rgb-live { background:linear-gradient(180deg, color-mix(in srgb, var(--ember) 10%, var(--surface)), var(--surface)); border-bottom:1px solid var(--border); padding:16px 20px; }
.rgb-live__label { display:inline-flex; align-items:center; gap:7px; font-size:.7rem; font-weight:800; letter-spacing:.09em; text-transform:uppercase; color:var(--text-mute); }
.rgb-live__label::before { content:""; width:8px; height:8px; border-radius:50%; background:#7c6cff; animation:nfHue 6s linear infinite; box-shadow:0 0 8px currentColor; }
.rgb-live__stage { display:flex; align-items:center; gap:18px; margin-top:12px; }
.rgb-live__ring { width:64px; height:64px; flex:none; animation:nfHue 6s linear infinite; }
.rgb-live__arc { stroke:#7c6cff; }
.rgb-live__col { display:flex; flex-direction:column; gap:11px; flex:1; }
.rgb-live__btn { align-self:flex-start; padding:9px 20px; border-radius:10px; background:#7c6cff; color:#fff; font-weight:700; font-size:.9rem; animation:nfHue 6s linear infinite; box-shadow:0 6px 20px color-mix(in srgb,#7c6cff 45%,transparent); }
.rgb-live__dots { display:flex; gap:9px; }
.rgb-live__dots i { width:15px; height:15px; border-radius:5px; background:#7c6cff; animation:nfHue 6s linear infinite; }
.rgb-live__dots i:nth-child(2){ animation-delay:-1.2s } .rgb-live__dots i:nth-child(3){ animation-delay:-2.4s }
.rgb-live__dots i:nth-child(4){ animation-delay:-3.6s } .rgb-live__dots i:nth-child(5){ animation-delay:-4.8s }
@media (prefers-reduced-motion: reduce){ .rgb-live__label::before,.rgb-live__ring,.rgb-live__btn,.rgb-live__dots i{ animation:none; } }

/* ---- IT / ISP wedge strip ---- */
.wedge-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.wedge-chip { display:inline-flex; align-items:center; gap:8px; padding:9px 15px; border-radius:11px; background:var(--surface); border:1px solid var(--border-2); font-size:.86rem; font-weight:600; color:var(--text-soft); }
.wedge-chip svg { width:16px; height:16px; stroke:var(--ember-gold); fill:none; stroke-width:2; }

/* ---- coming-soon plan cards ---- */
.plan--soon { opacity:.86; }
.plan__soon { display:inline-flex; align-items:center; gap:6px; align-self:flex-start; padding:4px 11px; border-radius:999px; font-size:.68rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--ember-gold); background:var(--ember-soft); border:1px solid rgba(var(--brand-rgb),.3); margin-bottom:10px; }
.soon-note { margin-top:22px; font-size:.9rem; color:var(--text-mute); }

/* ---- comparison table (brag / insight) ---- */
.compare { width:100%; border-collapse:separate; border-spacing:0; margin-top:8px; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.compare th, .compare td { padding:15px 16px; text-align:left; border-bottom:1px solid var(--border); font-size:.93rem; }
.compare thead th { background:var(--bg-2); font-weight:700; font-size:.82rem; letter-spacing:.02em; }
.compare thead th.us { color:#fff; }
.compare tbody tr:last-child td { border-bottom:none; }
.compare td.feat { color:var(--text-soft); font-weight:600; }
.compare .yes { color:var(--ok); font-weight:700; } .compare .no { color:var(--text-mute); }
.compare col.us-col, .compare th.us, .compare td.us { background:var(--ember-soft); }
.compare td.us { color:#fff; font-weight:700; }
.compare-wrap { overflow-x:auto; border-radius:var(--radius); }

/* ---- showcase grid ---- */
.showcase { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:12px; }
.showcase .cap-row { margin-top:12px; }
.showcase .cap-row h4 { font-size:1.02rem; font-weight:700; margin-bottom:3px; }
.showcase .cap-row p { font-size:.9rem; color:var(--text-mute); }
@media (max-width:820px){ .showcase { grid-template-columns:1fr; } .appui { grid-template-columns:120px 1fr; } }

/* ============================================================
   WORLD-CLASS PRODUCT STAGE
   Floats a real app screenshot on an ambient aurora bloom with
   a soft floor reflection, a gentle 3D tilt that levels on hover,
   and glass chips that lift out of the frame for depth.
   ============================================================ */
.stage { position:relative; isolation:isolate; padding:clamp(18px,4vw,52px) clamp(6px,2.4vw,30px) clamp(30px,5vw,58px); }
/* ambient aurora bloom behind the frame */
.stage::before {
  content:""; position:absolute; inset:-4% 2% 6%; z-index:-2; border-radius:48% 52% 55% 45%;
  background:
    radial-gradient(46% 54% at 28% 24%, rgba(124,108,255,.50), transparent 66%),
    radial-gradient(44% 50% at 80% 32%, rgba(45,140,239,.34), transparent 64%),
    radial-gradient(52% 56% at 62% 90%, rgba(44,192,172,.26), transparent 66%);
  filter:blur(52px) saturate(1.2); opacity:.85;
  animation:stageDrift 18s ease-in-out infinite alternate;
}
@keyframes stageDrift {
  from { transform:translate3d(-2%,-1%,0) scale(1); }
  to   { transform:translate3d(2%,1.5%,0) scale(1.07); }
}
.stage__frame {
  position:relative;
  transform:perspective(1900px) rotateX(6deg) rotateY(-4deg);
  transform-style:preserve-3d;
  transition:transform .9s cubic-bezier(.2,.7,.2,1);
  will-change:transform;
}
.stage:hover .stage__frame { transform:perspective(1900px) rotateX(1.5deg) rotateY(-1deg); }
/* flat variant for grid cards: keep the glow + reflection, drop the tilt */
.stage--flat { padding:clamp(14px,3vw,34px) clamp(4px,1.6vw,18px) clamp(24px,4vw,42px); }
.stage--flat .stage__frame, .stage--flat:hover .stage__frame { transform:none; }
.stage--flat::before { inset:-2% 4% 6%; filter:blur(44px); opacity:.7; }
.stage--flat .stage__frame > .appshot { transition:transform .5s cubic-bezier(.2,.7,.2,1); }
.stage--flat:hover .stage__frame > .appshot { transform:translateY(-6px); }
.stage__frame > .appshot {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 44px 90px -34px rgba(0,0,0,.88),
    0 24px 60px -28px rgba(124,108,255,.42);
}
/* mirrored glow on the floor */
.stage__floor {
  position:absolute; left:10%; right:10%; bottom:2.5%; height:56px; z-index:-1;
  background:radial-gradient(62% 100% at 50% 0, rgba(124,108,255,.34), transparent 74%);
  filter:blur(22px); opacity:.9;
}
/* glass chips that lift out of the frame */
.float-chip {
  position:absolute; z-index:4; display:flex; align-items:center; gap:11px;
  padding:11px 14px; border-radius:15px;
  background:color-mix(in srgb, #0B0F1E 76%, transparent);
  -webkit-backdrop-filter:blur(16px) saturate(1.5); backdrop-filter:blur(16px) saturate(1.5);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 24px 54px -20px rgba(0,0,0,.82), inset 0 1px 0 rgba(255,255,255,.08);
  transform:translateZ(70px);
  animation:chipFloat 6.5s ease-in-out infinite;
}
.float-chip--tr { top:6%; right:-3%; }
.float-chip--bl { bottom:9%; left:-4%; animation-delay:-3s; }
@keyframes chipFloat {
  0%,100% { transform:translateZ(70px) translateY(0); }
  50%     { transform:translateZ(70px) translateY(-9px); }
}
.float-chip .fc-ring { width:40px; height:40px; flex:none; }
.float-chip .fc-live { position:relative; width:11px; height:11px; flex:none; border-radius:50%; background:var(--ok); box-shadow:0 0 0 0 rgba(61,214,140,.6); animation:livePing 2.4s ease-out infinite; }
@keyframes livePing { 0%{ box-shadow:0 0 0 0 rgba(61,214,140,.55);} 70%{ box-shadow:0 0 0 9px rgba(61,214,140,0);} 100%{ box-shadow:0 0 0 0 rgba(61,214,140,0);} }
.float-chip .fc-tx { line-height:1.25; }
.float-chip .fc-tx b { display:block; font-size:.82rem; font-weight:750; color:#fff; letter-spacing:-.01em; }
.float-chip .fc-tx i { font-style:normal; font-size:.68rem; color:var(--text-mute); }
.float-chip .fc-tx i .up { color:var(--ok); font-weight:700; }
.float-chip .fc-tx i .down { color:#ff6b6b; font-weight:700; }
.float-chip .fc-ic { width:34px; height:34px; flex:none; border-radius:10px; display:grid; place-items:center; background:var(--ember-soft); border:1px solid rgba(124,108,255,.32); }
.float-chip .fc-ic svg { width:17px; height:17px; stroke:var(--ember); fill:none; stroke-width:2; }
/* live pulse on the mock folder dots (matches the real app) */
.stage .appfolder .fdot { position:relative; }
.stage .appfolder.on .fdot::after {
  content:""; position:absolute; inset:-3px; border-radius:5px;
  box-shadow:0 0 0 0 currentColor; color:inherit;
  animation:dotPulseMini 2.8s ease-out infinite;
}
@keyframes dotPulseMini { 0%{ box-shadow:0 0 6px 1px rgba(124,108,255,.5);} 50%{ box-shadow:0 0 11px 3px rgba(124,108,255,.28);} 100%{ box-shadow:0 0 6px 1px rgba(124,108,255,.5);} }

@media (prefers-reduced-motion:reduce) {
  .stage::before, .float-chip, .float-chip .fc-live, .stage .appfolder.on .fdot::after { animation:none; }
  .stage__frame, .stage:hover .stage__frame { transition:none; }
}
@media (max-width:820px) {
  .stage { padding:8px 0 16px; }
  .stage__frame, .stage:hover .stage__frame { transform:none; }
  .stage::before { inset:0; filter:blur(40px); border-radius:24px; }
  .float-chip { display:none; }
}
