/* ==========================================================================
   DictateHub — site stylesheet
   Brand values lifted from brand/BRAND_GUIDE.md. Dark-only is the canonical look.
   ========================================================================== */

:root {
  /* Surfaces (darkest → lightest) */
  --chassis:        #0A0A14;
  --chassis-elev:   #12121F;
  --chassis-rim:    #1E1E33;
  --panel:          #1A1A2B;
  --panel-inset:    #0E0E18;

  /* Text */
  --text-primary:   #EEF0FF;
  --text-secondary: #9BA0BD;
  --text-tertiary:  #8A90B0;

  /* Neon accents */
  --lime:           #9EFF2E;
  --lime-bright:    #B8FF2E;
  --cyan:           #2ED3FF;
  --record:         #FF2D5A;
  --amber:          #FFB020;
  --sky:            #7DC7FF;
  --magenta:        #FF3BA1;

  /* Radii */
  --r-pad:     18px;
  --r-panel:   22px;
  --r-chassis: 28px;

  /* Type */
  --font-display: 'Baloo 2', 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, monospace;

  --maxw: 1120px;
}

/* ---- Reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--chassis);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--cyan); }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--lime); color: var(--chassis);
  padding: 10px 16px; border-radius: 10px; z-index: 100;
  font-family: var(--font-display); font-weight: 800; text-decoration: none;
}
.skip-link:focus { left: 16px; }

/* ---- RGB corner glow ---- */
.glow {
  position: fixed;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.glow.a { top: -22vmax; left: -16vmax; background: var(--magenta); }
.glow.b { top: -12vmax; right: -20vmax; background: var(--cyan); }
.glow.c { bottom: -22vmax; left: 8vmax;  background: var(--lime-bright); }
.glow.d { bottom: -26vmax; right: -12vmax; background: var(--amber); }
@media (prefers-reduced-motion: no-preference) {
  .glow { animation: drift 20s ease-in-out infinite alternate; }
  .glow.b { animation-delay: -5s; }
  .glow.c { animation-delay: -10s; }
  .glow.d { animation-delay: -15s; }
}
/* Keep the very bottom edge dark so iOS Safari's floating toolbar samples a dark
   colour instead of the amber corner-glow (which tinted the browser bar orange).
   Painted above the glows, below page content (.wrap is z-index 1). */
body::after {
  content: "";
  position: fixed; left: 0; right: 0; bottom: 0;
  height: 16vh; z-index: 0; pointer-events: none;
  background: linear-gradient(to top, var(--chassis) 22%, transparent);
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4vmax, 3vmax) scale(1.12); }
}

/* ---- Layout ---- */
.wrap { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; z-index: 1; }
.section-head { max-width: 60ch; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow { justify-content: center; }

/* ---- Wordmark ---- */
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.5px;
  user-select: none;
  line-height: 1;
}
.wordmark .dictate { color: var(--text-primary); }
.wordmark .hub {
  background: linear-gradient(90deg, var(--lime-bright), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---- Nav ---- */
.site-nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(10, 10, 20, 0.72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-nav.scrolled { border-bottom-color: var(--chassis-rim); }
.site-nav .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.site-nav .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.site-nav .brand img { width: 30px; height: 30px; border-radius: 8px; }
.site-nav .wordmark { font-size: 1.4rem; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.15s ease; }
.nav-links a:not(.pad-btn):hover { color: var(--text-primary); }

/* ---- Buttons (lit pad) ---- */
.pad-btn {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  color: var(--chassis);
  background: linear-gradient(180deg, var(--lime-bright), var(--lime));
  border: 2px solid var(--lime-bright);
  border-radius: var(--r-pad);
  padding: 13px 24px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 0 24px rgba(158, 255, 46, 0.4);
  transition: transform 0.12s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.pad-btn:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(158, 255, 46, 0.6); }
.pad-btn.cyan {
  background: linear-gradient(180deg, var(--cyan), var(--sky));
  border-color: var(--cyan); color: #04222c;
  box-shadow: 0 0 24px rgba(46, 211, 255, 0.4);
}
.pad-btn.cyan:hover { box-shadow: 0 0 34px rgba(46, 211, 255, 0.6); }

.ghost-btn {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--text-primary);
  background: var(--panel);
  border: 1px solid var(--chassis-rim);
  border-radius: var(--r-pad);
  padding: 13px 22px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.ghost-btn:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--lime);
  margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
}

/* ---- Headings ---- */
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.5px; }
.gradient-text {
  background: linear-gradient(90deg, var(--lime-bright), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---- Hero ---- */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 64px 0 72px; }
/* Let grid items shrink below their intrinsic min-content so the console can't widen the page. */
.hero > * { min-width: 0; }
.console, .console * { min-width: 0; }
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1.02;
  margin-bottom: 22px;
  text-shadow: 0 0 60px rgba(158, 255, 46, 0.18);
}
.hero p.sub { color: var(--text-secondary); font-size: 1.18rem; max-width: 34ch; margin-bottom: 30px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.trial-note { color: var(--text-tertiary); font-size: 0.85rem; margin-top: 18px; }
.trial-note .mono { font-family: var(--font-mono); color: var(--text-secondary); }

/* ---- Console mock ---- */
.console {
  background: linear-gradient(160deg, var(--chassis-elev), var(--chassis));
  border: 1px solid var(--chassis-rim);
  border-radius: var(--r-chassis);
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
}
.console .screen {
  background: var(--panel-inset);
  border: 1px solid var(--chassis-rim);
  border-radius: 14px;
  padding: 14px 16px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.timecode { font-family: var(--font-mono); font-weight: 800; font-size: 1.6rem; color: var(--text-primary); letter-spacing: 1px; }
.rec-dot { display: inline-flex; align-items: center; gap: 8px; color: var(--record); font-weight: 600; font-size: 0.85rem; font-family: var(--font-display); }
.rec-dot::before { content:""; width: 10px; height: 10px; border-radius: 50%; background: var(--record); box-shadow: 0 0 12px var(--record); }
@media (prefers-reduced-motion: no-preference) { .rec-dot::before { animation: blink 1.4s steps(2, jump-none) infinite; } }
@keyframes blink { 50% { opacity: 0.25; } }

.console-body { display: grid; grid-template-columns: 1fr 64px; gap: 18px; }
.pad-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pad {
  aspect-ratio: 1; border-radius: var(--r-pad);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-display); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.5px;
  background: var(--panel); border: 1px solid var(--chassis-rim); color: var(--text-tertiary);
}
.pad .ico { font-size: 1.3rem; line-height: 1; }
.pad.lit { color: var(--chassis); }
.pad.lit.record { background: var(--record); border-color: var(--record); color: #fff; box-shadow: 0 0 22px rgba(255,45,90,0.5); }
.pad.lit.play   { background: var(--lime);  border-color: var(--lime-bright); box-shadow: 0 0 22px rgba(158,255,46,0.45); }
.pad.lit.scan   { background: var(--cyan);  border-color: var(--cyan); color:#04222c; box-shadow: 0 0 22px rgba(46,211,255,0.45); }
.pad.lit.export { background: var(--amber); border-color: var(--amber); box-shadow: 0 0 22px rgba(255,176,32,0.45); }

.fader { background: var(--panel-inset); border: 1px solid var(--chassis-rim); border-radius: 14px; padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.meter { display: flex; flex-direction: column-reverse; gap: 3px; height: 120px; justify-content: flex-start; }
.led { width: 14px; height: 7px; border-radius: 2px; background: #232338; }
.led.on.g { background: var(--lime); box-shadow: 0 0 8px rgba(158,255,46,0.7); }
.led.on.y { background: var(--amber); box-shadow: 0 0 8px rgba(255,176,32,0.7); }
.led.on.r { background: var(--record); box-shadow: 0 0 8px rgba(255,45,90,0.7); }
.knob { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(160deg, #2a2a40, #14141f); border: 1px solid var(--chassis-rim); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); }
.fader-label { font-family: var(--font-display); font-weight: 700; font-size: 0.6rem; letter-spacing: 1px; color: var(--text-tertiary); }

/* ---- Trust bar ---- */
.trustbar { border-top: 1px solid var(--chassis-rim); border-bottom: 1px solid var(--chassis-rim); padding: 26px 0; }
.trustbar .inner { display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: center; justify-content: center; }
.trust-pill {
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.5px;
  color: var(--text-secondary);
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.trust-pill.cyan .dot { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.trust-pill.amber .dot { background: var(--amber); box-shadow: 0 0 10px var(--amber); }

/* ---- Generic section spacing + titles ---- */
.band { padding: 80px 0; }
.band h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.08; }
.band .lede { color: var(--text-secondary); font-size: 1.1rem; margin-top: 14px; }

/* ---- Feature cards ---- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature {
  background: var(--panel); border: 1px solid var(--chassis-rim); border-radius: var(--r-panel);
  padding: 24px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.feature:hover { transform: translateY(-3px); border-color: #2c2c47; }
.feature .fico { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.feature h3 { font-weight: 700; font-size: 1.08rem; margin-bottom: 8px; letter-spacing: -0.3px; }
.feature p { color: var(--text-secondary); font-size: 0.94rem; }

/* ---- How it works (numbered steps) ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step {
  background: linear-gradient(160deg, var(--chassis-elev), var(--panel-inset));
  border: 1px solid var(--chassis-rim); border-radius: var(--r-panel);
  padding: 26px 22px; position: relative;
}
.step .num {
  font-family: var(--font-mono); font-weight: 800; font-size: 0.85rem;
  color: var(--chassis); background: var(--lime); border-radius: 9px;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 0 0 16px rgba(158,255,46,0.4);
}
.step:nth-child(2) .num { background: var(--cyan); color: #04222c; box-shadow: 0 0 16px rgba(46,211,255,0.4); }
.step:nth-child(3) .num { background: var(--amber); box-shadow: 0 0 16px rgba(255,176,32,0.4); }
.step:nth-child(4) .num { background: var(--record); color: #fff; box-shadow: 0 0 16px rgba(255,45,90,0.4); }
.step h3 { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 0.92rem; }

/* ---- Audience grid ---- */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.aud {
  background: var(--panel); border: 1px solid var(--chassis-rim); border-radius: var(--r-panel);
  padding: 22px; display: flex; gap: 14px; align-items: flex-start;
}
.aud .aico { font-size: 1.4rem; line-height: 1.2; }
.aud h3 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.aud p { color: var(--text-secondary); font-size: 0.9rem; }

/* ---- Split feature rows ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split + .split { margin-top: 64px; }
.split.rev .visual { order: -1; }
.split ul.checks { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.split ul.checks li { padding-left: 30px; position: relative; color: var(--text-secondary); }
.split ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--chassis); background: var(--lime); width: 20px; height: 20px;
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 900; box-shadow: 0 0 12px rgba(158,255,46,0.35);
}
.split ul.checks li b { color: var(--text-primary); font-weight: 600; }

.panel-visual {
  background: linear-gradient(160deg, var(--chassis-elev), var(--chassis));
  border: 1px solid var(--chassis-rim); border-radius: var(--r-chassis);
  padding: 26px; box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.field-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--panel-inset); border: 1px solid var(--chassis-rim); border-radius: 12px;
  padding: 13px 16px; margin-bottom: 10px;
}
.field-row .k { color: var(--text-tertiary); font-size: 0.82rem; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.field-row .v { font-family: var(--font-mono); color: var(--text-primary); font-weight: 600; font-size: 0.95rem; }
.field-row .v.lime { color: var(--lime); }
.field-row .v.cyan { color: var(--cyan); }
.badge-tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 800;
  font-family: var(--font-display); letter-spacing: 0.5px; padding: 3px 9px; border-radius: 7px;
  background: rgba(46,211,255,0.12); color: var(--cyan); border: 1px solid rgba(46,211,255,0.3);
}
.filename {
  margin-top: 14px; font-family: var(--font-mono); font-size: 0.86rem; color: var(--text-secondary);
  background: var(--panel-inset); border: 1px dashed var(--chassis-rim); border-radius: 10px; padding: 12px 14px;
  word-break: break-all;
}
.filename .hl { color: var(--lime); }
.dest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.dest {
  background: var(--panel-inset); border: 1px solid var(--chassis-rim); border-radius: 12px;
  padding: 14px; text-align: center; font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; color: var(--text-secondary);
}
.dest .di { font-size: 1.3rem; display: block; margin-bottom: 6px; }

/* ---- Pricing ---- */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.plan {
  background: var(--panel); border: 1px solid var(--chassis-rim); border-radius: var(--r-chassis);
  padding: 32px; position: relative;
}
.plan.pro { border-color: rgba(158,255,46,0.4); box-shadow: 0 0 40px rgba(158,255,46,0.1); }
.plan .ptag {
  font-family: var(--font-display); font-weight: 800; font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 14px;
}
.plan.pro .ptag { color: var(--lime); }
.plan .price { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.plan .price small { font-size: 1rem; color: var(--text-tertiary); font-weight: 600; }
.plan .alt { color: var(--text-secondary); font-size: 0.92rem; margin: 10px 0 22px; }
.plan .alt .save { color: var(--lime); font-weight: 700; }
.plan ul { list-style: none; display: grid; gap: 11px; margin-bottom: 24px; }
.plan ul li { padding-left: 28px; position: relative; color: var(--text-secondary); font-size: 0.95rem; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 900; }
.plan ul li.muted { color: var(--text-tertiary); }
.plan ul li.muted::before { content: "—"; color: var(--text-tertiary); }
.plan .pricenote { color: var(--text-tertiary); font-size: 0.8rem; margin-top: 14px; }

/* ---- Big CTA ---- */
.cta-band {
  background: linear-gradient(160deg, var(--chassis-elev), var(--panel-inset));
  border: 1px solid var(--chassis-rim); border-radius: var(--r-chassis);
  padding: 56px 40px; text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; }
.cta-band p { color: var(--text-secondary); margin: 14px auto 28px; max-width: 46ch; }
.cta-band .cta-row { justify-content: center; }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--chassis-rim); padding: 48px 0 56px; margin-top: 80px; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.site-footer .wordmark { font-size: 1.3rem; margin-bottom: 12px; }
.site-footer .blurb { color: var(--text-tertiary); font-size: 0.9rem; max-width: 38ch; }
.site-footer h4 { font-family: var(--font-display); font-weight: 800; font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 14px; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer ul a { color: var(--text-secondary); text-decoration: none; font-size: 0.92rem; }
.site-footer ul a:hover { color: var(--lime); }
.site-footer .base { border-top: 1px solid var(--chassis-rim); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.site-footer .copy { color: var(--text-tertiary); font-size: 0.84rem; }

/* ==========================================================================
   Legal / support (prose) pages
   ========================================================================== */
.page-head { padding: 56px 0 8px; }
.page-head .eyebrow { color: var(--cyan); }
.page-head h1 { font-size: clamp(2.1rem, 5vw, 3rem); font-weight: 800; }
.page-head .updated { color: var(--text-tertiary); font-size: 0.9rem; margin-top: 10px; font-family: var(--font-mono); }

.draft-banner {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,176,32,0.08); border: 1px solid rgba(255,176,32,0.35);
  border-radius: var(--r-panel); padding: 18px 20px; margin: 28px 0 8px;
}
.draft-banner .di { font-size: 1.3rem; line-height: 1.3; }
.draft-banner strong { color: var(--amber); font-family: var(--font-display); }
.draft-banner p { color: var(--text-secondary); font-size: 0.92rem; }

.prose { max-width: 72ch; padding: 28px 0 24px; }
.prose h2 {
  font-size: 1.45rem; font-weight: 800; margin: 40px 0 14px;
  padding-top: 24px; border-top: 1px solid var(--chassis-rim);
}
.prose h2:first-of-type { border-top: none; padding-top: 0; }
.prose h3 { font-size: 1.1rem; font-weight: 700; margin: 26px 0 10px; color: var(--text-primary); }
.prose p { color: var(--text-secondary); margin-bottom: 16px; }
.prose ul, .prose ol { color: var(--text-secondary); margin: 0 0 18px 1.2em; display: grid; gap: 9px; }
.prose li { padding-left: 4px; }
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--lime); }

/* [PLACEHOLDER] markers — make them impossible to miss */
.ph {
  background: rgba(255,45,90,0.14); color: #ffd0da;
  border: 1px dashed rgba(255,45,90,0.5); border-radius: 6px;
  padding: 1px 7px; font-family: var(--font-mono); font-size: 0.85em; font-weight: 600;
  white-space: normal;
}

/* FAQ (support) */
.faq { max-width: 760px; }
.faq details {
  background: var(--panel); border: 1px solid var(--chassis-rim); border-radius: var(--r-panel);
  margin-bottom: 12px; overflow: hidden;
}
.faq details[open] { border-color: rgba(46,211,255,0.35); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; color: var(--text-primary);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--cyan); font-size: 1.4rem; font-weight: 400; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 22px 20px; color: var(--text-secondary); }
.faq .answer a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.faq .answer a:hover { color: var(--lime); }

.contact-card {
  background: linear-gradient(160deg, var(--chassis-elev), var(--panel-inset));
  border: 1px solid var(--chassis-rim); border-radius: var(--r-chassis);
  padding: 28px 30px; margin: 8px 0 8px; max-width: 760px;
}
.contact-card h2 { border: none; padding: 0; margin: 0 0 10px; font-size: 1.3rem; }
.contact-card p { color: var(--text-secondary); margin-bottom: 8px; }
.contact-card .email { font-family: var(--font-mono); }

/* Obfuscated email links — assembled by JS at runtime (no raw address in markup) */
.eml { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; word-break: break-word; }
.eml:hover { color: var(--lime); }

/* ==========================================================================
   404
   ========================================================================== */
.notfound { min-height: 72vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 0; }
.notfound .code { font-family: var(--font-mono); font-weight: 800; font-size: clamp(4rem, 16vw, 9rem); line-height: 1; }
.notfound h1 { font-size: 1.8rem; font-weight: 800; margin: 12px 0 10px; }
.notfound p { color: var(--text-secondary); margin-bottom: 26px; max-width: 40ch; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .features { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .audience { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 44px 0 56px; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 28px; }
  .split.rev .visual { order: 0; }
  .pricing { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.pad-btn) { display: none; }
  .band { padding: 60px 0; }
}
@media (max-width: 560px) {
  .features, .steps, .audience { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .console { padding: 16px; }
  .console-body { grid-template-columns: 1fr 48px; gap: 12px; }
  .pad { font-size: 0.6rem; }
  .pad .ico { font-size: 1.05rem; }
  .timecode { font-size: 1.3rem; }
  .led { width: 12px; }
  .dest-grid { grid-template-columns: 1fr; }
  .trial-note { font-size: 0.8rem; }
}
@media (max-width: 400px) {
  .wrap { padding: 0 16px; }
  .site-nav .inner { padding: 14px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
