:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --paper: #f6f7f9;
  --panel: #ffffff;
  --line: #dfe4ea;
  --dark: #08111f;
  --dark-2: #101a2b;
  --red: #d71920;
  --red-dark: #af1016;
  --green: #0f9f6e;
  --blue: #1f5eff;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.13);
  --soft-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
  --premium-glow: 0 18px 60px rgba(215, 25, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

::selection {
  background: rgba(215, 25, 32, 0.16);
}

:target {
  scroll-margin-top: 124px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6b70);
  transform: scaleX(0);
  transform-origin: left;
}

.risk-strip {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  background: #151c2a;
  color: #d7dce4;
  font-size: 0.76rem;
  text-align: center;
}

.utility-bar {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 76px);
  background: #f0f2f5;
  color: #4d5a6b;
  font-size: 0.82rem;
  font-weight: 700;
}

.utility-bar nav {
  display: flex;
  gap: 22px;
}

.utility-bar a {
  transition: color 0.18s ease;
}

.utility-bar a:hover {
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 clamp(18px, 5vw, 76px);
  border-bottom: 1px solid #d8dee6;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  transition:
    box-shadow 0.22s ease,
    background 0.22s ease,
    min-height 0.22s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.brand,
.nav-links,
.header-actions,
.hero-actions,
.trust-row,
.platform-tabs,
.final-cta-inner,
.site-footer,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  transition: height 0.22s ease;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.brand-word {
  color: #111827;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.muted-word {
  color: #485568;
  font-weight: 700;
}

.brand-divider {
  width: 2px;
  height: 24px;
  background: var(--red);
}

.nav-links {
  justify-content: center;
  gap: clamp(16px, 2.7vw, 36px);
  color: #2e3b4e;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  gap: 14px;
}

.login-link {
  color: #202938;
  font-size: 0.93rem;
  font-weight: 800;
  transition: color 0.18s ease;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 18px;
  font-size: 0.91rem;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.button,
.login-link,
.nav-links a,
.platform-tabs a,
.platform-card a,
.resource-grid a,
.site-footer a,
summary {
  outline-offset: 4px;
}

.button:focus-visible,
.login-link:focus-visible,
.nav-links a:focus-visible,
.platform-tabs a:focus-visible,
.platform-card a:focus-visible,
.resource-grid a:focus-visible,
.site-footer a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.28);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 18px rgba(17, 24, 39, 0.12);
}

.button-large {
  min-height: 54px;
  padding: 0 28px;
}

.button-red {
  background: var(--red);
  color: white;
}

.button-red:hover {
  background: var(--red-dark);
}

.button-outline {
  border-color: #b7c0cc;
  background: white;
  color: var(--ink);
}

.button-dark {
  background: var(--dark);
  color: white;
}

.section-shell {
  padding-right: clamp(18px, 5vw, 76px);
  padding-left: clamp(18px, 5vw, 76px);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  min-height: calc(100vh - 142px);
  padding-top: clamp(56px, 7vw, 86px);
  padding-bottom: clamp(54px, 7vw, 86px);
  background:
    radial-gradient(circle at 78% 24%, rgba(215, 25, 32, 0.08), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(31, 94, 255, 0.08), transparent 24%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 42%, #f1f3f6 100%),
    var(--paper);
}

.hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 0;
  left: clamp(18px, 5vw, 76px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.14), transparent);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  font-size: 4.2rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.24rem;
}

.lead {
  margin: 24px 0 0;
  color: #3f4f63;
  font-size: 1.13rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #344054;
  font-size: 0.91rem;
  font-weight: 800;
}

.trust-row span {
  position: relative;
  padding-left: 17px;
}

.trust-row span::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 28px;
}

.hero-visual::before {
  position: absolute;
  inset: 13% 3% 8% 8%;
  z-index: -1;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 242, 247, 0.9)),
    radial-gradient(circle, rgba(215, 25, 32, 0.12), transparent 56%);
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.1);
  content: "";
}

.hero-visual::after {
  position: absolute;
  right: 9%;
  bottom: 13%;
  z-index: -1;
  width: 42%;
  height: 12px;
  background: rgba(17, 24, 39, 0.14);
  filter: blur(14px);
  content: "";
}

.platform-device-image {
  display: block;
  width: min(100%, 680px);
  height: auto;
  filter: drop-shadow(0 26px 30px rgba(17, 24, 39, 0.18));
  transform: translateY(4px);
  animation: device-float 5.8s ease-in-out infinite;
}

.platform-tabs {
  position: sticky;
  top: 64px;
  z-index: 40;
  justify-content: center;
  gap: clamp(10px, 3vw, 40px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  padding: 0 18px;
  backdrop-filter: blur(12px);
}

.platform-tabs a {
  position: relative;
  padding: 18px 0;
  color: #344054;
  font-weight: 800;
  transition: color 0.18s ease;
}

.platform-tabs a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.platform-tabs a:hover,
.platform-tabs a.is-active {
  color: var(--red);
}

.platform-tabs a:hover::after,
.platform-tabs a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.split-section,
.markets-section,
.trust-section {
  padding-top: clamp(76px, 9vw, 118px);
  padding-bottom: clamp(76px, 9vw, 118px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  background: white;
}

.section-copy {
  max-width: 720px;
}

.section-copy p:not(.eyebrow),
.feature-stack > p:not(.eyebrow),
.final-cta p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.platform-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.platform-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  background: white;
  padding: 28px;
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 25, 32, 0.28);
  box-shadow: var(--premium-glow), 0 22px 48px rgba(17, 24, 39, 0.12);
}

.card-label {
  color: var(--red);
  font-weight: 900;
}

.platform-card h3 {
  margin-top: 58px;
}

.platform-card p {
  color: var(--muted);
}

.platform-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
}

.tools-section {
  overflow: hidden;
  background: var(--dark);
  color: white;
}

.tools-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: center;
  padding-top: clamp(78px, 10vw, 128px);
  padding-bottom: clamp(78px, 10vw, 128px);
}

.platform-screen {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: var(--dark-2);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
  padding: 24px;
}

.screen-header,
.position-table div {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.7fr;
  gap: 18px;
  align-items: center;
}

.screen-header {
  margin-bottom: 18px;
  color: #cfd8e3;
  font-weight: 800;
}

.screen-header strong {
  justify-self: end;
  color: #35d28f;
}

.position-table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.position-table div {
  min-height: 56px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #aeb8c6;
}

.position-table div:first-child {
  background: rgba(255, 255, 255, 0.05);
  color: #7f8ea3;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.position-table strong {
  color: white;
}

.position-table em {
  color: #35d28f;
  font-style: normal;
  font-weight: 900;
}

.position-table .loss em {
  color: #ff7c7c;
}

.analysis-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 12px;
  height: 170px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.analysis-panel span {
  display: block;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--red), #81242d);
}

.analysis-panel span:nth-child(1) { height: 42%; }
.analysis-panel span:nth-child(2) { height: 78%; }
.analysis-panel span:nth-child(3) { height: 56%; }
.analysis-panel span:nth-child(4) { height: 92%; }

.feature-stack h2 {
  max-width: 700px;
}

.feature-stack > p:not(.eyebrow),
.feature-stack article p {
  color: #c5ceda;
}

.feature-stack article {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
}

.markets-section {
  background: #f6f7f9;
}

.market-table {
  max-width: 1080px;
  margin: 46px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--soft-shadow);
}

.market-table > div {
  display: grid;
  grid-template-columns: 0.72fr 1.1fr 1.18fr;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s ease;
}

.market-table > div:not(.market-head):hover {
  background: #fbfcfd;
}

.market-table > div:last-child {
  border-bottom: 0;
}

.market-head {
  min-height: 54px !important;
  background: #eef1f5;
  color: #637083;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-table strong {
  color: var(--ink);
}

.market-table span {
  color: var(--muted);
}

.account-section {
  background: white;
}

.execution-section {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0.74)),
    var(--dark);
  color: white;
}

.execution-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding-top: clamp(70px, 8vw, 106px);
  padding-bottom: clamp(70px, 8vw, 106px);
}

.execution-copy p:not(.eyebrow) {
  color: #c5ceda;
  font-size: 1.05rem;
}

.execution-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.execution-stats article {
  min-height: 190px;
  background: rgba(255, 255, 255, 0.07);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.execution-stats article::after {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.execution-stats strong {
  display: block;
  color: white;
  font-size: 3.6rem;
  line-height: 1;
}

.execution-stats span {
  display: block;
  margin-top: 18px;
  color: #c5ceda;
  font-weight: 700;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding-top: clamp(78px, 9vw, 118px);
  padding-bottom: clamp(78px, 9vw, 118px);
}

.steps-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  transition: transform 0.18s ease;
}

.steps-list li:hover {
  transform: translateX(4px);
}

.steps-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 900;
}

.steps-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-section {
  background: #eef1f5;
}

.trust-panel {
  border: 1px solid var(--line);
  background: white;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--soft-shadow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.trust-grid article {
  min-height: 190px;
  background: white;
  padding: 24px;
  transition: background 0.18s ease;
}

.trust-grid article:hover {
  background: #fbfcfd;
}

.trust-grid p {
  color: var(--muted);
}

.learning-section {
  background: white;
}

.learning-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding-top: clamp(76px, 9vw, 118px);
  padding-bottom: clamp(76px, 9vw, 118px);
}

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

.resource-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #f8fafc;
  padding: 26px;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.resource-grid article:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: var(--premium-glow), var(--soft-shadow);
}

.resource-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-grid h3 {
  margin-top: 40px;
}

.resource-grid p {
  color: var(--muted);
}

.resource-grid a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
}

.faq-section {
  background: #f6f7f9;
  padding-top: clamp(74px, 8vw, 108px);
  padding-bottom: clamp(74px, 8vw, 108px);
}

.faq-list {
  max-width: 920px;
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: white;
  transition: background 0.18s ease;
}

.faq-list details:hover {
  background: #fbfcfd;
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 26px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  color: var(--red);
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
}

.final-cta {
  background: var(--red);
  color: white;
}

.final-cta-inner {
  justify-content: space-between;
  gap: 30px;
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: clamp(58px, 7vw, 86px);
}

.final-cta .eyebrow {
  color: white;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  justify-content: space-between;
  gap: 30px;
  padding: 30px clamp(18px, 5vw, 76px);
  background: #050b14;
  color: #c4cfdd;
}

.site-footer div {
  max-width: 760px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: white;
}

.site-footer p {
  margin: 0;
  color: #9ca8b9;
  font-size: 0.9rem;
}

.site-footer nav {
  flex-wrap: wrap;
  gap: 18px;
  color: white;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.32s;
}

@keyframes device-float {
  from {
    transform: translateY(4px);
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .platform-device-image {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .tools-layout,
  .account-layout,
  .execution-layout,
  .learning-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .platform-screen {
    max-width: 840px;
  }

  .platform-card-grid,
  .trust-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 4rem;
  }
}

@media (max-width: 780px) {
  body .utility-bar {
    display: none !important;
  }

  .risk-strip {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
    padding: 6px 16px;
    font-size: 0.7rem;
    text-align: left;
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    min-height: 58px;
    padding: 0 16px;
  }

  .site-header.is-scrolled {
    min-height: 56px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    height: 30px;
  }

  .brand-word {
    font-size: 1.05rem;
  }

  .brand-divider {
    height: 19px;
  }

  .header-actions {
    gap: 9px;
  }

  .login-link {
    display: none;
  }

  .header-actions .button {
    min-height: 38px;
    min-width: 108px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 34px;
    background:
      linear-gradient(180deg, #ffffff 0%, #ffffff 54%, #eef1f5 100%),
      var(--paper);
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 2.24rem;
  }

  .lead {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button-large {
    min-height: 48px;
    padding: 0 18px;
  }

  .trust-row {
    gap: 10px 14px;
    margin-top: 20px;
    font-size: 0.82rem;
  }

  .hero-visual {
    min-height: 282px;
    margin-top: 18px;
    padding: 0 0 12px;
  }

  .hero-visual::before {
    inset: 16% 0 5% 0;
  }

  .hero-visual::after {
    right: 15%;
    bottom: 8%;
    width: 60%;
  }

  .platform-device-image {
    width: min(100%, 360px);
    filter: drop-shadow(0 20px 24px rgba(17, 24, 39, 0.16));
  }

  .final-cta-inner,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .platform-tabs {
    top: 56px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .platform-tabs::-webkit-scrollbar {
    display: none;
  }

  .platform-tabs a {
    flex: 0 0 auto;
    padding: 14px 0;
  }

  .platform-card-grid,
  .trust-grid,
  .resource-grid,
  .execution-stats {
    grid-template-columns: 1fr;
  }

  .market-table {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .market-table > div {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: auto;
    border: 1px solid var(--line);
    background: white;
    padding: 18px;
  }

  .market-head {
    display: none !important;
  }

  .screen-header,
  .position-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .screen-header strong {
    justify-self: start;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }
}
