:root {
  --black: #030303;
  --black-2: #080807;
  --charcoal: #10100f;
  --charcoal-2: #171611;
  --gold: #d7a832;
  --gold-2: #ffe17a;
  --gold-3: #8d6515;
  --green: #54dc52;
  --paper: #f6f0df;
  --muted: #bdb6a3;
  --soft: #7f7869;
  --line: rgba(215, 168, 50, 0.24);
  --line-2: rgba(246, 240, 223, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --glow: 0 0 38px rgba(215, 168, 50, 0.24);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold-2);
  color: #080600;
  font-weight: 900;
}

.skip-link:focus {
  top: 18px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 3, 3, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.topbar.is-scrolled {
  border-bottom-color: var(--line);
}

.nav {
  width: min(1220px, calc(100% - 40px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 242px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(255, 225, 122, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(215, 168, 50, 0.22);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-action {
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-2);
  background: rgba(215, 168, 50, 0.08);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 140px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 225, 122, 0.22), transparent 34%),
    radial-gradient(circle at 8% 78%, rgba(84, 220, 82, 0.08), transparent 34%),
    linear-gradient(115deg, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.96) 48%, rgba(18, 14, 6, 0.82) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(215, 168, 50, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 168, 50, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-inner {
  width: min(1220px, calc(100% - 40px));
  min-height: calc(100svh - 140px);
  display: grid;
  grid-template-columns: minmax(570px, 0.98fr) minmax(470px, 1.02fr);
  gap: 38px;
  align-items: center;
  margin: 0 auto;
  padding: 54px 0 28px;
}

.pretitle,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 4.55vw, 64px);
  line-height: 1.02;
  font-weight: 950;
  text-wrap: balance;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #ded7c4;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: #090600;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border-color: rgba(255, 225, 122, 0.72);
  box-shadow: var(--glow);
}

.button-dark {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.ghost-gold {
  color: var(--gold-2);
  background: rgba(215, 168, 50, 0.08);
  border-color: rgba(255, 225, 122, 0.44);
  box-shadow: none;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-line span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(215, 168, 50, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.trust-line svg {
  color: var(--gold-2);
}

.hero-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 122, 0.4);
  border-radius: 8px;
  background: rgba(8, 8, 7, 0.78);
  box-shadow: var(--shadow), var(--glow);
}

.logo-medallion {
  position: absolute;
  right: 18px;
  top: 70px;
  z-index: 2;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 122, 0.58);
  border-radius: 50%;
  background: #000;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 34px rgba(215, 168, 50, 0.28);
}

.logo-medallion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-header,
.board-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.board-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.board-header strong,
.board-foot strong,
.source-link {
  color: var(--gold-2);
}

.source-link {
  flex: 0 0 auto;
  font-weight: 950;
  transition: color 180ms ease;
}

.source-link:hover {
  color: var(--paper);
}

.hero-board > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fx-live-dashboard {
  position: relative;
  min-height: 0;
  padding: 12px;
}

.fx-hero-metric,
.fx-metric {
  border: 1px solid rgba(215, 168, 50, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.52);
}

.fx-hero-metric {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background:
    linear-gradient(110deg, rgba(215, 168, 50, 0.18), rgba(0, 0, 0, 0.46)),
    rgba(0, 0, 0, 0.64);
}

.fx-hero-metric small,
.fx-metric small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fx-hero-metric strong {
  margin-top: 4px;
  color: var(--gold-2);
  font-size: clamp(50px, 5.4vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  text-shadow: 0 0 26px rgba(255, 225, 122, 0.28);
}

.fx-hero-metric span,
.fx-metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fx-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.fx-metric {
  min-width: 0;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  overflow: hidden;
}

.fx-metric-wide {
  grid-column: span 2;
}

.fx-metric strong {
  color: var(--paper);
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(21px, 1.75vw, 26px);
  line-height: 1.05;
  font-weight: 950;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.fx-money-card strong {
  width: 100%;
  display: block;
  overflow: visible;
  font-size: clamp(30px, 2.55vw, 38px);
}

.fx-metric strong.is-long-value {
  font-size: clamp(18px, 1.45vw, 22px);
}

.fx-metric strong.is-extra-long-value {
  font-size: clamp(16px, 1.2vw, 19px);
}

[data-fx-value].is-tight-value {
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.08;
}

.fx-money-pair {
  display: grid;
  gap: 8px;
  margin-top: 7px;
}

.fx-money-pair div {
  min-width: 0;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
}

.fx-money-pair span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fx-money-pair strong {
  min-width: 0;
  overflow: visible;
  font-size: clamp(18px, 1.5vw, 24px);
  text-align: right;
}

.fx-money-pair strong.is-long-value {
  font-size: clamp(16px, 1.18vw, 20px);
}

.fx-money-pair strong.is-extra-long-value {
  font-size: clamp(14px, 1vw, 17px);
}

.fx-positive-metric strong {
  color: var(--green);
}

.fx-risk-metric strong {
  color: var(--gold-2);
}

.fx-fallback {
  display: none;
}

.fx-live-dashboard:not(.is-live) {
  padding: 12px;
}

.fx-live-dashboard:not(.is-live) .fx-hero-metric,
.fx-live-dashboard:not(.is-live) .fx-metric-grid {
  display: none;
}

.fx-live-dashboard:not(.is-live) .fx-fallback {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.fx-loading-panel {
  width: min(100%, 420px);
  min-height: 250px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 32px;
  border: 1px solid rgba(215, 168, 50, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 225, 122, 0.14), transparent 42%),
    rgba(0, 0, 0, 0.48);
  text-align: center;
}

.fx-loading-panel strong {
  color: var(--gold-2);
  font-size: 20px;
  line-height: 1.1;
}

.fx-loading-panel p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.loading-ring {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 225, 122, 0.18);
  border-top-color: var(--gold-2);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

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

.ticker {
  background: #070706;
  border-bottom: 1px solid var(--line);
}

.ticker-inner {
  width: min(1220px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  background: var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.ticker-inner div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  background: #080807;
}

.ticker-inner small {
  color: var(--soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ticker-inner strong {
  margin-top: 8px;
  color: var(--gold-2);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.section {
  padding: 104px 0;
}

.section-inner {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}

.split-heading h2,
.license-grid h2,
.offer-panel h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  font-weight: 950;
}

.split-heading p,
.license-grid p,
.offer-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.live-section,
.system-section,
.offer-section,
.copy-section {
  background: var(--black-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr 0.72fr 0.72fr;
  gap: 14px;
}

.proof-tile,
.system-grid article,
.metric-box,
.license-flow div,
.offer-panel,
.analytics-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.proof-tile {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.proof-main {
  background:
    linear-gradient(180deg, rgba(215, 168, 50, 0.14), rgba(255, 255, 255, 0.02)),
    var(--charcoal);
}

.proof-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 225, 122, 0.32);
  border-radius: 8px;
  color: var(--gold-2);
  background: rgba(215, 168, 50, 0.08);
}

.proof-tile small {
  margin-top: 22px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-tile h3 {
  margin: 8px 0 0;
  font-size: 30px;
  line-height: 1;
}

.proof-tile p {
  margin: 14px 0 0;
  color: var(--muted);
}

.proof-tile strong {
  margin-top: auto;
  color: var(--gold-2);
  font-size: 14px;
}

.compact-proof h3 {
  font-size: 22px;
}

.backtest-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 168, 50, 0.11), transparent 32%),
    #030303;
}

.result-lab {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.result-chart {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
}

.result-chart-head {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.result-chart-head strong {
  color: var(--gold-2);
}

.result-chart img {
  width: 100%;
  min-height: 292px;
  object-fit: cover;
  background: #fff;
}

.metric-stack {
  display: grid;
  gap: 14px;
}

.metric-box {
  min-height: 142px;
  padding: 20px;
}

.metric-box small {
  color: var(--soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.metric-box strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-size: 25px;
  line-height: 1.08;
}

.metric-box span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.gold-box {
  background: linear-gradient(180deg, rgba(215, 168, 50, 0.18), rgba(255, 255, 255, 0.02));
}

.gold-box strong {
  color: var(--gold-2);
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.analytics-grid figure {
  overflow: hidden;
  margin: 0;
}

.analytics-grid img {
  width: 100%;
  aspect-ratio: 2.3 / 1;
  object-fit: cover;
  background: #fff;
}

.analytics-grid figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.comparison {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #070706;
}

.section-note {
  max-width: 920px;
  margin: 18px auto 0;
  color: var(--soft);
  font-size: 13px;
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1.1fr 0.8fr;
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row span {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.comparison-row span:first-child {
  border-left: 0;
  color: var(--paper);
}

.comparison-row.head {
  background: var(--charcoal-2);
}

.comparison-row.head span {
  min-height: 50px;
  color: var(--gold-2);
  font-size: 12px;
  text-transform: uppercase;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.system-grid article {
  min-height: 286px;
  padding: 24px;
}

.system-grid svg {
  width: 36px;
  height: 36px;
  color: var(--gold-2);
  margin-bottom: 22px;
}

.system-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.16;
}

.system-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.strategy-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.strategy-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  background: #0a0a09;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
}

.license-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(3, 3, 3, 0.88), rgba(3, 3, 3, 0.88)),
    url("images/backtest/sessions-v108.png");
  background-size: cover;
  background-position: center;
}

.copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.92fr) minmax(290px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.copy-card,
.route-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.copy-card-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 225, 122, 0.14), transparent 38%),
    #090908;
}

.copy-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.copy-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.route-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.copy-route {
  border-color: rgba(84, 220, 82, 0.28);
  background:
    linear-gradient(180deg, rgba(84, 220, 82, 0.08), rgba(255, 255, 255, 0.01)),
    #080908;
}

.route-badge {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.route-card > svg {
  width: 42px;
  height: 42px;
  margin: 28px 0 18px;
  color: var(--gold-2);
}

.copy-route > svg {
  color: var(--green);
}

.route-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.08;
}

.route-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.route-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.route-card li {
  position: relative;
  padding-left: 22px;
  color: var(--paper);
  font-size: 15px;
  font-weight: 750;
}

.route-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
}

.route-card .button {
  width: 100%;
  margin-top: auto;
}

.license-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.license-grid p {
  margin-top: 20px;
}

.license-grid .button {
  margin-top: 30px;
}

.license-flow {
  display: grid;
  gap: 14px;
}

.license-flow div {
  min-height: 130px;
  padding: 22px;
}

.license-flow span {
  color: var(--gold-2);
  font-weight: 950;
}

.license-flow strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.license-flow p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 86% 24%, rgba(255, 225, 122, 0.18), transparent 30%),
    #0b0b09;
}

.offer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}

.offer-panel p {
  margin-top: 16px;
  max-width: 760px;
}

.risk-note {
  max-width: 980px;
  margin: 22px auto 0;
  color: var(--soft);
  font-size: 13px;
  text-align: center;
}

.faq-section {
  background:
    radial-gradient(circle at 78% 14%, rgba(84, 220, 82, 0.08), transparent 28%),
    #030303;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.faq-grid summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--paper);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.16;
  cursor: pointer;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-2);
  font-size: 22px;
  line-height: 1;
  background: rgba(215, 168, 50, 0.08);
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 225, 122, 0.34);
  border-radius: 8px;
  background: rgba(3, 3, 3, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 950;
}

.mobile-sticky-cta a:first-child {
  color: #090600;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.mobile-sticky-cta a:last-child {
  color: var(--gold-2);
  border: 1px solid var(--line);
  background: rgba(215, 168, 50, 0.08);
}

.footer {
  border-top: 1px solid var(--line);
  background: #020202;
}

.footer-inner {
  width: min(1220px, calc(100% - 40px));
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1160px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(3, 3, 3, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: space-between;
    padding: 0 12px;
  }

  .hero-inner,
  .split-heading,
  .license-grid,
  .copy-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 54px;
  }

  .hero-board {
    max-width: 780px;
  }

  .ticker-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid,
  .system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-lab {
    grid-template-columns: 1fr;
  }

  .strategy-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav,
  .hero-inner,
  .ticker-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1220px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 0;
    padding: 46px 0 54px;
  }

  .hero-lead,
  .split-heading p,
  .license-grid p,
  .offer-panel p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-line span {
    width: 100%;
  }

  .trust-line {
    display: none;
  }

  .ticker-inner,
  .proof-grid,
  .faq-grid,
  .analytics-grid,
  .system-grid,
  .offer-panel {
    grid-template-columns: 1fr;
  }

  .offer-actions {
    min-width: 0;
  }

  .logo-medallion {
    width: 82px;
    height: 82px;
    top: 66px;
    right: 12px;
  }

  .section {
    padding: 76px 0;
  }

  .comparison {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 760px;
  }

  .metric-box {
    min-height: 126px;
  }

  .hero-board > img {
    aspect-ratio: 1.25 / 1;
  }

  .fx-live-dashboard {
    min-height: 0;
  }

  .fx-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-chart img,
  .analytics-grid img {
    min-height: 0;
    aspect-ratio: 1.6 / 1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 82px;
  }

  .mobile-sticky-cta {
    display: grid;
  }
}
