/* ═══════════════════════════════════════════════════════════
   CyberDeka Solutions, v7 "Fable Ember"
   Semi-dark signature theme · charcoal + ember orange + copper
   Sora + Inter
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #17181c;            /* graphite, not black */
  --bg-deep: #0e0f12;
  --bg-raise: #1f2127;
  --surface: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f2f0ed;
  --muted: #a3a0a8;

  --paper: #f4f2ee;          /* warm light sections */
  --paper-raise: #ffffff;
  --ink: #1d1c20;
  --ink-muted: #5c5a63;
  --line-light: #e2ded7;

  --ember: #e8611c;          /* signature orange */
  --ember-bright: #ff7a2f;
  --copper: #a04018;         /* rust, between ember and brick */
  --brick: #8e2c1a;          /* signature CMMC CCP badge red; use sparingly */
  --warm: #ffb37a;
  --steel: #43454c;

  --grad-ember: linear-gradient(100deg, var(--brick), var(--ember) 52%, var(--ember-bright));
  --radius: 18px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::selection { background: var(--brick); color: #fff; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, canvas { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: italic; }

.container { width: min(1120px, 92%); margin-inline: auto; }

/* ── Accessibility: keyboard focus & skip link ────────────── */
:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}
.section-light :focus-visible { outline-color: var(--copper); }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  background: var(--ember);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  transition: top 0.2s;
}
.skip-link:focus-visible { top: 0; }

/* ── Spacing utilities (replace one-off inline styles) ────── */
.u-mt-8 { margin-top: 8px; }
.u-mt-20 { margin-top: 20px; }
.u-mt-24 { margin-top: 24px; }
.u-mt-26 { margin-top: 26px; }
.u-mt-28 { margin-top: 28px; }
.u-mt-30 { margin-top: 30px; }
.u-mt-34 { margin-top: 34px; }
.u-mt-40 { margin-top: 40px; }
.u-mb-16 { margin-bottom: 16px; }

/* ── Scroll progress bar ──────────────────────────────────── */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 60;
  background: transparent;
  pointer-events: none;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-ember);
  box-shadow: 0 0 12px rgba(232, 97, 28, 0.55);
  transition: width 0.08s linear;
}

/* ── Type helpers ─────────────────────────────────────────── */
.ember-text {
  background: var(--grad-ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  max-width: 24ch;
}
/* Small ember rule that draws itself in as the title reveals. */
.section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 16px;
  border-radius: 2px;
  background: var(--grad-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease 0.25s;
}
.section-title.is-visible::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .section-title::after { transform: scaleX(1); transition: none; }
}
.section-light .section-title { color: var(--ink); }
.section-light .section-title em { color: var(--copper); }

.body-copy { color: var(--muted); max-width: 62ch; margin-top: 16px; }
.section-light .body-copy { color: var(--ink-muted); }
.body-note { font-size: 0.85rem; opacity: 0.75; font-style: italic; }

.footnote { font-size: 0.82rem; color: var(--muted); margin-top: 30px; max-width: 70ch; }
.section-light .footnote { color: var(--ink-muted); }

.text-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ember);
  transition: color 0.2s;
}
.text-link:hover { color: var(--ember-bright); }

/* ── Badges (signature style) ─────────────────────────────── */
.badge-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 4px;
  color: #fff;
}
.badge-ember { background: var(--ember); }
.badge-copper { background: var(--brick); }
.badge-steel { background: var(--steel); }
.badge-label { font-size: 0.82rem; color: var(--muted); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: 10px;
  padding: 13px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-sm { padding: 9px 18px; font-size: 0.86rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

.btn-ember { background: var(--grad-ember); color: #fff; box-shadow: 0 8px 26px rgba(232, 97, 28, 0.3); }
.btn-ember::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.6s ease;
}
.btn-ember:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(232, 97, 28, 0.42); }
.btn-ember:hover::after { transform: translateX(110%); }

.btn-outline { border-color: var(--line); color: var(--text); background: var(--surface); }
.btn-outline:hover { border-color: var(--ember); color: var(--ember-bright); transform: translateY(-2px); }
.section-light .btn-outline { border-color: var(--line-light); color: var(--ink); background: var(--paper-raise); }
.section-light .btn-outline:hover { border-color: var(--ember); color: var(--copper); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(14, 15, 18, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(14, 15, 18, 0.92); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
}
.brand-accent { color: var(--ember); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--grad-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--text); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  min-width: 250px;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-dropdown.is-open .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
/* Desktop pointers: dropdowns also open on hover (click still works,
   and remains the only path on touch devices). */
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-drop-menu,
  .nav-dropdown:focus-within .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.nav-drop-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.nav-drop-menu a:hover { background: rgba(232, 97, 28, 0.12); color: var(--text); }
.menu-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid rgba(232, 97, 28, 0.4);
  border-radius: 4px;
  padding: 2px 7px;
}

.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 190px 0 130px;
  background: var(--bg-deep);
  overflow: hidden;
}
.ember-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.92; pointer-events: none; }
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 400px at 18% 110%, rgba(232, 97, 28, 0.22), transparent 65%),
    radial-gradient(560px 340px at 85% -10%, rgba(142, 44, 26, 0.24), transparent 65%);
  pointer-events: none;
}
.hero-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero-inner { position: relative; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-top: 26px;
}
.hero-lede { color: var(--muted); font-size: 1.12rem; max-width: 58ch; margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ── Marquee ──────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-deep);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-track i { color: var(--brick); font-style: normal; font-size: 0.7rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-light { background: var(--paper); color: var(--ink); }

/* ── Split / founder ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.founder-card {
  position: relative;
  background: var(--bg-deep);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(29, 28, 32, 0.25);
  overflow: hidden;
}
.founder-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.founder-name { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; margin: 8px 0 14px; }
.founder-blurb { color: var(--muted); font-size: 0.92rem; margin: 18px 0; }

/* ── Spotlight hover (cursor-follow glow) ─────────────────── */
.spotlight { position: relative; }
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(232, 97, 28, 0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.spotlight:hover::before { opacity: 1; }

/* ── Cards ────────────────────────────────────────────────── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 97, 28, 0.5);
  box-shadow: 0 22px 54px rgba(232, 97, 28, 0.12);
}
.card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  background: var(--grad-ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.24rem; margin: 18px 0 10px; }
.card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; flex: 1; }

/* Cards inside light sections: raised white on the cream ground,
   with a visible warm border (the dark-section defaults wash out). */
.section-light .card {
  background: var(--paper-raise);
  border-color: var(--line-light);
  box-shadow: 0 1px 2px rgba(29, 28, 32, 0.05), 0 6px 20px rgba(29, 28, 32, 0.06);
}
.section-light .card h3 { color: var(--ink); }
.section-light .card p { color: var(--ink-muted); }
.section-light .card:hover {
  border-color: rgba(160, 64, 24, 0.45);
  box-shadow: 0 22px 54px rgba(160, 64, 24, 0.15);
}

.strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(100deg, rgba(232, 97, 28, 0.1), rgba(160, 64, 24, 0.06));
  padding: 24px 30px;
}
.strip p { color: var(--muted); }
.strip strong { color: var(--text); }

/* ── Stats ────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 46px;
}
/* Cream, never pure white: #fff against the near-black sections is harsh.
   Inside light sections the ground is already cream, so cards lift to white. */
.stat {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 26px 20px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.section-light .stat { background: var(--paper-raise); }
.stat:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(160, 64, 24, 0.12); }
.stat dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--copper);
}
.stat dd { color: var(--ink-muted); font-size: 0.88rem; margin-top: 8px; }

/* ── Promo (Deka-Forge) ───────────────────────────────────── */
.promo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(520px 280px at 0% 0%, rgba(232, 97, 28, 0.12), transparent 65%),
    var(--bg-raise);
  padding: 52px 48px;
  overflow: hidden;
}
.promo-copy .btn { margin-top: 26px; }

.mock-window {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-deep);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transform: rotate(1.5deg);
  transition: transform 0.35s;
}
.promo:hover .mock-window { transform: rotate(0deg) translateY(-4px); }
.mock-bar { display: flex; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--steel); }
.mock-bar span:first-child { background: var(--ember); }
.mock-body { padding: 18px; display: grid; gap: 13px; }
.mock-row { display: flex; align-items: center; gap: 12px; }
.mock-chip {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 5px;
  white-space: nowrap;
}
.mock-chip.ok { color: #7ee2a8; background: rgba(126, 226, 168, 0.12); border: 1px solid rgba(126, 226, 168, 0.3); }
.mock-chip.warn { color: var(--warm); background: rgba(255, 179, 122, 0.1); border: 1px solid rgba(255, 179, 122, 0.32); }
.mock-line { height: 8px; border-radius: 4px; background: var(--surface); }
.mock-line-62 { width: 62%; }
.mock-line-48 { width: 48%; }
.mock-line-71 { width: 71%; }
.mock-line-39 { width: 39%; }
.mock-score {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(232, 97, 28, 0.4);
  border-radius: 9px;
  background: rgba(232, 97, 28, 0.08);
}
.mock-score span { font-size: 0.72rem; letter-spacing: 0.16em; color: var(--muted); }
.mock-score strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--ember-bright); }

/* ── CTA ──────────────────────────────────────────────────── */
.cta {
  padding: 110px 0;
  background:
    radial-gradient(680px 340px at 50% 120%, rgba(232, 97, 28, 0.26), transparent 70%),
    var(--bg-deep);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.4vw, 3rem); }
.cta p { color: var(--muted); margin: 14px 0 34px; font-size: 1.05rem; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand > p:nth-child(2) { color: var(--muted); font-size: 0.92rem; margin-top: 12px; max-width: 46ch; }
.footer-contact { margin-top: 14px; font-size: 0.92rem; }
.footer-contact a { color: var(--ember); }
.footer-contact a:hover { color: var(--ember-bright); }
.footer-badges { margin-top: 16px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-h4-gap { margin-top: 26px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--ember-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* Above-the-fold elements revealed at load: a measured glide up into
   place (starts immediately, so text is never parked invisible). The
   per-element stagger delay is set from JS. */
.reveal.is-instant {
  transition-duration: 0.55s, 0.55s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1), cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .btn-ember::after { display: none; }
  .ember-canvas { display: none; }
}

/* ── Inner pages ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 170px 0 80px;
  background: var(--bg-deep);
  overflow: hidden;
}
.page-hero .hero-glow { opacity: 0.85; }
.net-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  position: relative;
}
.page-hero .lede { position: relative; color: var(--muted); font-size: 1.08rem; max-width: 62ch; margin-top: 18px; }
.page-hero .kicker { position: relative; }

.crumbs { position: relative; font-size: 0.8rem; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--ember); }
.crumbs a:hover { color: var(--ember-bright); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(232, 97, 28, 0.5); box-shadow: 0 16px 40px rgba(232, 97, 28, 0.1); }
.feature h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.9rem; }

.section-light .feature { background: var(--paper-raise); border-color: var(--line-light); }
.section-light .feature h3 { color: var(--ink); }
.section-light .feature p { color: var(--ink-muted); }
.section-light .feature:hover { box-shadow: 0 16px 40px rgba(160, 64, 24, 0.12); }

.checks { margin-top: 24px; }
.checks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}
.checks li strong { color: var(--text); }
.section-light .checks li { color: var(--ink-muted); }
.section-light .checks li strong { color: var(--ink); }
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--ember);
  font-weight: 700;
}

.domain-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}
.domain-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  padding-bottom: 12px;
}
.domain-table th, .domain-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.domain-table th {
  font-family: var(--font-display);
  background: rgba(232, 97, 28, 0.12);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}
.domain-table tr:last-child td { border-bottom: none; }
.domain-table td:first-child, .domain-table td:nth-child(3) { font-weight: 600; color: var(--ember-bright); white-space: nowrap; }
.domain-table td { color: var(--muted); }

.notice {
  margin-top: 40px;
  border: 1px solid rgba(232, 97, 28, 0.45);
  border-left-width: 4px;
  background: rgba(232, 97, 28, 0.07);
  border-radius: 14px;
  padding: 22px 26px;
}
.notice h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ember-bright); margin-bottom: 8px; }
.notice p { color: var(--muted); font-size: 0.92rem; }
.section-light .notice { background: rgba(232, 97, 28, 0.07); border-color: rgba(160, 64, 24, 0.45); margin-top: 26px; }
.section-light .notice h3 { color: var(--copper); }
.section-light .notice p { color: var(--ink-muted); }

/* ── Product media (screenshots & tour video) ─────────────── */
.shot {
  margin: 44px auto 0;
  max-width: 980px;
}
.shot img, .shot video {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.shot a { display: block; }
.shot a:hover img {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(232, 97, 28, 0.18);
}
.shot figcaption {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  max-width: 68ch;
  margin-inline: auto;
}
.section-light .shot img, .section-light .shot video {
  border-color: var(--line-light);
  box-shadow: 0 24px 60px rgba(29, 28, 32, 0.18);
}
.section-light .shot a:hover img { box-shadow: 0 30px 70px rgba(160, 64, 24, 0.22); }
.section-light .shot figcaption { color: var(--ink-muted); }

.shot-hero { max-width: 100%; margin-top: 56px; }
.shot-hero video { box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(232, 97, 28, 0.14); }

.shot-narrow { max-width: 720px; }

.shot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}
.shot-grid .shot { margin-top: 0; max-width: none; }

@media (max-width: 960px) {
  .shot-grid { grid-template-columns: 1fr; }
}

/* ── Roadmap list (clearly not-shipped items) ─────────────── */
.roadmap-list { margin-top: 28px; display: grid; gap: 12px; max-width: 74ch; }
.roadmap-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.93rem;
}
.roadmap-list li::before {
  content: "○";
  position: absolute;
  left: 18px;
  top: 13px;
  color: var(--steel);
  font-size: 1rem;
}
.roadmap-list li span { display: block; font-size: 0.83rem; opacity: 0.75; margin-top: 4px; }
.section-light .roadmap-list li { background: var(--paper-raise); border-color: var(--line-light); color: var(--ink-muted); }

/* Inline code (control IDs) */
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(232, 97, 28, 0.12);
  color: var(--ember-bright);
}
.section-light code { background: rgba(160, 64, 24, 0.1); color: var(--copper); }

/* ── Contact form ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  margin-top: 20px;
}
.contact-info h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin-bottom: 14px; }
.contact-info p { color: var(--muted); font-size: 0.96rem; margin-bottom: 22px; }
.contact-note {
  border-left: 3px solid var(--ember);
  padding: 4px 0 4px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.contact-rows { display: grid; gap: 14px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 15px 18px;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-row:hover { border-color: rgba(232, 97, 28, 0.5); transform: translateY(-2px); }
.contact-key {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ember);
  width: 20px;
}
.contact-row a { color: var(--text); font-size: 0.95rem; }
.contact-row a:hover { color: var(--ember-bright); }

.founder-sig { margin-top: 26px; }
.founder-sig strong { color: var(--text); }
.founder-sig .badge-row { margin-top: 10px; }

.form-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-raise);
  padding: 36px 32px;
  overflow: hidden;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(232, 97, 28, 0.18);
}
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 16px; }
.form-status { font-size: 0.88rem; margin-top: 14px; }
.form-status:empty { margin-top: 0; }
.form-status.is-error {
  color: var(--warm);
  border-left: 3px solid var(--ember);
  padding-left: 12px;
}
.form-card .btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.form-card .btn { margin-top: 22px; width: 100%; justify-content: center; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ── Thanks page ──────────────────────────────────────────── */
.thanks-wrap { position: relative; overflow: hidden; min-height: 55vh; display: grid; place-items: center; text-align: center; padding: 170px 0 90px; }
.thanks-wrap .container { position: relative; }
.thanks-wrap h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); }
.thanks-wrap p { color: var(--muted); margin: 16px 0 30px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .cards-3, .feature-grid { grid-template-columns: 1fr 1fr; }
  .split, .promo, .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--line);
    padding: 16px 6%;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-link { padding: 12px 4px; font-size: 1rem; }
  .nav-drop-menu {
    position: static;
    translate: 0 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 16px;
    display: none;
  }
  .nav-dropdown.is-open .nav-drop-menu { display: block; }
  .nav-burger { display: block; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 150px 0 90px; }
  .cards-3, .feature-grid, .stats-row, .footer-inner { grid-template-columns: 1fr; }

  /* Wide tables scroll sideways instead of stretching the page. */
  .domain-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .domain-table caption { white-space: normal; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .promo { padding: 34px 26px; }
}
