@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #07100c;
  --bg-elevated: #0d1712;
  --surface: #13211b;
  --surface-2: #1a2a23;
  --surface-3: #23372e;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f8f6;
  --muted: #a7b3ab;
  --muted-strong: #c9d0cb;
  --brand: #18b26b;
  --brand-deep: #0d8d53;
  --accent: #dfe7e1;
  --gold: #ffd166;
  --danger: #ef8f79;
  --paper: #f5f6f3;
  --paper-line: rgba(7, 16, 12, 0.08);
  --paper-text: #111714;
  --paper-muted: #5d665f;
  --shadow: 0 24px 60px rgba(4, 9, 7, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.is-ready .site-header,
body.is-ready .risk-banner,
body.is-ready .broker-hero-copy,
body.is-ready .trading-terminal,
body.is-ready .content-hero > *,
body.is-ready .section-heading,
body.is-ready .feature-grid article,
body.is-ready .markets-grid article,
body.is-ready .platform-points article,
body.is-ready .stats-strip article,
body.is-ready .step-grid article,
body.is-ready .legal-card,
body.is-ready .reference-card,
body.is-ready .detail-card,
body.is-ready .faq-item,
body.is-ready .process-grid article,
body.is-ready .glossary-grid article,
body.is-ready .hours-grid article,
body.is-ready .plan-grid article,
body.is-ready .account-grid article,
body.is-ready .split-section > * {
  opacity: 0;
  transform: translateY(26px);
}

body.is-ready .site-header,
body.is-ready .risk-banner {
  animation: reveal-soft 700ms ease forwards;
}

body.is-ready .broker-hero-copy,
body.is-ready .content-hero > *:first-child {
  animation: reveal-soft 760ms ease 80ms forwards;
}

body.is-ready .trading-terminal,
body.is-ready .content-hero > *:last-child {
  animation: reveal-soft 820ms ease 140ms forwards;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(24, 178, 107, 0.12), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(255, 209, 102, 0.06), transparent 18%),
    linear-gradient(180deg, #07100c 0%, #0b1410 42%, #0d1712 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 18px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease,
    transform 220ms ease;
}

.site-header.is-solid,
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 16, 12, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 40px rgba(4, 9, 7, 0.22);
}

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

.brand-logo {
  width: 40px;
  flex: 0 0 auto;
}

.brand-name {
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
}

.nav a,
.footer-links a,
.market-menu a {
  color: var(--muted-strong);
  transition:
    color 150ms ease,
    background 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.nav a {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav a.is-active {
  color: var(--text);
  position: relative;
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.header-actions {
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.header-action {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.01);
  color: var(--text);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.header-action.ghost,
.button.secondary.dark {
  background: transparent;
  color: var(--text);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: transparent;
  color: var(--text);
}

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

.page-main {
  padding-top: 82px;
}

.risk-banner {
  position: sticky;
  top: 82px;
  z-index: 20;
  padding: 10px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 209, 102, 0.22);
  background: rgba(12, 20, 16, 0.96);
  color: #ffd98e;
  font-size: 13px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.risk-banner strong {
  color: #fff1c0;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brand);
}

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

h1,
h2,
h3,
h4,
h5,
.brand-name {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h4 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.content-hero,
.broker-hero {
  display: grid;
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  padding: clamp(54px, 7vw, 88px) 0;
}

.content-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
}

.content-hero img,
.split-section img,
.reference-card img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.content-hero img {
  aspect-ratio: 16 / 10;
}

.content-hero p,
.contact-layout p,
.legal-copy p {
  font-size: 18px;
}

.broker-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  padding-top: clamp(56px, 8vw, 110px);
  padding-bottom: clamp(56px, 7vw, 84px);
}

.broker-hero-copy {
  position: relative;
}

.broker-hero-copy h1 {
  max-width: 720px;
}

.broker-hero-copy p {
  max-width: 640px;
  font-size: 19px;
}

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

.button {
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--brand), #26cf80);
  color: #04140b;
  box-shadow: 0 16px 34px rgba(24, 178, 107, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(24, 178, 107, 0.28);
}

.button.secondary.dark {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.button.secondary.dark:hover,
.button.secondary.dark:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.hero-metrics,
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric-card,
.trust-row span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.metric-card strong {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.metric-card span,
.trust-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.trading-terminal,
.calendar-panel,
.hours-grid article,
.markets-grid article,
.detail-card,
.reference-card,
.legal-card,
.feature-grid article,
.account-grid article,
.plan-grid article,
.faq-item,
.process-grid article,
.glossary-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--bg-elevated);
  box-shadow: var(--shadow);
}

.trading-terminal {
  overflow: hidden;
  animation: terminal-float 7s ease-in-out infinite;
}

.terminal-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 13px;
}

.terminal-top strong {
  color: var(--text);
}

.terminal-widget {
  position: relative;
  min-height: 440px;
  height: clamp(440px, 50vw, 580px);
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(24, 178, 107, 0.14), transparent 22%),
    linear-gradient(145deg, #08110d 0%, #13201a 100%);
}

.tradingview-widget-container,
.tradingview-widget-container__widget {
  width: 100%;
  height: 100%;
}

.terminal-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.quote-card {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 16, 12, 0.72);
}

.quote-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.quote-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 24px;
}

.quote-card small {
  color: var(--brand);
  font-weight: 700;
}

.market-strip-band,
.image-band,
.risk-disclaimer {
  position: relative;
}

.market-strip-band {
  padding: 0 0 clamp(36px, 6vw, 54px);
}

.instrument-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 0;
}

.instrument-row a {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.instrument-row a:hover,
.instrument-row a:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transform: translateY(-2px);
}

.broker-section,
.legal-section,
.image-band,
.reference-band,
.calendar-shell {
  padding: clamp(72px, 8vw, 108px) 0;
}

.broker-section {
  position: relative;
  z-index: 0;
}

.broker-section::before {
  content: "";
  position: absolute;
  top: -36px;
  right: calc(50% - 50vw);
  bottom: -36px;
  left: calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 22% 18%, rgba(24, 178, 107, 0.1), transparent 18%),
    linear-gradient(180deg, #0a130f 0%, #101915 100%);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  font-size: 18px;
}

.feature-grid,
.account-grid,
.plan-grid,
.faq-layout,
.process-grid,
.glossary-grid,
.hours-grid,
.markets-grid,
.detail-grid,
.reference-grid,
.legal-grid,
.platform-points,
.step-grid,
.stats-strip {
  display: grid;
  gap: 18px;
}

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

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

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

.plan-grid,
.plan-grid.detailed {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-grid article,
.account-grid article,
.plan-grid article,
.faq-item,
.process-grid article,
.glossary-grid article,
.hours-grid article,
.markets-grid article,
.detail-card,
.reference-card,
.legal-card {
  padding: 28px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.feature-grid p,
.account-grid p,
.plan-grid p,
.faq-item p,
.process-grid p,
.glossary-grid p,
.hours-grid p,
.markets-grid p,
.detail-card p,
.reference-card p,
.legal-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-grid article h3::before,
.detail-card h3::before,
.reference-card h3::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #ffffff);
}

.account-grid span,
.plan-grid span,
.hours-grid span,
.glossary-grid span,
.process-grid span,
.markets-grid span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-grid h3,
.hours-grid h2 {
  margin: 10px 0 12px;
}

.plan-grid ul,
.detail-card ul,
.legal-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.plan-grid li,
.detail-card li,
.legal-card li {
  margin-bottom: 8px;
}

.platform-showcase,
.stats-panel {
  padding: clamp(70px, 8vw, 106px) 0;
  background:
    radial-gradient(circle at top left, rgba(24, 178, 107, 0.1), transparent 24%),
    linear-gradient(180deg, #101915 0%, #17221d 100%);
}

.spacex-promo {
  padding: clamp(72px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(24, 178, 107, 0.14), transparent 18%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.05), transparent 16%),
    linear-gradient(180deg, #050907 0%, #0c1511 100%);
}

.bot-offer {
  padding: clamp(72px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(30, 167, 255, 0.08), transparent 18%),
    radial-gradient(circle at 18% 18%, rgba(24, 178, 107, 0.1), transparent 20%),
    linear-gradient(180deg, #0e1814 0%, #131f1a 100%);
}

.bot-offer__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.bot-offer__copy p:not(.eyebrow),
.bot-offer__card p,
.bot-offer__list {
  color: var(--muted-strong);
}

.bot-offer__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.bot-offer__points article,
.bot-offer__card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(10, 16, 13, 0.72);
  backdrop-filter: blur(10px);
}

.bot-offer__points article {
  padding: 20px;
}

.bot-offer__points strong,
.bot-offer__card h3 {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.bot-offer__points strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.bot-offer__points span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.bot-offer__card {
  padding: 28px;
  box-shadow: var(--shadow);
}

.bot-offer__label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(24, 178, 107, 0.12);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bot-offer__card h3 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.95;
}

.bot-offer__list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.bot-offer__list li + li {
  margin-top: 10px;
}

.spacex-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.spacex-copy p:not(.eyebrow):not(.spacex-note) {
  max-width: 640px;
  font-size: 18px;
  color: var(--muted-strong);
}

.spacex-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.spacex-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(24, 178, 107, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #07100c;
  box-shadow: var(--shadow);
}

.spacex-scene {
  position: absolute;
  inset: 28px 32px 28px 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 20%, rgba(24, 178, 107, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01)),
    rgba(6, 10, 8, 0.72);
  z-index: 1;
}

.spacex-grid,
.spacex-aurora,
.planet-horizon,
.planet-haze,
.telemetry,
.orbital-ring,
.orbital-pulse,
.launch-column,
.launch-flare,
.mission-rocket {
  position: absolute;
}

.spacex-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), #000 18%, #000 82%, transparent);
  opacity: 0.22;
}

.spacex-aurora {
  inset: -10% -12% auto auto;
  width: 74%;
  height: 78%;
  background:
    radial-gradient(circle at 36% 40%, rgba(24, 178, 107, 0.22), transparent 24%),
    radial-gradient(circle at 62% 58%, rgba(30, 167, 255, 0.16), transparent 28%);
  filter: blur(10px);
  animation: aurora-drift 12s ease-in-out infinite alternate;
}

.planet-horizon {
  right: -18%;
  bottom: -40%;
  width: 96%;
  height: 72%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(24, 178, 107, 0.18), transparent 28%),
    radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(25, 38, 32, 0.95), rgba(7, 12, 10, 0.98));
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.05),
    0 -20px 40px rgba(24, 178, 107, 0.08);
}

.planet-haze {
  left: 14%;
  right: 6%;
  bottom: 16%;
  height: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(24, 178, 107, 0.22), transparent 60%);
  filter: blur(22px);
  opacity: 0.7;
}

.telemetry {
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(24, 178, 107, 0), rgba(24, 178, 107, 0.7), rgba(24, 178, 107, 0));
  opacity: 0.55;
}

.telemetry-one {
  top: 20%;
  left: 20%;
  height: 46%;
  animation: telemetry-flicker 3.4s ease-in-out infinite;
}

.telemetry-two {
  top: 12%;
  left: 54%;
  height: 36%;
  animation: telemetry-flicker 2.8s ease-in-out infinite 0.4s;
}

.telemetry-three {
  top: 28%;
  right: 20%;
  height: 30%;
  animation: telemetry-flicker 3.8s ease-in-out infinite 0.8s;
}

.orbital-ring {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbital-ring-a {
  inset: 12% 16% 14% 18%;
}

.orbital-ring-b {
  inset: 22% 24% 22% 28%;
  border-color: rgba(24, 178, 107, 0.22);
}

.orbital-pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #7ff0bf 55%, rgba(24, 178, 107, 0.2) 100%);
  box-shadow: 0 0 24px rgba(24, 178, 107, 0.45);
}

.orbital-pulse-a {
  animation: orbit-a 9s linear infinite;
}

.orbital-pulse-b {
  width: 10px;
  height: 10px;
  animation: orbit-b 7s linear infinite reverse;
}

.launch-column {
  left: 50%;
  bottom: 14%;
  width: 18px;
  height: 38%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(131, 247, 194, 0.24), rgba(255, 255, 255, 0));
  filter: blur(6px);
  transform: translateX(-50%);
  opacity: 0.5;
}

.launch-flare {
  left: 50%;
  bottom: 11%;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.82) 0%, rgba(24, 178, 107, 0.22) 38%, rgba(24, 178, 107, 0) 72%);
  transform: translateX(-50%);
  animation: flare-pulse 2.8s ease-in-out infinite;
}

.mission-rocket {
  left: 52%;
  bottom: 28%;
  width: 128px;
  height: 98px;
  transform: translateX(-50%) rotate(-18deg);
  animation: craft-drift 6.4s ease-in-out infinite;
}

.mission-rocket__body {
  position: absolute;
  inset: 28px 44px 28px 44px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7f9f6 0%, #dbe1dc 54%, #aeb8b1 100%);
  clip-path: polygon(18% 0, 82% 0, 100% 50%, 82% 100%, 18% 100%, 0 50%);
  box-shadow: inset -8px 0 16px rgba(7, 16, 12, 0.12);
}

.mission-rocket__body::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 18px;
  height: 12px;
  background: linear-gradient(90deg, #eef3ef 0%, #bbc4be 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.mission-rocket__body::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 12px;
  height: 8px;
  border-radius: 8px 0 0 8px;
  background: #8a968f;
  transform: translateY(-50%);
}

.mission-rocket__window {
  position: absolute;
  top: 43px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d9fff0, #34ca7e 70%);
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(52, 202, 126, 0.35);
  z-index: 1;
}

.mission-rocket__fin {
  position: absolute;
  top: 18px;
  width: 34px;
  height: 62px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(127, 240, 191, 0.18) 0%, rgba(176, 188, 181, 0.92) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.mission-rocket__fin--left {
  left: 2px;
}

.mission-rocket__fin--right {
  right: 2px;
}

.mission-rocket__trail {
  position: absolute;
  left: -26px;
  top: 42px;
  width: 68px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46, 199, 121, 0), rgba(243, 255, 248, 0.92), rgba(46, 199, 121, 0.36), rgba(46, 199, 121, 0));
  filter: blur(2px);
  transform: rotate(-8deg);
  animation: trail-breathe 1.6s ease-in-out infinite;
}

.starfield,
.starfield::before,
.starfield::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(24, 178, 107, 0.65) 0 1px, transparent 1.5px);
  background-size: 180px 180px, 240px 240px, 320px 320px;
  background-position: 18px 24px, 80px 120px, 140px 40px;
  opacity: 0.42;
}

.starfield::before {
  animation: drift-stars 18s linear infinite;
}

.starfield::after {
  opacity: 0.26;
  animation: drift-stars 26s linear infinite reverse;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.orbit-one {
  inset: 56px 74px 112px 74px;
  animation: slow-spin 22s linear infinite;
}

.orbit-two {
  inset: 112px 118px 166px 118px;
  border-color: rgba(24, 178, 107, 0.24);
  animation: slow-spin 16s linear infinite reverse;
}

.launch-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: min(280px, calc(100% - 68px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(8, 14, 11, 0.8);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.launch-card span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-card strong {
  display: block;
  margin: 10px 0 12px;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.95;
}

.launch-card p {
  margin-bottom: 0;
  color: var(--muted-strong);
}

.rocket-illustration {
  position: absolute;
  right: 34px;
  top: 36px;
  width: min(420px, 78%);
  height: auto;
  animation: rocket-hover 5.5s ease-in-out infinite;
  z-index: 2;
}

.rocket-group {
  transform-origin: 270px 190px;
  transform: rotate(16deg);
}

.rocket-glow {
  animation: pulse-trail 4s ease-in-out infinite;
}

@keyframes aurora-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate3d(-16px, 14px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes telemetry-flicker {
  0%,
  100% {
    opacity: 0.22;
    transform: scaleY(0.86);
  }

  50% {
    opacity: 0.72;
    transform: scaleY(1.06);
  }
}

@keyframes orbit-a {
  0% {
    top: 16%;
    left: 72%;
  }

  25% {
    top: 34%;
    left: 82%;
  }

  50% {
    top: 62%;
    left: 66%;
  }

  75% {
    top: 44%;
    left: 34%;
  }

  100% {
    top: 16%;
    left: 72%;
  }
}

@keyframes orbit-b {
  0% {
    top: 30%;
    left: 64%;
  }

  25% {
    top: 18%;
    left: 40%;
  }

  50% {
    top: 40%;
    left: 24%;
  }

  75% {
    top: 62%;
    left: 46%;
  }

  100% {
    top: 30%;
    left: 64%;
  }
}

@keyframes flare-pulse {
  0%,
  100% {
    opacity: 0.48;
    transform: translateX(-50%) scale(0.9);
  }

  50% {
    opacity: 0.92;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes craft-drift {
  0%,
  100% {
    transform: translateX(-50%) translateY(10px) rotate(-18deg);
  }

  50% {
    transform: translateX(-50%) translateY(-14px) rotate(-12deg);
  }
}

@keyframes trail-breathe {
  0%,
  100% {
    opacity: 0.6;
    transform: rotate(-8deg) scaleX(0.88);
  }

  50% {
    opacity: 0.95;
    transform: rotate(-8deg) scaleX(1.08);
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}

.split-section img {
  aspect-ratio: 4 / 3;
}

.split-section p:not(.eyebrow) {
  font-size: 18px;
}

.platform-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.platform-points article,
.step-grid article,
.stats-strip article,
.terminal-quotes .quote-card {
  box-shadow: none;
}

.platform-points article,
.step-grid article,
.stats-strip article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.platform-points h3,
.step-grid h3,
.stats-strip strong {
  color: var(--text);
}

.broker-section .section-heading h2,
.broker-section .section-heading p:not(.eyebrow),
.step-grid article p {
  color: var(--muted-strong);
}

.broker-section .feature-grid article,
.broker-section .markets-grid article,
.step-grid article,
.stats-strip article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(10, 16, 13, 0.72);
  backdrop-filter: blur(8px);
}

.market-strip-band {
  position: relative;
  z-index: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(11, 17, 14, 0.94), rgba(13, 22, 17, 0.9));
}

.risk-disclaimer {
  position: relative;
  overflow: hidden;
}

.risk-disclaimer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 28%, rgba(255, 209, 102, 0.08), transparent 18%),
    linear-gradient(180deg, #0d1612 0%, #0a120f 100%);
  z-index: 0;
}

.risk-disclaimer .section-shell {
  position: relative;
  z-index: 1;
}

.stats-panel .section-heading,
.stats-panel .section-heading p,
.image-band .section-heading p,
.image-band p,
.image-band h2,
.platform-showcase p,
.platform-showcase h2 {
  color: var(--text);
}

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

.stats-strip article strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.stats-strip article span {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.markets-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 8px;
}

.markets-grid h2 {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 30px;
}

.markets-grid a,
.reference-card a,
.risk-disclaimer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--text);
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
}

.markets-grid a::after,
.reference-card a::after,
.risk-disclaimer a::after {
  content: "\2192";
}

.content-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding-bottom: clamp(72px, 8vw, 110px);
}

.market-menu {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--paper-line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(7, 16, 12, 0.08);
}

.market-menu h2 {
  margin-bottom: 10px;
  color: var(--paper-text);
  font-size: 20px;
}

.market-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--paper-muted);
  font-size: 15px;
  font-weight: 700;
}

.market-menu a:hover,
.market-menu a.is-active {
  background: rgba(24, 178, 107, 0.12);
  color: #0d5a36;
}

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

.detail-card.full {
  grid-column: 1 / -1;
}

.reference-band,
.legal-section:nth-child(even) {
  background: transparent;
}

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

.reference-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
}

.legal-grid {
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

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

.legal-grid > div:first-child {
  position: sticky;
  top: 118px;
}

.legal-grid > div:first-child h2,
.legal-grid > div:first-child p {
  color: var(--text);
}

.legal-grid > div:first-child .eyebrow {
  color: var(--brand);
}

.legal-section {
  padding: clamp(56px, 7vw, 84px) 0;
  background: #08110d;
}

.legal-section .legal-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #13211b;
}

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

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

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

.calendar-panel {
  overflow: hidden;
}

.calendar-widget {
  height: min(720px, 76vh);
  min-height: 560px;
  background: #08111e;
}

.image-band {
  background:
    radial-gradient(circle at top right, rgba(24, 178, 107, 0.12), transparent 22%),
    linear-gradient(180deg, #0f1914 0%, #0a120e 100%);
}

.risk-disclaimer {
  padding: clamp(74px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at top right, rgba(24, 178, 107, 0.12), transparent 22%),
    linear-gradient(180deg, #07100c 0%, #101a14 100%);
}

.risk-disclaimer .section-shell {
  max-width: 980px;
}

.risk-disclaimer p:not(.eyebrow) {
  color: var(--muted-strong);
  font-size: 18px;
}

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

.step-grid article span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 195, 137, 0.18), rgba(30, 167, 255, 0.18));
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.site-footer {
  padding: clamp(54px, 7vw, 76px) 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 16% 14%, rgba(24, 178, 107, 0.08), transparent 18%),
    linear-gradient(180deg, #050a08 0%, #070d0b 100%);
  color: var(--muted);
  font-size: 14px;
}

.site-footer__shell {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(160px, 0.72fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.site-footer__brand p,
.site-footer__column a,
.site-footer__middle p,
.site-footer__risk {
  color: var(--muted);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.site-footer__logo img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.site-footer__logo span,
.site-footer__column h3 {
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
}

.site-footer__logo span {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.site-footer__brand p {
  max-width: 360px;
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.8;
}

.site-footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__tags span,
.site-footer__toplink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.site-footer__column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer__column h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.site-footer__column a,
.site-footer__mini-nav a {
  transition:
    color 150ms ease,
    transform 150ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible,
.site-footer__mini-nav a:hover,
.site-footer__mini-nav a:focus-visible,
.site-footer__toplink:hover,
.site-footer__toplink:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.site-footer__middle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__middle p {
  margin: 0;
}

.site-footer__mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer__toplink {
  padding-inline: 16px;
  justify-self: end;
}

.site-footer__risk {
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.7;
}

.site-footer__risk strong {
  color: var(--text);
}

.motion-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.motion-enabled .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid article:hover,
.account-grid article:hover,
.plan-grid article:hover,
.markets-grid article:hover,
.detail-card:hover,
.reference-card:hover,
.legal-card:hover,
.faq-item:hover,
.process-grid article:hover,
.glossary-grid article:hover,
.hours-grid article:hover,
.metric-card:hover,
.trust-row span:hover,
.platform-points article:hover,
.step-grid article:hover,
.stats-strip article:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 178, 107, 0.34);
  box-shadow: 0 22px 46px rgba(4, 9, 7, 0.14);
}

.markets-grid a:hover,
.reference-card a:hover,
.risk-disclaimer a:hover {
  transform: translateX(3px);
}

@keyframes reveal-soft {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes terminal-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes rocket-hover {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-trail {
  0%,
  100% {
    opacity: 0.45;
    transform: rotate(18deg) scale(0.96);
  }

  50% {
    opacity: 0.78;
    transform: rotate(18deg) scale(1.06);
  }
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes drift-stars {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible,
  body.is-ready .site-header,
  body.is-ready .risk-banner,
  body.is-ready .broker-hero-copy,
  body.is-ready .trading-terminal,
  body.is-ready .content-hero > *,
  body.is-ready .section-heading,
  body.is-ready .feature-grid article,
  body.is-ready .markets-grid article,
  body.is-ready .platform-points article,
  body.is-ready .stats-strip article,
  body.is-ready .step-grid article,
  body.is-ready .legal-card,
  body.is-ready .reference-card,
  body.is-ready .detail-card,
  body.is-ready .faq-item,
  body.is-ready .process-grid article,
  body.is-ready .glossary-grid article,
  body.is-ready .hours-grid article,
  body.is-ready .plan-grid article,
  body.is-ready .account-grid article,
  body.is-ready .split-section > * {
    opacity: 1;
    transform: none;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.error-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 42px;
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
}

.error-page p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-header {
    gap: 14px;
    padding-inline: 18px;
  }

  .brand-logo {
    width: 36px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav {
    gap: 16px;
  }

  .nav a,
  .header-action,
  .button {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(24, 178, 107, 0.14), transparent 22%),
      linear-gradient(180deg, #07100c 0%, #101913 40%, #0d1712 100%);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav {
    position: absolute;
    inset: 82px 18px auto 18px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7, 16, 12, 0.98);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .site-header.is-open .nav a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .header-actions {
    position: absolute;
    inset: auto 18px auto 18px;
    top: calc(82px + 220px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .broker-hero,
  .content-hero,
  .split-section,
  .spacex-layout,
  .bot-offer__layout,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-copy {
    grid-template-columns: 1fr;
  }

  .legal-grid > div:first-child {
    position: static;
  }

  .hero-metrics,
  .trust-row,
  .feature-grid,
  .feature-grid.three,
  .account-grid,
  .plan-grid,
  .plan-grid.detailed,
  .platform-points,
  .stats-strip,
  .bot-offer__points,
  .markets-grid,
  .reference-grid,
  .detail-grid,
  .faq-layout,
  .glossary-grid,
  .hours-grid,
  .process-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-menu {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-menu h2,
  .detail-card.full {
    grid-column: 1 / -1;
  }

  .terminal-widget {
    min-height: 400px;
  }

  .spacex-visual {
    min-height: 440px;
  }

  .spacex-scene {
    inset: 22px 22px 128px 22px;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__middle {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__toplink {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 15px;
  }

  h1 {
    font-size: 44px;
  }

  .content-hero h1,
  .broker-hero-copy h1 {
    font-size: 40px;
  }

  .button,
  .header-action {
    width: 100%;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .trust-row,
  .feature-grid,
  .feature-grid.three,
  .account-grid,
  .plan-grid,
  .plan-grid.detailed,
  .platform-points,
  .stats-strip,
  .bot-offer__points,
  .markets-grid,
  .reference-grid,
  .detail-grid,
  .market-menu,
  .faq-layout,
  .glossary-grid,
  .hours-grid,
  .process-grid,
  .step-grid,
  .terminal-quotes {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__tags,
  .site-footer__mini-nav {
    gap: 10px;
  }

  .site-footer__logo span {
    font-size: 19px;
  }

  .calendar-widget {
    height: 620px;
    min-height: 520px;
  }

  .spacex-scene {
    inset: 16px 16px 138px 16px;
  }

  .launch-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .mission-rocket {
    transform: translateX(-50%) scale(0.9);
  }

  .site-header.is-open .header-actions {
    grid-template-columns: 1fr;
    top: calc(82px + 252px);
  }
}
