:root {
  --ink: #111827;
  --muted: #526174;
  --line: #d7dee8;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --blue: #0878d1;
  --blue-deep: #07579a;
  --cyan: #08a9b7;
  --green: #07865a;
  --red: #cf3f46;
  --yellow: #f0b90b;
  --violet: #7048c9;
  --nav-height: 72px;
  --content: 1180px;
  --shadow: 0 18px 50px rgba(27, 44, 67, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 12px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 8px max(22px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(215, 222, 232, 0.88);
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 180ms ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(26, 43, 65, 0.08); }
.site-brand {
  display: block;
  width: 232px;
  height: 54px;
  flex: 0 0 auto;
}
.site-brand img { display: block; width: 100%; height: 100%; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a {
  color: #354254;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}
.site-nav > a:hover, .site-nav > a:focus-visible { color: var(--blue); }
.site-nav .nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
}
.site-nav .nav-login:hover, .site-nav .nav-login:focus-visible { color: #fff; background: var(--blue-deep); }
.site-nav svg, .button svg { width: 17px; height: 17px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}
.nav-toggle svg { width: 21px; height: 21px; }

.market-hours-notice {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 14px max(22px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid #e4c65b;
  background: #fff8dc;
  color: #3f3308;
}
.market-hours-notice::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--yellow);
}
.market-hours-signal {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #d5ad1b;
  border-radius: 50%;
  background: #fff;
  animation: marketHoursPulse 1.8s ease-in-out infinite;
}
.market-hours-signal span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d94242;
}
.market-hours-copy { min-width: 0; }
.market-hours-label {
  margin: 0 0 2px;
  color: #7a5a00;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.market-hours-copy h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}
.market-hours-schedule {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin-top: 4px;
  color: #6a5716;
  font-size: 12px;
  line-height: 1.4;
}
.market-hours-state {
  min-width: 168px;
  padding: 7px 10px;
  border: 1px solid #d6b641;
  border-radius: 5px;
  background: #fff;
  color: #6a5200;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.3;
  text-align: center;
}
.market-hours-state.is-open {
  border-color: #7bc4a2;
  color: #08643f;
  background: #effbf5;
}
.market-hours-state.is-closed {
  border-color: #e2a5a8;
  color: #9f2930;
  background: #fff4f4;
}

@keyframes marketHoursPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 66, 66, 0.14); }
  50% { box-shadow: 0 0 0 9px rgba(217, 66, 66, 0.07); }
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - var(--nav-height) - 42px));
  overflow: hidden;
  display: grid;
  align-content: start;
  background: #f7f9fc;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: var(--yellow);
}
.hero-mark {
  position: absolute;
  width: min(780px, 60vw);
  right: -100px;
  top: 34px;
  opacity: 0.045;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 44px));
  margin: 64px auto 0;
  text-align: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-copy .eyebrow, .section-heading .eyebrow { justify-content: center; }
.eyebrow > span { width: 28px; height: 3px; background: var(--yellow); }
.hero h1 {
  margin: 0;
  color: #0c68b7;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.98;
  font-weight: 850;
}
.hero-lead {
  max-width: 680px;
  margin: 22px auto 0;
  color: #344255;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 10px 24px rgba(8, 120, 209, 0.2); }
.button-primary:hover { background: var(--blue-deep); }
.button-secondary { color: var(--ink); border-color: #b9c5d3; background: #fff; }
.button-secondary:hover { border-color: var(--blue); color: var(--blue-deep); }
.button-outline { color: var(--blue-deep); border-color: var(--blue); background: transparent; }
.button-light { color: var(--ink); background: #fff; }
.hero-caution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 15px auto 0;
  color: #5d4a08;
  font-size: 12px;
  font-weight: 700;
}
.hero-caution svg { width: 16px; height: 16px; flex: 0 0 auto; }

.market-scene {
  position: relative;
  z-index: 3;
  width: min(1040px, calc(100% - 44px));
  height: 265px;
  margin: 36px auto 0;
  overflow: hidden;
  border: 1px solid #cad3df;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #fff;
  box-shadow: 0 24px 60px rgba(26, 44, 67, 0.15);
}
.scene-topline, .scene-status, .scene-footer { display: flex; align-items: center; }
.scene-topline {
  min-height: 39px;
  gap: 18px;
  padding: 7px 13px;
  border-bottom: 1px solid #e0e5ec;
  color: #647187;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.scene-topline strong { color: var(--ink); font-size: 13px; }
.scene-live { margin-left: auto; display: flex; align-items: center; gap: 6px; color: var(--green); }
.scene-live b { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.scene-status { justify-content: center; gap: 10px; min-height: 32px; color: #fff; font-size: 9px; }
.scene-status span, .scene-status strong { min-width: 112px; padding: 5px 9px; border-radius: 12px; text-align: center; }
.scene-status strong { background: #334155; }
.status-res { background: var(--red); }
.status-sup { background: var(--green); }
.scene-chart {
  position: relative;
  height: 153px;
  overflow: hidden;
  border-top: 1px solid #eff2f6;
  background-color: #fbfcfe;
}
.scene-chart::before, .scene-chart::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 1px solid #edf1f5;
}
.scene-chart::before { top: 33%; }
.scene-chart::after { top: 66%; }
.price-line {
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 1.5px solid;
  z-index: 2;
}
.price-line::after {
  content: attr(data-line);
  position: absolute;
  top: -10px;
  right: 5px;
  min-width: 76px;
  padding: 1px 5px;
  border-radius: 3px;
  color: #fff;
  font-size: 8px;
  font-weight: 850;
  line-height: 17px;
  text-align: center;
}
.magical-put { border-color: rgba(207, 63, 70, 0.84); }
.magical-put::after { background: #c9363e; }
.magical-call { border-color: rgba(7, 134, 90, 0.84); }
.magical-call::after { background: #08774f; }
.p3 { top: 10%; }
.p2 { top: 23%; }
.p1 { top: 36%; }
.c1 { top: 64%; }
.c2 { top: 77%; }
.c3 { top: 90%; }
.scene-current-price {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 1px dashed #475569;
  z-index: 5;
}
.scene-current-price span {
  position: absolute;
  top: -9px;
  left: 7px;
  padding: 1px 5px;
  border-radius: 3px;
  color: #fff;
  background: #475569;
  font-size: 8px;
  font-weight: 850;
  line-height: 16px;
}
.candles { position: absolute; inset: 5px 92px 5px 18px; z-index: 4; }
.candles i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 8px;
  height: var(--body);
  border-radius: 1px;
  transform: translate(-50%, -50%);
}
.candles i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: var(--wick);
  background: currentColor;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.candles .up { color: var(--green); background: var(--green); }
.candles .down { color: var(--red); background: var(--red); }
.scene-footer { min-height: 40px; justify-content: flex-end; gap: 9px; padding: 5px 13px; border-top: 1px solid #e0e5ec; font-size: 10px; }
.scene-footer span { color: #687589; }
.scene-footer strong { margin-right: 10px; }
.scene-footer .positive { color: var(--green); }

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-band > div {
  min-height: 110px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  column-gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}
.trust-band > div:last-child { border-right: 0; }
.trust-band svg { grid-row: 1 / span 2; width: 27px; height: 27px; color: var(--blue); }
.trust-band strong { font-size: 14px; line-height: 1.3; }
.trust-band span { color: var(--muted); font-size: 12px; }

.platform-section, .risk-section, .legal-grid, .legal-contact-strip, .contact-layout, .contact-notice {
  width: min(var(--content), calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
}
.platform-section { padding: 92px 0; }
.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading h2, .access-section h2, .risk-section h2, .page-hero h1, .document-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
}
.section-heading > p:last-child { margin: 15px auto 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-panel {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.product-panel::after { content: ""; position: absolute; right: 0; bottom: 0; width: 42%; height: 7px; background: var(--yellow); }
.report-panel::after { background: var(--cyan); }
.product-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 6px; color: #fff; background: var(--blue); }
.report-panel .product-icon { background: var(--violet); }
.product-icon svg { width: 24px; height: 24px; }
.product-label { margin: 24px 0 4px; color: var(--blue-deep); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.product-panel h3 { margin: 0; font-size: 32px; }
.product-panel > p:not(.product-label) { max-width: 520px; color: var(--muted); }
.product-panel > a { position: absolute; left: 34px; bottom: 31px; display: inline-flex; align-items: center; gap: 7px; color: var(--blue-deep); font-weight: 850; text-decoration: none; }
.product-panel > a svg { width: 17px; height: 17px; }

.access-section {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 58px max(22px, calc((100vw - var(--content)) / 2));
  color: #fff;
  background: #0d304c;
}
.access-copy { max-width: 750px; }
.eyebrow.light { color: #9cddff; }
.access-copy > p:last-child { max-width: 700px; color: #d2dfeb; font-size: 17px; }
.access-actions { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.text-link-light { color: #fff; font-weight: 800; }

.risk-section { padding: 85px 0 95px; }
.risk-heading { display: flex; align-items: flex-start; gap: 18px; }
.risk-heading > svg { width: 42px; height: 42px; color: var(--red); flex: 0 0 auto; }
.risk-copy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; margin: 30px 0; color: var(--muted); }

.site-footer { color: #d9e2ec; background: #101820; }
.footer-main {
  width: min(var(--content), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding: 56px 0 42px;
}
.footer-brand img { width: 225px; height: 52px; object-fit: contain; filter: brightness(1.1); }
.footer-brand p { max-width: 360px; color: #9eafbf; font-size: 13px; }
.footer-main h2 { margin: 0 0 13px; color: #fff; font-size: 13px; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-main a { color: #afbfcc; font-size: 13px; text-decoration: none; overflow-wrap: anywhere; }
.footer-main a:hover { color: #fff; }
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  padding: 15px max(22px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid #2b3640;
  color: #91a1af;
  font-size: 11px;
}
.footer-legal p { margin: 0; }
.footer-legal p:last-child { max-width: 690px; text-align: right; }

.page-hero, .document-hero {
  padding: 78px max(22px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.page-hero > p:last-child, .document-hero > p { max-width: 760px; margin: 16px 0 0; color: var(--muted); font-size: 17px; }
.compact-hero { min-height: 330px; }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: 64px 0; }
.legal-grid > a {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.legal-grid > a:hover { transform: translateY(-2px); border-color: #82b7df; box-shadow: var(--shadow); }
.legal-grid svg { width: 30px; height: 30px; color: var(--blue); }
.legal-grid h2 { margin: 18px 0 5px; font-size: 22px; }
.legal-grid p { margin: 0 0 18px; color: var(--muted); }
.legal-grid span { color: var(--blue-deep); font-size: 13px; font-weight: 850; }
.legal-contact-strip {
  min-height: 155px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 34px;
  border-left: 5px solid var(--yellow);
  background: var(--soft);
}
.legal-contact-strip h2 { margin: 0; font-size: 23px; }
.legal-contact-strip p { margin: 5px 0 0; color: var(--muted); }

.document-hero { min-height: 310px; }
.updated-date { display: inline-block; margin-top: 22px; color: #5d6c7c; font-size: 12px; font-weight: 800; }
.document-layout {
  width: min(var(--content), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 54px;
  padding: 58px 0 90px;
}
.document-aside { position: sticky; top: 100px; align-self: start; display: flex; flex-direction: column; border-left: 2px solid var(--line); }
.document-aside strong { padding: 7px 14px 13px; font-size: 12px; text-transform: uppercase; }
.document-aside a { padding: 7px 14px; color: var(--muted); font-size: 13px; font-weight: 750; text-decoration: none; }
.document-aside a:hover { color: var(--blue-deep); }
.legal-document { min-width: 0; max-width: 820px; }
.legal-document section { padding: 0 0 24px; margin: 0 0 26px; border-bottom: 1px solid #e7ebf0; }
.legal-document section:last-child { border-bottom: 0; }
.legal-document h2 { margin: 0 0 10px; font-size: 22px; line-height: 1.3; }
.legal-document p, .legal-document li { color: #475569; }
.legal-document p { margin: 0 0 12px; }
.legal-document ul { margin: 8px 0 12px; padding-left: 22px; }
.legal-document li { margin: 7px 0; }
.legal-document a { color: var(--blue-deep); overflow-wrap: anywhere; }
.legal-alert { margin-bottom: 30px; padding: 18px 20px; border-left: 5px solid var(--red); color: #633036; background: #fff3f3; }

.contact-hero { min-height: 320px; }
.contact-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 20px; padding: 64px 0; }
.contact-primary { min-height: 370px; padding: 36px; border: 1px solid var(--line); border-radius: 8px; }
.contact-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 6px; color: #fff; background: var(--blue); }
.contact-icon svg { width: 25px; height: 25px; }
.contact-primary > p { margin: 31px 0 4px; color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.contact-primary > a { display: block; color: var(--blue-deep); font-size: clamp(20px, 3vw, 31px); font-weight: 850; overflow-wrap: anywhere; }
.contact-primary > span { display: block; max-width: 540px; margin-top: 24px; color: var(--muted); font-size: 14px; }
.contact-topics { border: 1px solid var(--line); border-radius: 8px; }
.contact-topics article { min-height: 91px; display: grid; grid-template-columns: 35px 1fr; gap: 13px; align-items: center; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.contact-topics article:last-child { border-bottom: 0; }
.contact-topics svg { width: 25px; height: 25px; color: var(--blue); }
.contact-topics h2 { margin: 0; font-size: 16px; }
.contact-topics p { margin: 1px 0 0; color: var(--muted); font-size: 12px; }
.contact-notice { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 80px; padding: 22px; border-left: 5px solid var(--yellow); background: #fff9e8; }
.contact-notice svg { flex: 0 0 auto; color: #9a6b00; }
.contact-notice p { margin: 0; color: #5d4a16; }

.availability-dialog {
  width: min(520px, calc(100% - 28px));
  padding: 28px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.24);
}
.availability-dialog::backdrop { background: rgba(10, 22, 34, 0.68); }
.availability-dialog form { margin: 0; }
.availability-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: #475569;
  cursor: pointer;
}
.availability-dialog-close svg { width: 18px; height: 18px; }
.availability-dialog-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: #bd333a;
}
.availability-dialog-icon svg { width: 24px; height: 24px; }
.availability-dialog-label {
  margin: 18px 0 4px;
  color: #9f2930;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.availability-dialog h2 { margin: 0; font-size: 25px; line-height: 1.2; }
.availability-dialog > p:not(.availability-dialog-label) { color: var(--muted); }
.availability-dialog-hours {
  display: grid;
  gap: 7px;
  margin: 18px 0 22px;
  padding: 14px;
  border-left: 4px solid var(--yellow);
  background: #fff8dc;
  color: #5d4a08;
  font-size: 13px;
}
.availability-dialog-hours span { display: grid; grid-template-columns: 80px minmax(0, 1fr); gap: 8px; }
.availability-dialog-actions { display: flex; justify-content: flex-end; }

@media (max-width: 980px) {
  :root { --nav-height: 64px; }
  .site-brand { width: 205px; height: 48px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: var(--nav-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 24px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 12px 5px; border-bottom: 1px solid #edf0f4; }
  .site-nav .nav-login { margin-top: 12px; border-bottom: 0; }
  .trust-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-band > div:nth-child(2) { border-right: 0; }
  .trust-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .access-section { grid-template-columns: 1fr; gap: 18px; }
  .footer-main { grid-template-columns: 2fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / span 2; }
  .market-hours-notice { grid-template-columns: auto minmax(0, 1fr); }
  .market-hours-state { grid-column: 2; justify-self: start; }
}

@media (max-width: 720px) {
  .site-header { padding-left: 15px; padding-right: 15px; }
  .site-brand { width: 178px; height: 42px; }
  .hero { min-height: calc(100vh - var(--nav-height) - 100px); }
  .hero-copy { margin-top: 27px; }
  .hero h1 { font-size: clamp(49px, 17vw, 72px); }
  .hero-lead { margin-top: 13px; font-size: 16px; }
  .hero-actions { margin-top: 16px; }
  .hero-caution { margin-top: 9px; }
  .market-scene { height: 188px; margin-top: 19px; width: calc(100% - 24px); }
  .scene-topline { min-height: 29px; padding-top: 4px; padding-bottom: 4px; }
  .scene-status { min-height: 25px; }
  .scene-chart { height: 94px; }
  .scene-footer { min-height: 38px; }
  .scene-topline span:not(.scene-live) { display: none; }
  .scene-status span, .scene-status strong { min-width: 0; font-size: 8px; }
  .scene-footer { justify-content: flex-start; overflow-x: auto; }
  .candles { left: 2%; right: 2%; }
  .price-line::after { min-width: 60px; font-size: 7px; }
  .candles { right: 66px; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-band > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .platform-section { padding: 65px 0; }
  .product-grid, .risk-copy, .legal-grid, .contact-layout { grid-template-columns: 1fr; }
  .product-panel { min-height: 355px; padding: 27px; }
  .product-panel > a { left: 27px; }
  .access-section { padding-top: 48px; padding-bottom: 48px; }
  .risk-section { padding: 65px 0 72px; }
  .risk-heading { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-legal { flex-direction: column; gap: 9px; }
  .footer-legal p:last-child { text-align: left; }
  .legal-contact-strip { align-items: flex-start; flex-direction: column; }
  .document-layout { grid-template-columns: 1fr; gap: 26px; padding-top: 32px; }
  .document-aside { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-left: 0; border: 1px solid var(--line); border-radius: 6px; padding: 8px; }
  .document-aside strong { grid-column: 1 / -1; }
  .contact-primary { min-height: 330px; padding: 28px; }
  .market-hours-notice { gap: 10px; padding-top: 12px; padding-bottom: 12px; }
  .market-hours-signal { width: 28px; height: 28px; }
  .market-hours-copy h2 { font-size: 15px; }
  .market-hours-schedule { display: grid; gap: 2px; }
}

@media (max-width: 430px) {
  .hero-actions .button { width: 100%; }
  .hero-caution { align-items: flex-start; text-align: left; }
  .trust-band > div { padding-left: 19px; padding-right: 19px; }
  .access-actions .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-main > div:last-child { grid-column: auto; }
  .document-aside { grid-template-columns: 1fr; }
  .document-aside strong { grid-column: auto; }
  .market-hours-notice { grid-template-columns: 1fr; text-align: center; }
  .market-hours-signal, .market-hours-state { grid-column: 1; justify-self: center; }
  .market-hours-schedule { justify-content: center; }
  .availability-dialog { padding: 24px 20px 20px; }
  .availability-dialog-hours span { grid-template-columns: 1fr; gap: 0; }
  .availability-dialog-actions .button { width: 100%; }
}

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