:root {
  --bg: #050812;
  --bg-soft: #0a0e1e;
  --surface: rgba(14, 19, 42, 0.72);
  --surface-strong: #11172f;
  --line: rgba(151, 167, 215, 0.14);
  --text: #f7f8ff;
  --muted: #a4acc4;
  --blue: #5068ff;
  --cyan: #0bd2ed;
  --violet: #8f5cff;
  --green: #22d7a3;
  --red: #ff7185;
  --gold: #f4c55f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(91, 45, 174, 0.22), transparent 27rem),
    radial-gradient(circle at 88% 17%, rgba(0, 157, 175, 0.15), transparent 29rem),
    var(--bg);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.page-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.25;
}
.page-glow--violet { background: var(--violet); left: -14rem; top: 28rem; }
.page-glow--cyan { background: var(--cyan); right: -16rem; top: 58rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 28px;
}
.nav-shell {
  position: relative;
  max-width: 1210px;
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 14px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(6, 9, 28, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.04);
}
.brand { display: flex; align-items: center; gap: 11px; font: 800 19px "Manrope", sans-serif; white-space: nowrap; }
.brand > span:last-child > span { color: #7788ff; }
.brand--image { flex: 0 0 auto; gap: 0; }
.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: 100%;
  object-fit: contain;
}
.brand-mark {
  width: 38px;
  height: 38px;
  position: relative;
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 3px;
  padding: 9px;
  overflow: hidden;
  border-radius: 11px;
  background: linear-gradient(145deg, #3c4cff, #0ed5ed);
  box-shadow: 0 8px 24px rgba(32, 136, 255, 0.3);
}
.brand-mark::after { content: ""; position: absolute; inset: 1px; border: 1px solid rgba(255, 255, 255, 0.23); border-radius: 10px; }
.brand-mark i { width: 4px; position: relative; z-index: 1; border-radius: 3px; background: #06102a; }
.brand-mark i:nth-child(1) { height: 9px; }
.brand-mark i:nth-child(2) { height: 17px; }
.brand-mark i:nth-child(3) { height: 13px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 12px;
  color: #b5bdd1;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255, 255, 255, 0.055); }
.home-account-menu { position: relative; padding: 10px 0; margin: -10px 0; }
.home-account-menu__trigger { display: inline-flex; align-items: center; gap: 6px; }
.home-account-menu__arrow {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}
.account-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  width: 236px;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transform-origin: top left;
  overflow: hidden;
  border: 1px solid #dfe3eb;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(25, 34, 55, 0.19);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.account-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}
.home-account-menu:hover .account-dropdown,
.home-account-menu:focus-within .account-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.home-account-menu:hover .home-account-menu__arrow,
.home-account-menu:focus-within .home-account-menu__arrow { transform: rotate(180deg); }
.nav-links .account-dropdown__item {
  position: relative;
  min-height: 60px;
  padding: 7px 14px 7px 8px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  border: 0;
  border-right: 3px solid #3157ff;
  border-radius: 0;
  color: #151515;
  background: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.16s ease, padding-left 0.16s ease;
}
.nav-links .account-dropdown__item + .account-dropdown__item { margin-top: 0; border-top: 1px solid #e4e7ed; }
.nav-links .account-dropdown__item--history { border-right-color: #28d75d; }
.nav-links .account-dropdown__item--withdraw { border-right-color: #009999; }
.nav-links .account-dropdown__item--support { border-right-color: #ff46ba; }
.nav-links .account-dropdown__item:hover,
.nav-links .account-dropdown__item:focus-visible {
  color: #000;
  background: #f2f5fa;
  padding-left: 11px;
}
.account-menu-photo {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.account-menu-photo img { width: 30px; height: 30px; display: block; border-radius: 50%; object-fit: cover; }
.account-menu-photo i {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 17px;
  height: 17px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #3157ff;
}
.account-menu-photo i::before,
.account-menu-photo i::after { content: ""; position: absolute; top: 6px; left: 3px; width: 7px; height: 2px; border-radius: 2px; background: #fff; }
.account-menu-photo i::after { transform: rotate(90deg); }
.account-menu-photo--account i::before {
  top: 3px;
  left: 4px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  background: transparent;
  transform: rotate(45deg);
}
.account-menu-photo--account i::after { display: none; }
.account-menu-photo--history i { background: #b13cff; }
.account-menu-photo--history i::before {
  content: "$";
  top: -1px;
  left: 2px;
  width: 10px;
  height: 14px;
  color: #fff;
  background: transparent;
  font: 700 11px/14px Arial, sans-serif;
  text-align: center;
}
.account-menu-photo--history i::after { display: none; }
.account-menu-photo--withdraw i { background: #009999; }
.account-menu-photo--withdraw i::before {
  content: "$";
  top: -1px;
  left: 2px;
  width: 10px;
  height: 14px;
  color: #fff;
  background: transparent;
  font: 700 11px/14px Arial, sans-serif;
  text-align: center;
}
.account-menu-photo--withdraw i::after { display: none; }
.account-menu-photo--support i { background: #16c94f; }
.header-signout-link {
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  color: #b5bdd1;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}
.header-signout-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.055);
}
.header-signout-link:disabled {
  opacity: 0.65;
  cursor: wait;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  color: white;
  background: linear-gradient(120deg, #4052f4, #09c9e7);
  box-shadow: 0 12px 34px rgba(28, 135, 255, 0.3);
}
.button--primary:hover { box-shadow: 0 15px 40px rgba(28, 135, 255, 0.42); }
.button--ghost { color: white; border-color: rgba(158, 172, 216, 0.2); background: rgba(255, 255, 255, 0.025); }
.button--ghost:hover { border-color: rgba(111, 135, 255, 0.52); }
.button--large { min-height: 58px; padding: 0 27px; border-radius: 18px; font-size: 16px; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); border-radius: 13px; }
.menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; background: white; border-radius: 2px; transition: 0.2s; }
.mobile-menu { display: none; }
.auth-hidden { display: none !important; }
.mobile-auth-button {
  width: 100%;
  padding: 12px 15px;
  border: 0;
  color: #b8c0d4;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}
.mobile-account-menu { margin: 4px 0; overflow: hidden; border: 1px solid #dfe3eb; border-radius: 2px; background: #fff; }
.mobile-menu .mobile-account-menu__item { min-height: 62px; padding: 8px 13px 8px 9px; display: flex; align-items: center; gap: 9px; border-radius: 0; border-right: 3px solid #3157ff; color: #151515; background: #fff; font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 600; }
.mobile-menu .mobile-account-menu__item:nth-child(2) { border-top: 1px solid #e4e7ed; border-right-color: #009999; }
.mobile-menu .mobile-account-menu__item:nth-child(3) { border-top: 1px solid #e4e7ed; border-right-color: #28d75d; }
.mobile-menu .mobile-account-menu__item:nth-child(4) { border-top: 1px solid #e4e7ed; border-right-color: #ff46ba; }
.mobile-menu .mobile-account-menu__item:hover { color: #000; background: #f2f5fa; }
.mobile-account-menu .account-menu-photo { flex: 0 0 30px; }

.section-grid { position: relative; overflow: hidden; }
.section-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(117, 135, 181, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 135, 181, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero { min-height: 900px; padding: 155px 28px 0; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 24% 23%, rgba(95, 48, 187, 0.26), transparent 30%),
    radial-gradient(circle at 75% 26%, rgba(0, 143, 163, 0.18), transparent 29%),
    linear-gradient(140deg, #0b061e 0%, #071023 45%, #02161d 100%);
}
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
  background-image:
    radial-gradient(circle, var(--gold) 0 1px, transparent 1.5px),
    radial-gradient(circle, #7d64ff 0 1.3px, transparent 1.8px),
    radial-gradient(circle, #26d3ec 0 1px, transparent 1.5px);
  background-position: 8% 18%, 19% 42%, 73% 16%;
  background-size: 241px 267px, 337px 313px, 391px 359px;
  animation: star-drift 18s linear infinite;
}
@keyframes star-drift { to { background-position: 249px 285px, 356px 355px, 464px 375px; } }
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 72px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  width: fit-content;
  max-width: 100%;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8ca1ff;
  border: 1px solid rgba(91, 115, 255, 0.25);
  background: rgba(54, 68, 153, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: #3c7dff; box-shadow: 0 0 15px #3c7dff; }
.eyebrow b { color: #4e5e89; }
h1, h2, h3 { margin-top: 0; font-family: "Manrope", sans-serif; }
h1 {
  margin: 30px 0 24px;
  max-width: 680px;
  font-size: clamp(52px, 5.7vw, 78px);
  line-height: 1.04;
  letter-spacing: -4px;
}
h1 span {
  color: transparent;
  background: linear-gradient(100deg, #5d70ff 10%, #11d3e7 75%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-copy > p { max-width: 615px; color: #aeb6cb; font-size: 18px; line-height: 1.75; }
.hero-actions { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 13px; }
.play-dot { width: 7px; height: 7px; border-radius: 50%; background: white; box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.06); }
.trust-row { margin-top: 34px; display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 34px;
  height: 34px;
  margin-left: -7px;
  display: grid;
  place-items: center;
  border: 2px solid #0c1021;
  border-radius: 50%;
  color: #dce0ff;
  background: linear-gradient(145deg, #262f66, #0e99b2);
  font-size: 9px;
  font-weight: 700;
}
.avatar-stack span:first-child { margin-left: 0; }
.stars-rating { color: #f6bd46; font-size: 11px; letter-spacing: 2px; }
.trust-row p { margin: 3px 0 0; color: #7f8aa8; font-size: 11px; }

.terminal-wrap { position: relative; min-height: 535px; display: flex; align-items: center; }
.terminal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 21px;
  overflow: hidden;
  border: 1px solid rgba(118, 144, 215, 0.22);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(17, 24, 51, 0.97), rgba(7, 13, 30, 0.97));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45), 0 0 60px rgba(58, 77, 232, 0.12), inset 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
}
.terminal-card::after { content: ""; position: absolute; width: 200px; height: 200px; right: -80px; top: -80px; background: #0bcbe4; filter: blur(95px); opacity: 0.08; }
.terminal-topbar, .terminal-topbar > div, .terminal-price, .terminal-price > div, .position-row { display: flex; align-items: center; justify-content: space-between; }
.terminal-topbar > div { justify-content: flex-start; gap: 10px; }
.asset-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 11px; background: linear-gradient(145deg, #4862ff, #17bad2); font-weight: 800; }
.terminal-topbar div div { display: flex; flex-direction: column; }
.terminal-topbar strong { font-size: 13px; }
.terminal-topbar small, .position-row span { color: #6f7b9b; font-size: 9px; margin-top: 3px; }
.live-pill { padding: 6px 9px; color: #54dcb7; background: rgba(34, 215, 163, 0.08); border-radius: 999px; font-size: 9px; }
.live-pill i { display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.terminal-price { margin: 22px 0 8px; }
.terminal-price > div:first-child { gap: 9px; }
.terminal-price strong { font: 700 27px "Manrope", sans-serif; }
.terminal-price span { color: var(--green); font-size: 10px; }
.timeframes { gap: 3px; padding: 3px; border-radius: 8px; background: rgba(255, 255, 255, 0.035); }
.timeframes button { padding: 5px 7px; color: #7984a1; border: 0; border-radius: 5px; background: transparent; font-size: 8px; }
.timeframes button.active { color: white; background: #4055de; }
.chart-wrap { height: 225px; position: relative; margin: 8px -4px 12px; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 100% 45px, 62px 100%; }
#hero-chart { width: 100%; height: 100%; }
.chart-label { position: absolute; right: 2px; color: #66718e; font-size: 8px; }
.chart-label--high { top: 5px; }
.chart-label--low { bottom: 5px; }
.quote-row { display: grid; grid-template-columns: 1fr 35px 1fr; gap: 7px; align-items: center; }
.quote-row button { min-height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; border-radius: 11px; font-size: 9px; font-weight: 700; }
.quote-row button strong { font-size: 13px; }
.sell-quote { color: #ff8b9b; border: 1px solid rgba(255, 113, 133, 0.22); background: rgba(255, 113, 133, 0.07); }
.buy-quote { color: #50dfba; border: 1px solid rgba(34, 215, 163, 0.22); background: rgba(34, 215, 163, 0.07); }
.spread { color: #7b86a0; text-align: center; font-size: 8px; }
.spread small { font-size: 7px; }
.position-row { margin-top: 14px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255, 255, 255, 0.02); }
.position-row > div { display: flex; flex-direction: column; }
.position-row > div:last-child { text-align: right; }
.position-row strong { margin-top: 3px; font-size: 11px; }
.position-row > div:last-child strong { color: var(--green); }
.orbit { position: absolute; border: 1px solid rgba(99, 117, 255, 0.1); border-radius: 50%; }
.orbit--one { width: 560px; height: 560px; right: -95px; animation: spin 22s linear infinite; }
.orbit--two { width: 410px; height: 410px; right: -20px; border-color: rgba(14, 204, 229, 0.08); animation: spin 16s linear reverse infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.float-chip { position: absolute; z-index: 3; min-width: 148px; padding: 11px 13px; display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 13px; background: rgba(12, 18, 39, 0.92); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); backdrop-filter: blur(14px); animation: float 4s ease-in-out infinite; }
.float-chip > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; font-size: 13px; }
.float-chip div { display: flex; flex-direction: column; }
.float-chip small { color: #7985a2; font-size: 8px; }
.float-chip strong { margin-top: 2px; font-size: 11px; }
.float-chip--profit { right: -38px; top: 65px; }
.float-chip--profit > span { color: var(--green); background: rgba(34, 215, 163, 0.1); }
.float-chip--profit strong { color: var(--green); }
.float-chip--verified { left: -28px; bottom: 38px; animation-delay: -2s; }
.float-chip--verified > span { color: #b09bff; background: rgba(143, 92, 255, 0.12); }
@keyframes float { 50% { transform: translateY(-8px); } }

.stats-bar {
  max-width: 1180px;
  margin: 55px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stats-bar div { min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding-left: 35px; border-right: 1px solid var(--line); }
.stats-bar div:first-child { padding-left: 0; }
.stats-bar div:last-child { border-right: 0; }
.stats-bar strong { color: transparent; background: linear-gradient(120deg, #7b85ff, #10c9df); background-clip: text; -webkit-background-clip: text; font: 700 28px "Manrope", sans-serif; }
.stats-bar span { margin-top: 5px; color: #77829d; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.ticker { height: 58px; display: flex; align-items: center; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #080b19; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 30px; animation: ticker 27s linear infinite; white-space: nowrap; }
.ticker span { color: #8b94ab; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; }
.ticker i { width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(145deg, var(--violet), var(--cyan)); box-shadow: 0 0 10px #5c73ff; }
@keyframes ticker { to { transform: translateX(-50%); } }

.content-section, .accounts-section, .cta-section { padding: 120px 28px; }
.content-section { max-width: 1236px; margin: 0 auto; }
.section-heading { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-kicker { color: #8294ff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; }
.section-heading h2, .cta-card h2 { margin: 15px 0 15px; font-size: clamp(34px, 4vw, 52px); line-height: 1.1; letter-spacing: -2px; }
.section-heading p, .cta-card > p { margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card, .account-card, .step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 24, 50, 0.78), rgba(7, 11, 25, 0.85));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}
.feature-card { min-height: 360px; padding: 32px; border-radius: 23px; }
.feature-card::before, .account-card::before, .step-card::before { content: ""; position: absolute; width: 180px; height: 180px; right: -100px; top: -100px; background: var(--blue); filter: blur(75px); opacity: 0.11; }
.feature-card--wide { grid-column: 1 / -1; min-height: 415px; display: grid; grid-template-columns: 52px 1fr 0.9fr; align-items: center; gap: 24px; }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; align-self: start; border-radius: 14px; color: #80ecff; background: linear-gradient(145deg, rgba(73, 87, 255, 0.2), rgba(10, 207, 229, 0.13)); border: 1px solid rgba(88, 111, 255, 0.17); font-size: 22px; }
.feature-icon--violet { color: #c1a8ff; }
.feature-icon--gold { color: var(--gold); }
.card-kicker { color: #7687ef; font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; }
.feature-card h3 { margin: 11px 0 12px; font-size: 25px; letter-spacing: -0.8px; }
.feature-card p { color: #929bb2; line-height: 1.7; font-size: 14px; }
.check-list { margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px 18px; list-style: none; }
.check-list li { color: #bdc4d6; font-size: 11px; }
.check-list li::before { content: "✓"; margin-right: 7px; color: var(--green); }
.mini-market { padding: 10px; border: 1px solid var(--line); border-radius: 17px; background: rgba(2, 6, 17, 0.6); transform: rotate(1.5deg); }
.mini-market > div { min-height: 51px; padding: 0 10px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(151, 167, 215, 0.08); }
.mini-market > div:last-child { border-bottom: 0; }
.mini-market-head { color: #76819d; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.mini-market-head small { color: var(--green); }
.mini-market strong { font-size: 11px; }
.mini-market span { color: #aeb6c9; font-size: 10px; }
.mini-market b { margin-left: 8px; color: var(--green); }
.mini-market em { margin-left: 8px; color: var(--red); font-style: normal; }
.progress-card { margin-top: 35px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(2, 6, 17, 0.45); }
.progress-card > div:first-child { display: flex; justify-content: space-between; color: #aab2c6; font-size: 11px; }
.progress-card strong { color: white; }
.progress-track { height: 7px; margin: 12px 0 10px; overflow: hidden; border-radius: 10px; background: #171d36; }
.progress-track i { display: block; width: 64%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--cyan)); box-shadow: 0 0 15px var(--blue); }
.progress-card small { color: var(--green); font-size: 9px; }
.security-badge { margin-top: 40px; padding: 17px; display: flex; align-items: center; gap: 13px; border: 1px solid rgba(34, 215, 163, 0.13); border-radius: 14px; background: rgba(34, 215, 163, 0.05); }
.security-badge > span { width: 37px; height: 37px; display: grid; place-items: center; color: #061b16; background: var(--green); border-radius: 50%; font-weight: 900; }
.security-badge div { display: flex; flex-direction: column; }
.security-badge strong { font-size: 12px; }
.security-badge small { margin-top: 3px; color: #6f8f88; font-size: 9px; }

.accounts-section { background: linear-gradient(180deg, transparent, rgba(24, 16, 56, 0.25), transparent); }
.accounts-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 50%, rgba(86, 57, 189, 0.13), transparent 40%); }
.account-grid { max-width: 1120px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.account-card { min-height: 430px; padding: 30px; display: flex; flex-direction: column; border-radius: 24px; }
.account-card--featured { border-color: rgba(86, 111, 255, 0.45); transform: translateY(-13px); box-shadow: 0 25px 70px rgba(51, 48, 176, 0.17), inset 0 1px rgba(255, 255, 255, 0.05); }
.popular-badge { position: absolute; top: 0; right: 28px; padding: 7px 10px; border-radius: 0 0 8px 8px; background: linear-gradient(100deg, var(--blue), var(--cyan)); font-size: 8px; font-weight: 800; letter-spacing: 0.1em; }
.account-top { display: flex; flex-direction: column; }
.account-top span { font: 700 20px "Manrope", sans-serif; }
.account-top small, .account-label { margin-top: 4px; color: #78839f; font-size: 10px; }
.account-balance { margin-top: 38px; font: 800 39px "Manrope", sans-serif; letter-spacing: -1.5px; }
.account-card ul { margin: 30px 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.account-card li { margin: 15px 0; color: #aab2c5; font-size: 12px; }
.account-card li::before { content: "✓"; color: var(--green); margin-right: 9px; }
.account-card .button { width: 100%; margin-top: auto; }

/* Seven-tier account showcase */
.account-grid {
  width: min(100%, 1120px);
  max-width: none;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  perspective: 2000px;
}
.account-card {
  min-height: 305px;
  padding: 32px 28px;
  overflow: hidden;
  border-color: rgba(151, 167, 215, 0.15);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(7, 11, 25, 0.76);
  backdrop-filter: blur(20px);
  cursor: pointer;
  transform: none;
  transform-style: preserve-3d;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}
.account-card::before {
  width: 210px;
  height: 210px;
  right: -115px;
  top: -115px;
  background: linear-gradient(145deg, var(--cyan), var(--blue));
  filter: blur(78px);
  opacity: 0.08;
  transition: opacity 0.32s ease;
}
.account-card:hover {
  transform: translateY(-12px);
  border-color: rgba(86, 145, 255, 0.68);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015)),
    rgba(7, 11, 25, 0.82);
  box-shadow:
    0 0 42px rgba(60, 130, 255, 0.24),
    0 22px 52px rgba(0, 0, 0, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.055);
}
.account-card:hover::before { opacity: 0.2; }
.account-card--featured {
  border-color: rgba(86, 145, 255, 0.72);
  box-shadow:
    0 0 40px rgba(60, 130, 255, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.055);
}
.popular-badge {
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  box-shadow: 0 7px 22px rgba(60, 130, 255, 0.25);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.account-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(145deg, #6f55e8, #5068ff);
  box-shadow: 0 0 28px rgba(97, 81, 236, 0.28);
  font: 800 25px "Manrope", sans-serif;
  transform: translateZ(30px);
}
.account-card--featured .account-icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 30px rgba(60, 130, 255, 0.3);
}
.account-icon--quantum {
  background: linear-gradient(145deg, #b452ff, #5b61ff);
}
.account-name {
  position: relative;
  z-index: 1;
  color: #f3f5ff;
  font: 800 22px "Manrope", sans-serif;
}
.account-description {
  position: relative;
  z-index: 1;
  margin-top: 5px;
  color: #7e89a5;
  font-size: 14px;
}
.account-balance {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: white;
  font: 800 38px "Manrope", sans-serif;
  letter-spacing: -1.5px;
}
.account-price {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  border-top: 1px dashed rgba(151, 167, 215, 0.18);
}
.account-price strong {
  color: #d8b4ff;
  font: 800 25px "Manrope", sans-serif;
}
.account-price span {
  color: #737f9b;
  font-size: 13px;
}
.steps-section { padding-top: 80px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { min-height: 275px; padding: 28px; border-radius: 20px; }
.step-card > span { color: #4e5b7e; font: 700 12px "Manrope", sans-serif; }
.step-icon { width: 48px; height: 48px; margin: 35px 0 23px; display: grid; place-items: center; color: #a5b2ff; border: 1px solid rgba(87, 107, 255, 0.18); border-radius: 14px; background: rgba(76, 91, 227, 0.1); font-size: 22px; }
.step-card h3 { margin-bottom: 10px; font-size: 18px; }
.step-card p { margin: 0; color: #8d97af; font-size: 13px; line-height: 1.65; }
.faq-section { padding-top: 80px; }
.faq-list { max-width: 850px; margin: auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 75px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font: 600 16px "Manrope", sans-serif; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #6d7ef2; font-size: 24px; transition: 0.2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { margin: -4px 0 24px; max-width: 700px; color: #9099ae; line-height: 1.7; }
.cta-section { padding-top: 60px; }
.cta-card {
  position: relative;
  max-width: 1180px;
  min-height: 430px;
  margin: auto;
  padding: 75px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(107, 130, 255, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(rgba(104, 124, 188, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 124, 188, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 35%, rgba(66, 78, 227, 0.28), transparent 40%),
    linear-gradient(145deg, #100b2b, #061821);
  background-size: 60px 60px, 60px 60px, auto, auto;
}
.cta-card h2 { font-size: clamp(36px, 5vw, 58px); }
.cta-card > p { max-width: 600px; }
.cta-card > div:last-child { margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cta-orb { position: absolute; width: 360px; height: 360px; border: 1px solid rgba(100, 121, 255, 0.1); border-radius: 50%; box-shadow: 0 0 80px rgba(88, 72, 242, 0.08); }

.site-footer { padding: 30px 28px 0; border-top: 1px solid var(--line); background: #040610; }
.footer-grid { max-width: 1180px; margin: auto; padding: 55px 0; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 45px; }
.footer-brand p { max-width: 310px; color: #747f9a; font-size: 13px; line-height: 1.7; }
.footer-brand .brand-logo { height: 64px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 13px; }
.footer-grid strong { margin-bottom: 5px; color: #d8dcea; font-size: 12px; }
.footer-grid a:not(.brand) { color: #7e88a0; font-size: 12px; }
.footer-grid a:hover { color: white; }
.footer-bottom { max-width: 1180px; min-height: 70px; margin: auto; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); color: #59637c; font-size: 10px; }

.modal-open { overflow: hidden; }
.signup-modal[hidden], .welcome-celebration[hidden] { display: none; }
.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 24px;
  display: grid;
  place-items: center;
}
.signup-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(72, 88, 232, 0.2), transparent 35rem),
    rgba(2, 4, 14, 0.86);
  backdrop-filter: blur(14px);
  animation: signup-fade-in 0.25s ease both;
}
.signup-dialog {
  position: relative;
  width: min(100%, 570px);
  max-height: calc(100vh - 48px);
  padding: 34px;
  overflow-y: auto;
  border: 1px solid rgba(126, 143, 216, 0.2);
  border-radius: 27px;
  background:
    radial-gradient(circle at 90% 0%, rgba(12, 210, 237, 0.1), transparent 18rem),
    radial-gradient(circle at 0% 20%, rgba(143, 92, 255, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(15, 20, 45, 0.99), rgba(7, 11, 28, 0.99));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55), inset 0 1px rgba(255, 255, 255, 0.045);
  animation: signup-dialog-in 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.signin-dialog { width: min(100%, 500px); }
.signup-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(119, 135, 181, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 135, 181, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.signup-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #9ca6c0;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}
.signup-close:hover { color: white; border-color: rgba(111, 135, 255, 0.45); }
.signup-brand {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #dfe4f8;
  font: 700 13px "Manrope", sans-serif;
}
.signup-brand .brand-mark { width: 33px; height: 33px; }
.signup-brand > span:last-child > span { color: #7788ff; }
.signup-dialog h2 {
  margin: 9px 0 8px;
  font: 800 clamp(28px, 5vw, 38px) "Manrope", sans-serif;
  letter-spacing: -1.4px;
}
.signup-intro { margin: 0 0 25px; color: #8c96b1; font-size: 13px; line-height: 1.6; }
.signup-name-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.signup-field { margin-bottom: 13px; display: block; }
.signup-field > span {
  margin: 0 0 7px 2px;
  display: block;
  color: #bdc5da;
  font-size: 10px;
  font-weight: 700;
}
.signup-field input {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  border: 1px solid rgba(151, 167, 215, 0.14);
  border-radius: 12px;
  outline: 0;
  color: white;
  background: rgba(5, 9, 24, 0.62);
  font: 500 13px "DM Sans", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.signup-field input::placeholder { color: #4f5a74; }
.signup-field input:focus {
  border-color: rgba(58, 164, 255, 0.72);
  background: rgba(7, 12, 31, 0.9);
  box-shadow: 0 0 0 3px rgba(47, 132, 255, 0.1);
}
.signup-field input[aria-invalid="true"] {
  border-color: rgba(255, 113, 133, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 113, 133, 0.08);
}
.password-hint { margin: 7px 2px 0; display: block; color: #5e6a84; font-size: 8px; line-height: 1.4; }
.field-error {
  min-height: 13px;
  margin: 5px 2px 0;
  display: block;
  color: #ff8fa0;
  font-size: 9px;
  line-height: 1.35;
}
.signup-form-error {
  min-height: 18px;
  margin: 0 0 6px;
  color: #ff8fa0;
  font-size: 10px;
  text-align: center;
}
.signup-submit { width: 100%; min-height: 53px; margin-top: 2px; border: 0; }
.signup-submit i {
  width: 15px;
  height: 15px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: signup-spin 0.7s linear infinite;
}
.signup-submit.is-loading i { display: block; }
.signup-submit.is-loading { pointer-events: none; opacity: 0.78; }
.signup-login-copy { margin: 18px 0 0; color: #717c98; font-size: 10px; text-align: center; }
.signup-login-copy a { color: #8ba5ff; font-weight: 700; }

.welcome-celebration {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(26, 37, 94, 0.55), rgba(3, 6, 18, 0.18) 45%, transparent 70%);
  animation: welcome-overlay 5s ease both;
}
.welcome-particles { position: absolute; inset: 0; overflow: hidden; }
.welcome-particle {
  position: absolute;
  top: -12vh;
  left: var(--left);
  width: var(--size);
  height: calc(var(--size) * 1.7);
  border-radius: var(--radius);
  opacity: 0;
  background: var(--color);
  box-shadow: 0 0 14px color-mix(in srgb, var(--color), transparent 35%);
  animation: particle-fall var(--duration) var(--delay) cubic-bezier(0.2, 0.55, 0.55, 1) forwards;
}
.welcome-message {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 36px), 480px);
  padding: 36px 25px;
  border: 1px solid rgba(114, 139, 255, 0.3);
  border-radius: 27px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 210, 229, 0.18), transparent 55%),
    rgba(8, 13, 33, 0.94);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5), 0 0 70px rgba(58, 97, 255, 0.15);
  backdrop-filter: blur(18px);
  animation: welcome-card-in 0.7s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.welcome-check {
  width: 54px;
  height: 54px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #022118;
  background: linear-gradient(145deg, #22d7a3, #0bd2ed);
  box-shadow: 0 0 35px rgba(34, 215, 163, 0.35);
  font-size: 25px;
  font-weight: 900;
}
.welcome-message small { display: block; color: #70d8c0; font-size: 9px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.welcome-message strong { margin-top: 9px; display: block; font: 800 clamp(28px, 6vw, 42px) "Manrope", sans-serif; letter-spacing: -1.3px; }
.welcome-message p { margin: 9px 0 0; color: #8e99b5; font-size: 13px; }

@keyframes signup-fade-in { from { opacity: 0; } }
@keyframes signup-dialog-in { from { opacity: 0; transform: translateY(24px) scale(0.97); } }
@keyframes signup-spin { to { transform: rotate(360deg); } }
@keyframes welcome-overlay { 0%, 86% { opacity: 1; } 100% { opacity: 0; } }
@keyframes welcome-card-in { from { opacity: 0; transform: translateY(20px) scale(0.94); } }
@keyframes particle-fall {
  0% { opacity: 0; transform: translate3d(0, -8vh, 0) rotate(0deg); }
  8% { opacity: 1; }
  100% { opacity: 0.95; transform: translate3d(var(--drift), 118vh, 0) rotate(var(--rotation)); }
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal--delay { transition-delay: 0.12s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .menu-button { display: block; }
  .mobile-menu {
    position: absolute;
    inset: calc(100% + 10px) 0 auto;
    padding: 12px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 10, 28, 0.97);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 12px 15px; color: #b8c0d4; border-radius: 9px; font-size: 14px; }
  .mobile-menu a:hover, .mobile-auth-button:hover { color: white; background: rgba(255, 255, 255, 0.05); border-radius: 9px; }
  .hero-inner { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .terminal-wrap { max-width: 570px; width: 100%; margin: auto; }
  .stats-bar { margin-top: 15px; }
  .feature-card--wide { grid-template-columns: 52px 1fr; }
  .feature-card--wide .mini-market { grid-column: 1 / -1; }
  .account-grid {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .account-card--featured { transform: none; }
}

@media (max-width: 700px) {
  .site-header { padding: 9px; }
  .nav-shell { min-height: 61px; padding: 7px 8px 7px 13px; border-radius: 20px; }
  .brand { font-size: 17px; }
  .site-header .brand-logo { height: 43px; }
  .footer-brand .brand-logo { height: 56px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 10px; }
  .login-button { display: none; }
  .nav-actions .button--primary { min-height: 42px; padding: 0 16px; font-size: 12px; }
  .hero { min-height: auto; padding: 120px 20px 0; }
  .hero-inner { gap: 34px; }
  .hero-copy { text-align: left; }
  .eyebrow { width: 100%; justify-content: flex-start; padding: 11px 13px; border-radius: 20px; font-size: 11px; line-height: 1.4; }
  h1 { margin: 26px 0 20px; font-size: clamp(39px, 12vw, 54px); line-height: 1.08; letter-spacing: -2.4px; }
  .hero-copy > p { font-size: 16px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button--large { width: 100%; }
  .trust-row { justify-content: flex-start; }
  .terminal-wrap { min-height: 440px; margin-top: 10px; }
  .terminal-card { padding: 14px; border-radius: 20px; transform: none; }
  .terminal-price strong { font-size: 22px; }
  .chart-wrap { height: 175px; }
  .float-chip--profit { right: -3px; top: 20px; }
  .float-chip--verified { left: -3px; bottom: 6px; }
  .position-row { margin-bottom: 40px; }
  .orbit { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar div { min-height: 95px; padding-left: 18px; border-bottom: 1px solid var(--line); }
  .stats-bar div:first-child { padding-left: 18px; }
  .stats-bar div:nth-child(2) { border-right: 0; }
  .stats-bar strong { font-size: 23px; }
  .content-section, .accounts-section, .cta-section { padding: 85px 20px; }
  .section-heading { margin-bottom: 36px; text-align: left; }
  .section-heading h2 { font-size: 34px; letter-spacing: -1.5px; }
  .section-heading p { font-size: 14px; }
  .account-grid {
    max-width: 520px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .account-card { min-height: 285px; padding: 26px 23px; }
  .feature-grid, .steps-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; padding: 25px; }
  .feature-icon { margin-bottom: 4px; }
  .mini-market { transform: none; }
  .steps-section, .faq-section { padding-top: 40px; }
  .cta-card { min-height: 470px; padding: 55px 22px; }
  .cta-card > div:last-child { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 20px 0; align-items: flex-start; flex-direction: column; gap: 8px; }
  .signup-modal { padding: 10px; align-items: end; }
  .signup-dialog { width: 100%; max-height: calc(100vh - 20px); padding: 28px 19px 22px; border-radius: 24px; }
  .signup-brand { margin-bottom: 19px; }
  .signup-name-grid { grid-template-columns: 1fr; gap: 0; }
  .signup-field { margin-bottom: 9px; }
}

@media (max-width: 430px) {
  .nav-actions .button--primary { padding: 0 13px; }
  .menu-button { width: 42px; }
  .hero { padding-left: 16px; padding-right: 16px; }
  .eyebrow b, .eyebrow b + * { display: none; }
  .terminal-topbar .live-pill { display: none; }
  .timeframes button:nth-child(-n + 2) { display: none; }
  .float-chip { min-width: 136px; }
  .footer-grid { gap: 35px 25px; }
}

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

/* Readability pass: supporting copy is larger while heading sizes stay intact. */
.nav-links a,
.mobile-menu a,
.button {
  font-size: 15px;
}

.hero-copy > p {
  font-size: 19px;
}

.trust-row p,
.stats-bar span,
.ticker span,
.section-kicker,
.check-list li,
.account-card li,
.footer-grid strong,
.footer-grid a:not(.brand) {
  font-size: 13px;
}

.terminal-topbar strong,
.quote-row button strong,
.float-chip > span,
.security-badge strong {
  font-size: 14px;
}

.terminal-topbar small,
.position-row span,
.live-pill,
.terminal-price span,
.timeframes button,
.chart-label,
.quote-row button,
.spread,
.spread small,
.float-chip small,
.card-kicker,
.mini-market-head,
.progress-card small,
.security-badge small,
.popular-badge,
.account-top small,
.account-label {
  font-size: 11px;
}

.position-row strong,
.float-chip strong,
.mini-market strong,
.mini-market span,
.progress-card > div:first-child {
  font-size: 12px;
}

.section-heading p,
.cta-card > p {
  font-size: 17px;
}

.feature-card p {
  font-size: 16px;
}

.step-card p,
.footer-brand p,
.signup-intro,
.welcome-message p {
  font-size: 15px;
}

.footer-bottom,
.signup-form label,
.password-hint,
.form-message,
.signup-login-copy,
.welcome-message small {
  font-size: 12px;
}

@media (max-width: 760px) {
  .nav-actions .button--primary {
    font-size: 14px;
  }

  .eyebrow {
    font-size: 13px;
  }

  .hero-copy > p,
  .section-heading p {
    font-size: 16px;
  }
}
