:root {
  --black: #07090d;
  --graphite: #10151d;
  --panel: #151c27;
  --panel-2: #1e2937;
  --white: #ffffff;
  --paper: #f5f7fb;
  --ink: #111827;
  --text: #263244;
  --muted: #667085;
  --line: #dce3ed;
  --gold: #f2c14e;
  --gold-2: #a86f12;
  --signal-yellow: #f6e72a;
  --signal-lime: #caff00;
  --cyan: #20d5f5;
  --lime: #c8ff00;
  --green: #22c55e;
  --red: #ef4444;
  --shadow: 0 30px 80px rgba(7, 9, 13, .24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.5;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0 42px;
  color: #e7edf7;
  background: rgba(7, 9, 13, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(7, 9, 13, .94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-dynamic-logo {
  display: block;
  width: clamp(240px, 26vw, 330px);
  height: clamp(64px, 7vw, 88px);
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(202, 255, 0, .18));
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 82px;
  height: 82px;
  place-items: center;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(202, 255, 0, .42);
  border-radius: 50%;
  box-shadow:
    inset 0 0 22px rgba(202, 255, 0, .12),
    0 0 26px rgba(202, 255, 0, .22);
  flex: 0 0 auto;
  isolation: isolate;
}

.brand-mark::before {
  position: absolute;
  inset: -2px;
  z-index: 0;
  content: "";
  background: conic-gradient(
    from 0deg,
    rgba(202, 255, 0, 0),
    rgba(202, 255, 0, .9),
    rgba(246, 231, 42, .26),
    rgba(202, 255, 0, 0) 42%
  );
  animation: brand-mark-orbit 7.5s linear infinite;
}

.brand-mark::after {
  position: absolute;
  inset: 4px;
  z-index: 1;
  content: "";
  background: #000;
  border-radius: inherit;
  box-shadow: inset 0 0 20px rgba(202, 255, 0, .08);
}

.brand-mark img {
  position: relative;
  z-index: 2;
  display: block;
  width: 74px;
  height: 74px;
  filter: drop-shadow(0 0 14px rgba(202, 255, 0, .54));
  transform-origin: center;
  animation: brand-logo-breathe 3.2s ease-in-out infinite;
}

@keyframes brand-mark-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes brand-logo-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 9px rgba(202, 255, 0, .38));
    transform: scale(.97);
  }

  50% {
    filter: drop-shadow(0 0 22px rgba(202, 255, 0, .76));
    transform: scale(1.03);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  white-space: nowrap;
}

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

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
}

.language-toggle button {
  min-width: 38px;
  min-height: 28px;
  padding: 0 10px;
  color: #dbe5ef;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.language-toggle button.is-active {
  color: var(--black);
  background: linear-gradient(135deg, var(--signal-yellow) 0%, var(--signal-lime) 100%);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.nav-cta,
.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--signal-yellow) 0%, var(--signal-lime) 100%);
  box-shadow: 0 14px 32px rgba(202, 255, 0, .28);
}

.btn-secondary {
  color: #f7fbff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  color: #f8fbff;
  background: var(--black);
}

.hero-asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, .96) 0%, rgba(7, 9, 13, .82) 38%, rgba(7, 9, 13, .32) 78%),
    linear-gradient(180deg, rgba(7, 9, 13, .12), rgba(7, 9, 13, .94));
}

.hero-motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-motion:before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 24% 28%, rgba(32, 213, 245, .16), transparent 20%),
    radial-gradient(circle at 78% 38%, rgba(200, 255, 0, .14), transparent 22%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, auto, 86px 86px, 86px 86px;
  opacity: .82;
  transform: perspective(900px) rotateX(62deg) translateY(-12%);
  animation: gridFloat 18s linear infinite;
}

.signal-line {
  position: absolute;
  right: -12%;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 213, 245, .84), rgba(242, 193, 78, .72), transparent);
  opacity: .72;
  filter: drop-shadow(0 0 10px rgba(32, 213, 245, .42));
  animation: signalSweep 7s linear infinite;
}

.line-a {
  top: 24%;
}

.line-b {
  top: 52%;
  animation-delay: -2.4s;
}

.line-c {
  top: 76%;
  animation-delay: -4.6s;
}

.data-pip {
  position: absolute;
  width: 52px;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 999px;
  opacity: .72;
  box-shadow: 0 0 18px rgba(242, 193, 78, .28);
  animation: dataBlink 3.6s ease-in-out infinite;
}

.pip-a {
  top: 29%;
  right: 18%;
}

.pip-b {
  top: 61%;
  right: 34%;
  animation-delay: -1.2s;
}

.pip-c {
  top: 84%;
  right: 9%;
  animation-delay: -2.3s;
}

.floating-quote {
  position: absolute;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(232, 244, 255, .9);
  background: rgba(6, 10, 16, .42);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(32, 213, 245, .12);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 850;
  animation: quoteFloat 6.8s ease-in-out infinite;
}

.floating-quote b {
  color: var(--lime);
  font-weight: 950;
}

.quote-a {
  top: 15%;
  left: 7%;
}

.quote-b {
  right: 13%;
  bottom: 22%;
  animation-delay: -2.4s;
}

.quote-c {
  top: 42%;
  right: 5%;
  animation-delay: -4.2s;
}

.market-orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(32, 213, 245, .18);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(32, 213, 245, .08);
  animation: orbitSpin 18s linear infinite;
}

.market-orbit:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(200, 255, 0, .55);
}

.orbit-a {
  right: 12%;
  top: 18%;
}

.orbit-b {
  left: 46%;
  bottom: 12%;
  width: 180px;
  height: 180px;
  animation-direction: reverse;
  animation-duration: 14s;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 58px;
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 68px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  font-size: 15px;
}

.hero-copy h1 {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 3.9vw, 48px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d7e0ea;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 36px;
}

.trust-row span {
  min-height: 76px;
  padding: 15px;
  color: #dce7f3;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  font-size: 13px;
}

.trust-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 18px;
}

.terminal {
  position: relative;
  overflow: hidden;
  background: rgba(12, 17, 24, .92);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.terminal:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(32, 213, 245, .16), transparent 42%, rgba(242, 193, 78, .16));
}

.terminal-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  background: #94a3b8;
  border-radius: 999px;
}

.terminal-top span:first-child {
  background: var(--red);
}

.terminal-top span:nth-child(2) {
  background: var(--gold);
}

.terminal-top span:nth-child(3) {
  background: var(--green);
}

.terminal-top b {
  margin-left: 8px;
  font-size: 12px;
}

.terminal-body {
  position: relative;
  padding: 22px;
}

.terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.terminal-head small,
.watchlist small,
.quote-grid small {
  display: block;
  color: #94a3b8;
  font-size: 11px;
}

.terminal-head .quote-meta {
  margin-top: 6px;
}

.terminal-head strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 26px;
}

.terminal-head em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  color: var(--black);
  background: var(--lime);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  animation: livePulse 1.7s ease-in-out infinite;
}

.ticker {
  display: none;
}

.chart-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  align-items: end;
  height: 210px;
  margin-top: 22px;
  padding: 18px;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    rgba(0,0,0,.26);
  background-size: 100% 42px, 54px 100%, auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  overflow: hidden;
}

.chart-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(32, 213, 245, .18) 42%, rgba(200, 255, 0, .16) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: marketSweep 4.6s ease-in-out infinite;
  pointer-events: none;
}

.chart-panel:after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 36%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242, 193, 78, .85), rgba(32, 213, 245, .9), transparent);
  box-shadow: 0 0 18px rgba(32, 213, 245, .32);
  animation: pulseLine 3.2s ease-in-out infinite;
  pointer-events: none;
}

.chart-panel span {
  position: relative;
  z-index: 1;
  display: block;
  height: var(--h);
  min-height: 34px;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
  border-radius: 8px 8px 2px 2px;
  box-shadow: 0 0 24px rgba(32, 213, 245, .22);
  transform-origin: bottom;
  animation: barPulse 2.8s ease-in-out infinite;
  animation-delay: calc(var(--x) * -180ms);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.quote-grid article {
  min-height: 76px;
  padding: 13px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  transform: translateY(0);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.quote-grid article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(200, 255, 0, .34);
}

.quote-grid strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 20px;
}

.watchlist {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.watchlist article {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  animation: watchPulse 4.8s ease-in-out infinite;
}

.watchlist article:nth-child(2) {
  animation-delay: -2.2s;
}

.watchlist span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--lime));
  border-radius: 8px;
  font-size: 11px;
  font-weight: 950;
}

.watchlist strong {
  color: #fff;
}

.watchlist b {
  color: var(--cyan);
  font-size: 12px;
}

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

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

.quote-flat {
  color: #d7e0ea !important;
}

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

.quote-stale {
  color: var(--gold) !important;
}

.ticker {
  position: relative;
  display: flex;
  gap: 12px;
  width: min(1200px, calc(100% - 48px));
  margin: -34px auto 34px;
  padding: 12px;
  overflow: hidden;
  color: #e7edf7;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.ticker-track {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  min-width: max-content;
  animation: tickerMove 28s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker span {
  flex: 0 0 auto;
  padding: 9px 14px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.tv-feed-band {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  margin: -18px auto 40px;
  padding: 14px 16px 10px;
  color: #e7edf7;
  background: rgba(7, 9, 13, .76);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.tv-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.tv-feed-head span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tv-feed-head small {
  color: #94a3b8;
  font-size: 11px;
}

.tv-feed-band .tradingview-widget-container {
  min-height: 44px;
  overflow: hidden;
}

.local-market-tape {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.local-market-tape-track {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  min-width: max-content;
  animation: tickerMove 24s linear infinite;
}

.local-market-tape span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.local-market-tape b {
  color: var(--lime);
}

.local-market-tape em {
  color: var(--green);
  font-style: normal;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes heroDrift {
  0% {
    transform: scale(1.04) translate3d(calc(var(--mx, 0) * 10px), calc(var(--my, 0) * 8px), 0);
  }

  100% {
    transform: scale(1.1) translate3d(calc(-1.5% + var(--mx, 0) * 14px), calc(-1% + var(--my, 0) * 10px), 0);
  }
}

@keyframes gridFloat {
  0% {
    transform: perspective(900px) rotateX(62deg) translateY(-12%) translateX(0);
  }

  100% {
    transform: perspective(900px) rotateX(62deg) translateY(-4%) translateX(-86px);
  }
}

@keyframes signalSweep {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }

  12% {
    opacity: .75;
  }

  100% {
    transform: translate3d(-145vw, 0, 0);
    opacity: 0;
  }
}

@keyframes dataBlink {
  0%, 100% {
    transform: translateY(0) scaleX(.72);
    opacity: .28;
  }

  50% {
    transform: translateY(-8px) scaleX(1);
    opacity: .86;
  }
}

@keyframes quoteFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: .68;
  }

  50% {
    transform: translate3d(10px, -16px, 0);
    opacity: 1;
  }
}

@keyframes orbitSpin {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: .42;
  }

  50% {
    transform: rotate(180deg) scale(1.08);
    opacity: .72;
  }

  100% {
    transform: rotate(360deg) scale(1);
    opacity: .42;
  }
}

@keyframes livePulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(200, 255, 0, 0);
  }

  50% {
    box-shadow: 0 0 24px rgba(200, 255, 0, .36);
  }
}

@keyframes barPulse {
  0%, 100% {
    transform: scaleY(.86);
    filter: saturate(.96);
  }

  50% {
    transform: scaleY(1.04);
    filter: saturate(1.28);
  }
}

@keyframes marketSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes pulseLine {
  0%, 100% {
    transform: translateY(24px) scaleX(.72);
    opacity: .28;
  }

  50% {
    transform: translateY(-28px) scaleX(1);
    opacity: .95;
  }
}

@keyframes tickerMove {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes watchPulse {
  0%, 100% {
    border-color: rgba(255, 255, 255, .1);
  }

  50% {
    border-color: rgba(32, 213, 245, .34);
    box-shadow: 0 0 24px rgba(32, 213, 245, .08);
  }
}

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

.market-section,
.platform-band,
.accounts-section,
.security-section,
.cta-section {
  padding: 94px 0;
}

.market-section,
.accounts-section {
  background: var(--paper);
}

.section-copy {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section-copy.narrow {
  max-width: 780px;
  text-align: center;
}

.section-copy h2,
.cta-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.cta-section p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-copy.narrow p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.market-grid,
.account-grid {
  display: grid;
  gap: 16px;
  width: min(1200px, calc(100% - 48px));
  margin: 40px auto 0;
}

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

.market-card {
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.market-card span {
  font-size: 12px;
  font-weight: 950;
}

.market-card h3,
.platform-stack h3,
.account-grid h3,
.security-grid h3 {
  margin: 24px 0 12px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.market-card p,
.platform-stack p,
.account-grid p,
.security-grid p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.market-card strong {
  display: block;
  margin-top: 30px;
  font-size: 15px;
}

.market-card.gold {
  color: #2d1f05;
  background: linear-gradient(160deg, #ffe39a, #f7c948);
  border-color: #9b6b0b;
}

.market-card.gold p {
  color: #4b350d;
}

.market-card.cyan {
  color: #05262e;
  background: linear-gradient(160deg, #b6f4ff, #20d5f5);
  border-color: #0e7490;
}

.market-card.cyan p {
  color: #164e63;
}

.market-card.steel {
  color: #f8fafc;
  background: linear-gradient(160deg, #10151d, #243244);
  border-color: #344155;
}

.market-card.steel p {
  color: #cbd5e1;
}

.market-card.white {
  background: #fff;
}

.platform-band {
  color: #e7edf7;
  background:
    linear-gradient(135deg, rgba(7,9,13,.98), rgba(16,21,29,.92)),
    linear-gradient(90deg, rgba(242,193,78,.12), transparent);
}

.platform-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.platform-layout .section-copy {
  width: auto;
}

.platform-layout .section-copy h2 {
  color: #fff;
}

.platform-layout .section-copy p:not(.eyebrow) {
  color: #cbd5e1;
}

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

.platform-stack article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 130px;
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.platform-stack span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 950;
}

.platform-stack h3 {
  margin-top: 0;
  color: #fff;
}

.platform-stack p {
  color: #cbd5e1;
}

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

.account-grid article {
  min-height: 316px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.account-grid article.featured {
  color: var(--black);
  background: linear-gradient(160deg, var(--gold), var(--lime));
  border-color: #2d1f05;
  box-shadow: 10px 10px 0 #121826;
}

.account-grid article.featured p {
  color: #24320c;
}

.account-grid strong {
  display: block;
  margin: 30px 0 22px;
  font-size: 20px;
}

.account-grid a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 8px;
  font-weight: 900;
}

.security-section {
  background: #fff;
}

.security-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.security-layout .section-copy {
  width: auto;
}

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

.security-grid article {
  min-height: 188px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.security-grid h3 {
  margin-top: 0;
}

.cta-section {
  display: grid;
  grid-template-columns: .95fr minmax(360px, 440px);
  gap: 42px;
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #263248;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid rgba(32, 213, 245, .25);
  border-color: var(--cyan);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-success {
  color: #15803d;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 44px 42px;
  color: #cbd5e1;
  background: var(--black);
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  max-width: 760px;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #e7edf7;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    padding: 0 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .language-toggle {
    justify-content: center;
    margin-top: 10px;
  }

  .hero-inner,
  .platform-layout,
  .security-layout,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 720px;
    font-size: 40px;
  }

  .market-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding: 0 16px;
  }

  .brand-dynamic-logo {
    width: clamp(210px, 68vw, 260px);
    height: 58px;
  }

  .site-nav {
    top: 72px;
  }

  .hero-inner {
    width: min(100% - 32px, 1200px);
    padding: 58px 0 52px;
  }

  .hero-copy h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .hero-lede,
  .section-copy p:not(.eyebrow),
  .cta-section p:not(.eyebrow) {
    font-size: 15px;
  }

  .trust-row,
  .market-grid,
  .account-grid,
  .security-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .terminal-body {
    padding: 16px;
  }

  .terminal-head {
    align-items: flex-start;
  }

  .terminal-head strong {
    font-size: 22px;
  }

  .floating-quote,
  .market-orbit {
    display: none;
  }

  .chart-panel {
    gap: 8px;
    height: 170px;
    padding: 12px;
  }

  .watchlist article {
    grid-template-columns: 38px 1fr;
  }

  .watchlist b {
    grid-column: 2;
  }

  .market-section,
  .platform-band,
  .accounts-section,
  .security-section,
  .cta-section {
    padding: 66px 0;
  }

  .section-copy,
  .market-grid,
  .account-grid,
  .platform-layout,
  .security-layout,
  .cta-section,
  .ticker,
  .tv-feed-band {
    width: min(100% - 32px, 1200px);
  }

  .tv-feed-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .section-copy h2,
  .cta-section h2 {
    font-size: 30px;
  }

  .platform-stack article {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 34px 20px;
  }
}
