:root {
  color-scheme: dark;
  --ink: #eef2f6;
  --muted: #8793a4;
  --faint: #536071;
  --gold: #e2b44f;
  --gold-bright: #f2cd73;
  --gold-deep: #8e631c;
  --green: #3fd7a1;
  --surface: #080d14;
  --surface-raised: #0b121c;
  --line: rgba(213, 176, 91, .16);
  --line-soft: rgba(255, 255, 255, .07);
  --max-width: 1240px;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #05080d;
  color: var(--ink);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { min-width: 320px; margin: 0; overflow-x: hidden; background: #05080d; }
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 16%, rgba(222, 177, 70, .075), transparent 27rem),
    radial-gradient(circle at 16% 34%, rgba(56, 119, 112, .055), transparent 28rem),
    linear-gradient(180deg, #05080d 0%, #070b12 48%, #05080d 100%);
}

a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; border-radius: 5px; background: var(--gold); color: #090b0e; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 16px; }

.section-shell { width: min(calc(100% - 56px), var(--max-width)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 max(28px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid transparent;
  transition: min-height .25s, background .25s, border-color .25s, backdrop-filter .25s;
}

.site-header.scrolled { min-height: 66px; border-color: var(--line-soft); background: rgba(5, 8, 13, .88); backdrop-filter: blur(18px); }
.brand { display: grid; grid-template-columns: 43px auto; grid-template-rows: auto auto; justify-self: start; align-items: center; column-gap: 12px; width: max-content; }
.brand img { grid-row: 1 / 3; width: 43px; height: 43px; object-fit: contain; filter: drop-shadow(0 6px 18px rgba(226, 180, 79, .18)); }
.brand-name { align-self: end; font: 600 17px/1 Georgia, "Times New Roman", serif; letter-spacing: .16em; }
.brand-subtitle { align-self: start; margin-top: 5px; color: var(--gold); font-size: 8px; font-weight: 700; letter-spacing: .38em; }

.site-navigation { display: flex; align-items: center; gap: 34px; }
.site-navigation a { position: relative; color: #9ba5b3; font-size: 11px; font-weight: 600; letter-spacing: .055em; }
.site-navigation a::after { position: absolute; right: 50%; bottom: -10px; left: 50%; height: 1px; content: ""; background: var(--gold); transition: right .2s, left .2s; }
.site-navigation a:hover, .site-navigation a:focus-visible { color: #f4f6f8; }
.site-navigation a:hover::after, .site-navigation a:focus-visible::after { right: 0; left: 0; }

.header-actions { display: flex; justify-self: end; align-items: center; gap: 12px; }
.language-control { position: relative; }
.language-control::after { position: absolute; top: 50%; right: 10px; content: "⌄"; color: var(--gold); font-size: 10px; transform: translateY(-56%); pointer-events: none; }
.language-control select { height: 35px; padding: 0 27px 0 11px; border: 1px solid var(--line-soft); border-radius: 4px; appearance: none; outline: 0; background: rgba(10, 16, 25, .8); color: #b7c0cc; cursor: pointer; font-size: 10px; font-weight: 700; }
.language-control select:focus-visible { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(226, 180, 79, .11); }
.menu-toggle { display: none; width: 38px; height: 38px; padding: 9px; border: 1px solid var(--line-soft); border-radius: 4px; background: #090e16; color: white; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 4px 0; background: #dce1e7; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 45px; padding: 0 20px; border: 1px solid transparent; border-radius: 4px; font-size: 11px; font-weight: 750; letter-spacing: .055em; transition: transform .18s, border-color .18s, background .18s, box-shadow .18s; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.button-primary { border-color: #deb34f; background: linear-gradient(135deg, #edc866 0%, #bd8427 100%); color: #080a0e; box-shadow: 0 14px 38px rgba(175, 119, 25, .18); }
.button-primary:hover { box-shadow: 0 18px 44px rgba(175, 119, 25, .27); }
.button-quiet { min-height: 36px; border-color: rgba(226, 180, 79, .38); background: rgba(226, 180, 79, .045); color: #dcb45a; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: #d6b15e; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.text-link span:last-child { transition: transform .2s; }
.text-link:hover span:last-child { transform: translateX(4px); }

.hero { display: grid; grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr); align-items: center; gap: clamp(48px, 7vw, 96px); min-height: 790px; padding-top: 126px; padding-bottom: 82px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 22px; color: var(--gold); font-size: 9px; font-weight: 750; letter-spacing: .28em; }
.eyebrow > span:first-child { display: block; width: 24px; height: 1px; background: var(--gold); }
.hero h1, .section-heading h2, .methodology-copy h2, .pricing-copy h2, .cta-section h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em; }
.hero h1 { max-width: 650px; font-size: clamp(48px, 5.8vw, 82px); line-height: .99; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { margin-top: 6px; color: var(--gold-bright); font-weight: 400; }
.hero-intro { max-width: 600px; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hero-note { margin: 24px 0 0; color: #566375; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.hero-visual { position: relative; min-width: 0; overflow: clip; perspective: 1200px; }
.orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(1px); }
.orb-one { top: -60px; right: -70px; width: 260px; height: 260px; border: 1px solid rgba(226, 180, 79, .12); box-shadow: 0 0 110px rgba(226, 180, 79, .06), inset 0 0 90px rgba(226, 180, 79, .035); }
.orb-two { bottom: -50px; left: -55px; width: 190px; height: 190px; border: 1px solid rgba(70, 184, 157, .08); box-shadow: 0 0 90px rgba(60, 178, 151, .05); }
.intelligence-card { position: relative; overflow: hidden; border: 1px solid rgba(213, 176, 91, .2); border-radius: 10px; background: linear-gradient(145deg, rgba(12, 19, 29, .98), rgba(6, 11, 18, .98)); box-shadow: 0 38px 90px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255,255,255,.018) inset; transform: rotateY(-3deg) rotateX(1deg); }
.intelligence-card::before { position: absolute; top: -120px; right: -90px; width: 330px; height: 250px; content: ""; background: radial-gradient(circle, rgba(226, 180, 79, .085), transparent 68%); }
.preview-bar { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 21px 24px; border-bottom: 1px solid var(--line-soft); }
.preview-bar > div { display: grid; gap: 5px; }
.preview-mark { display: flex; align-items: center; gap: 8px; color: #69768a; font-size: 7px; font-weight: 700; letter-spacing: .18em; }
.preview-mark i { width: 6px; height: 6px; border: 1px solid var(--gold); transform: rotate(45deg); }
.preview-bar strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 400; }
.live-status { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1px solid rgba(63, 215, 161, .17); border-radius: 999px; background: rgba(63, 215, 161, .04); color: #72dab4; font-size: 7px; font-weight: 700; letter-spacing: .12em; }
.live-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2.3s infinite; }
.market-heading { display: flex; align-items: end; justify-content: space-between; padding: 22px 24px 5px; }
.market-heading > div { display: grid; gap: 6px; }
.market-heading small { color: #59677b; font-size: 7px; font-weight: 700; letter-spacing: .18em; }
.market-heading strong { font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 400; }
.market-meta { display: flex; align-items: center; gap: 7px; }
.market-meta span,.market-meta b { padding: 6px 9px; border: 1px solid rgba(226, 180, 79, .2); border-radius: 3px; color: #d7b35d; font-size: 8px; font-weight: 600; }
.market-meta b { border-color: rgba(63, 215, 161, .22); background: rgba(63, 215, 161, .045); color: #63d7ad; letter-spacing: .08em; }
.chart-stage { position: relative; height: 305px; margin: 0 24px; overflow: hidden; border-top: 1px solid rgba(255,255,255,.025); }
.chart-grid { position: absolute; inset: 0; opacity: .64; background-image: linear-gradient(rgba(255,255,255,.044) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 100% 48px, 72px 100%; }
.chart-stage svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.order-levels line { stroke-width: .8; stroke-dasharray: 5 5; }
.order-levels text { font: 700 8px/1 Inter, sans-serif; letter-spacing: .08em; }
.order-levels .tp-level { stroke: rgba(226,180,79,.55); }
.order-levels .tp-level + text { fill: #d9af54; }
.order-levels .entry-level { stroke: rgba(75,210,163,.72); stroke-width: 1.2; }
.order-levels .entry-level + text { fill: #5ad5a8; }
.order-levels .sl-level { stroke: rgba(255,92,121,.62); }
.order-levels .sl-level + text { fill: #ff718c; }
.profit-area { fill: url(#profitArea); }
.strategy-trail { fill: none; stroke: rgba(63,215,161,.8); stroke-width: 1.7; filter: url(#signalGlow); }
.candles path { fill: none; stroke: #ee6480; stroke-width: 1; opacity: .86; }
.candles rect { fill: rgba(226,72,103,.8); stroke: rgba(255,129,151,.8); stroke-width: .7; rx: 1; }
.candles path:has(+ rect.up) { stroke: #4ed3a4; }
.candles rect.up { fill: rgba(50,190,143,.86); stroke: rgba(112,225,183,.85); }
.entry-point { fill: #61d9ad; stroke: #d7fff0; stroke-width: 1.5; filter: url(#signalGlow); }
.signal-tag { position: absolute; padding: 6px 8px; border-radius: 3px; background: rgba(7, 12, 18, .9); font-size: 6px; font-weight: 750; letter-spacing: .11em; backdrop-filter: blur(8px); }
.signal-one { top: 178px; left: 37%; border: 1px solid rgba(63, 215, 161, .35); color: #64d7ad; }
.signal-two { right: 4%; bottom: 27px; border: 1px solid rgba(255, 92, 121, .3); color: #ff7891; }
.bot-live-card { position: absolute; top: 18px; left: 16px; display: grid; min-width: 126px; padding: 10px 12px; border: 1px solid rgba(63,215,161,.22); border-radius: 6px; background: rgba(7,13,21,.88); box-shadow: 0 12px 30px rgba(0,0,0,.24); backdrop-filter: blur(10px); }
.bot-live-card span { color: #738297; font-size: 6px; font-weight: 750; letter-spacing: .13em; }
.bot-live-card strong { margin-top: 5px; color: #57d5a7; font: 400 19px/1 Georgia,serif; }
.bot-live-card small { margin-top: 4px; color: #58677a; font-size: 6px; letter-spacing: .1em; }
.preview-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); }
.preview-metrics > div { display: grid; gap: 7px; padding: 18px 22px; border-right: 1px solid var(--line-soft); }
.preview-metrics > div:last-child { border-right: 0; }
.preview-metrics small { color: #566477; font-size: 7px; font-weight: 700; letter-spacing: .14em; }
.preview-metrics strong { color: #cfd6df; font-size: 10px; }

.capability-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(9, 14, 22, .62); }
.capability-strip div { display: flex; align-items: center; gap: 14px; min-height: 86px; padding: 0 clamp(24px, 4vw, 60px); border-right: 1px solid var(--line-soft); }
.capability-strip div:last-child { border-right: 0; }
.capability-strip span { color: var(--gold); font: 400 9px/1 Georgia, serif; }
.capability-strip strong { color: #8e9aaa; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.content-section { padding-top: 130px; padding-bottom: 130px; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .55fr); column-gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .methodology-copy h2, .pricing-copy h2, .cta-section h2 { font-size: clamp(36px, 4vw, 58px); line-height: 1.08; }
.section-heading > p:last-child { margin: 0 0 4px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { position: relative; min-height: 410px; padding: 30px; overflow: hidden; border: 1px solid var(--line-soft); border-radius: 6px; background: linear-gradient(155deg, rgba(12, 19, 29, .86), rgba(7, 11, 18, .95)); transition: transform .25s, border-color .25s, box-shadow .25s; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(226, 180, 79, .2); box-shadow: 0 22px 50px rgba(0, 0, 0, .23); }
.feature-card.featured { border-color: rgba(226, 180, 79, .28); background: linear-gradient(155deg, rgba(31, 25, 14, .52), rgba(8, 13, 20, .96) 58%); }
.feature-index { position: absolute; top: 23px; right: 26px; color: #3e4958; font: 400 11px/1 Georgia, serif; }
.feature-icon { display: grid; place-items: center; width: 49px; height: 49px; border: 1px solid rgba(226, 180, 79, .2); border-radius: 5px; background: rgba(226, 180, 79, .035); color: var(--gold); }
.feature-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin: 28px 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 400; }
.feature-card > p { min-height: 69px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.feature-card ul { display: grid; gap: 11px; margin: 27px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line-soft); list-style: none; }
.feature-card li { position: relative; padding-left: 16px; color: #a8b1bd; font-size: 11px; }
.feature-card li::before { position: absolute; top: .48em; left: 1px; width: 4px; height: 4px; content: ""; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px rgba(226, 180, 79, .55); }

.methodology-section { position: relative; padding: 126px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: linear-gradient(110deg, rgba(12, 19, 29, .88), rgba(6, 10, 16, .9)); }
.methodology-section::after { position: absolute; inset: 0; content: ""; pointer-events: none; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 52px 52px; }
.methodology-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 10vw, 150px); }
.methodology-copy > p:not(.eyebrow) { max-width: 560px; margin: 26px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 27px 0; border-bottom: 1px solid var(--line-soft); }
.process-list li:first-child { padding-top: 0; }
.process-list > li > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(226,180,79,.24); border-radius: 50%; color: var(--gold); font: 400 10px/1 Georgia, serif; }
.process-list h3 { margin: 0 0 9px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 400; }
.process-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.security-section { padding-bottom: 118px; }
.security-section .section-heading { grid-template-columns: 1fr; max-width: 850px; }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.security-grid article { min-height: 210px; padding: 36px 34px; border-right: 1px solid var(--line-soft); }
.security-grid article:last-child { border-right: 0; }
.security-grid article > span { color: var(--gold); font-size: 8px; }
.security-grid h3 { margin: 22px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 400; }
.security-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.pricing-section { display:grid; grid-template-columns:minmax(0,1fr) minmax(390px,.72fr); align-items:center; gap:clamp(60px,9vw,130px); margin-bottom:118px; padding-top:28px; }
.pricing-copy>p:last-child { max-width:580px; margin:25px 0 0; color:var(--muted); font-size:14px; line-height:1.8; }
.pricing-card { position:relative; overflow:hidden; padding:34px; border:1px solid rgba(226,180,79,.3); border-radius:8px; background:radial-gradient(circle at 90% 0,rgba(226,180,79,.12),transparent 18rem),linear-gradient(145deg,#0d151f,#070c13); box-shadow:0 32px 70px rgba(0,0,0,.3); }
.pricing-card::after { position:absolute; top:-52px; right:-52px; width:130px; height:130px; content:""; border:1px solid rgba(226,180,79,.14); border-radius:50%; }
.pricing-card-top { display:grid; gap:22px; padding-bottom:27px; border-bottom:1px solid var(--line-soft); }
.pricing-card-top>span { color:var(--gold); font-size:9px; font-weight:800; letter-spacing:.2em; }
.pricing-card-top strong { display:flex; align-items:end; gap:10px; }
.pricing-card-top b { color:#f1d076; font:400 53px/.9 Georgia,serif; }
.pricing-card-top small { padding-bottom:4px; color:#778599; font-size:11px; font-weight:600; }
.pricing-card ul { display:grid; gap:13px; margin:26px 0; padding:0; list-style:none; }
.pricing-card li { position:relative; padding-left:19px; color:#a7b2bf; font-size:11px; line-height:1.55; }
.pricing-card li::before { position:absolute; top:.58em; left:0; width:5px; height:5px; content:""; border-radius:50%; background:var(--gold); box-shadow:0 0 8px rgba(226,180,79,.5); }
.pricing-card .button { width:100%; }
.pricing-card>p { margin:15px 0 0; color:#59677a; font-size:9px; text-align:center; }

.cta-section { display: flex; align-items: center; justify-content: space-between; gap: 48px; margin-bottom: 110px; padding: 52px 58px; border: 1px solid rgba(226, 180, 79, .22); border-radius: 7px; background: radial-gradient(circle at 80% 20%, rgba(226,180,79,.09), transparent 20rem), linear-gradient(135deg, #0b121c, #070b12); box-shadow: 0 30px 60px rgba(0,0,0,.2); }
.cta-section h2 { max-width: 750px; font-size: clamp(31px, 3.6vw, 50px); }
.cta-section .eyebrow { margin-bottom: 15px; }
.cta-section .button { flex: 0 0 auto; }

.site-footer { padding-bottom: 28px; }
.footer-top { display: grid; grid-template-columns: 1fr 1.1fr auto; align-items: center; gap: 60px; padding: 45px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.footer-brand { transform: scale(.9); transform-origin: left center; }
.footer-top p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.footer-top > a:last-child { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.risk-disclosure { display: grid; grid-template-columns: 120px 1fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid var(--line-soft); }
.risk-disclosure strong { color: #737f8f; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.risk-disclosure p { max-width: 980px; margin: 0; color: #505d6e; font-size: 9px; line-height: 1.7; }
.technology-attribution { display: grid; grid-template-columns: 120px 1fr; gap: 30px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.technology-attribution strong { color: #737f8f; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.technology-attribution p { max-width: 980px; margin: 0; color: #505d6e; font-size: 9px; line-height: 1.7; }
.technology-attribution a { color: #a88a49; text-decoration: none; }
.technology-attribution a:hover, .technology-attribution a:focus-visible { color: var(--gold); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; color: #465263; font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .site-navigation { position: fixed; top: 66px; right: 18px; left: 18px; display: none; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--line-soft); border-radius: 6px; background: rgba(7, 11, 18, .98); box-shadow: 0 18px 50px rgba(0,0,0,.4); }
  .site-navigation.open { display: grid; }
  .site-navigation a { padding: 14px; border-bottom: 1px solid var(--line-soft); }
  .site-navigation a:last-child { border-bottom: 0; }
  .site-navigation a::after { display: none; }
  .menu-toggle { display: block; grid-column: 3; grid-row: 1; margin-left: 12px; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .hero { grid-template-columns: 1fr; padding-top: 155px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 760px); justify-self: center; }
  .intelligence-card { transform: none; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .methodology-layout { gap: 70px; }
  .pricing-section { grid-template-columns:1fr; }
}

@media (max-width: 780px) {
  .section-shell { width: min(calc(100% - 34px), var(--max-width)); }
  .site-header { min-height: 66px; padding: 0 17px; }
  .brand { grid-template-columns: 36px auto; column-gap: 9px; }
  .brand img { width: 36px; height: 36px; }
  .brand-name { font-size: 14px; }
  .brand-subtitle { font-size: 6px; }
  .header-actions .button { display: none; }
  .header-actions { margin-right: 0; }
  .hero { min-height: 0; gap: 64px; padding-top: 132px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(43px, 13vw, 66px); }
  .hero-intro { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-visual { width: 100%; }
  .preview-bar, .market-heading { padding-right: 16px; padding-left: 16px; }
  .chart-stage { height: 230px; margin-inline: 16px; }
  .preview-metrics > div { padding: 14px 12px; }
  .capability-strip { grid-template-columns: 1fr 1fr; }
  .capability-strip div { min-height: 70px; padding: 0 22px; }
  .capability-strip div:nth-child(2) { border-right: 0; }
  .capability-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .content-section { padding-top: 92px; padding-bottom: 92px; }
  .section-heading { margin-bottom: 38px; }
  .feature-grid, .security-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .security-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .security-grid article:last-child { border-bottom: 0; }
  .methodology-section { padding: 92px 0; }
  .methodology-layout { grid-template-columns: 1fr; gap: 60px; }
  .pricing-section { margin-bottom:82px; }
  .cta-section { align-items: flex-start; flex-direction: column; margin-bottom: 82px; padding: 35px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .risk-disclosure, .technology-attribution { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 460px) {
  .language-control select { width: 48px; }
  .hero h1 { font-size: 42px; }
  .preview-bar { align-items: flex-start; }
  .live-status { padding: 6px 7px; }
  .chart-stage { height: 205px; }
  .signal-tag { display: none; }
  .preview-metrics strong { font-size: 8px; }
  .capability-strip { grid-template-columns: 1fr; }
  .capability-strip div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .capability-strip div:last-child { border-bottom: 0; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

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