:root {
  color-scheme: dark;
  --bg: #202024;
  --bg-soft: #29292e;
  --surface: #343339;
  --card: #403f46;
  --elevated: #59595e;
  --text: #ffffff;
  --text-soft: #d7d5d9;
  --muted: #aaa7ad;
  --line: #535158;
  --accent: #fbd52b;
  --accent-ink: #202024;
  --positive: #49bd88;
  --negative: #f5465d;
  --shell: 1180px;
  --header-height: 72px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; letter-spacing: 0; -webkit-font-smoothing: antialiased; }
body { overflow-x: clip; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; background: var(--accent); color: var(--accent-ink); transform: translateY(-140%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-height); border-bottom: 1px solid transparent; transition: background-color .2s ease, border-color .2s ease; }
.site-header.scrolled { background: rgba(32, 32, 36, .96); border-color: rgba(255,255,255,.1); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 760; font-size: 18px; line-height: 1; white-space: nowrap; }
.brand img { border-radius: 8px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { color: var(--text-soft); font-size: 14px; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--accent); }
.header-cta { display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 17px; border: 1px solid var(--line); font-size: 13px; font-weight: 700; transition: border-color .2s ease, color .2s ease; }
.header-cta:hover, .header-cta:focus-visible { border-color: var(--accent); color: var(--accent); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 4px; padding: 0; cursor: pointer; }
.menu-button span { width: 17px; height: 1.5px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-nav { position: fixed; top: var(--header-height); inset-inline: 0; height: calc(100vh - var(--header-height)); background: var(--bg); padding: 24px; border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 650; }

.hero { position: relative; min-height: 820px; padding: 142px 0 0; overflow: hidden; background: #242428; }
.hero-grid { position: absolute; inset: 0; opacity: .12; border-left: 1px solid rgba(255,255,255,.18); border-right: 1px solid rgba(255,255,255,.18); }
.hero-grid::before, .hero-grid::after { content: ""; position: absolute; inset-block: 0; width: 1px; background: rgba(255,255,255,.18); }
.hero-grid::before { left: 33.333%; }
.hero-grid::after { right: 33.333%; }
.hero-layout { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); align-items: center; gap: 72px; min-height: 600px; }
.hero-copy { padding-bottom: 58px; }
.eyebrow { margin: 0 0 18px; color: var(--text-soft); font-size: 12px; font-weight: 760; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 18px; height: 2px; margin: 0 8px 3px 0; background: var(--accent); }
h1, h2, h3, p { letter-spacing: 0; }
h1 { margin: 0; font-size: 76px; line-height: .98; font-weight: 780; }
.hero-lead { margin: 18px 0 0; color: var(--accent); font-size: 32px; line-height: 1.2; font-weight: 680; }
.hero-body { max-width: 570px; margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 21px; border: 1px solid transparent; font-size: 14px; font-weight: 760; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--accent-ink); }
.button-primary:hover, .button-primary:focus-visible { background: #ffe257; }
.button-secondary { border-color: var(--line); background: rgba(32,32,36,.4); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--text-soft); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 540px; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-proof div { display: flex; flex-direction: column; gap: 4px; padding-right: 16px; }
.hero-proof strong { font-size: 22px; line-height: 1.2; font-variant-numeric: tabular-nums; }
.hero-proof span { color: var(--muted); font-size: 11px; text-transform: uppercase; }

.product-stage { position: relative; min-height: 620px; display: flex; align-items: flex-end; justify-content: center; }
.phone { position: relative; width: 370px; height: 712px; padding: 17px 18px 0; overflow: hidden; border: 8px solid #111114; border-bottom: 0; border-radius: 38px 38px 0 0; background: var(--surface); box-shadow: 0 30px 80px rgba(0,0,0,.42); }
.phone::before { content: ""; position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(255,255,255,.1); border-radius: 30px 30px 0 0; }
.phone-top { height: 25px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; font-size: 9px; font-weight: 700; }
.phone-top span:last-child { text-align: right; }
.phone-island { width: 78px; height: 21px; justify-self: center; margin-top: -10px; border-radius: 12px; background: #111114; }
.app-header { display: flex; gap: 8px; align-items: center; margin: 8px 0 12px; }
.app-search { flex: 1; height: 32px; padding: 8px 11px; border-radius: 5px; background: var(--card); color: var(--muted); font-size: 9px; }
.app-avatar { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-size: 12px; font-weight: 800; }
.portfolio-panel { position: relative; height: 174px; padding: 14px; overflow: hidden; border-radius: 7px; background: var(--card); }
.portfolio-head { display: flex; align-items: center; justify-content: space-between; color: var(--text-soft); font-size: 9px; }
.status-pill { padding: 2px 7px; border: 1px solid rgba(251,213,43,.45); border-radius: 10px; color: var(--accent); font-size: 8px; font-weight: 700; }
.portfolio-panel > strong { display: block; margin-top: 6px; font-size: 23px; line-height: 1; font-variant-numeric: tabular-nums; }
.portfolio-panel > p { margin: 5px 0 0; color: var(--muted); font-size: 8px; }
.portfolio-panel > p span { margin-left: 14px; }
.portfolio-panel > p b { margin-left: 5px; color: var(--positive); }
.mini-chart { position: absolute; inset: 67px 10px auto; height: 52px; opacity: .9; }
.mini-chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-area { fill: rgba(73,189,136,.07); }
.chart-line { fill: none; stroke: var(--positive); stroke-width: 2; vector-effect: non-scaling-stroke; }
.portfolio-actions { position: absolute; inset: auto 14px 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.portfolio-actions span { height: 30px; display: grid; place-items: center; border: 1px solid var(--accent); border-radius: 4px; font-size: 8px; font-weight: 750; }
.portfolio-actions span:first-child { background: var(--accent); color: var(--accent-ink); }
.app-shortcuts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 14px 0 15px; }
.app-shortcuts div { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text-soft); font-size: 8px; }
.app-shortcuts b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 7px; background: var(--card); color: var(--accent); font-size: 9px; }
.market-heading { display: flex; justify-content: space-between; align-items: end; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.market-heading div { display: flex; align-items: baseline; gap: 9px; }
.market-heading strong { font-size: 11px; }
.market-heading span { color: var(--muted); font-size: 8px; }
.app-market-row { display: grid; grid-template-columns: 30px minmax(0, 1.15fr) minmax(0, 1fr) 52px; align-items: center; gap: 8px; min-height: 58px; border-bottom: 1px solid rgba(83,81,88,.65); font-variant-numeric: tabular-nums; }
.app-market-row > span:not(.coin) { display: flex; flex-direction: column; }
.app-market-row strong { font-size: 9px; white-space: nowrap; }
.app-market-row small { color: var(--muted); font-size: 7px; }
.app-market-row > b { padding: 4px; border-radius: 3px; font-size: 8px; text-align: center; }
.app-market-row > b.positive { background: var(--positive); color: #0d221a; }
.app-market-row > b.negative { background: var(--negative); color: white; }
.coin { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: white; font-size: 9px; font-weight: 800; }
.btc { background: #f7931a; }.eth { background: #6874ca; }.sol { background: #25ad8c; }.bnb { background: #c99f18; }.gold { background: #c69536; }.oil { background: #72777d; }
.app-tabs { position: absolute; inset: auto 0 0; height: 48px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; background: var(--surface); border-top: 1px solid var(--line); color: var(--muted); font-size: 8px; text-align: center; }
.app-tabs .active { color: var(--accent); }
.stage-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); background: #29292e; color: var(--text-soft); font-size: 10px; font-weight: 700; text-transform: uppercase; box-shadow: 0 16px 36px rgba(0,0,0,.28); }
.stage-note span { width: 6px; height: 6px; border-radius: 50%; background: var(--positive); box-shadow: 0 0 0 4px rgba(73,189,136,.12); }
.stage-note-one { left: 0; top: 100px; }
.stage-note-two { right: -8px; top: 216px; color: var(--accent); }
.market-ticker { position: relative; overflow: hidden; border-block: 1px solid var(--line); background: var(--bg); }
.ticker-track { width: max-content; min-width: 100%; min-height: 66px; display: flex; align-items: center; justify-content: center; gap: 22px; padding: 0 24px; color: var(--muted); font-size: 11px; font-weight: 700; white-space: nowrap; }
.ticker-track i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.section { padding: 116px 0; }
.section-intro { max-width: 700px; margin-bottom: 64px; }
.section-intro h2, .market-copy h2, .safety-copy h2, .faq-intro h2, .closing-layout h2 { margin: 0; font-size: 44px; line-height: 1.14; }
.section-intro > p:last-child, .market-copy > p, .safety-copy > p, .faq-intro > p { margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.practice-section { background: #f0f0ee; color: #202024; }
.practice-section .eyebrow { color: #5d5c61; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #bab9b5; border-bottom: 1px solid #bab9b5; }
.step { min-height: 270px; padding: 26px 30px 28px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid #bab9b5; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; border-right: 0; }
.step-number { color: #6a696e; font-size: 13px; font-weight: 750; }
.step h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.25; }
.step p { margin: 0; color: #69686d; font-size: 14px; }

.market-section { background: var(--bg-soft); }
.market-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr); gap: 92px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; }
.check-list li { display: flex; align-items: center; gap: 12px; min-height: 38px; color: var(--text-soft); font-size: 14px; }
.check-list span { width: 21px; height: 21px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--accent); font-size: 10px; }
.market-copy .source-note { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 12px; line-height: 1.6; }
.market-board { border: 1px solid var(--line); background: var(--surface); }
.board-head { min-height: 72px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--positive); box-shadow: 0 0 0 4px rgba(73,189,136,.12); }
.segmented-control { display: flex; padding: 3px; background: var(--bg-soft); }
.segmented-control button { min-height: 30px; padding: 0 11px; border: 0; background: transparent; color: var(--muted); font-size: 11px; cursor: pointer; }
.segmented-control button.active { background: var(--card); color: var(--text); }
.board-columns { min-height: 38px; display: grid; grid-template-columns: 1fr 120px 80px; align-items: center; padding: 0 20px 0 66px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; text-transform: uppercase; }
.board-columns span:nth-child(n+2) { text-align: right; }
.board-row { min-height: 72px; display: grid; grid-template-columns: 34px minmax(0, 1fr) 120px 80px; align-items: center; gap: 12px; padding: 0 20px; border-bottom: 1px solid rgba(83,81,88,.7); }
.board-row > span:nth-child(2) { display: flex; flex-direction: column; }
.board-row b { font-size: 13px; }
.board-row small { color: var(--muted); font-size: 10px; }
.board-row > strong, .board-row > em { text-align: right; font-size: 12px; font-style: normal; font-variant-numeric: tabular-nums; }
.board-row .positive { color: var(--positive); }.board-row .negative { color: var(--negative); }
.board-foot { min-height: 44px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.board-foot span:last-child { color: var(--accent); }

.academy-section { background: var(--bg); }
.split-intro { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: end; }
.split-intro > p { margin: 0; }
.lesson-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lesson { min-height: 330px; padding: 26px 25px; border-right: 1px solid var(--line); }
.lesson:first-child { padding-left: 0; }
.lesson:last-child { padding-right: 0; border-right: 0; }
.lesson > span { color: var(--accent); font-size: 12px; font-weight: 750; }
.lesson-rule { width: 32px; height: 2px; margin: 52px 0 24px; background: var(--accent); }
.lesson h3 { margin: 0; font-size: 20px; line-height: 1.3; }
.lesson p { min-height: 78px; margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.lesson small { display: block; margin-top: 30px; color: var(--text-soft); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.quiz-banner { margin-top: 48px; padding: 30px 32px; display: grid; grid-template-columns: 150px 1fr auto; gap: 34px; align-items: center; border: 1px solid var(--line); background: var(--surface); }
.quiz-score { height: 112px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--line); }
.quiz-score strong { color: var(--accent); font-size: 32px; line-height: 1; }
.quiz-score span { margin-top: 8px; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.quiz-banner .eyebrow { margin-bottom: 8px; }
.quiz-banner h3 { margin: 0; font-size: 24px; }
.quiz-banner p:last-child { max-width: 620px; margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.quiz-label { padding: 8px 12px; border: 1px solid var(--line); color: var(--text-soft); font-size: 10px; font-weight: 700; white-space: nowrap; }

.safety-section { background: var(--accent); color: var(--accent-ink); }
.safety-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.safety-section .eyebrow { color: #5e5311; }
.safety-section .eyebrow span { background: var(--accent-ink); }
.safety-copy > p { color: #5e5311; }
.text-link { display: inline-flex; gap: 8px; margin-top: 34px; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 750; }
.principles { border-top: 1px solid rgba(32,32,36,.35); }
.principle { min-height: 108px; display: grid; grid-template-columns: 36px 1fr; gap: 18px; align-items: start; padding: 22px 0; border-bottom: 1px solid rgba(32,32,36,.35); }
.principle > span { font-size: 11px; font-weight: 750; }
.principle h3 { margin: 0; font-size: 17px; }
.principle p { margin: 4px 0 0; color: #5e5311; font-size: 13px; }

.faq-section { background: #f0f0ee; color: #202024; }
.faq-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(580px, 1.28fr); gap: 100px; }
.faq-section .eyebrow { color: #5d5c61; }
.faq-intro > p { color: #69686d; }
.faq-list { border-top: 1px solid #bab9b5; }
.faq-list details { border-bottom: 1px solid #bab9b5; }
.faq-list summary { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; list-style: none; cursor: pointer; font-size: 16px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #a4a39f; font-size: 19px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 52px 26px 0; color: #69686d; font-size: 14px; }

.closing-section { padding: 82px 0; background: var(--surface); }
.closing-layout { display: grid; grid-template-columns: 104px 1fr auto; gap: 38px; align-items: center; }
.closing-layout img { border-radius: 20px; }
.closing-layout .eyebrow { margin-bottom: 10px; }
.closing-layout h2 { font-size: 34px; }
.site-footer { padding: 70px 0 24px; background: #19191c; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 62px; padding-bottom: 54px; }
.footer-brand > p { max-width: 290px; margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.company-identity { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.company-identity img { width: 58px; height: 58px; flex: 0 0 auto; border: 1px solid #3f3f45; object-fit: cover; }
.company-identity div { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.company-identity strong { max-width: 250px; color: var(--text-soft); font-size: 10px; line-height: 1.45; }
.company-identity span { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 12px; }
.footer-links strong { margin-bottom: 5px; color: var(--text); font-size: 11px; text-transform: uppercase; }
.footer-links a, .footer-links span { color: var(--muted); }
.footer-links .email-link { overflow-wrap: anywhere; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--accent); }
.footer-bottom { min-height: 54px; padding-top: 20px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid #35353a; color: #858389; font-size: 10px; text-transform: uppercase; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .header-cta { display: none; }
  .hero-layout { grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: 36px; }
  h1 { font-size: 64px; }
  .stage-note-one { left: -6px; }
  .market-layout { gap: 48px; }
  .safety-layout, .faq-layout { gap: 60px; }
  .split-intro { gap: 70px; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button { display: flex; margin-left: auto; }
  .hero { padding-top: 118px; }
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { padding-bottom: 0; }
  .hero-body, .hero-proof { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .product-stage { margin-top: 4px; }
  .stage-note-one { left: calc(50% - 242px); }
  .stage-note-two { right: calc(50% - 236px); }
  .section { padding: 90px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { min-height: 190px; padding: 24px 0; border-right: 0; border-bottom: 1px solid #bab9b5; }
  .step:last-child { border-bottom: 0; }
  .market-layout, .safety-layout, .faq-layout { grid-template-columns: 1fr; }
  .market-board { max-width: 680px; }
  .split-intro { grid-template-columns: 1fr; gap: 24px; }
  .lesson-grid { grid-template-columns: repeat(2, 1fr); }
  .lesson:nth-child(2) { border-right: 0; padding-right: 0; }
  .lesson:nth-child(3), .lesson:nth-child(4) { border-top: 1px solid var(--line); }
  .lesson:nth-child(3) { padding-left: 0; }
  .lesson { min-height: 290px; }
  .quiz-banner { grid-template-columns: 110px 1fr; }
  .quiz-label { grid-column: 2; justify-self: start; }
  .faq-list { max-width: 720px; }
  .closing-layout { grid-template-columns: 86px 1fr; }
  .closing-layout img { width: 86px; height: 86px; }
  .closing-layout .button { grid-column: 2; justify-self: start; }
  .footer-main { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-links:last-child { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
  :root { --header-height: 64px; }
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .brand { font-size: 16px; }
  .brand img { width: 34px; height: 34px; }
  .hero { min-height: 0; padding-top: 104px; }
  .hero-layout { gap: 34px; }
  .eyebrow { margin-bottom: 14px; font-size: 10px; }
  h1 { font-size: 50px; }
  .hero-lead { margin-top: 14px; font-size: 24px; }
  .hero-body { margin-top: 18px; font-size: 15px; }
  .hero-actions { margin-top: 26px; }
  .button { width: 100%; }
  .hero-proof { margin-top: 34px; padding-top: 20px; }
  .hero-proof strong { font-size: 18px; }
  .hero-proof span { font-size: 8px; }
  .product-stage { min-height: 570px; align-items: flex-end; }
  .phone { width: 322px; height: 590px; border-width: 6px; border-radius: 30px 30px 0 0; padding: 14px 14px 0; }
  .portfolio-panel { height: 158px; }
  .mini-chart { top: 64px; }
  .app-market-row { min-height: 52px; grid-template-columns: 27px minmax(0, 1.15fr) minmax(0, 1fr) 48px; gap: 6px; }
  .app-shortcuts { padding: 11px 0; }
  .stage-note { display: none; }
  .market-ticker { margin-top: 0; }
  .ticker-track { justify-content: flex-start; overflow-x: auto; min-height: 56px; }
  .section { padding: 72px 0; }
  .section-intro { margin-bottom: 42px; }
  .section-intro h2, .market-copy h2, .safety-copy h2, .faq-intro h2, .closing-layout h2 { font-size: 33px; }
  .section-intro > p:last-child, .market-copy > p, .safety-copy > p, .faq-intro > p { font-size: 15px; }
  .market-layout, .safety-layout, .faq-layout { gap: 48px; }
  .market-board { width: calc(100% + 16px); margin-left: -8px; }
  .board-head { min-height: 64px; padding: 0 12px; }
  .board-head > div:first-child { font-size: 11px; }
  .segmented-control button { padding: 0 8px; font-size: 9px; }
  .board-columns { grid-template-columns: 1fr 86px 58px; padding: 0 12px 0 57px; }
  .board-row { grid-template-columns: 30px minmax(0, 1fr) 86px 58px; gap: 7px; padding: 0 12px; }
  .board-row b { font-size: 11px; }
  .board-row > strong, .board-row > em { font-size: 10px; }
  .board-foot { padding: 0 12px; }
  .lesson-grid { grid-template-columns: 1fr; }
  .lesson, .lesson:first-child, .lesson:nth-child(2), .lesson:nth-child(3), .lesson:last-child { min-height: 245px; padding: 24px 0; border-right: 0; border-top: 0; border-bottom: 1px solid var(--line); }
  .lesson:last-child { border-bottom: 0; }
  .lesson-rule { margin: 35px 0 20px; }
  .lesson p { min-height: 0; }
  .quiz-banner { padding: 24px 20px; grid-template-columns: 1fr; gap: 22px; }
  .quiz-score { height: 80px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quiz-label { grid-column: 1; }
  .safety-layout { gap: 44px; }
  .faq-list summary { min-height: 78px; font-size: 14px; }
  .faq-list details p { margin-right: 0; }
  .closing-section { padding: 58px 0; }
  .closing-layout { grid-template-columns: 62px 1fr; gap: 20px; }
  .closing-layout img { width: 62px; height: 62px; border-radius: 13px; }
  .closing-layout h2 { font-size: 25px; }
  .closing-layout .button { grid-column: 1 / 3; }
  .site-footer { padding-top: 54px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-links:last-child { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 360px) {
  .shell { width: min(calc(100% - 20px), var(--shell)); }
  .brand { gap: 7px; font-size: 14px; }
  .brand img { width: 30px; height: 30px; }
  .menu-button { width: 38px; height: 38px; }
  h1 { font-size: 36px; }
  .hero-lead { font-size: 20px; }
  .hero-body { font-size: 14px; }
  .button { min-width: 0; padding-inline: 10px; font-size: 12px; line-height: 1.3; text-align: center; white-space: normal; }
  .hero-proof { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .hero-proof div { padding-right: 0; }
  .product-stage { min-height: 540px; }
  .phone { width: calc(100vw - 12px); height: 560px; padding-inline: 10px; }
  .app-market-row { grid-template-columns: 24px minmax(0, 1fr) 64px 40px; gap: 4px; }
  .app-market-row strong { overflow: hidden; font-size: 7px; text-overflow: ellipsis; }
  .app-market-row small { font-size: 6px; }
  .app-market-row > b { font-size: 6px; }
  .section-intro h2, .market-copy h2, .safety-copy h2, .faq-intro h2, .closing-layout h2 { font-size: 28px; }
  .board-head { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
  .board-columns { grid-template-columns: 1fr 70px 48px; padding-left: 48px; }
  .board-row { grid-template-columns: 27px minmax(0, 1fr) 70px 48px; gap: 4px; padding-inline: 8px; }
  .board-row > strong, .board-row > em { font-size: 9px; }
  .board-foot { align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; }
  .closing-layout { grid-template-columns: 1fr; text-align: center; }
  .closing-layout img, .closing-layout .button { grid-column: 1; justify-self: center; }
}

/* Shared legal pages */
.legal-page { background: #f0f0ee; color: #202024; }
.legal-page .site-header { position: sticky; background: #202024; color: white; border-bottom-color: #35353a; }
.legal-page .header-inner { justify-content: space-between; }
.legal-page .header-back { color: var(--text-soft); font-size: 13px; }
.legal-page .header-back:hover { color: var(--accent); }
.legal-main { min-height: 70vh; padding: 86px 0 110px; }
.legal-wrap { max-width: 760px; }
.legal-kicker { margin: 0 0 14px; color: #6a696e; font-size: 11px; font-weight: 760; text-transform: uppercase; }
.legal-main h1 { font-size: 54px; line-height: 1.05; }
.legal-date { margin: 16px 0 0; color: #6a696e; font-size: 13px; }
.legal-intro { margin: 38px 0 0; padding: 26px 0; border-block: 1px solid #bab9b5; font-size: 18px; line-height: 1.7; }
.legal-summary { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border-block: 1px solid #bab9b5; }
.legal-summary > div { min-width: 0; padding: 22px 20px; border-right: 1px solid #bab9b5; }
.legal-summary > div:first-child { padding-left: 0; }
.legal-summary > div:last-child { padding-right: 0; border-right: 0; }
.legal-summary strong, .legal-summary span { display: block; }
.legal-summary strong { margin-bottom: 7px; font-size: 13px; }
.legal-summary span { color: #6a696e; font-size: 12px; line-height: 1.55; }
.legal-toc { margin-top: 42px; padding: 22px 24px; border-left: 3px solid var(--accent-dark); background: #e7e7e4; }
.legal-toc > strong { display: block; margin-bottom: 12px; font-size: 12px; text-transform: uppercase; }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 46px; }
.legal-toc li { margin: 0 0 7px; break-inside: avoid; color: #77767a; font-size: 12px; }
.legal-toc a { color: #3e3d42; }
.legal-toc a:hover, .legal-toc a:focus-visible { color: #8d7600; text-decoration: underline; text-underline-offset: 3px; }
.legal-content { margin-top: 58px; }
.legal-content section { margin-bottom: 0; padding: 0 0 42px; scroll-margin-top: 100px; }
.legal-content section + section { padding-top: 42px; border-top: 1px solid #d1d0cc; }
.legal-content h2 { margin: 0 0 12px; font-size: 21px; line-height: 1.35; }
.legal-content p { margin: 0; color: #5d5c61; font-size: 15px; line-height: 1.8; }
.legal-content p + p, .legal-content ul + p { margin-top: 14px; }
.legal-content ul { margin: 14px 0 0; padding-left: 22px; color: #5d5c61; }
.legal-content li { margin-bottom: 9px; padding-left: 4px; font-size: 15px; line-height: 1.7; }
.legal-content li::marker { color: #9b8200; }
.legal-content p strong, .legal-content li strong { color: #333237; }
.legal-content a { color: #202024; font-weight: 700; text-decoration: underline; text-decoration-color: #b69a12; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal-content .legal-notice { margin-top: 20px; padding: 18px 20px; border-left: 3px solid #b69a12; background: #e7e7e4; color: #4c4b50; }
.legal-content .legal-contact { margin-top: 18px; padding: 20px; border: 1px solid #c3c2be; background: #e7e7e4; }
.legal-page .site-footer { color: white; }
@media (max-width: 640px) {
  .legal-main { padding: 58px 0 78px; }
  .legal-main h1 { font-size: 39px; }
  .legal-intro { margin-top: 28px; font-size: 16px; }
  .legal-summary { grid-template-columns: 1fr; }
  .legal-summary > div, .legal-summary > div:first-child, .legal-summary > div:last-child { padding: 17px 0; border-right: 0; border-bottom: 1px solid #bab9b5; }
  .legal-summary > div:last-child { border-bottom: 0; }
  .legal-toc { margin-top: 32px; padding: 18px 20px; }
  .legal-toc ol { columns: 1; }
  .legal-content { margin-top: 42px; }
  .legal-content section { padding-bottom: 34px; }
  .legal-content section + section { padding-top: 34px; }
  .legal-content h2 { font-size: 20px; }
  .legal-content p, .legal-content li { font-size: 14px; }
}
