:root {
  --bg-main: #050A0F;
  --bg-section: #0D151C;
  --glass-bg: rgba(13, 21, 28, 0.72);
  --glass-bg-light: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(0, 230, 184, 0.22);
  --text-main: #F4FFF9;
  --text-secondary: #A7B4BE;
  --text-muted: #6F7D86;
  --accent-main: #00E6B8;
  --accent-hover: #00FFC2;
  --accent-cyan: #00B7FF;
  --profit-green: #00D26A;
  --loss-red: #FF3B4A;
  --vip-gold: #D6A84F;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow-glass: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --shadow-accent: 0 0 40px rgba(0, 230, 184, 0.08), 0 24px 80px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 230, 184, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 6%, rgba(0, 183, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 72% 88%, rgba(214, 168, 79, 0.08), transparent 26rem),
    var(--bg-main);
  color: var(--text-main);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 48%, rgba(0, 230, 184, 0.065) 50%, transparent 52% 100%);
  background-size: 86px 86px, 86px 86px, 640px 640px;
  mask-image: linear-gradient(to bottom, black 0 68%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(480px circle at var(--cursor-x, 50%) var(--cursor-y, 26%), rgba(0, 230, 184, 0.12), transparent 42%);
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  transform: translateX(-50%);
  z-index: 80;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(5, 10, 15, 0.68);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.nav {
  width: 100%;
  min-height: 70px;
  padding: 0 14px 0 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.brand img {
  width: 150px;
  filter: invert(1) drop-shadow(0 0 16px rgba(0, 230, 184, 0.12));
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.nav-links a {
  min-height: 38px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: rgba(244, 255, 249, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.28s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.button {
  position: relative;
  min-height: 48px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 800;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 0.28s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  translate: -120% 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transition: translate 560ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 230, 184, 0.42);
  box-shadow: 0 18px 45px rgba(0, 230, 184, 0.14);
}

.button:hover::before {
  translate: 120% 0;
}

.button.primary {
  border-color: rgba(0, 230, 184, 0.36);
  background: linear-gradient(135deg, #00E6B8, #00B7FF);
  color: #04100D;
  box-shadow: 0 12px 40px rgba(0, 230, 184, 0.25);
}

.button.ghost {
  border-color: rgba(0, 230, 184, 0.22);
  background: rgba(0, 230, 184, 0.08);
}

.button.amber {
  border-color: rgba(214, 168, 79, 0.5);
  background: linear-gradient(135deg, var(--vip-gold), #7b5f25);
  color: #111006;
}

.button.danger {
  border-color: rgba(255, 59, 74, 0.4);
  background: rgba(255, 59, 74, 0.1);
}

.market-ticker {
  position: fixed;
  top: 102px;
  left: 50%;
  width: min(1120px, calc(100% - 44px));
  height: 36px;
  transform: translateX(-50%);
  z-index: 70;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(5, 10, 15, 0.56);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

body.menu-open .market-ticker {
  opacity: 0;
  visibility: hidden;
}

body.menu-open main,
body.menu-open footer,
body.menu-open .mobile-cta-bar {
  filter: brightness(0.58);
  transition: filter 0.22s ease;
}

.ticker-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  padding-left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
}

.ticker-item strong {
  color: var(--text-main);
}

.ticker-item .up {
  color: var(--accent-main);
}

.ticker-item .down {
  color: var(--loss-red);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 10, 15, 0.88) 0%, rgba(5, 10, 15, 0.62) 52%, rgba(5, 10, 15, 0.18)),
    url("../images/hero-trading.png") center right / cover no-repeat;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.page-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 36% 48%, rgba(0, 230, 184, 0.2), transparent 28rem),
    linear-gradient(115deg, transparent 0 58%, rgba(0, 230, 184, 0.14) 58.2%, transparent 59%);
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--bg-main));
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.34;
}

.hero-inner,
.section-inner,
.page-hero-inner,
.footer-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 176px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 176px 0 102px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-main);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--text-main);
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.6);
}

h2 {
  margin-bottom: 16px;
  color: var(--text-main);
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  color: var(--text-main);
  font-size: 1.18rem;
}

.hero-copy,
.lead {
  color: rgba(244, 255, 249, 0.82);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.hero-copy {
  max-width: 700px;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.58);
}

.hero-actions,
.section-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

section {
  position: relative;
  padding: 104px 0;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 66%, rgba(255, 255, 255, 0.025) 66.2%, transparent 66.5%);
}

.section-head {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.glass-panel,
.dashboard-preview,
.supervised-panel,
.portrait-placeholder,
.faq-list details,
.final-cta,
.book-cover,
.blog-card,
.timeline-item,
.signal-board,
.step-card {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  background: var(--glass-bg);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  transition: all 0.28s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(380px circle at var(--card-x, 50%) var(--card-y, 0%), rgba(0, 230, 184, 0.16), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 230, 184, 0.32);
  box-shadow: var(--shadow-accent);
}

.card:hover::before {
  opacity: 1;
}

.card.featured,
.path-card.featured,
.service-card.featured {
  border-color: rgba(0, 230, 184, 0.25);
  box-shadow: var(--shadow-accent);
}

.card p,
.card li,
.blog-card p,
.timeline-item p {
  color: var(--text-secondary);
  line-height: 1.68;
}

.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 230, 184, 0.24);
  border-radius: 16px;
  background: rgba(0, 230, 184, 0.09);
  color: var(--accent-main);
  font-weight: 900;
}

.tag {
  margin-bottom: 22px;
  display: inline-flex;
  border: 1px solid rgba(0, 230, 184, 0.2);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--accent-main);
  background: rgba(0, 230, 184, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tag.vip {
  border-color: rgba(214, 168, 79, 0.32);
  color: var(--vip-gold);
  background: rgba(214, 168, 79, 0.09);
}

.inline-link {
  margin-top: 18px;
  display: inline-flex;
  color: var(--accent-hover);
  font-weight: 900;
}

.pathways {
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 230, 184, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.dashboard-preview {
  padding: 18px;
  transform: translateY(var(--parallax-y, 0));
}

.dashboard-top,
.terminal-top {
  min-height: 42px;
  padding: 0 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 900;
}

.dashboard-top strong,
.terminal-top strong {
  margin-left: auto;
}

.traffic,
.terminal-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.green {
  background: var(--accent-main);
}

.gold {
  background: var(--vip-gold);
}

.red {
  background: var(--loss-red);
}

.dashboard-chart,
.chart-line {
  min-height: 220px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 38px 38px;
  overflow: hidden;
}

.dashboard-chart svg,
.chart-line svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.signal-grid div,
.terminal-grid div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.signal-grid span,
.terminal-grid span,
.status-row span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-grid strong,
.terminal-grid strong,
.status-row strong {
  color: var(--text-main);
}

.profit {
  color: var(--profit-green) !important;
}

.loss {
  color: var(--loss-red) !important;
}

.dashboard-badges,
.pill-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-badges span,
.pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  font-weight: 800;
}

.steps-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 184, 0.38), transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.step-card span,
.timeline-item .step {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 230, 184, 0.28);
  border-radius: 999px;
  color: var(--accent-main);
  background: rgba(0, 230, 184, 0.08);
  font-weight: 900;
}

.comparison {
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row div {
  padding: 20px;
  color: var(--text-secondary);
}

.compare-row div:first-child,
.compare-row.head div {
  color: var(--text-main);
  font-weight: 900;
}

.compare-row.head {
  background: rgba(255, 255, 255, 0.06);
}

.supervised-panel,
.final-cta {
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 36px;
  align-items: center;
  border-color: rgba(0, 230, 184, 0.25);
}

.final-cta {
  display: block;
  text-align: center;
}

.final-cta .section-actions {
  justify-content: center;
}

.small-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.mini-dashboard,
.signal-board {
  min-height: 280px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 34px 34px;
}

.status-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.status-row:last-child {
  border-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.portrait-placeholder {
  min-height: 500px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 230, 184, 0.12), rgba(0, 183, 255, 0.06)),
    var(--glass-bg);
}

.portrait-placeholder img {
  width: min(300px, 70%);
  filter: invert(1);
}

.portrait-placeholder span {
  color: var(--text-muted);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-main);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--accent-main);
  font-size: 1.35rem;
}

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

.faq-list p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.metrics-strip {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  background: var(--glass-bg);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.metric {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--text-main);
  font-size: 1.65rem;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 24px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
}

.book-cover {
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--glass-bg);
  background-size: 42px 42px;
}

.book-face {
  width: min(340px, 76%);
  aspect-ratio: 0.68;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 230, 184, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(0, 230, 184, 0.18), rgba(214, 168, 79, 0.08)),
    #071016;
  box-shadow: 28px 32px 0 rgba(0, 0, 0, 0.22);
}

.book-face img {
  width: 190px;
  filter: invert(1);
}

.book-title {
  color: var(--text-main);
  font-size: 2.15rem;
  line-height: 0.98;
  font-weight: 950;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: center;
  transition: all 0.28s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 184, 0.32);
}

.blog-date {
  min-height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: var(--accent-main);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 950;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-main);
  padding: 15px 16px;
  font: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: rgba(0, 230, 184, 0.52);
  box-shadow: 0 0 0 4px rgba(0, 230, 184, 0.1);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.notice {
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: 22px;
  background: rgba(214, 168, 79, 0.08);
  color: rgba(244, 255, 249, 0.86);
  padding: 18px;
  line-height: 1.65;
}

.site-footer {
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 230, 184, 0.08), transparent 24rem),
    #03070a;
}

.footer-inner {
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 18px;
  filter: invert(1);
}

.footer-inner p,
.footer-inner a {
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.subfooter {
  padding: 20px max(22px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
}

.mobile-cta-bar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal:not(.is-visible) {
  opacity: 1;
}

.dashboard-preview.reveal.is-visible,
.signal-board.reveal.is-visible {
  transform: translateY(var(--parallax-y, 0));
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1040px) {
  .nav {
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
    flex: 0 1 auto;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 92px;
    left: 50%;
    right: auto;
    width: min(520px, calc(100vw - 32px));
    transform: translateX(-50%);
    display: none;
    gap: 8px;
    padding: 18px;
    z-index: 120;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
      #071016;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.74), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
  }

  .nav-links a {
    min-height: 52px;
    padding: 0 20px;
    width: 100%;
    justify-content: flex-start;
    color: rgba(244, 255, 249, 0.9);
    font-size: 1.05rem;
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.11);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-inner,
  .grid.three,
  .grid.four,
  .grid.two,
  .split,
  .steps-line,
  .supervised-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .steps-line::before {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 26px;
  }

  .nav {
    min-height: 60px;
    padding: 0 10px 0 18px;
    justify-content: space-between;
  }

  .brand img {
    width: clamp(128px, 40vw, 172px);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    flex: 0 0 44px;
  }

  .nav-links {
    top: 82px;
    width: calc(100vw - 32px);
    padding: 16px;
    border-radius: 28px;
  }

  .market-ticker {
    top: 80px;
    width: calc(100% - 20px);
    height: 32px;
  }

  .ticker-item {
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(5, 10, 15, 0.8), rgba(5, 10, 15, 0.46)),
      url("../images/hero-trading.png") center / cover no-repeat;
  }

  .hero-inner,
  .page-hero-inner {
    width: min(100% - 30px, 1180px);
    padding-top: 138px;
    padding-bottom: 62px;
  }

  .page-hero {
    min-height: auto;
  }

  .section-inner,
  .footer-inner {
    width: min(100% - 30px, 1180px);
  }

  h1,
  .page-hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.45rem);
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  section {
    padding: 74px 0;
  }

  .dashboard-preview {
    display: none;
  }

  .metrics-strip,
  .signal-grid,
  .terminal-grid,
  .compare-row,
  .timeline-item,
  .blog-card {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .compare-row {
    padding: 16px 0;
  }

  .compare-row div {
    padding: 7px 18px;
  }

  .compare-row.head {
    display: none;
  }

  .portrait-placeholder,
  .book-cover {
    min-height: 420px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 95;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(5, 10, 15, 0.76);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
  }

  .mobile-cta-bar a {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
  }

  .mobile-cta-bar a.active {
    color: #04100D;
    background: linear-gradient(135deg, var(--accent-main), var(--accent-cyan));
  }
}
