/* ════════════════════════════════════════════════════════════
   SIGMA V4 — SECTIONS · how, equity, value, feed, pricing,
   testimonials, faq, cta, footer, tweaks, responsive
   ═══════════════════════════════════════════════════════════ */

/* ─── HOW IT WORKS — 3 numbered editorial columns ───────── */
.how3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.how3-step {
  padding: 36px 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: background .35s var(--ease);
}
.how3-step + .how3-step { border-left: 1px solid var(--border); }
.how3-step:hover { background: var(--surface2); }
.how3-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.how3-step:hover::before { opacity: 1; }
.how3-num {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .24em; color: var(--muted);
  display: flex; align-items: baseline; gap: 12px;
}
.how3-num b {
  font-size: 30px; font-weight: 700;
  letter-spacing: -.02em;
  color: var(--accent);
  line-height: 1;
}
.how3-title {
  font-family: var(--head);
  font-size: 19px; font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.3;
  color: #fff;
  text-wrap: balance;
}
.how3-text { font-size: 13.5px; color: var(--text2); line-height: 1.7; flex: 1; }
.how3-text b { color: var(--text); }
.how3-viz {
  margin-top: 8px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
  aspect-ratio: 280 / 130;
}
/* shared svg-viz language */
.how3-viz svg text { font-family: var(--mono); }
.vz-t { font-size: 8px; letter-spacing: .14em; fill: var(--muted); font-weight: 500; }
.vz-t-ac { fill: var(--accent); font-weight: 600; }
.vz-t-mut { fill: var(--muted); }
.vz-t-dim { fill: #525a69; }
.vz-t-dark { fill: #000; font-weight: 700; font-size: 7.5px; letter-spacing: .16em; }
.vz-n { font-size: 13px; font-weight: 600; fill: var(--text2); }
.vz-n-dark { font-size: 13px; font-weight: 700; fill: #000; }
.vz-grid line { stroke: rgba(255,255,255,.045); stroke-width: 1; }
.vz-hair { stroke: rgba(255,255,255,.07); stroke-width: 1; }
.vz-ac-s { stroke: var(--accent); fill: none; }
.vz-ac-f { fill: var(--accent); }
.vz-w-s { stroke: rgba(255,255,255,.7); fill: none; stroke-width: 1.6; stroke-linecap: round; }
.vz-avg { stroke: rgba(255,255,255,.32); stroke-width: 1; stroke-dasharray: 2 5; fill: none; stroke-linecap: round; }
.vz-seg { fill: rgba(255,255,255,.045); stroke: rgba(255,255,255,.13); }

/* ─── EQUITY / RESULTS ──────────────────────────────────── */
.equity-wrap {
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
}
.equity-head {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
  padding: 20px 26px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.equity-head-l { display: flex; flex-direction: column; gap: 8px; }
.equity-head-main {
  display: flex; gap: 14px; align-items: baseline;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: .08em;
}
.equity-head-main b { color: var(--text); letter-spacing: .18em; }
.equity-head-main span, .equity-depth span { white-space: nowrap; }
.equity-depth {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10.5px; color: var(--muted);
}
.equity-depth b { color: var(--text2); font-weight: 600; }
.equity-depth-label { color: var(--dim); letter-spacing: .1em; text-transform: uppercase; }
.equity-pair { display: flex; gap: 4px; background: var(--bg2); padding: 4px; border-radius: 100px; border: 1px solid var(--border); }
.equity-pair button {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: var(--muted);
  background: none; border: 0; cursor: pointer;
  padding: 8px 16px; border-radius: 100px;
  transition: color .2s, background .2s;
}
.equity-pair button:hover { color: var(--text); }
.equity-pair button.active { background: var(--accent); color: #000; }

.equity-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.equity-stat {
  padding: 22px 26px;
  display: flex; flex-direction: column; gap: 6px;
}
.equity-stat + .equity-stat { border-left: 1px solid var(--border); }
.equity-stat-k {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.equity-stat-v {
  font-family: var(--head);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600; letter-spacing: -.02em;
  color: #fff; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.equity-stat-v.up { color: var(--accent); }
.equity-stat-v.down { color: var(--red); }

.equity-chart-wrap { position: relative; padding: 26px 26px 8px 64px; }
#equityChart { width: 100%; height: 320px; display: block; }
.equity-y-axis {
  position: absolute; left: 0; top: 26px; bottom: 34px; width: 56px;
  font-family: var(--mono); font-size: 9.5px; color: var(--dim);
}
.equity-y-axis span { position: absolute; right: 10px; transform: translateY(-50%); white-space: nowrap; }
.equity-x-axis {
  display: flex; justify-content: space-between;
  padding: 8px 2px 0;
  font-family: var(--mono); font-size: 9.5px; color: var(--dim);
}
.equity-tooltip {
  position: absolute;
  background: var(--surface3);
  border: 1px solid var(--border3);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  pointer-events: none;
  opacity: 0; transform: translate(-50%, calc(-100% - 16px)) scale(.94);
  transition: opacity .18s, transform .18s var(--ease);
  font-family: var(--mono);
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 14px 40px -12px rgba(0,0,0,.8);
}
.equity-tooltip.show { opacity: 1; transform: translate(-50%, calc(-100% - 16px)) scale(1); }
.equity-tooltip-d { font-size: 9.5px; color: var(--muted); letter-spacing: .1em; margin-bottom: 3px; }
.equity-tooltip-v { font-size: 14px; font-weight: 700; color: #fff; }
.equity-tooltip-pct { font-size: 11px; color: var(--accent); margin-left: 8px; }
.equity-marker.peak {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 9.5px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  padding: 4px 10px;
  border-radius: 100px;
  transform: translate(-50%, -130%);
  letter-spacing: .12em;
  white-space: nowrap;
  pointer-events: none;
}
.equity-marker.peak .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.equity-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 16px 26px;
  border-top: 1px solid var(--border);
  background: var(--surface2);
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}
.equity-foot-l { display: flex; gap: 22px; flex-wrap: wrap; }
.equity-foot b { color: var(--text); font-weight: 600; }
.equity-disclaimer { font-size: 9.5px; letter-spacing: .2em; color: var(--dim); }

/* ─── VALUE GRID — bento ────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.value-card {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .35s var(--ease);
}
.value-card:hover { border-color: var(--border2); transform: translateY(-4px); }
/* cursor spotlight */
.value-card::after, .pricing-card::after, .testi-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), oklch(86% .26 var(--h) / .055), transparent 65%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.value-card:hover::after, .pricing-card:hover::after, .testi-card:hover::after { opacity: 1; }

.value-card.feature {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 48px;
  padding: 44px 42px;
  background:
    radial-gradient(700px 320px at 85% -10%, var(--accent-glow), transparent 60%),
    var(--surface);
  border-color: var(--border2);
}
.value-feature-copy { display: flex; flex-direction: column; gap: 16px; }
.value-head { display: flex; align-items: center; gap: 12px; }
.value-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: .18em;
  color: #000; background: var(--accent);
  padding: 4px 10px; border-radius: 100px;
}
.value-num {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .22em; color: var(--muted);
  white-space: nowrap;
}
.value-title {
  font-family: var(--head);
  font-size: 19px; font-weight: 600;
  letter-spacing: -.015em; line-height: 1.3;
  color: #fff;
  text-wrap: balance;
}
.value-card.feature .value-title { font-size: clamp(22px, 2.4vw, 30px); }
.value-text { font-size: 13.5px; color: var(--text2); line-height: 1.7; flex: 1; }
.value-text b { color: var(--text); }
.value-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.value-pill {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--text2);
  border: 1px solid var(--border2);
  padding: 5px 12px; border-radius: 100px;
  letter-spacing: .04em;
  transition: border-color .2s, color .2s;
}
.value-card:hover .value-pill { border-color: var(--border3); }
.value-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.value-list li {
  font-size: 13px; color: var(--text2);
  padding-left: 22px; position: relative;
}
.value-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent); font-family: var(--mono); font-size: 12px;
}

.value-visual { position: relative; display: grid; place-items: center; min-height: 260px; }
.value-orbit {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, var(--hairline) 1px, transparent 1px), linear-gradient(to bottom, var(--hairline) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(closest-side, black, transparent);
  mask-image: radial-gradient(closest-side, black, transparent);
}
.value-flow { position: relative; display: flex; gap: 14px; }
.flow-step {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
  min-width: 118px;
  position: relative;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.8);
}
@media (prefers-reduced-motion: no-preference) {
  .flow-step { animation: chip-bob 6s ease-in-out infinite; }
  .flow-step:nth-child(2) { animation-delay: -2s; }
  .flow-step:nth-child(3) { animation-delay: -4s; }
}
.flow-step:not(:first-child)::before {
  content: '→'; position: absolute; left: -15px; top: 50%;
  transform: translate(-0%, -50%);
  color: var(--accent); font-family: var(--mono); font-size: 13px;
}
.flow-step span { font-family: var(--mono); font-size: 9px; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }
.flow-step b { font-family: var(--head); font-size: 15px; color: #fff; font-weight: 600; }
.flow-step strong { font-family: var(--mono); font-size: 10.5px; color: var(--accent); font-weight: 600; letter-spacing: .08em; }

/* ─── LIVE SIGNAL FEED — full-bleed ticker ──────────────── */
.signal-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 22px 0 26px;
  overflow: hidden;
}
.sf-head {
  max-width: 1240px; margin: 0 auto 18px;
  padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
}
.sf-head-left { display: flex; align-items: center; gap: 10px; }
.sf-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
.sf-title { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; white-space: nowrap; }
.sf-title span { color: var(--accent); font-weight: 700; }
.sf-stats { display: flex; gap: 22px; font-family: var(--mono); font-size: 11px; color: var(--muted); flex-wrap: wrap; }
.sf-stats span { white-space: nowrap; }
.sf-stats b { color: var(--text); font-weight: 600; }
.sf-stats b.accent { color: var(--accent); }
.sf-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.sf-track {
  display: flex; gap: 12px;
  width: max-content;
  animation: sf-scroll 60s linear infinite;
}
.sf-track:hover { animation-play-state: paused; }
@keyframes sf-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .sf-track { animation: none; } }
.sf-card {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--mono); font-size: 11.5px;
  white-space: nowrap;
  transition: border-color .2s;
}
.sf-card:hover { border-color: var(--accent-line); }
.sf-pair { color: #fff; font-weight: 700; letter-spacing: .04em; }
.sf-divider { width: 1px; height: 12px; background: var(--border2); }
.sf-time { color: var(--muted); }
.sf-dur { color: var(--text2); }
.sf-tp { font-weight: 600; }

/* ─── PRICING ───────────────────────────────────────────── */
.early-adopter {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  font-family: var(--mono); font-size: 11px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  border-radius: 100px;
  padding: 9px 18px;
  margin-bottom: 22px;
  letter-spacing: .08em;
}
.early-adopter b { color: #fff; font-weight: 600; }
.early-adopter span, .early-adopter b { white-space: nowrap; }
.ea-counter {
  background: var(--accent); color: #000;
  font-weight: 700; padding: 3px 11px; border-radius: 100px;
}
#pricing .section-head {
  grid-template-columns: 1fr;
  grid-template-areas: none;
  text-align: center;
  border-top: 0; padding-top: 0;
  display: flex; flex-direction: column; align-items: center;
}
#pricing .section-head::before, #pricing .section-head::after { content: none; }
#pricing .section-sub { margin-top: 4px; }
.coins { display: inline-flex; gap: 8px; margin-left: 10px; vertical-align: middle; }
.coin-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  border: 1px solid var(--border2); border-radius: 100px;
  padding: 3px 10px; color: var(--text2);
}
.coin-dot { width: 7px; height: 7px; border-radius: 50%; }
.cd-btc { background: #f7931a; }
.cd-eth { background: #8a92b2; }
.cd-usdt { background: #26a17b; }
.cd-usdc { background: #2775ca; }

.pricing-toggle {
  position: relative;
  display: inline-flex; gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 4px;
  margin-top: 26px;
}
.pt-slider {
  position: absolute; top: 4px; bottom: 4px;
  background: var(--accent);
  border-radius: 100px;
  transition: left .3s var(--ease), width .3s var(--ease);
  z-index: 0;
}
.pt-btn {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  background: none; border: 0; cursor: pointer;
  color: var(--muted);
  padding: 9px 22px; border-radius: 100px;
  transition: color .25s;
}
.pt-btn.active { color: #000; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 8px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s;
}
.pricing-card:hover { border-color: var(--border2); transform: translateY(-5px); }
.pricing-card.featured {
  border-color: var(--accent-line);
  background:
    radial-gradient(500px 260px at 50% -15%, var(--accent-glow), transparent 60%),
    var(--surface2);
  box-shadow: 0 30px 80px -40px var(--accent-glow);
}
.pricing-card.featured:hover { box-shadow: 0 40px 100px -40px var(--accent-glow); }
.ribbon {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  background: var(--accent); color: #000;
  padding: 5px 12px; border-radius: 100px;
  white-space: nowrap;
}
.tier-head { margin-bottom: 8px; }
.card-name {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent);
}
.card-tagline { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 22px; min-height: 42px; }
.price-row { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.price-strike {
  font-family: var(--head); font-size: 19px;
  color: var(--dim); text-decoration: line-through;
  text-decoration-color: var(--red);
  font-weight: 500;
}
.price-amount {
  font-family: var(--head);
  font-size: 46px; font-weight: 700; letter-spacing: -.03em;
  color: #fff; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-per { font-family: var(--mono); font-size: 12px; color: var(--muted); white-space: nowrap; }
.price-note { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 10px; line-height: 1.7; }
.divider { height: 1px; background: var(--border); margin: 22px 0; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.feat { display: flex; align-items: flex-start; gap: 11px; font-size: 13px; color: var(--text2); line-height: 1.5; }
.feat b { color: var(--text); }
.feat-icon {
  flex: none; width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  position: relative;
  margin-top: 2px;
}
.feat-icon::after {
  content: ''; position: absolute;
  left: 4.5px; top: 3.5px;
  width: 5px; height: 7px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(40deg);
}
.cta {
  display: block; text-align: center;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 100px;
  margin-top: 26px;
  transition: transform .25s var(--ease), box-shadow .25s, background .2s, color .2s, border-color .2s;
  border: 1px solid var(--border2);
  color: var(--text);
}
.pricing-card .cta:hover { transform: translateY(-2px); }
.pricing-card.featured .cta-primary, .cta-primary {
  background: var(--accent); color: #000; border-color: transparent;
}
.cta-primary:hover { box-shadow: 0 12px 36px -10px var(--accent-glow); }
.pricing-card:not(.featured) .cta-primary {
  background: transparent; color: var(--text); border-color: var(--border2);
}
.pricing-card:not(.featured) .cta-primary:hover {
  background: var(--accent); color: #000; border-color: transparent;
}
.pricing-footnote {
  display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: .06em;
}
.fn-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--dim); }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .35s var(--ease);
}
.testi-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.testi-stars { color: var(--accent); font-size: 13px; letter-spacing: .25em; }
.testi-text { font-size: 14px; color: var(--text2); line-height: 1.75; flex: 1; text-wrap: pretty; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-family: var(--mono); font-size: 12px; font-weight: 700;
}
.testi-name { font-size: 13.5px; font-weight: 600; color: #fff; }
.testi-meta { font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: .06em; }

/* editorial quote variant (tweak) */
[data-testi="quote"] .testi-grid { grid-template-columns: 1fr; gap: 0; }
[data-testi="quote"] .testi-card {
  background: none; border: 0; border-radius: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 38px 0;
  display: grid;
  grid-template-columns: 110px 1fr 220px;
  gap: 32px; align-items: center;
  transform: none;
}
[data-testi="quote"] .testi-card:hover { transform: none; }
[data-testi="quote"] .testi-card::after { content: none; }
[data-testi="quote"] .testi-text {
  font-family: var(--head);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.45; color: var(--text);
  letter-spacing: -.01em;
}
[data-testi="quote"] .testi-stars { align-self: center; }
[data-testi="quote"] .testi-author { justify-self: end; }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; counter-reset: faq; }
.faq-item {
  border-bottom: 1px solid var(--hairline);
  counter-increment: faq;
  transition: background .25s;
}
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-question {
  display: flex; align-items: baseline; gap: 22px;
  padding: 26px 8px;
  cursor: pointer;
  user-select: none;
}
.faq-question::before {
  content: counter(faq, decimal-leading-zero);
  font-family: var(--mono); font-size: 11px;
  color: var(--dim);
  transition: color .25s;
}
.faq-item.open .faq-question::before, .faq-question:hover::before { color: var(--accent); }
.faq-question span:first-of-type {
  font-family: var(--head);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600; letter-spacing: -.01em;
  color: var(--text2);
  flex: 1;
  transition: color .25s;
}
.faq-question:hover span:first-of-type, .faq-item.open .faq-question span:first-of-type { color: #fff; }
.faq-chevron {
  font-family: var(--mono); font-size: 18px; font-weight: 400;
  color: var(--muted);
  transition: transform .35s var(--ease), color .25s;
  line-height: 1;
  align-self: center;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  font-size: 14px; color: var(--text2); line-height: 1.75;
  padding: 0 8px 0 41px;
  max-width: 720px;
}
.faq-item.open .faq-answer-inner { padding-bottom: 28px; }
.faq-answer-inner b { color: var(--text); }
#faq .section-head { grid-template-columns: 1fr; grid-template-areas: none; display: flex; flex-direction: column; align-items: flex-start; }

/* ─── CTA BANNER ────────────────────────────────────────── */
.cta-banner {
  position: relative;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-xl);
  padding: clamp(56px, 7vw, 96px) 32px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 50% 120%, var(--accent-glow), transparent 65%),
    linear-gradient(to right, var(--hairline) 1px, transparent 1px) center / calc(100% / 4) 100%,
    var(--surface);
}
.cta-banner h2 {
  font-family: var(--head);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.02;
  color: #fff; margin-bottom: 22px;
  text-wrap: balance;
}
.cta-banner h2 em { font-style: normal; color: var(--accent); }
.cta-banner p { font-size: 15px; color: var(--text2); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); background: var(--bg2); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 54px 32px 40px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 28px;
}
.footer-links { display: flex; gap: 4px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--mono); font-size: 11.5px;
  color: var(--muted); text-decoration: none;
  padding: 7px 12px; border-radius: 100px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.footer-links a:hover { color: #fff; background: rgba(255,255,255,.05); }
.footer-disclaimer { font-family: var(--mono); font-size: 10.5px; color: var(--dim); line-height: 1.8; max-width: 760px; }

/* ─── TWEAKS PANEL ──────────────────────────────────────── */
#tweaks-panel {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  width: 250px;
  background: rgba(14,17,21,.92);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 16px;
  backdrop-filter: blur(16px);
  display: none;
  box-shadow: 0 24px 70px -20px rgba(0,0,0,.9);
}
#tweaks-panel.visible { display: block; }
.tw-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.tw-head h4 { font-family: var(--head); font-size: 14px; color: #fff; }
.tw-head small { font-family: var(--mono); font-size: 9px; color: var(--muted); letter-spacing: .1em; }
.tw-row { margin-bottom: 13px; }
.tw-row label {
  display: block;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.tw-row input[type="range"] { width: 100%; accent-color: var(--accent); }
.tw-hue-preview { display: flex; align-items: center; gap: 8px; margin-top: 5px; }
.tw-hue-sw { width: 16px; height: 16px; border-radius: 5px; background: var(--accent); }
.tw-hue-preview span { font-family: var(--mono); font-size: 10px; color: var(--text2); }
.tw-segs { display: flex; gap: 4px; }
.tw-seg {
  flex: 1;
  font-family: var(--mono); font-size: 10px;
  background: var(--surface2); color: var(--muted);
  border: 1px solid var(--border); border-radius: 7px;
  padding: 6px 4px; cursor: pointer;
  transition: all .15s;
}
.tw-seg:hover { color: var(--text); }
.tw-seg.active { background: var(--accent); color: #000; border-color: transparent; font-weight: 700; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .value-card { grid-column: span 3; }
  .value-card.feature { grid-template-columns: 1fr; gap: 32px; }
  .value-visual { min-height: 220px; }
}
@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
    grid-template-areas: "eye" "title" "sub";
    row-gap: 18px;
  }
  .section-sub { justify-self: start; }
  .how3 { grid-template-columns: 1fr; }
  .how3-step + .how3-step { border-left: 0; border-top: 1px solid var(--border); }
  .equity-stats { grid-template-columns: repeat(2, 1fr); }
  .equity-stat:nth-child(3) { border-left: 0; }
  .equity-stat:nth-child(n+3) { border-top: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  [data-testi="quote"] .testi-card { grid-template-columns: 1fr; gap: 16px; }
  [data-testi="quote"] .testi-author { justify-self: start; }
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .chip-5 { display: none; }
}
@media (max-width: 640px) {
  :root { --pad: 72px; }
  .container, .container-narrow { padding: 0 20px; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: 32px; }
  .hero-toplabel { margin-bottom: 30px; padding: 0 20px; font-size: 8.5px; letter-spacing: .18em; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .chip { display: none; }
  .demo-wide { padding: 0 16px 20px; }
  .demo-caption { flex-direction: column; gap: 6px; }
  .value-card, .value-card.feature { grid-column: span 6; padding: 26px 22px; }
  .equity-chart-wrap { padding-left: 50px; }
  .equity-head { flex-direction: column; align-items: flex-start; }
  .faq-question { gap: 14px; }
  .faq-answer-inner { padding-left: 33px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
