/* ---- Tokens: lifted directly from NEBULA's own "Galaxy" theme ---- */
:root {
  --bg: #0d0b1f;
  --surface-1: #0d0b1f;
  --surface-2: #15122f;
  --surface-3: #1e1a42;
  --border: #2c2657;
  --border-strong: #453a85;
  --text-primary: #ece9ff;
  --text-secondary: #a79fd6;
  --text-tertiary: #6e63a3;
  --cyan: #7dd3fc;
  --positive: #5fd98a;
  --negative: #f0708c;
  --gold: #e8c25a;
  --purple: #b18cf0;
  --robinhood-green: #00c805;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

/* overflow-x lives on <html>, not <body> — setting it on body instead
   makes body its own scroll container separate from the viewport, which
   silently breaks window.scrollTo/scrollY and real mouse-wheel scrolling. */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { text-wrap: balance; font-weight: 700; margin: 0; }
p { margin: 0; }
.mono { font-family: var(--font-mono); }

/* ---- Moving starfield/nebula background, verbatim from the extension's
   own "Galaxy" theme (design/themes.css .nebula-theme-galaxy) — fixed so
   it drifts gently behind the whole page rather than per-section. ---- */
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1.6px 1.6px at 12% 18%, #fff, transparent),
    radial-gradient(1.2px 1.2px at 34% 62%, #fff, transparent),
    radial-gradient(1.4px 1.4px at 58% 28%, #cfe0ff, transparent),
    radial-gradient(1.2px 1.2px at 78% 74%, #fff, transparent),
    radial-gradient(1.6px 1.6px at 88% 22%, #fff, transparent),
    radial-gradient(1px 1px at 22% 84%, #cfe0ff, transparent),
    radial-gradient(1.3px 1.3px at 48% 8%, #fff, transparent),
    radial-gradient(1px 1px at 68% 52%, #fff, transparent),
    radial-gradient(circle at 20% 20%, rgba(139, 127, 214, 0.32), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(94, 200, 216, 0.22), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(216, 94, 178, 0.16), transparent 38%),
    radial-gradient(circle at 12% 82%, rgba(94, 140, 216, 0.18), transparent 42%),
    var(--surface-1);
  background-size:
    140px 140px, 160px 160px, 130px 130px, 150px 150px, 170px 170px, 120px 120px, 145px 145px, 155px 155px,
    220% 220%, 220% 220%, 200% 200%, 200% 200%, 100% 100%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, repeat, repeat, repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  animation: drift 34s ease-in-out infinite;
}

@keyframes drift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0 0; }
  50% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 0 0; }
  100% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .starfield { animation: none; }
}

/* ---- Brand glow, same pulsing text-shadow as the extension's own
   .nebula-brand-glow ---- */
.glow-cyan, .nav__brand {
  color: var(--cyan);
  animation: text-glow 2.6s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% { text-shadow: 0 0 2px currentColor; }
  50% { text-shadow: 0 0 10px currentColor; }
}

/* Hero highlight: a slowly-sweeping gradient fill rather than a flat
   color, so the most important line on the page has real movement. */
.grad-text {
  background: linear-gradient(100deg, var(--cyan) 0%, var(--purple) 35%, var(--cyan) 70%, #5ec8d8 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(125, 211, 252, 0.35));
  animation: grad-sweep 7s ease-in-out infinite;
}

@keyframes grad-sweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .grad-text { animation: none; background-position: 0% 50%; }
}

.glow-pos { color: var(--positive); text-shadow: 0 0 6px rgba(95, 217, 138, 0.5); }
.glow-neg { color: var(--negative); text-shadow: 0 0 6px rgba(240, 112, 140, 0.5); }

/* ---- Scroll reveal: elements start hidden/offset, script.js flips
   .is-visible on via IntersectionObserver as each scrolls into view.
   `--delay` (set inline per staggered group) offsets the transition so a
   row of cards cascades in rather than popping together. ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  .glow-cyan, .grad-text, .nav__brand { animation: none; text-shadow: 0 0 4px currentColor; }
}

/* ---- Layout shell ---- */
main, header, footer { position: relative; z-index: 1; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(13, 11, 31, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.06em;
}

.nav__brand-icon {
  width: 26px;
  height: 26px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(177, 140, 240, 0.55));
}

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav__links a:hover { color: var(--text-primary); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__icon-link {
  color: var(--text-secondary);
  display: flex;
  transition: color 0.15s ease;
}

.nav__icon-link:hover { color: var(--cyan); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--cyan), #5ec8d8, var(--cyan));
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #06131a;
  box-shadow: 0 0 0 rgba(125, 211, 252, 0);
  animation: btn-sheen 5s ease-in-out infinite;
}

.btn--primary:hover {
  box-shadow: 0 0 24px rgba(125, 211, 252, 0.45);
  transform: translateY(-1px);
  animation-play-state: paused;
  background-position: 100% 0%;
}

@keyframes btn-sheen {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn--primary { animation: none; }
}

.btn--ghost {
  background: var(--surface-2);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--lg { padding: 14px 26px; font-size: 15.5px; }
.btn--sm { padding: 8px 16px; font-size: 13.5px; }

/* ---- Axiom / Discord standout buttons — same pulsing glow + moving
   sheen pattern as the extension dashboard's own external-link nav
   buttons (see dashboard.css .nebula-external-link), ported so the
   website's nav/hero calls to action read with the same "live link out"
   energy as the app itself. ---- */
.btn--standout {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}

.btn--standout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  background-size: 220% 100%;
  animation: btn-standout-sheen 3.2s linear infinite;
  pointer-events: none;
}

@keyframes btn-standout-sheen {
  0% { background-position: 220% 0; }
  100% { background-position: -220% 0; }
}

.btn--axiom {
  border-color: rgba(232, 185, 61, 0.45);
  color: #f0cc63;
  animation: btn-glow-axiom 2.3s ease-in-out infinite;
}
@keyframes btn-glow-axiom {
  0%, 100% { box-shadow: 0 0 5px 0 rgba(232, 185, 61, 0.35); border-color: rgba(232, 185, 61, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(232, 185, 61, 0.85); border-color: rgba(232, 185, 61, 1); }
}
.btn--axiom:hover { background: rgba(232, 185, 61, 0.14); transform: translateY(-1px); }

.btn--discord {
  border-color: rgba(114, 137, 218, 0.45);
  color: #a9b4f5;
  animation: btn-glow-discord 2.7s ease-in-out infinite;
}
@keyframes btn-glow-discord {
  0%, 100% { box-shadow: 0 0 5px 0 rgba(114, 137, 218, 0.32); border-color: rgba(114, 137, 218, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(114, 137, 218, 0.85); border-color: rgba(114, 137, 218, 1); }
}
.btn--discord:hover { background: rgba(114, 137, 218, 0.16); transform: translateY(-1px); }

.btn--x {
  border-color: rgba(233, 233, 238, 0.35);
  color: #e9e9ee;
  animation: btn-glow-x 2.9s ease-in-out infinite;
}
@keyframes btn-glow-x {
  0%, 100% { box-shadow: 0 0 4px 0 rgba(233, 233, 238, 0.25); border-color: rgba(233, 233, 238, 0.3); }
  50% { box-shadow: 0 0 18px 3px rgba(233, 233, 238, 0.7); border-color: rgba(233, 233, 238, 0.85); }
}
.btn--x:hover { background: rgba(233, 233, 238, 0.14); transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .btn--axiom, .btn--discord, .btn--x { animation: none; }
  .btn--axiom { box-shadow: 0 0 8px 0 rgba(232, 185, 61, 0.5); }
  .btn--discord { box-shadow: 0 0 8px 0 rgba(114, 137, 218, 0.5); }
  .btn--x { box-shadow: 0 0 8px 0 rgba(233, 233, 238, 0.5); }
  .btn--standout::before { animation: none; display: none; }
}

/* ---- Hero ---- */
.hero { padding: 76px 24px 40px; }

.hero__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.badge__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.hero__title {
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 54ch;
  margin-bottom: 30px;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.stat-row {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 3px; }
.stat__num { font-family: var(--font-mono); font-weight: 700; font-size: 21px; color: var(--text-primary); }
.stat__label { font-size: 12.5px; color: var(--text-tertiary); }

/* ---- Hero visual: two real screenshots layered together (dashboard
   mockup behind, trading panel floating on top of its corner) so both
   halves of the product — the panel that sits on Axiom and the full
   dashboard behind it — read in the very first viewport, no scroll
   needed. ---- */
.hero__visual { position: relative; perspective: 900px; min-height: 430px; }

.dashboard-shot-float {
  position: absolute;
  top: 6px;
  left: 0;
  width: 440px;
  max-width: 88%;
  animation: float-slow 7s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-shot-float { animation: none; }
}

.dashboard-shot {
  transform: rotate(-3deg);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(125, 211, 252, 0.06);
}

.dashboard-shot__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  background: var(--surface-3);
  border-bottom: 1px solid var(--border);
}

.dashboard-shot__dot { width: 7px; height: 7px; border-radius: 50%; opacity: 0.75; }
.dashboard-shot__dot--r { background: var(--negative); }
.dashboard-shot__dot--y { background: var(--gold); }
.dashboard-shot__dot--g { background: var(--positive); }

.dashboard-shot__label {
  margin-left: 6px;
  font-size: 10.5px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.dashboard-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* The trading-panel screenshot now floats on top of the dashboard mockup's
   bottom-right corner instead of standing alone — layered, not centered. */
.mock-panel-float {
  position: absolute;
  right: 6px;
  bottom: -26px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .mock-panel-float { animation: none; }
}

.mock-panel__glow {
  position: absolute;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.2), transparent 70%);
  filter: blur(10px);
  z-index: -1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.94); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .mock-panel__glow { animation: none; }
}

/* The real trading-panel screenshot, dropped in place of the hand-built
   mock — see design plan notes: swap the real graphic in, don't redesign
   it. The only actual motion on the real panel is a small pulsing "live"
   status dot in its header (design/glow.css's nebula-dot-glow keyframe,
   reused verbatim here) — overlaid at the dot's real pixel position in
   the screenshot, since a static image obviously can't carry that
   animation itself. */
.panel-shot {
  position: relative;
  width: 230px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(125, 211, 252, 0.08);
}

.panel-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.panel-shot__live-dot {
  position: absolute;
  left: 19px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 6px var(--positive);
  animation: dot-glow 2.2s ease-in-out infinite;
}

@keyframes dot-glow {
  0%, 100% { opacity: 0.75; box-shadow: 0 0 3px var(--positive); }
  50% { opacity: 1; box-shadow: 0 0 8px var(--positive); }
}

@media (prefers-reduced-motion: reduce) {
  .panel-shot__live-dot { animation: none; }
}

/* ---- Real product screenshots (Overview dashboard, Trade Journal) —
   dropped in at full width, real graphics, not a redesign of them. ---- */
.shot {
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(125, 211, 252, 0.06);
  background: var(--surface-2);
}

.shot--wide img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Logo strip ---- */
.logos { padding: 20px 24px 64px; text-align: center; }
.logos__label { font-size: 12.5px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.logos__row { display: flex; justify-content: center; gap: 40px; }
.logos__item { font-size: 18px; font-weight: 700; color: var(--text-secondary); }

/* ---- Generic sections ---- */
.section { max-width: 1160px; margin: 0 auto; padding: 90px 24px; }
.section--tight { padding: 50px 24px; }

.section__head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.eyebrow { display: block; color: var(--cyan); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.section__head h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.section__sub { color: var(--text-secondary); font-size: 16px; }

/* ---- Feature grid ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.feature-card__icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
}

.feature-card__icon--cyan { background: rgba(125, 211, 252, 0.12); color: var(--cyan); }
.feature-card__icon--green { background: rgba(95, 217, 138, 0.12); color: var(--positive); }
.feature-card__icon--purple { background: rgba(177, 140, 240, 0.14); color: var(--purple); }
.feature-card__icon--gold { background: rgba(232, 194, 90, 0.14); color: var(--gold); }

.feature-card:hover .feature-card__icon {
  transform: scale(1.12) rotate(-6deg);
  transition: transform 0.25s ease;
}

.feature-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ---- Showcase (achievements / trade journal) ---- */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.showcase--reverse { direction: rtl; }
.showcase--reverse > * { direction: ltr; }

.showcase__copy h2 { font-size: clamp(24px, 3vw, 32px); margin: 12px 0 14px; }
.showcase__copy p { color: var(--text-secondary); font-size: 15.5px; max-width: 46ch; }

/* trophies mock */
.mock-trophies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mock-trophy {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
}

.mock-trophy__badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 4px;
}

.mock-trophy--legendary .mock-trophy__badge {
  position: relative;
  background: radial-gradient(circle, rgba(232,194,90,0.35), rgba(232,194,90,0.08));
  color: var(--gold);
  box-shadow: 0 0 16px rgba(232,194,90,0.35);
}

.mock-trophy--legendary .mock-trophy__badge::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px dashed rgba(232, 194, 90, 0.55);
  animation: spin 8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.mock-trophy--rare .mock-trophy__badge { background: rgba(125,211,252,0.15); color: var(--cyan); }
.mock-trophy--epic .mock-trophy__badge { background: rgba(177,140,240,0.16); color: var(--purple); }
.mock-trophy--locked { opacity: 0.5; }
.mock-trophy--locked .mock-trophy__badge { background: var(--surface-3); color: var(--text-tertiary); }

.mock-trophy {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mock-trophy:not(.mock-trophy--locked):hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

@media (prefers-reduced-motion: reduce) {
  .mock-trophy--legendary .mock-trophy__badge::before { animation: none; }
}

.mock-trophy__tier { font-size: 11px; font-weight: 500; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---- Steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step { text-align: left; }

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-secondary); }

.install-cta { text-align: center; }
.install-cta__note { margin-top: 14px; font-size: 13px; color: var(--text-tertiary); }

/* ---- FAQ ---- */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq__item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  float: right;
  color: var(--cyan);
  font-weight: 700;
}

.faq__item[open] summary::after { content: '–'; }

.faq__item p { margin-top: 12px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; }
.faq__item a { color: var(--cyan); text-decoration: underline; }

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 28px;
}

.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

.footer__brand p { color: var(--text-tertiary); font-size: 13.5px; margin-top: 6px; }

.footer__links { display: flex; gap: 26px; font-size: 14px; color: var(--text-secondary); }
.footer__links a:hover { color: var(--cyan); }

.footer__copy {
  max-width: 1160px;
  margin: 0 auto;
  font-size: 12.5px;
  color: var(--text-tertiary);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; margin-bottom: 20px; min-height: 380px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase, .showcase--reverse { grid-template-columns: 1fr; direction: ltr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
}

@media (max-width: 540px) {
  .hero__visual { min-height: 240px; }
  .dashboard-shot-float { width: 250px; top: 0; }
  .panel-shot { width: 130px; }
  .mock-panel-float { right: 0; bottom: -14px; }
  .mock-panel__glow { width: 280px; height: 280px; }
}

@media (max-width: 540px) {
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .mock-trophies { grid-template-columns: repeat(2, 1fr); }
  .stat-row { gap: 22px; }
}
