* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
:root {
  --bg: #000;
  --ink: #fff;
  --muted: rgba(255,255,255,.68);
  --faint: rgba(255,255,255,.42);
  --panel: rgba(15, 15, 18, .72);
  --panel-strong: rgba(8, 9, 13, .94);
  --line: rgba(255,255,255,.13);
  --line-hi: rgba(255,255,255,.28);
  --accent: #168cff;
  --cyan: #29d3e8;
  --amber: #ffae3d;
  --green: #1fd39a;
  --red: #ff4f73;
  --mono: "JetBrains Mono", Consolas, monospace;
  --font: "Inter", system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font);
  background: #000;
  overflow-x: hidden;
}
button, input, textarea, select { font-family: var(--font); }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
.section-pad { width: min(1200px, calc(100% - 64px)); margin: 0 auto; }
#landing {
  background:
    radial-gradient(circle at 13% 18%, rgba(255,160,62,.08), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(25,139,255,.10), transparent 31rem),
    #000;
}
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  width: min(1200px, calc(100% - 64px));
  height: 54px;
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.nav-brand,
.site-nav nav,
.nav-actions,
.nav-cta { pointer-events: auto; }
.nav-brand img {
  width: 132px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.25) contrast(1.1);
}
.site-nav nav {
  justify-self: center;
  height: 53px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  background: rgba(17,17,22,.36);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.18), 0 14px 32px rgba(0,0,0,.3);
  backdrop-filter: blur(20px);
}
.site-nav nav a {
  color: rgba(255,255,255,.84);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.site-nav nav a:hover { color: #fff; }
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-cta {
  height: 47px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  color: rgba(255,255,255,.86);
  background: rgba(12, 14, 20, .52);
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.admin-cta:hover {
  color: #fff;
  border-color: rgba(255,255,255,.32);
}
.nav-cta {
  justify-self: end;
  width: 141px;
  height: 47px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 16px;
  color: #fff;
  background: #030303;
  font-size: 15px;
  font-weight: 900;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.10),
    inset 0 0 18px rgba(32,144,255,.72),
    0 0 14px rgba(255,187,92,.55),
    0 10px 22px rgba(0,0,0,.42);
}
.primary,
.secondary,
.ghost,
#auth-submit,
#logout {
  min-height: 47px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 900;
}
.primary {
  color: #fff;
  background: #030303;
  border-color: rgba(255,255,255,.28);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    inset 0 0 18px rgba(32,144,255,.78),
    0 0 18px rgba(255,168,69,.50),
    0 16px 30px rgba(0,0,0,.45);
}
.secondary {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.big { min-width: 141px; padding: 0 24px; }
.hero {
  position: relative;
  min-height: 1435px;
  padding: 154px 32px 0;
  display: grid;
  justify-items: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 468px;
  width: min(1240px, 96vw);
  height: 320px;
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(255,255,255,.95), transparent 17%),
    radial-gradient(ellipse at 38% 52%, rgba(255,148,35,.88), transparent 32%),
    radial-gradient(ellipse at 63% 50%, rgba(20,144,255,.94), transparent 38%),
    radial-gradient(ellipse at 50% 68%, rgba(82,150,255,.5), transparent 62%);
  filter: blur(34px);
  opacity: .98;
}
.space-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 42%, rgba(255,136,19,.32), transparent 26rem),
    radial-gradient(circle at 66% 39%, rgba(10,137,255,.32), transparent 30rem),
    radial-gradient(circle at 48% 2%, rgba(255,255,255,.14), transparent 32rem),
    #000;
}
.space-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .58;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.82) 1px, transparent 1.3px),
    radial-gradient(circle, rgba(255,255,255,.32) 1px, transparent 1.2px);
  background-size: 74px 74px, 113px 113px;
  background-position: 12px 18px, 44px 8px;
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 88%);
}
.space-bg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -90px;
  width: 370px;
  height: 900px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent, rgba(255,181,105,.35), rgba(82,150,255,.42), transparent);
  filter: blur(18px);
  opacity: .72;
}
.aurora {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 360px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 38% 72%, rgba(255,149,17,.86), transparent 25%),
    radial-gradient(ellipse at 48% 62%, rgba(255,255,255,.82), transparent 24%),
    radial-gradient(ellipse at 61% 68%, rgba(0,150,255,.86), transparent 30%),
    radial-gradient(ellipse at 50% 70%, rgba(172,77,255,.65), transparent 46%);
  filter: blur(25px);
  opacity: .92;
  animation: auroraPulse 7s ease-in-out infinite alternate;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1060px, 100%);
  display: grid;
  justify-items: center;
  align-items: start;
  align-content: start;
  text-align: center;
}
.launch-pill {
  display: inline-flex;
  align-items: center;
  height: 32px;
  min-height: 32px;
  padding: 0 17px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.hero h1 {
  margin: 0;
  max-width: 1060px;
  color: #fff;
  font-size: clamp(58px, 6.45vw, 88px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 700;
}
.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}
.hero .primary { margin-top: 39px; }
.dashboard-peek {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 600px;
  width: min(1110px, calc(100% - 160px));
  aspect-ratio: 16 / 9;
  transform: translateX(-50%);
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(4, 7, 12, .88);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.12),
    0 -18px 62px rgba(255,255,255,.24),
    0 -34px 105px rgba(20,144,255,.46),
    0 -24px 92px rgba(255,148,35,.34),
    0 24px 80px rgba(0,0,0,.62);
}
.dashboard-peek.reveal {
  opacity: 0;
  transform: translateX(-50%) translateY(18px);
  animation: revealPeek .8s ease forwards;
}
.dashboard-peek::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.16), transparent 42%);
}
.dashboard-peek video,
.dashboard-peek img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.logo-marquee {
  width: 100%;
  margin-top: -20px;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.logo-marquee div {
  width: max-content;
  display: flex;
  gap: 32px;
  padding: 24px 0;
  animation: marquee 28s linear infinite;
}
.logo-marquee span {
  min-width: 150px;
  text-align: center;
  color: rgba(255,255,255,.62);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 76px;
  padding-bottom: 44px;
  isolation: isolate;
}
.trust-strip::before {
  content: "";
  position: absolute;
  left: max(32px, 5%);
  right: max(32px, 5%);
  top: 146px;
  height: 2px;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(34,211,238,.12), rgba(255,168,69,.2), rgba(34,211,238,.12), transparent);
  box-shadow: 0 0 30px rgba(34,211,238,.2);
  overflow: hidden;
}
.trust-strip::after {
  content: "";
  position: absolute;
  left: 6%;
  top: 142px;
  width: 90px;
  height: 10px;
  border-radius: 999px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(103,231,255,.85), transparent);
  filter: blur(1px);
  animation: trustPulse 7s linear infinite;
}
.trust-strip article {
  position: relative;
  min-height: 206px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(103,231,255,.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 22% 0%, rgba(34,211,238,.2), transparent 34%),
    linear-gradient(180deg, rgba(18,38,66,.96), rgba(7,11,18,.92));
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.1),
    inset 0 -1px 0 rgba(103,231,255,.08),
    0 24px 58px rgba(0,0,0,.36);
  transform: translateY(0);
  animation: trustFloat 6.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * -.85s);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.trust-strip article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background:
    linear-gradient(rgba(103,231,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103,231,255,.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}
.trust-strip article::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 58%;
  transform: rotate(14deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  animation: trustSweep 5.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * .45s);
}
.trust-strip article:hover {
  transform: translateY(-9px);
  border-color: rgba(103,231,255,.42);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.13),
    0 28px 72px rgba(0,0,0,.45),
    0 0 34px rgba(34,211,238,.11);
}
.trust-strip b {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 12px;
  color: #06111a;
  background: linear-gradient(135deg, #67e7ff, #ffa845);
  box-shadow: 0 0 22px rgba(103,231,255,.28);
  font-size: 12px;
  font-weight: 1000;
}
.trust-strip strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1;
  font-weight: 900;
}
.trust-strip span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: rgba(215,235,255,.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trust-strip p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  max-width: 250px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.55;
}
.premium-section,
.flow-section,
.operations-section,
.testimonial-section,
.premium-security,
.pricing-section {
  padding-top: 94px;
  padding-bottom: 94px;
}
.premium-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.premium-heading small,
.operations-copy small {
  display: block;
  margin-bottom: 13px;
  color: #67e7ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.premium-heading h2,
.operations-copy h2 {
  color: #fff;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: 0;
}
.premium-heading p,
.operations-copy p,
.premium-card p,
.flow-panel p,
.quote-card span {
  color: rgba(255,255,255,.64);
  line-height: 1.58;
}
.premium-heading p,
.operations-copy p {
  max-width: 760px;
  margin-top: 16px;
  font-size: 18px;
}
.premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 18px;
}
.premium-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(49,201,255,.16), transparent 36%),
    linear-gradient(180deg, rgba(24,30,40,.9), rgba(8,11,17,.9));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 32px 72px rgba(0,0,0,.38);
}
.premium-card.large {
  grid-row: span 2;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.premium-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 11px;
  border: 1px solid rgba(103,231,255,.26);
  border-radius: 999px;
  color: #dffbff;
  background: rgba(33,171,207,.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.premium-card h3 {
  max-width: 580px;
  color: #fff;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: 0;
}
.premium-card p { max-width: 620px; margin-top: 14px; }
.card-visual {
  position: absolute;
  inset: 28px 28px auto;
  height: 255px;
  border: 1px solid rgba(123,171,214,.18);
  border-radius: 18px;
  background:
    linear-gradient(rgba(122,169,207,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,169,207,.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(14,23,35,.94), rgba(8,13,22,.84));
  background-size: 100% 42px, 70px 100%, 100% 100%;
}
.execution-visual::before,
.execution-visual::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  height: 62px;
  border: 1px solid rgba(252,151,43,.48);
  background: rgba(252,151,43,.17);
}
.execution-visual::before { bottom: 28px; }
.execution-visual::after {
  top: 28px;
  border-color: rgba(22,224,226,.46);
  background: rgba(22,224,226,.13);
}
.flow-section {
  position: relative;
}
.flow-section::before,
.operations-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103,231,255,.2), transparent);
}
.flow-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,176,76,.16), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(39,157,255,.18), transparent 36%),
    rgba(8,11,17,.92);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 34px 78px rgba(0,0,0,.38);
}
.flow-panel article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.flow-panel article:last-child { border-right: 0; }
.flow-panel b {
  color: rgba(103,231,255,.86);
  font: 900 13px var(--mono);
}
.flow-panel h3 {
  margin-top: 72px;
  color: #fff;
  font-size: 25px;
}
.flow-panel p { margin-top: 10px; }
.operations-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr);
  gap: 28px;
  align-items: center;
}
.assurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.assurance-list span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.05);
  font-size: 13px;
  font-weight: 800;
}
.ops-board {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(21,29,41,.92), rgba(8,12,19,.9));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 30px 70px rgba(0,0,0,.36);
}
.ops-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 66px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.035);
}
.ops-row + .ops-row { margin-top: 10px; }
.ops-row.active {
  border-color: rgba(103,231,255,.28);
  background: rgba(33,171,207,.11);
}
.ops-row b {
  color: #fff;
  font-size: 14px;
}
.premium-security {
  text-align: center;
}
.premium-security .premium-heading {
  margin-inline: auto;
}
.premium-security .premium-heading p {
  margin-inline: auto;
}
.premium-security .security-grid {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15,24,36,.92), rgba(8,11,17,.92));
}
.premium-security .security-grid span {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.04);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.testimonial-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.quote-card {
  min-height: 285px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(103,231,255,.13), transparent 32%),
    linear-gradient(180deg, rgba(19,24,33,.92), rgba(8,11,17,.9));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 30px 68px rgba(0,0,0,.34);
}
.quote-card p {
  color: #fff;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}
.quote-card span {
  display: block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 800;
}
.pricing-section .premium-heading {
  text-align: center;
  margin-inline: auto;
}
.pricing-section .premium-heading p {
  margin-inline: auto;
}
.intro-copy { padding: 88px 0 118px; overflow: hidden; }
.intro-copy div {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: marquee 38s linear infinite reverse;
}
.intro-copy p {
  width: 450px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}
.split-section,
.product-showcase,
.multiple-products,
.steps,
.security-section,
.pricing-section,
.final-cta { padding-top: 92px; padding-bottom: 92px; }
.section-heading {
  max-width: 690px;
  margin-bottom: 32px;
}
.section-heading small,
.cta-orbit small {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section-heading h2,
.cta-orbit h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .99;
  letter-spacing: 0;
  font-weight: 700;
}
.section-heading p,
.feature-card p,
.showcase-main p,
.showcase-side p,
.product-large p,
.product-tile p,
.step-card p,
.price-card p,
.cta-orbit p {
  color: rgba(255,255,255,.62);
  line-height: 1.58;
}
.section-heading p { margin-top: 12px; font-size: 17px; }
.exception-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card,
.showcase-main,
.showcase-side,
.product-large,
.product-tile,
.step-card,
.price-card,
.ready-panel,
.security-grid,
.cta-orbit,
.card {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(20,20,24,.84), rgba(8,8,10,.78));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08), 0 30px 60px rgba(0,0,0,.28);
}
.feature-card {
  min-height: 312px;
  padding: 24px;
  border-radius: 18px;
  overflow: hidden;
}
.feature-card::before,
.showcase-main::before,
.product-large::before {
  content: "";
  display: block;
  height: 112px;
  margin: -4px -4px 26px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 68%, rgba(255,164,46,.58), transparent 28%),
    radial-gradient(circle at 68% 36%, rgba(31,144,255,.58), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.feature-card span {
  color: rgba(255,255,255,.36);
  font: 900 13px var(--mono);
}
.feature-card h3,
.showcase-main h3,
.showcase-side h3,
.product-large h3,
.product-tile h3,
.step-card h3,
.price-card h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 23px;
  letter-spacing: 0;
}
.ready-panel {
  display: grid;
  grid-template-columns: 1fr 358px;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 34px;
  border-radius: 18px;
}
.ready-panel h3 { font-size: 28px; }
.ready-panel p { margin-top: 8px; color: rgba(255,255,255,.62); }
.ready-panel > div:last-child { display: grid; gap: 10px; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.showcase-main {
  grid-row: span 2;
  min-height: 520px;
  padding: 28px;
  border-radius: 18px;
}
.showcase-side {
  min-height: 251px;
  padding: 28px;
  border-radius: 18px;
}
.tabs-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.tabs-row span,
.tag-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 900;
}
.products-grid {
  display: grid;
  grid-template-columns: 1.08fr repeat(2, .68fr);
  gap: 18px;
}
.product-large {
  grid-row: span 2;
  min-height: 500px;
  padding: 28px;
  border-radius: 18px;
}
.product-large ul {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: rgba(255,255,255,.74);
  list-style: none;
}
.product-large li::before {
  content: "-";
  margin-right: 8px;
  color: rgba(255,255,255,.4);
}
.product-tile {
  min-height: 241px;
  padding: 24px;
  border-radius: 18px;
}
.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.step-card {
  min-height: 420px;
  padding: 28px;
  border-radius: 18px;
}
.step-card b {
  display: block;
  margin-bottom: 160px;
  color: rgba(255,255,255,.25);
  font: 900 44px var(--mono);
}
.security-grid {
  min-height: 310px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  padding: 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(25,139,255,.18), transparent 34%),
    linear-gradient(180deg, rgba(20,20,24,.84), rgba(8,8,10,.78));
}
.security-grid span {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 16px;
  text-align: center;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.06);
  font-weight: 900;
}
.landing-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.price-card {
  position: relative;
  min-height: 478px;
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 18px;
}
.price-card.featured {
  border-color: rgba(255,255,255,.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(25,139,255,.28), transparent 40%),
    linear-gradient(180deg, rgba(28,28,34,.92), rgba(8,8,10,.82));
}
.price-card label {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #000;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.landing-price { font: 900 45px var(--mono); }
.landing-price span { color: rgba(255,255,255,.43); font: 800 13px var(--font); }
.price-card ul {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  list-style: none;
  color: rgba(255,255,255,.73);
}
.price-card li::before { content: "-"; color: rgba(255,255,255,.45); margin-right: 8px; }
.price-card .primary { align-self: end; width: 100%; }
.final-cta { padding-bottom: 140px; }
.cta-orbit {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  padding: 48px;
  border-radius: 18px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(255,255,255,.16), transparent 18%),
    radial-gradient(circle at 44% 60%, rgba(255,150,30,.28), transparent 27%),
    radial-gradient(circle at 60% 60%, rgba(20,139,255,.34), transparent 34%),
    #030303;
}
.cta-orbit::before {
  content: "";
  position: absolute;
  inset: auto 8% -70px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255,128,24,.8), rgba(255,255,255,.85), rgba(0,153,255,.8));
  filter: blur(28px);
}
.cta-orbit > * { position: relative; z-index: 1; }
.cta-orbit h2 { max-width: 760px; }
.cta-orbit p { max-width: 620px; margin: 16px auto 0; }
.cta-orbit .hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .8s ease forwards;
}
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }

#auth-view {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}
body.portal-auth-only {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,154,38,.16), transparent 28rem),
    radial-gradient(circle at 78% 16%, rgba(30,145,255,.22), transparent 34rem),
    #02050b;
}
body.portal-auth-only .modal-backdrop {
  background:
    radial-gradient(circle at 50% 26%, rgba(255,255,255,.06), transparent 18rem),
    rgba(0, 0, 0, .28);
}
body.portal-auth-only .close-auth {
  display: none;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(12px);
}
.auth-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: var(--panel-strong);
  box-shadow: 0 30px 100px -50px rgba(22,140,255,.8), inset 0 1px 0 rgba(255,255,255,.07);
}
.close-auth {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #c9d7e4;
  background: rgba(255,255,255,.06);
  font-size: 16px;
  line-height: 1;
}
.auth-logo {
  width: 210px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}
.auth-logo-wide {
  width: min(100%, 360px);
  height: 92px;
  object-position: left center;
  margin: -8px 0 12px;
}
.auth-panel h1 { font-size: 30px; letter-spacing: 0; }
.auth-panel p { color: rgba(255,255,255,.68); line-height: 1.55; margin: 8px 0 18px; }
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5,10,16,.62);
  margin-bottom: 12px;
}
.auth-tabs button {
  height: 40px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: rgba(255,255,255,.62);
  background: transparent;
  font-weight: 900;
}
.auth-tabs button.active { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }
.auth-panel input,
.auth-panel textarea {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: rgba(5,10,16,.68);
  outline: none;
  font-weight: 700;
}
.auth-panel textarea { min-height: 70px; padding-block: 11px; resize: vertical; }
.auth-panel input:focus,
.auth-panel textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(22,140,255,.12); }
.auth-profile-fields { display: grid; gap: 10px; margin-bottom: 10px; }
.auth-profile-row { display: grid; grid-template-columns: 120px 1fr; gap: 10px; }
.auth-profile-fields label,
.auth-field { display: grid; gap: 6px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; }
.auth-field { margin-bottom: 9px; }
.auth-profile-fields label span::after { content: " *"; color: #ff7d96; }
.auth-divider { margin: 16px 0 12px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.42); font-size: 11px; text-transform: uppercase; }
.auth-divider::before,
.auth-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.google-auth-shell { text-align: center; }
#google-signin { min-height: 44px; display: flex; justify-content: center; }
#google-auth-note { display: block; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.4; }
#auth-submit { width: 100%; color: #fff; background: #030303; border-color: rgba(255,255,255,.28); box-shadow: inset 0 0 18px rgba(32,144,255,.78), 0 0 18px rgba(255,168,69,.36); }
#auth-status { min-height: 18px; margin-top: 10px; color: var(--red); font-size: 12px; font-weight: 700; }
#auth-status.ok { color: var(--green); }
#auth-resend { width: 100%; min-height: 40px; margin-top: 8px; border: 1px solid var(--line); border-radius: 12px; color: #d8e6f4; background: rgba(255,255,255,.04); font-weight: 800; }
#auth-resend:hover { border-color: var(--accent); color: #fff; }

#app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 264px 1fr;
  background:
    radial-gradient(circle at 12% -8%, rgba(41,199,223,.18), transparent 30%),
    radial-gradient(circle at 86% -2%, rgba(92,124,255,.16), transparent 34%),
    linear-gradient(180deg, #0b1320, #071019 62%, #050a10);
}
#sidebar {
  padding: 18px;
  border-right: 1px solid rgba(150,181,211,.16);
  background: linear-gradient(180deg, rgba(11,20,32,.95), rgba(7,13,22,.86));
  backdrop-filter: blur(18px);
}
.portal-brand { height: 58px; display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.portal-brand img { width: 170px; max-height: 48px; object-fit: contain; object-position: left center; }
.portal-brand span { color: rgba(255,255,255,.42); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
#sidebar nav { display: grid; gap: 7px; }
#sidebar nav button,
#sidebar nav a,
#logout,
.ghost {
  min-height: 40px;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0 13px;
  color: rgba(255,255,255,.62);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}
#sidebar nav button:hover,
#sidebar nav button.active,
#sidebar nav a:hover { color: #e9fbff; background: rgba(41,199,223,.13); border-color: rgba(41,199,223,.30); }
#trading-dashboard-link { margin-bottom: 11px; color: #7cf0ff; background: rgba(41,199,223,.10); border-color: rgba(41,199,223,.24); }
#logout { width: 100%; margin-top: 24px; color: #ffd9e1; background: rgba(255,79,115,.12); border-color: rgba(255,79,115,.24); }
#content { min-width: 0; padding: 22px; }
#topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
#eyebrow { display: block; color: rgba(255,255,255,.42); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
#page-title { margin-top: 3px; font-size: 30px; letter-spacing: 0; }
#account-chip {
  padding: 10px 13px;
  border: 1px solid rgba(150,181,211,.16);
  border-radius: 999px;
  background: rgba(12,22,34,.76);
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
}
.grid { display: grid; gap: 12px; }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { padding: 16px; border-radius: 14px; }
.card h3 { font-size: 15px; margin-bottom: 10px; }
.metric label,
.form label,
.admin-row label { display: block; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 5px; }
.metric strong { font-size: 24px; letter-spacing: 0; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(150,181,211,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.045);
  font-size: 12px;
  font-weight: 900;
}
.pill.active { color: #baf8e3; background: rgba(31,211,154,.13); border-color: rgba(31,211,154,.28); }
.pill.warn { color: #ffd5de; background: rgba(255,79,115,.13); border-color: rgba(255,79,115,.28); }
.form { display: grid; gap: 10px; max-width: 620px; }
.form input,
.form textarea,
.admin-row input,
.admin-row select {
  width: 100%;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(150,181,211,.16);
  border-radius: 10px;
  background: rgba(5,10,16,.58);
  color: #fff;
  outline: none;
  font-weight: 700;
}
.form textarea { min-height: 120px; resize: vertical; }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.plan { display: grid; gap: 10px; }
.price { font: 900 30px var(--mono); }
.price span { color: rgba(255,255,255,.42); font: 800 12px var(--font); }
.list { display: grid; gap: 8px; }
.row,
.admin-row {
  padding: 12px;
  border: 1px solid rgba(150,181,211,.16);
  border-radius: 12px;
  background: rgba(11,19,30,.64);
}
.row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.row small,
.muted { color: rgba(255,255,255,.62); }
.admin-row { display: grid; gap: 10px; }
.admin-head { display: flex; justify-content: space-between; gap: 12px; }
.admin-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: rgba(255,255,255,.62);
  background: rgba(10,18,29,.70);
  border-color: rgba(150,181,211,.16);
}
.download-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.download-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #effcff, #29d3e8 48%, #79ffcf);
  color: #031017;
  text-decoration: none;
  font-weight: 900;
}
.download-btn.secondary {
  color: #dffbff;
  background: rgba(41,199,223,.12);
  border: 1px solid rgba(41,199,223,.30);
}
.danger { color: #ffd9e1; background: rgba(255,79,115,.12); border-color: rgba(255,79,115,.24); }
#toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #0e1827;
  color: white;
  opacity: 0;
  transform: translateY(8px);
  transition: .18s;
  font-weight: 800;
  border: 1px solid rgba(150,181,211,.16);
}
#toast.show { opacity: 1; transform: translateY(0); }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealPeek {
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes auroraPulse {
  100% { transform: scale(1.04) translateY(-8px); filter: blur(30px) saturate(1.18); }
}
@keyframes bars {
  50% { transform: scaleY(.72); }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@keyframes trustFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes trustSweep {
  0%, 46% { transform: translateX(0) rotate(14deg); opacity: 0; }
  58% { opacity: .9; }
  100% { transform: translateX(340%) rotate(14deg); opacity: 0; }
}
@keyframes trustPulse {
  to { left: calc(94% - 90px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
@media (max-width: 980px) {
  .site-nav {
    width: calc(100% - 28px);
    grid-template-columns: 130px 1fr;
  }
  .site-nav nav { display: none; }
  .nav-brand img { width: 120px; }
  .admin-cta { display: none; }
  .hero { min-height: 1050px; padding-inline: 18px; }
  .hero::after {
    top: 535px;
    width: calc(100% + 80px);
    height: 250px;
  }
  .hero h1 { font-size: clamp(52px, 12vw, 78px); }
  .dashboard-peek {
    top: 605px;
    width: calc(100% - 38px);
  }
  .trust-strip,
  .flow-panel,
  .premium-security .security-grid,
  .testimonial-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-strip::before,
  .trust-strip::after {
    display: none;
  }
  .premium-grid,
  .operations-section {
    grid-template-columns: 1fr;
  }
  .premium-card.large {
    grid-row: auto;
    min-height: 560px;
  }
  .flow-panel article:nth-child(2n) {
    border-right: 0;
  }
  .flow-panel article {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .flow-panel article:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .exception-layout,
  .showcase-grid,
  .products-grid,
  .step-list,
  .security-grid,
  .landing-plans,
  .ready-panel { grid-template-columns: 1fr; }
  .showcase-main,
  .product-large { grid-row: auto; }
  .step-card b { margin-bottom: 82px; }
  #app { grid-template-columns: 1fr; }
  #sidebar { position: sticky; top: 0; z-index: 5; }
  #sidebar nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cols-3,
  .cols-2,
  .plans,
  .admin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .section-pad { width: min(100% - 24px, 1200px); }
  .site-nav { top: 10px; height: 52px; }
  .nav-cta { width: 124px; height: 43px; font-size: 14px; }
  #auth-view { padding: 12px; }
  .auth-panel { max-height: calc(100vh - 24px); padding: 20px; border-radius: 18px; }
  .auth-logo-wide { height: 68px; margin-bottom: 4px; }
  .auth-panel h1 { font-size: 25px; }
  .auth-profile-row { grid-template-columns: 92px 1fr; }
  .hero { min-height: 930px; padding-top: 128px; }
  .hero h1 { font-size: 50px; }
  .hero p { font-size: 16px; }
  .aurora { top: 435px; left: -16%; right: -16%; }
  .hero::after {
    top: 505px;
    width: 140vw;
    height: 210px;
    opacity: .88;
  }
  .dashboard-peek { top: 575px; width: calc(100% - 24px); border-radius: 14px; }
  .trust-strip {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }
  .trust-strip article {
    min-height: 188px;
    padding: 20px;
  }
  .premium-section,
  .flow-section,
  .operations-section,
  .testimonial-section,
  .premium-security,
  .pricing-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .premium-heading h2,
  .operations-copy h2 {
    font-size: 40px;
    line-height: 1.02;
  }
  .premium-heading p,
  .operations-copy p {
    font-size: 16px;
  }
  .premium-card {
    min-height: auto;
    padding: 22px;
    border-radius: 16px;
  }
  .premium-card.large {
    min-height: 510px;
  }
  .card-visual {
    inset: 20px 20px auto;
    height: 230px;
    border-radius: 14px;
  }
  .premium-card h3,
  .quote-card p {
    font-size: 25px;
  }
  .flow-panel,
  .premium-security .security-grid,
  .testimonial-section {
    grid-template-columns: 1fr;
  }
  .flow-panel,
  .premium-security .security-grid,
  .quote-card,
  .ops-board {
    border-radius: 16px;
  }
  .flow-panel article {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .flow-panel article:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .flow-panel article:last-child {
    border-bottom: 0;
  }
  .flow-panel h3 {
    margin-top: 48px;
  }
  .premium-security .security-grid span {
    min-height: 86px;
  }
  .quote-card {
    min-height: auto;
    padding: 24px;
  }
  .intro-copy p { width: 320px; font-size: 17px; }
  .split-section,
  .product-showcase,
  .multiple-products,
  .steps,
  .security-section,
  .pricing-section,
  .final-cta { padding-top: 64px; padding-bottom: 64px; }
  .feature-card,
  .showcase-main,
  .showcase-side,
  .product-large,
  .product-tile,
  .step-card,
  .price-card { min-height: auto; border-radius: 16px; }
  .ready-panel { padding: 22px; }
  .cta-orbit { min-height: 420px; padding: 26px 18px; }
  .cta-orbit .hero-actions { display: grid; }
  .big { width: 100%; }
  #content { padding: 14px; }
  #topbar { display: grid; }
  #sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 2026 institutional landing */
#landing {
  --landing-bg: #080f17;
  --landing-surface: #0f141d;
  --landing-elevated: #121b26;
  --landing-blue: #3882f6;
  --landing-blue-soft: #60a5fa;
  --landing-muted: #9ca3af;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--landing-bg);
  background-size: 80px 80px;
}
#landing main#top { position: relative; display: flex; flex-direction: column; }
#landing .hero { order: 1; }
#landing .portal-showcase { order: 2; }
#landing .comparison-section { order: 3; }
#landing .pricing-section { order: 4; }
#landing .platform-intro { order: 5; }
#landing .feature-band-automation { order: 6; }
#landing .feature-band-strategies { order: 7; }
#landing .trading-flow { order: 8; }
#landing .platform-cta { order: 9; }
#landing .section-pad { width: min(1440px, calc(100% - 96px)); }
#landing a:focus-visible,
#landing button:focus-visible,
#landing input:focus-visible,
#landing select:focus-visible { outline: 2px solid var(--landing-blue-soft); outline-offset: 3px; }
#landing .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 88px;
  padding: 0 max(32px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: 210px 1fr 252px;
  align-items: center;
  transform: none;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  pointer-events: auto;
}
#landing .site-nav.scrolled {
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,15,23,.84);
  backdrop-filter: blur(18px);
}
#landing .nav-brand img { width: 154px; height: 38px; filter: brightness(1.35) saturate(1.05); }
#landing .site-nav nav {
  justify-self: center;
  height: auto;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
#landing .site-nav nav a { display: inline-flex; align-items: center; gap: 5px; color: #f3f4f6; font-size: 13px; font-weight: 500; }
#landing .site-nav nav a:hover { color: var(--landing-blue-soft); }
#landing .site-nav nav svg { width: 13px; height: 13px; }
#landing .nav-actions { gap: 18px; }
#landing .admin-cta,
#landing .nav-cta {
  width: auto;
  height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: none;
  backdrop-filter: none;
}
#landing .admin-cta { color: #fff; border: 1px solid rgba(255,255,255,.24); background: rgba(8,15,23,.68); }
#landing .nav-cta { color: #fff; border: 1px solid #3882f6; background: #1769ee; }
#landing .nav-cta { white-space: nowrap; }
#landing .nav-cta:hover { background: #2a79f5; }
#landing .nav-cta svg { width: 16px; }
.mobile-menu-toggle { display: none; }

#landing .hero {
  --hero-panel-gap: clamp(290px, 25vw, 520px);
  position: relative;
  min-height: clamp(760px, 94vh, 1020px);
  padding: 116px 4vw 88px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  perspective: 1300px;
  background:
    radial-gradient(ellipse at 50% 72%, rgba(56,130,246,.13), transparent 31%),
    radial-gradient(ellipse at 50% 15%, rgba(48,92,148,.08), transparent 42%);
}
#landing .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .48;
  background-image: radial-gradient(circle, rgba(129,181,255,.54) .7px, transparent 1px);
  background-size: 77px 77px;
  mask-image: linear-gradient(#000 0 70%, transparent 96%);
}
#landing .hero::after {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  bottom: 26px;
  top: auto;
  z-index: -1;
  width: auto;
  height: 132px;
  transform: none;
  border: 1px solid rgba(137,197,255,.58);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  background: transparent;
  filter: drop-shadow(0 0 9px rgba(96,165,250,.42));
  opacity: 1;
}
.hero-grid {
  position: absolute;
  z-index: -3;
  left: -12%;
  right: -12%;
  bottom: -14%;
  height: 46%;
  transform: perspective(650px) rotateX(62deg);
  transform-origin: center top;
  background-image:
    linear-gradient(rgba(109,167,231,.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,167,231,.14) 1px, transparent 1px);
  background-size: 62px 38px;
  animation: floorTravel 7s linear infinite;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 82%, transparent);
}
.hero-horizon {
  position: absolute;
  z-index: -2;
  left: 5%;
  right: 5%;
  bottom: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,.72), #fff, rgba(96,165,250,.72), transparent);
  box-shadow: 0 0 24px rgba(96,165,250,.68);
}
.energy-network {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.energy-path { fill: none; vector-effect: non-scaling-stroke; }
.energy-path-ambient { stroke: rgba(56,130,246,.28); stroke-width: 24; filter: blur(10px); }
.energy-path-core { stroke: rgba(167,216,255,.62); stroke-width: 1.5; filter: drop-shadow(0 0 5px rgba(96,165,250,.9)); }
.energy-path-pulse {
  stroke: #f7fbff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: .075 .925;
  stroke-dashoffset: 1.08;
  opacity: 0;
  will-change: stroke-dashoffset, opacity;
}
.hero-center { position: relative; width: min(780px, 72vw); height: 640px; display: grid; place-items: center; }
.hero-frame-art { position: absolute; z-index: 0; left: 50%; top: 50%; width: 100vw; max-width: none; height: max(100vh, 760px); transform: translate(-50%, -50%); object-fit: cover; object-position: center; mix-blend-mode: screen; opacity: .9; pointer-events: none; animation: frameEnter 1.4s .2s both; }
.hero-copy { position: relative; z-index: 6; width: min(720px, 94%); display: flex; flex-direction: column; align-items: center; text-align: center; animation: heroEnter .9s .15s both; }
#landing .eyebrow { margin: 0 0 24px; color: #bec7d3; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
#landing .hero h1 { max-width: 720px; margin: 0; color: #fff; font-size: clamp(46px, 4.3vw, 68px); line-height: 1.04; letter-spacing: 0; font-weight: 700; text-shadow: 0 8px 30px rgba(0,0,0,.45); }
#landing .hero h1 span { color: var(--landing-blue-soft); }
#landing .hero .hero-lead { margin-top: 22px; color: #f3f7fc; font-size: 18px; line-height: 1.5; font-weight: 600; }
#landing .hero .hero-summary { max-width: 680px; margin: 12px auto 0; color: #aeb8c5; font-size: 14px; line-height: 1.65; font-weight: 400; }
.hero-actions { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.hero-actions a { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 7px; font-size: 13px; font-weight: 700; }
.hero-actions svg { width: 16px; }
.hero-primary { color: #fff; border: 1px solid #3882f6; background: #1769ee; box-shadow: 0 0 28px rgba(56,130,246,.34); }
.hero-primary:hover { background: #2a79f5; }
.hero-secondary { color: #eef5ff; border: 1px solid rgba(190,220,255,.34); background: rgba(8,15,23,.68); }
.hero-secondary:hover { border-color: rgba(190,220,255,.62); background: rgba(16,29,43,.82); }
.market-panel { position: absolute; z-index: 5; top: 11%; width: auto; height: 68%; overflow: visible; background: transparent; filter: drop-shadow(0 0 1px rgba(218,237,255,.96)) drop-shadow(0 0 9px rgba(96,165,250,.46)) drop-shadow(0 0 24px rgba(56,130,246,.24)) drop-shadow(0 30px 42px rgba(0,0,0,.58)); pointer-events: none; transition: opacity .15s linear, translate .15s linear; }
.market-panel::after { content: ""; position: absolute; inset: 10% 4% 5%; z-index: -1; background: rgba(56,130,246,.08); filter: blur(28px); pointer-events: none; }
.market-panel img { width: 100%; height: 100%; display: block; object-fit: contain; }
.market-panel-left { top: 5%; right: calc(50% + var(--hero-panel-gap)); height: 80%; aspect-ratio: 790 / 1380; transform: rotateY(4deg) rotateX(1deg); transform-origin: right center; animation: leftPanelIn 1.15s .25s both; }
.market-panel-right { left: calc(50% + var(--hero-panel-gap)); aspect-ratio: 855 / 1080; transform: rotateY(-4deg) rotateX(1deg); transform-origin: left center; animation: rightPanelIn 1.15s .25s both; }
.hero-index { position: absolute; left: 3.8%; top: 40%; display: grid; gap: 20px; color: #5d6878; font: 11px var(--mono); }
.hero-index b { color: #fff; }
.hero-index span { width: 16px; height: 1px; background: var(--landing-blue-soft); }
.hero-index em { font-style: normal; }
.scroll-cue { position: absolute; left: 50%; bottom: 50px; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; color: #a2acba; font-size: 10px; }
.scroll-cue svg { width: 22px; height: 28px; stroke-width: 1.4; }


.portal-showcase { position: relative; z-index: 4; isolation: isolate; margin-top: -1px; padding-top: 82px; padding-bottom: 96px; display: grid; grid-template-columns: 3fr 9fr; gap: 52px; align-items: center; }
.portal-showcase::before { content: ""; position: absolute; z-index: 0; left: 50%; top: -170px; width: 100vw; height: 330px; transform: translateX(-50%); pointer-events: none; background: linear-gradient(180deg, rgba(8,15,23,0), rgba(8,15,23,.42) 22%, rgba(8,15,23,.88) 40%, #080f17 56%, #080f17 100%); }
.portal-showcase::after { content: ""; position: absolute; z-index: 0; left: 50%; top: -180px; width: min(620px, 70vw); height: 330px; transform: translateX(-50%); pointer-events: none; background: radial-gradient(ellipse at 50% 0%, rgba(96,165,250,.2), rgba(56,130,246,.08) 38%, transparent 72%); filter: blur(18px); }
.portal-showcase > * { position: relative; z-index: 1; }
.portal-copy { padding-left: 8px; }
.portal-copy .eyebrow { margin-bottom: 18px; color: var(--landing-blue); }
.portal-copy h2 { font-size: clamp(32px, 3vw, 48px); line-height: 1.15; letter-spacing: 0; }
.portal-copy > p:not(.eyebrow) { margin-top: 22px; color: #9ca3af; font-size: 14px; line-height: 1.75; }
.portal-copy ul { margin: 34px 0; display: grid; gap: 18px; list-style: none; }
.portal-copy li { display: flex; align-items: center; gap: 12px; color: #b8c1cd; font-size: 13px; }
.portal-copy li svg { width: 18px; color: var(--landing-blue); }
.portal-copy > a { display: inline-flex; align-items: center; gap: 14px; color: var(--landing-blue-soft); font-size: 13px; font-weight: 600; }
.portal-copy > a svg { width: 16px; }
.trading-dashboard { min-width: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; overflow: hidden; background: #0b1119; box-shadow: 0 32px 70px rgba(0,0,0,.36); transform-style: preserve-3d; transition: transform .16s ease-out; }
.portal-media { position: relative; aspect-ratio: 16 / 9; border-color: rgba(186,220,255,.58); background: #080f17; box-shadow: inset 0 0 0 1px rgba(209,232,255,.16), 0 0 7px rgba(186,220,255,.42), 0 0 24px rgba(96,165,250,.3), 0 0 54px rgba(56,130,246,.16), 0 30px 70px rgba(0,0,0,.42); }
.portal-media::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(96,165,250,.06), transparent 24%); }
.portal-media video { position: relative; z-index: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; }
.comparison-section { position: relative; scroll-margin-top: 88px; padding-top: 44px; padding-bottom: 88px; }
.comparison-heading { margin: 0 auto 24px; text-align: center; }
.comparison-heading > p { width: max-content; margin: 0 auto 10px; padding: 6px 18px; border: 1px solid rgba(56,130,246,.26); border-radius: 16px; color: #65adff; background: rgba(56,130,246,.07); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.comparison-heading h2 { scroll-margin-top: 120px; color: #f6f8fb; font-size: clamp(36px, 4vw, 56px); line-height: 1.05; letter-spacing: 0; }
.comparison-heading h2 span { color: #8c9bb1; }
.comparison-heading h2 strong { color: #388cff; font-weight: 700; }
.comparison-heading > div { margin-top: 12px; color: #b7c1cf; font-size: 15px; }
.comparison-table-wrap { width: min(1280px, 100%); margin: 0 auto; overflow: hidden; border: 1px solid rgba(126,191,255,.22); border-radius: 8px; background: rgba(7,14,23,.91); box-shadow: 0 24px 62px rgba(0,0,0,.26), 0 0 34px rgba(56,130,246,.07); }
.comparison-table-wrap table { width: 100%; border-spacing: 0; table-layout: fixed; }
.comparison-table-wrap col:first-child { width: 36%; }
.comparison-table-wrap col:nth-child(2) { width: 31%; }
.comparison-table-wrap col:nth-child(3) { width: 33%; }
.comparison-table-wrap th, .comparison-table-wrap td { height: 34px; padding: 0 28px; border-bottom: 1px solid rgba(255,255,255,.055); }
.comparison-table-wrap thead th { height: 66px; color: #eff3f8; font-size: 13px; font-weight: 700; }
.comparison-table-wrap thead th:first-child, .comparison-table-wrap tbody th { text-align: left; }
.comparison-table-wrap thead th:not(:first-child), .comparison-table-wrap td { text-align: center; }
.comparison-brand { display: inline-flex; align-items: center; justify-content: center; gap: 12px; }
.comparison-brand > svg { width: 25px; height: 25px; color: #3a96ff; stroke-width: 1.5; }
.tv-mark { color: #fff; font: 800 12px var(--mono); }
.comparison-table-wrap thead .tradxea-column img { width: 150px; max-height: 38px; object-fit: contain; filter: brightness(1.25) saturate(1.15); }
.comparison-table-wrap tbody th { color: #e4e9f0; font-size: 12px; font-weight: 500; }
.comparison-table-wrap tbody th > svg { width: 15px; height: 15px; margin-right: 12px; vertical-align: -3px; color: #70b2ff; stroke-width: 1.6; }
.comparison-table-wrap td { color: #c2cbd7; font: 600 12px var(--mono); }
.comparison-table-wrap .tradxea-column { border-inline: 1px solid #258cff; background: rgba(24,105,238,.06); }
.comparison-table-wrap thead .tradxea-column { border-top: 1px solid #258cff; }
.comparison-table-wrap .state { width: 18px; height: 18px; display: inline-grid; place-items: center; border-radius: 50%; }
.comparison-table-wrap .state svg { width: 12px; height: 12px; stroke-width: 2.8; }
.comparison-table-wrap .state.included { color: #05101f; background: #2b8cff; }
.comparison-table-wrap .state.not-included { color: #8f9aaa; border: 1px solid rgba(143,154,170,.58); background: rgba(143,154,170,.08); }
.comparison-table-wrap .comparison-group > * { border-top: 1px solid rgba(126,191,255,.26); }
.comparison-table-wrap .comparison-price > * { height: 58px; border-top: 1px solid rgba(126,191,255,.25); border-bottom: 0; }
.comparison-table-wrap .comparison-price td { color: #f6f8fb; white-space: nowrap; }
.comparison-table-wrap .comparison-price small { margin-right: 20px; color: #aeb9c7; font: 500 10px var(--mono); text-transform: uppercase; }
.comparison-table-wrap .comparison-price strong { font: 700 19px var(--mono); }
.comparison-table-wrap .comparison-price .tradxea-column { position: relative; color: #2b8cff; border-bottom: 1px solid #258cff; }
.comparison-table-wrap .comparison-price .tradxea-column small { color: #2b8cff; }
.comparison-table-wrap .comparison-price .tradxea-column strong { font-size: 22px; }
.comparison-table-wrap .comparison-price b { margin-left: 18px; padding: 5px 8px; display: inline-grid; border: 1px solid #258cff; border-radius: 6px; color: #50a1ff; font: 700 18px/1 var(--mono); }
.comparison-table-wrap .comparison-price b em { display: block; color: #b8c4d2; font-size: 8px; font-style: normal; text-transform: uppercase; }
.comparison-benefits { width: min(1240px, calc(100% - 32px)); min-height: 86px; margin: 16px auto 0; display: grid; grid-template-columns: 2.15fr repeat(3, 1fr); align-items: center; border: 1px solid rgba(126,191,255,.18); border-radius: 8px; background: rgba(7,14,23,.92); }
.comparison-benefits > div { min-height: 54px; padding: 0 28px; display: flex; align-items: center; justify-content: center; gap: 16px; border-left: 1px solid rgba(255,255,255,.1); color: #dce4ee; font-size: 12px; line-height: 1.5; }
.comparison-benefits > div:first-child { justify-content: flex-start; border-left: 0; }
.comparison-benefits svg { width: 28px; height: 28px; color: #b6c4d8; stroke-width: 1.6; }
.comparison-benefits .comparison-save > svg { width: 48px; height: 48px; color: #2b8cff; }
.comparison-save span { display: grid; gap: 4px; }
.comparison-save strong { color: #f4f7fb; font-size: 19px; }
.comparison-save small { color: #aab5c3; font-size: 12px; }
.pricing-section { padding-top: 28px; padding-bottom: 112px; }
.pricing-copy { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.pricing-copy .eyebrow { margin-bottom: 16px; color: #65adff; }
.pricing-copy h2 { font-size: clamp(38px, 4vw, 60px); line-height: 1.05; letter-spacing: 0; }
.pricing-copy > p:not(.eyebrow) { margin-top: 22px; color: #9faab8; font-size: 14px; line-height: 1.75; }
.pricing-assurance { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 22px; }
.pricing-assurance span { display: inline-flex; align-items: center; gap: 8px; color: #c7d1dd; font-size: 12px; }
.pricing-assurance svg { width: 16px; color: #61d6c0; }
.pricing-billing { width: fit-content; margin: 26px auto 0; padding: 4px; display: flex; border: 1px solid rgba(120,157,201,.3); border-radius: 7px; background: rgba(7,14,23,.85); }
.pricing-billing button { min-height: 36px; padding: 0 16px; border: 0; border-radius: 5px; color: #8e9aaa; background: transparent; font: 700 11px Inter, sans-serif; cursor: pointer; }
.pricing-billing button.is-active { color: #fff; background: #1769ee; box-shadow: 0 0 18px rgba(56,130,246,.25); }
.pricing-billing button span { margin-left: 5px; color: #75e0c9; font-size: 9px; }
.pricing-billing button.is-active span { color: #dffbf5; }
.pricing-plans { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.pricing-plan { position: relative; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(112,150,195,.34); border-radius: 8px; background: linear-gradient(135deg, rgba(28,63,105,.12), rgba(7,14,23,.96) 46%); box-shadow: 0 24px 54px rgba(0,0,0,.25); }
.pricing-plan-elite { border-color: #258cff; background: linear-gradient(135deg, rgba(24,105,238,.16), rgba(7,14,23,.97) 50%); box-shadow: 0 0 42px rgba(43,140,255,.16), 0 28px 60px rgba(0,0,0,.28); }
.pricing-plan::before { content: ""; position: absolute; top: 0; right: 0; width: 260px; height: 180px; background: radial-gradient(circle at 100% 0, rgba(43,140,255,.18), transparent 70%); pointer-events: none; }
.pricing-badge { position: absolute; z-index: 2; top: 0; right: 24px; padding: 7px 12px; border-radius: 0 0 6px 6px; color: #fff; background: #1769ee; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.pricing-plan-head { position: relative; min-height: 128px; padding: 30px 24px 22px; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; border-bottom: 1px solid rgba(126,191,255,.2); }
.pricing-plan-head > div { display: grid; gap: 8px; color: #9eabba; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.pricing-plan-head > div strong { color: #f5f8fc; font: 800 24px/1.1 Inter, sans-serif; text-transform: none; letter-spacing: 0; }
.pricing-plan-head .pricing-price-wrap { display: grid; justify-items: end; gap: 6px; text-transform: none; letter-spacing: 0; }
.pricing-price-wrap p { display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.pricing-price-wrap p strong { color: #4c9dff; font: 800 38px/1 var(--mono); }
.pricing-price-wrap p span { color: #aeb9c7; font-size: 11px; }
.pricing-price-wrap small { color: #6f7e90; font-size: 8px; }
.pricing-founder { margin: 0 24px; padding: 13px 0 0; display: block; color: #f0a33c; font: 700 10px/1.5 Inter, sans-serif; font-style: normal; letter-spacing: .03em; text-align: center; text-transform: none; }
.pricing-plan ul { flex: 1; padding: 24px 24px 8px; display: grid; align-content: start; gap: 14px; list-style: none; }
.pricing-plan li { display: flex; align-items: flex-start; gap: 10px; color: #c6d0dc; font-size: 12px; line-height: 1.55; }
.pricing-plan li svg { width: 17px; min-width: 17px; color: #61d6c0; stroke-width: 2.2; }
.pricing-plan > a { min-height: 50px; margin: 22px 30px 0; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 6px; color: #fff; background: #1769ee; font-size: 13px; font-weight: 700; box-shadow: 0 0 24px rgba(56,130,246,.25); }
.pricing-plan > a:hover { background: #2a79f5; }
.pricing-plan > a svg { width: 16px; }
.pricing-plan > small { padding: 14px 30px 22px; display: block; color: #7f8c9c; font-size: 10px; text-align: center; }
.dashboard-energy,
.energy-outline {
  position: absolute;
  z-index: 3;
  inset: -1px;
  padding: 2px;
  border-radius: 12px;
  pointer-events: none;
  background: conic-gradient(from var(--energy-angle), transparent 0 68%, rgba(56,130,246,.08) 75%, #60a5fa 82%, #fff 85%, #60a5fa 88%, transparent 95%);
  filter: drop-shadow(0 0 5px rgba(235,247,255,1)) drop-shadow(0 0 15px rgba(96,165,250,.95)) drop-shadow(0 0 30px rgba(56,130,246,.7));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  will-change: opacity, background;
}
.energy-outline {
  border-radius: 8px;
  background: conic-gradient(from var(--energy-angle), transparent 0 68%, rgba(56,130,246,.06) 75%, #60a5fa 82%, #fff 85%, #60a5fa 88%, transparent 95%);
}
.dash-topbar { min-height: 68px; padding: 0 18px; display: grid; grid-template-columns: 1.25fr repeat(5, 1fr) auto; align-items: center; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.08); background: #0d141e; }
.dash-logo img { width: 115px; display: block; }
.dash-topbar > div:not(.dash-logo) { display: grid; gap: 4px; }
.dash-topbar small { color: #737f90; font: 8px var(--mono); text-transform: uppercase; }
.dash-topbar b { font-size: 10px; font-weight: 500; white-space: nowrap; }
.dash-topbar .positive, .positive { color: #22c55e; }
.connected { display: flex; align-items: center; gap: 5px; padding: 7px 10px; border: 1px solid rgba(34,197,94,.2); border-radius: 14px; color: #22c55e; font-size: 9px; }
.connected svg { width: 7px; fill: currentColor; }
.dash-body { display: grid; grid-template-columns: 150px 1fr; min-height: 570px; }
.dash-sidebar { padding: 14px 10px; display: grid; align-content: start; gap: 5px; border-right: 1px solid rgba(255,255,255,.07); background: #0d141e; }
.dash-sidebar a { min-height: 40px; padding: 0 12px; display: flex; align-items: center; gap: 10px; border-radius: 6px; color: #99a4b2; font-size: 11px; }
.dash-sidebar a.active { color: #60a5fa; background: rgba(56,130,246,.13); }
.dash-sidebar svg { width: 15px; }
.dash-workspace { min-width: 0; }
.market-toolbar { height: 42px; padding: 0 13px; display: flex; align-items: center; gap: 13px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 9px; }
.market-toolbar strong { margin-right: 4px; font-size: 13px; }
.market-toolbar span { color: #8692a1; }
.market-toolbar span.active { color: #fff; }
.market-toolbar button { margin-left: 4px; padding: 5px 8px; display: flex; align-items: center; gap: 4px; border: 1px solid rgba(255,255,255,.1); border-radius: 5px; color: #aeb7c3; background: #111a25; font-size: 9px; }
.market-toolbar button svg { width: 10px; }
.market-meta { height: 30px; padding: 8px 13px; color: #8e99a9; font: 8px var(--mono); }
.market-meta span { margin-left: 10px; color: #22c55e; }
.dash-chart { position: relative; height: 300px; overflow: hidden; border-block: 1px solid rgba(255,255,255,.06); background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 100% 50px, 84px 100%; }
.dash-chart::after { content: "2324.65"; position: absolute; right: 0; top: 51%; padding: 3px 5px; color: #fff; background: #1ca36b; font: 8px var(--mono); }
.price-zone { position: absolute; left: 1%; height: 24px; border: 1px solid; transform-origin: left; animation: zoneExpand 1.1s var(--delay) both; }
.price-zone.blue { border-color: rgba(56,130,246,.48); background: rgba(56,130,246,.12); }
.price-zone.orange { border-color: rgba(245,158,11,.52); background: rgba(245,158,11,.11); }
.dash-candles { position: absolute; inset: 18px 44px 20px 10px; display: flex; align-items: center; gap: 3px; }
.dash-candles span { position: relative; flex: 1; min-width: 2px; height: var(--h); translate: 0 var(--y); background: var(--c); transform-origin: center; animation: candleGrow .6s calc(var(--i) * 20ms) both; }
.dash-candles span::before { content: ""; position: absolute; left: 50%; top: -6px; bottom: -6px; width: 1px; background: var(--c); transform: translateX(-50%); }
.price-axis { position: absolute; z-index: 3; top: 9px; right: 3px; bottom: 8px; display: flex; flex-direction: column; justify-content: space-between; color: #747f8f; font: 8px var(--mono); }
.dash-lower { display: grid; grid-template-columns: 1fr 210px; min-height: 166px; }
.positions-panel { min-width: 0; padding: 0 14px; border-right: 1px solid rgba(255,255,255,.07); }
.positions-panel nav { height: 40px; display: flex; align-items: center; gap: 28px; border-bottom: 1px solid rgba(255,255,255,.07); color: #8c97a6; font-size: 9px; }
.positions-panel nav b { height: 40px; display: grid; align-items: center; color: #60a5fa; border-bottom: 1px solid #3882f6; }
.positions-panel table { width: 100%; border-collapse: collapse; font: 8px var(--mono); }
.positions-panel th { padding: 10px 5px; color: #737f90; text-align: left; font-weight: 400; }
.positions-panel td { padding: 9px 5px; white-space: nowrap; }
.buy-text { color: #60a5fa; }.sell-text { color: #ef4444; }
.order-panel { padding: 12px; display: grid; gap: 7px; align-content: start; }
.order-panel > strong { margin-bottom: 4px; font-size: 11px; }
.order-panel label { display: grid; grid-template-columns: 48px 1fr; align-items: center; color: #7d8998; font-size: 8px; }
.order-panel input, .order-panel select { width: 100%; height: 23px; padding: 0 6px; border: 1px solid rgba(255,255,255,.09); border-radius: 4px; color: #c7ced8; background: #111a25; font-size: 8px; }
.order-panel > div { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.order-panel button { min-height: 38px; border: 0; border-radius: 4px; color: #fff; font-size: 9px; }
.buy-btn { background: #168b5a; }.sell-btn { background: #c93636; }

.platform-intro { padding-top: 136px; padding-bottom: 120px; }
.section-heading { max-width: 860px; margin: 0 auto 54px; text-align: center; }
.section-heading .eyebrow, .feature-copy .eyebrow, .flow-heading .eyebrow, .platform-cta .eyebrow { color: var(--landing-blue-soft); }
.section-heading h2, .feature-copy h2, .flow-heading h2, .platform-cta h2 { letter-spacing: 0; }
.section-heading h2 { font-size: clamp(38px, 4.2vw, 64px); line-height: 1.08; }
.section-heading > p:last-child { max-width: 680px; margin: 24px auto 0; color: #9da8b7; font-size: 15px; line-height: 1.75; }

.multichart-workspace { position: relative; overflow: hidden; border: 1px solid rgba(156,206,255,.34); border-radius: 8px; background: #070d14; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 0 34px rgba(56,130,246,.16), 0 40px 90px rgba(0,0,0,.38); }
.workspace-bar { min-height: 58px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.09); background: #0d151f; }
.workspace-bar > div { display: flex; align-items: center; gap: 10px; }
.workspace-bar svg { width: 19px; color: #60a5fa; }
.workspace-bar strong { font-size: 12px; font-weight: 600; }
.workspace-bar > span { color: #69d8c5; font: 10px var(--mono); text-transform: uppercase; }
.chart-matrix { height: clamp(520px, 57vw, 780px); display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1px; background: rgba(143,177,215,.18); }
.chart-matrix figure { position: relative; min-width: 0; min-height: 0; overflow: hidden; background: #080f17; }
.chart-matrix figcaption { position: absolute; z-index: 2; top: 10px; left: 12px; display: flex; align-items: center; gap: 8px; padding: 6px 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 5px; background: rgba(7,13,20,.84); backdrop-filter: blur(8px); }
.chart-matrix figcaption b { font: 10px var(--mono); }
.chart-matrix figcaption span { color: #7fc3ff; font: 9px var(--mono); }
.chart-matrix img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: scale .45s ease, opacity .45s ease; }
.chart-matrix figure:hover img { scale: 1.025; opacity: .92; }

.workspace-capabilities { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(255,255,255,.11); }
.workspace-capabilities article { min-height: 150px; padding: 30px 34px; display: grid; grid-template-columns: 34px 1fr; gap: 18px; align-items: start; border-right: 1px solid rgba(255,255,255,.11); }
.workspace-capabilities article:last-child { border-right: 0; }
.workspace-capabilities svg { width: 28px; color: #60a5fa; stroke-width: 1.5; }
.workspace-capabilities h3 { font-size: 15px; letter-spacing: 0; }
.workspace-capabilities p { margin-top: 9px; color: #909cac; font-size: 12px; line-height: 1.65; }

.feature-band { width: 100%; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); }
.feature-band-automation { background: linear-gradient(90deg, rgba(20,47,59,.34), transparent 44%), #080f17; }
.feature-band-strategies { background: linear-gradient(270deg, rgba(45,36,72,.25), transparent 46%), #070d14; }
.feature-band-inner { min-height: 760px; padding-top: 104px; padding-bottom: 104px; display: grid; grid-template-columns: 4fr 7fr; align-items: center; gap: 80px; }
.feature-band-strategies .feature-band-inner { grid-template-columns: 7fr 4fr; }
.feature-band-strategies .feature-copy { order: 2; }
.feature-copy h2 { max-width: 520px; font-size: clamp(36px, 3.5vw, 56px); line-height: 1.08; }
.feature-copy > p:not(.eyebrow) { max-width: 520px; margin-top: 22px; color: #99a5b4; font-size: 14px; line-height: 1.75; }
.feature-copy ul { margin: 34px 0; display: grid; gap: 22px; list-style: none; }
.feature-copy li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.feature-copy li > svg { width: 24px; color: #61d6c0; stroke-width: 1.5; }
.feature-band-strategies .feature-copy li > svg { color: #bc91ff; }
.feature-copy li span { color: #8f9aa9; font-size: 12px; line-height: 1.6; }
.feature-copy li strong { display: block; margin-bottom: 3px; color: #eef3f8; font-size: 13px; }
.feature-copy > a { display: inline-flex; align-items: center; gap: 12px; color: #7fc3ff; font-size: 13px; font-weight: 600; }
.feature-copy > a svg { width: 16px; }
.feature-media { position: relative; overflow: hidden; border: 1px solid rgba(172,213,255,.34); border-radius: 8px; background: #081019; box-shadow: 0 0 35px rgba(56,130,246,.17), 0 35px 80px rgba(0,0,0,.42); }
.feature-media img { width: 100%; aspect-ratio: 16 / 9; display: block; object-fit: cover; }
.feature-media figcaption { min-height: 64px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); background: #0c141d; }
.feature-media figcaption span { display: inline-flex; align-items: center; gap: 8px; color: #6ed8c3; font: 10px var(--mono); text-transform: uppercase; }
.feature-media figcaption svg { width: 16px; }
.feature-media figcaption b { color: #aeb8c5; font-size: 11px; font-weight: 500; text-align: right; }
.feature-band-strategies .feature-media figcaption span { color: #bc91ff; }

.trading-flow { padding-top: 128px; padding-bottom: 128px; }
.flow-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.flow-heading .eyebrow { margin-bottom: 10px; }
.flow-heading h2 { font-size: clamp(38px, 4vw, 60px); line-height: 1.05; }
.trading-flow ol { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-block: 1px solid rgba(255,255,255,.12); }
.trading-flow li { position: relative; min-height: 270px; padding: 42px; border-right: 1px solid rgba(255,255,255,.12); }
.trading-flow li:last-child { border-right: 0; }
.trading-flow li > span { position: absolute; top: 22px; right: 24px; color: #526071; font: 11px var(--mono); }
.trading-flow li > svg { width: 32px; height: 32px; margin-bottom: 34px; color: #60a5fa; stroke-width: 1.5; }
.trading-flow li:nth-child(2) > svg { color: #61d6c0; }
.trading-flow li:nth-child(3) > svg { color: #bc91ff; }
.trading-flow h3 { font-size: 20px; letter-spacing: 0; }
.trading-flow li p { max-width: 300px; margin-top: 14px; color: #929eae; font-size: 13px; line-height: 1.7; }

.platform-cta { margin-bottom: 128px; padding-top: 92px; padding-bottom: 92px; text-align: center; border-block: 1px solid rgba(126,191,255,.25); background: radial-gradient(ellipse at 50% 110%, rgba(56,130,246,.24), transparent 54%); }
.platform-cta h2 { font-size: clamp(42px, 5vw, 72px); line-height: 1.05; }
.platform-cta > p:not(.eyebrow) { max-width: 650px; margin: 24px auto 0; color: #9ba7b6; font-size: 15px; line-height: 1.7; }
.platform-cta > div { margin-top: 34px; display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.platform-cta a { min-height: 48px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #bec8d5; font-size: 12px; }
.platform-cta a.primary { color: #fff; border: 1px solid #3882f6; border-radius: 6px; background: #1769ee; box-shadow: 0 0 24px rgba(56,130,246,.28); }
.platform-cta a svg { width: 16px; }

.site-footer { border-top: 1px solid rgba(255,255,255,.1); background: #070d14; }
.footer-grid { padding-top: 58px; padding-bottom: 46px; display: grid; grid-template-columns: 1.5fr repeat(4, 1fr) 1.45fr; gap: 46px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-grid h3 { margin-bottom: 7px; color: #f2f4f7; font-size: 12px; }
.footer-grid a, .footer-grid p { color: #8d98a7; font-size: 11px; line-height: 1.7; }
.footer-grid a:hover { color: var(--landing-blue-soft); }
.footer-brand > img { width: 140px; }
.footer-brand > p { max-width: 210px; margin: 18px 0; }
.footer-brand > div { display: flex; gap: 10px; }
.footer-brand > div a { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #17202b; }
.footer-brand svg { width: 14px; }
.newsletter form { width: 100%; display: grid; grid-template-columns: 1fr 48px; margin-top: 7px; }
.newsletter input { min-width: 0; height: 46px; padding: 0 14px; border: 1px solid rgba(255,255,255,.14); border-right: 0; border-radius: 7px 0 0 7px; color: #fff; background: #0c141e; font-size: 11px; }
.newsletter button { display: grid; place-items: center; border: 0; border-radius: 0 7px 7px 0; color: #fff; background: #1769ee; }
.newsletter button svg { width: 17px; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #778393; font-size: 10px; }
.footer-bottom div { display: flex; gap: 34px; }
.legal-page { min-height: 100vh; color: #e8edf5; background: radial-gradient(circle at 50% 0, rgba(22,140,255,.12), transparent 34rem), #070d14; }
.legal-header { height: 82px; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(7,13,20,.88); backdrop-filter: blur(18px); }
.legal-header-inner { width: min(1120px, calc(100% - 48px)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-header img { width: 146px; display: block; }
.legal-header a:last-child { display: inline-flex; align-items: center; gap: 9px; color: #aeb9c8; font-size: 13px; font-weight: 600; }
.legal-header a:last-child:hover { color: #fff; }
.legal-header a:last-child::before { content: "\2190"; color: #4ba3ff; font-size: 18px; }
.legal-main { width: min(880px, calc(100% - 48px)); margin: 0 auto; padding: 88px 0 112px; }
.legal-kicker { color: #55aaff; font: 700 11px var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.legal-main h1 { max-width: 720px; margin-top: 18px; font-size: clamp(44px, 7vw, 76px); line-height: 1; letter-spacing: 0; }
.legal-updated { margin-top: 24px; color: #8491a3; font-size: 13px; }
.legal-intro { margin: 40px 0 58px; padding: 24px 0 24px 24px; border-left: 2px solid #258cff; color: #b8c3d1; font-size: 16px; line-height: 1.8; }
.legal-content { display: grid; gap: 44px; counter-reset: legal-section; }
.legal-content section { padding-top: 38px; border-top: 1px solid rgba(255,255,255,.1); counter-increment: legal-section; }
.legal-content h2 { margin-bottom: 16px; color: #f5f8fc; font-size: 23px; letter-spacing: 0; }
.legal-content h2::before { content: counter(legal-section, decimal-leading-zero) "  "; color: #3b94f5; font: 700 11px var(--mono); }
.legal-content h3 { margin: 24px 0 10px; color: #dce5ef; font-size: 15px; letter-spacing: 0; }
.legal-content p, .legal-content li { color: #a4b0c0; font-size: 14px; line-height: 1.8; }
.legal-content p + p { margin-top: 13px; }
.legal-content ul { margin-top: 12px; padding-left: 20px; display: grid; gap: 8px; }
.legal-content strong { color: #dce6f2; }
.legal-content a { color: #61afff; text-decoration: underline; text-underline-offset: 3px; }
.legal-contact { padding: 28px !important; border: 1px solid rgba(74,159,255,.3) !important; border-radius: 8px; background: rgba(20,53,85,.2); }
.legal-footer { min-height: 88px; border-top: 1px solid rgba(255,255,255,.1); color: #758294; background: #050a10; }
.legal-footer-inner { width: min(1120px, calc(100% - 48px)); min-height: 88px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 11px; }
.legal-footer a { color: #9ba8b8; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.motion-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.motion-reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes drawArc { to { stroke-dashoffset: 0; } }
@keyframes frameEnter { from { opacity: 0; transform: translate(-50%, -50%) scale(.98); } to { opacity: .9; transform: translate(-50%, -50%) scale(1); } }
@keyframes heroEnter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes leftPanelIn { from { opacity: 0; transform: translateX(-90px) rotateY(14deg); } to { opacity: 1; transform: rotateY(4deg) rotateX(1deg); } }
@keyframes rightPanelIn { from { opacity: 0; transform: translateX(90px) rotateY(-14deg); } to { opacity: 1; transform: rotateY(-4deg) rotateX(1deg); } }
@keyframes floorTravel { to { background-position: 0 38px, 0 0; } }
@property --energy-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes candleGrow { from { scale: 1 0; opacity: 0; } to { scale: 1 1; opacity: .9; } }
@keyframes zoneExpand { from { scale: 0 1; opacity: 0; } to { scale: 1 1; opacity: 1; } }

@media (max-width: 1180px) {
  #landing .section-pad { width: min(100% - 48px, 1100px); }
  #landing .site-nav { padding-inline: 24px; grid-template-columns: 175px 1fr 225px; }
  #landing .site-nav nav { gap: 24px; }
  #landing .hero { --hero-panel-gap: clamp(250px, 28vw, 330px); }
  .market-panel { height: 58%; }
  .market-panel-left { top: 6%; height: 68%; }
  .portal-showcase { grid-template-columns: 1fr; }
  .portal-copy { max-width: 620px; }
  .pricing-plans { max-width: 760px; grid-template-columns: 1fr 1fr; }
  .pricing-plan-elite { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }
  .feature-band-inner, .feature-band-strategies .feature-band-inner { grid-template-columns: 1fr; gap: 54px; }
  .feature-band-strategies .feature-copy { order: 0; }
  .feature-copy { max-width: 680px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .footer-grid > div:nth-child(5), .footer-grid > div:nth-child(6) { margin-top: 8px; }
}
@media (max-width: 820px) {
  #landing .site-nav { height: 72px; grid-template-columns: 1fr auto; }
  #landing .nav-brand img { width: 132px; }
  .mobile-menu-toggle { grid-column: 2; display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; color: #fff; background: #0c141e; }
  .mobile-menu-toggle svg { width: 20px; }
  #landing .site-nav nav { position: absolute; top: 72px; left: 0; right: 0; display: none; padding: 22px 24px; flex-direction: column; align-items: flex-start; gap: 0; border-block: 1px solid rgba(255,255,255,.1); background: rgba(8,15,23,.98); }
  #landing .site-nav nav { grid-column: 1 / -1; left: -24px; right: auto; width: 100vw; justify-self: start; }
  #landing .site-nav.menu-open nav { display: flex; }
  #landing .site-nav nav a { width: 100%; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  #landing .nav-actions { display: none; }
  #landing .site-nav.menu-open .nav-actions { position: absolute; top: 330px; left: -24px; right: auto; width: 100vw; display: grid; grid-template-columns: 1fr 1fr; padding: 0 24px 24px; background: rgba(8,15,23,.98); }
  #landing .admin-cta, #landing .nav-cta { width: 100%; }
  #landing .hero { min-height: 820px; padding-inline: 20px; }
  .hero-center { width: 94vw; }
  #landing .hero h1 { font-size: clamp(40px, 8vw, 58px); }
  .market-panel { display: none; }
  .hero-index { display: none; }
  .portal-showcase { padding-top: 64px; }
  .comparison-section { padding-top: 20px; padding-bottom: 88px; }
  .comparison-heading h2 { font-size: 40px; }
  .comparison-table-wrap col:first-child { width: 45%; }
  .comparison-table-wrap col:nth-child(2) { width: 27%; }
  .comparison-table-wrap col:nth-child(3) { width: 28%; }
  .comparison-table-wrap th, .comparison-table-wrap td { padding-inline: 14px; }
  .comparison-benefits { grid-template-columns: 1fr 1fr; }
  .comparison-benefits > div { border-bottom: 1px solid rgba(255,255,255,.1); }
  .comparison-benefits > div:nth-child(odd) { border-left: 0; }
  .comparison-benefits > div:nth-last-child(-n+2) { border-bottom: 0; }
  .pricing-section { padding-top: 10px; }
  .pricing-copy { max-width: 680px; }
  .pricing-plans { grid-template-columns: 1fr; max-width: 620px; }
  .pricing-plan-elite { grid-column: auto; width: 100%; }
  .trading-dashboard { overflow-x: auto; }
  .platform-intro { padding-top: 96px; }
  .chart-matrix { height: 620px; }
  .workspace-capabilities { grid-template-columns: 1fr; }
  .workspace-capabilities article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .workspace-capabilities article:last-child { border-bottom: 0; }
  .feature-band-inner { min-height: 0; padding-top: 82px; padding-bottom: 82px; }
  .trading-flow ol { grid-template-columns: 1fr; }
  .trading-flow li { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trading-flow li:last-child { border-bottom: 0; }
  .dash-topbar, .dash-body { min-width: 850px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .legal-header-inner, .legal-main, .legal-footer-inner { width: calc(100% - 32px); }
  .legal-header img { width: 126px; }
  .legal-main { padding: 64px 0 84px; }
  .legal-main h1 { font-size: 44px; }
  .legal-intro { margin: 32px 0 48px; padding: 18px 0 18px 18px; font-size: 14px; }
  .legal-content { gap: 36px; }
  .legal-content section { padding-top: 30px; }
  .legal-content h2 { font-size: 20px; }
  .legal-footer-inner { padding: 22px 0; flex-direction: column; align-items: flex-start; justify-content: center; }
  #landing .section-pad { width: calc(100% - 32px); }
  #landing .hero { min-height: 820px; padding: 92px 16px 76px; }
  .hero-center { height: 620px; }
  .hero-frame-art { width: 210vw; height: max(100vh, 760px); object-fit: contain; }
  #landing .hero h1 { font-size: 38px; }
  #landing .hero .hero-lead { margin-top: 18px; font-size: 16px; }
  #landing .hero .hero-summary { font-size: 13px; line-height: 1.55; }
  #landing .eyebrow { margin-bottom: 16px; font-size: 10px; }
  .hero-actions { width: 100%; margin-top: 22px; gap: 10px; }
  .hero-actions a { min-height: 46px; padding-inline: 14px; font-size: 12px; }
  .scroll-cue { bottom: 24px; }
  .portal-showcase { padding-bottom: 64px; gap: 40px; }
  .comparison-section { padding-top: 12px; padding-bottom: 72px; }
  .comparison-heading { margin-bottom: 18px; }
  .comparison-heading > p { font-size: 9px; }
  .comparison-heading h2 { font-size: 32px; }
  .comparison-heading > div { font-size: 12px; line-height: 1.5; }
  .comparison-table-wrap col:first-child { width: 48%; }
  .comparison-table-wrap col:nth-child(2), .comparison-table-wrap col:nth-child(3) { width: 26%; }
  .comparison-table-wrap th, .comparison-table-wrap td { height: 42px; padding-inline: 6px; }
  .comparison-table-wrap thead th { height: 60px; font-size: 9px; line-height: 1.25; }
  .comparison-brand { gap: 4px; }
  .comparison-brand > svg { width: 18px; height: 18px; }
  .comparison-table-wrap thead .tradxea-column img { width: 76px; }
  .comparison-table-wrap tbody th { font-size: 9px; line-height: 1.2; }
  .comparison-table-wrap tbody th > svg { display: none; }
  .comparison-table-wrap td { font-size: 10px; }
  .comparison-table-wrap .state { width: 17px; height: 17px; }
  .comparison-table-wrap .comparison-price > * { height: 92px; }
  .comparison-table-wrap .comparison-price small { margin: 0 0 5px; display: block; font-size: 7px; }
  .comparison-table-wrap .comparison-price strong, .comparison-table-wrap .comparison-price .tradxea-column strong { font-size: 13px; }
  .comparison-table-wrap .comparison-price b { margin: 7px 0 0; padding: 4px 6px; font-size: 13px; }
  .comparison-benefits { width: 100%; grid-template-columns: 1fr 1fr; }
  .comparison-benefits > div { min-height: 74px; padding: 12px; gap: 10px; font-size: 10px; }
  .comparison-benefits .comparison-save { grid-column: 1 / -1; border-bottom: 1px solid rgba(255,255,255,.1); }
  .comparison-benefits > div:nth-child(2) { border-left: 0; }
  .comparison-benefits > div:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); border-left: 0; }
  .comparison-save strong { font-size: 15px; }
  .comparison-save small { font-size: 10px; }
  .pricing-section { padding-top: 0; padding-bottom: 80px; gap: 34px; }
  .pricing-copy { margin-bottom: 34px; text-align: left; }
  .pricing-copy h2 { font-size: 40px; }
  .pricing-copy > p:not(.eyebrow) { font-size: 13px; }
  .pricing-assurance { justify-content: flex-start; }
  .pricing-billing { margin-left: 0; }
  .pricing-plan-head { min-height: 104px; padding: 20px; }
  .pricing-price-wrap p strong { font-size: 34px; }
  .pricing-plan ul { padding: 22px 20px 4px; grid-template-columns: 1fr; gap: 14px; }
  .pricing-plan > a { margin: 20px 20px 0; }
  .pricing-plan > small { padding-inline: 20px; }
  .platform-intro { padding-top: 78px; padding-bottom: 80px; }
  .section-heading { margin-bottom: 36px; text-align: left; }
  .section-heading > p:last-child { margin-left: 0; }
  .workspace-bar > span { display: none; }
  .chart-matrix { height: auto; grid-template-columns: 1fr; grid-template-rows: repeat(4, 210px); }
  .workspace-capabilities article { padding: 26px 18px; }
  .feature-band-inner { padding-top: 68px; padding-bottom: 68px; gap: 38px; }
  .feature-copy h2 { font-size: 38px; }
  .feature-media figcaption { align-items: flex-start; padding-block: 14px; flex-direction: column; gap: 7px; }
  .feature-media figcaption b { text-align: left; }
  .trading-flow { padding-top: 86px; padding-bottom: 86px; }
  .flow-heading { display: block; }
  .trading-flow li { padding: 34px 24px; }
  .platform-cta { margin-bottom: 80px; padding-top: 72px; padding-bottom: 72px; }
  .platform-cta h2 { font-size: 40px; }
  .dash-topbar, .dash-body { min-width: 760px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand, .newsletter { grid-column: 1 / -1; }
  .footer-bottom { padding-block: 22px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-bottom div { flex-wrap: wrap; gap: 14px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  #landing *, #landing *::before, #landing *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .motion-reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------- fleet view */
.stat-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(130px,1fr)); gap:12px; margin-bottom:16px; }
.stat { background:var(--panel,#12161f); border-radius:10px; padding:12px 14px; }
.stat span { display:block; font-size:12px; opacity:.65; margin-bottom:4px; }
.stat strong { font-size:22px; font-weight:600; }

table.fleet { width:100%; border-collapse:collapse; font-size:13px; }
table.fleet th { text-align:right; font-weight:500; font-size:12px; opacity:.65;
  padding:6px 8px; cursor:pointer; user-select:none; white-space:nowrap; }
table.fleet th.left, table.fleet td:first-child, table.fleet td:nth-child(2) { text-align:left; }
table.fleet th:hover { opacity:1; }
table.fleet td { padding:9px 8px; border-top:1px solid rgba(255,255,255,.07); vertical-align:top; }
table.fleet td.right { text-align:right; white-space:nowrap; }
table.fleet tbody tr { cursor:pointer; }
table.fleet tbody tr:hover { background:rgba(255,255,255,.04); }
table.fleet small { opacity:.55; font-size:11px; }
.mono { font-family:ui-monospace,"JetBrains Mono",monospace; }

/* Only three states carry colour. Colouring everything is how a dashboard
   stops being read. */
.good { color:#4ade80; }
.warn { color:#fbbf24; }
.bad  { color:#f87171; }

.alerts { display:flex; flex-direction:column; gap:8px; }
.alert { padding:9px 12px; border-radius:8px; font-size:13px; border-left:3px solid; }
.alert.bad  { border-color:#f87171; background:rgba(248,113,113,.08); }
.alert.warn { border-color:#fbbf24; background:rgba(251,191,36,.08); }

.chip { font-size:10px; padding:1px 6px; border-radius:4px; background:rgba(248,113,113,.15); }
.dark-row { display:flex; justify-content:space-between; gap:12px; padding:7px 0;
  border-top:1px solid rgba(255,255,255,.07); font-size:13px; }
.small { font-size:12px; }

body[data-theme="light"] .stat { background:#f1f3f7; }
body[data-theme="light"] table.fleet td { border-top-color:rgba(0,0,0,.08); }
body[data-theme="light"] table.fleet tbody tr:hover { background:rgba(0,0,0,.03); }
body[data-theme="light"] .dark-row { border-top-color:rgba(0,0,0,.08); }
body[data-theme="light"] .good { color:#15803d; }
body[data-theme="light"] .warn { color:#b45309; }
body[data-theme="light"] .bad  { color:#b91c1c; }

/* ------------------------------------------------- risk & traders: people */
.who { display:flex; align-items:center; gap:10px; }
.who.big { gap:14px; }
.avatar { width:32px; height:32px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:rgba(56,189,248,.16); color:#7dd3fc; font-size:12px; font-weight:600; }
.avatar.big { width:52px; height:52px; font-size:17px; }
table.people tbody tr td:first-child { min-width:220px; }
.chip.plan { background:rgba(167,139,250,.16); color:#c4b5fd; text-transform:capitalize; }
.chip.good { background:rgba(74,222,128,.15); color:#4ade80; }

.link-back { background:none; border:0; color:#7dd3fc; font-size:13px;
  cursor:pointer; padding:0 0 10px; }
.link-back:hover { text-decoration:underline; }

.person-head { display:flex; flex-wrap:wrap; gap:20px; align-items:center;
  justify-content:space-between; }
.person-head h2 { margin:0; font-size:19px; font-weight:600; }
.person-head p { margin:2px 0 0; font-size:13px; }
.head-stats { display:flex; gap:22px; flex-wrap:wrap; }
.head-stats > div span { display:block; font-size:11px; opacity:.6; margin-bottom:2px; }
.head-stats > div strong { font-size:17px; font-weight:600; }

.tabs { display:flex; gap:4px; flex-wrap:wrap; margin:4px 0 14px;
  border-bottom:1px solid rgba(255,255,255,.08); }
.tabs button { background:none; border:0; border-bottom:2px solid transparent;
  color:inherit; opacity:.6; font-size:13px; padding:9px 12px; cursor:pointer; }
.tabs button:hover { opacity:.9; }
.tabs button.active { opacity:1; border-bottom-color:#38bdf8; }

table.kv { width:100%; font-size:13px; border-collapse:collapse; }
table.kv td { padding:8px 0; border-top:1px solid rgba(255,255,255,.07); }
table.kv td:first-child { width:34%; opacity:.6; }

.ticket { padding:10px 0; border-top:1px solid rgba(255,255,255,.07); font-size:13px; }
.ticket p { margin:5px 0 3px; }

body[data-theme="light"] .avatar { background:rgba(2,132,199,.12); color:#0369a1; }
body[data-theme="light"] .tabs { border-bottom-color:rgba(0,0,0,.1); }
body[data-theme="light"] table.kv td { border-top-color:rgba(0,0,0,.08); }
body[data-theme="light"] .ticket { border-top-color:rgba(0,0,0,.08); }

/* ------------------------------------------- analytics: charts and bars */
svg.chart { width:100%; display:block; }
svg.chart .axis { stroke:rgba(255,255,255,.18); stroke-width:1; stroke-dasharray:3 4; }

.bar-row { display:grid; grid-template-columns:130px 1fr 90px 190px;
  align-items:center; gap:10px; padding:5px 0; font-size:12.5px; }
.bar-label { opacity:.8; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.bar-track { background:rgba(255,255,255,.06); border-radius:3px; height:8px;
  overflow:hidden; display:block; }
.bar-track.wide { height:6px; margin:6px 0 5px; }
.bar-track i { display:block; height:100%; border-radius:3px; }
.bar-track i.pos { background:#4ade80; }
.bar-track i.mid { background:#fbbf24; }
.bar-track i.neg { background:#f87171; }
.bar-value { text-align:right; white-space:nowrap; }
.bar-extra { font-size:11.5px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.score-row { padding:11px 0; border-top:1px solid rgba(255,255,255,.07); }
.score-row:first-of-type { border-top:0; }
.score-head { display:flex; justify-content:space-between; align-items:baseline; font-size:13px; }
.score-num { font-size:17px; font-weight:600; }

table.audit td.raw { font-size:11px; opacity:.65; max-width:520px;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.chip.kind-deal { background:rgba(56,189,248,.15); color:#7dd3fc; }
.chip.kind-position { background:rgba(251,191,36,.15); color:#fcd34d; }
.chip.kind-excursion { background:rgba(167,139,250,.15); color:#c4b5fd; }
.chip.kind-balance { background:rgba(74,222,128,.15); color:#4ade80; }
.chip.kind-rejected { background:rgba(248,113,113,.15); color:#fca5a5; }
.alert strong { display:block; }

@media (max-width: 820px) {
  .bar-row { grid-template-columns:96px 1fr 80px; }
  .bar-extra { display:none; }
}

body[data-theme="light"] svg.chart .axis { stroke:rgba(0,0,0,.2); }
body[data-theme="light"] .bar-track { background:rgba(0,0,0,.07); }
body[data-theme="light"] .score-row { border-top-color:rgba(0,0,0,.08); }

/* ------------------------------------------------------- risk controls */
.filters { display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-bottom:12px; }
.filters input[type="search"] { flex:1; min-width:220px; }
.filters input, .filters select { background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12); color:inherit; border-radius:8px;
  padding:7px 10px; font-size:13px; }

.limit-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px; margin:10px 0; }
.limit-grid label { display:block; font-size:12px; opacity:.7; }
.limit-grid input { width:100%; margin-top:4px; background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12); color:inherit; border-radius:8px;
  padding:7px 10px; font-size:13px; }
.limit-actions { display:flex; gap:8px; flex-wrap:wrap; margin-top:6px; }
.limit-actions button { padding:8px 14px; font-size:13px; border-radius:8px;
  border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.06);
  color:inherit; cursor:pointer; }
.limit-actions button:hover { background:rgba(255,255,255,.12); }
.limit-actions button.danger { border-color:rgba(248,113,113,.4); color:#fca5a5; }
.limit-actions button.danger:hover { background:rgba(248,113,113,.15); }
.limit-actions button:disabled { opacity:.5; cursor:default; }

body[data-theme="light"] .filters input, body[data-theme="light"] .filters select,
body[data-theme="light"] .limit-grid input { background:#fff; border-color:rgba(0,0,0,.15); }
body[data-theme="light"] .limit-actions button { background:#f1f3f7; border-color:rgba(0,0,0,.15); }

.mt-12 { margin-top:12px; }
.mt-18 { margin-top:18px; }
.capitalize { text-transform:capitalize; }
