/* Дизайн heritage: исходный globals.css из архива, без импорта Tailwind.
   Сброс вынесен в reset.css, который подключается перед этим файлом. */

:root {
  --bg: #040711;
  --bg-soft: #08101b;
  --panel: #0b1420;
  --panel-2: #101a2a;
  --line: rgba(147, 196, 216, 0.15);
  --line-strong: rgba(50, 215, 255, 0.42);
  --text: #f5fbff;
  --muted: #a3b2c9;
  --blue: #27c9ef;
  --blue-2: #6ee7ff;
  --violet: #7868ff;
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-inter), Inter, Arial, sans-serif; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 72px; padding: 0 clamp(24px, 6vw, 112px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(4, 7, 17, 0.8); border-bottom: 1px solid rgba(105,221,255,.08); backdrop-filter: blur(20px);
}
.brand { display: flex; width: 190px; height: 48px; align-items: center; overflow: hidden; }
.brand img { width: 188px; height: auto; object-fit: contain; }
.site-nav { position: absolute; left: 50%; display: flex; gap: 36px; transform: translateX(-50%); }
.site-nav a { color: var(--muted); font-size: 14px; font-weight: 550; transition: color .2s ease; }
.site-nav a:hover { color: white; }
.menu-toggle { display: none; border: 0; background: transparent; color: white; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; background: currentColor; }

.button { position: relative; min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; overflow: hidden; border: 1px solid transparent; border-radius: 14px; color: white; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s, border-color .2s; }
.button::before { content:""; position:absolute; inset:-2px; background:linear-gradient(110deg, transparent 20%, rgba(255,255,255,.28) 46%, transparent 72%); transform:translateX(-130%); transition:transform .55s ease; pointer-events:none; }
.button:hover { transform: translateY(-3px); }
.button:hover::before { transform:translateX(130%); }
.button--primary { background: linear-gradient(118deg, #16bddd 0%, #416fe9 58%, var(--violet) 100%); border-color: rgba(111,232,255,.48); box-shadow: 0 0 0 2px rgba(39,201,239,.12), 0 15px 42px rgba(41,102,220,.28); }
.button--primary:hover { background: linear-gradient(118deg, #20cce9 0%, #4d7cf2 58%, #846fff 100%); border-color: rgba(151,241,255,.72); box-shadow: 0 0 0 3px rgba(39,201,239,.14), 0 20px 52px rgba(42,112,225,.38); }
.button:focus-visible, .text-link:focus-visible, .site-nav a:focus-visible, .mobile-cta:focus-visible { outline:3px solid rgba(110,231,255,.75); outline-offset:4px; }
.button--full { width: 100%; }
.header-cta { min-height: 44px; padding: 0 18px; font-size: 14px; }
.mobile-cta { display:none; }

.hero { position: relative; isolation: isolate; min-height: 100vh; padding: 132px clamp(24px, 8vw, 150px) 82px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(430px, 520px); align-items: center; gap: clamp(54px, 7vw, 120px); overflow: hidden; }
.hero-grid { position: absolute; inset: 0; z-index: -3; background-image: linear-gradient(rgba(88,116,188,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(88,116,188,.055) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black 15%, transparent 90%); }
.hero-grid { animation: grid-drift 18s linear infinite; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 82% 42%, rgba(39,201,239,.16), transparent 30%), radial-gradient(circle at 55% 75%, rgba(120,104,255,.08), transparent 32%), linear-gradient(90deg, #040711 2%, transparent 45%); }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(30px); opacity: .38; }
.hero-glow--one { width: 460px; height: 460px; right: 7%; top: 20%; background: rgba(39,201,239,.17); }
.hero-glow--two { width: 280px; height: 280px; right: 32%; bottom: -10%; background: rgba(120,104,255,.15); }
.hero__copy { max-width: 690px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #72e8ff; font-size: 12px; font-weight: 700; line-height: 1.2; letter-spacing: .14em; text-transform: uppercase; }
.live-dot { width: 8px; height: 8px; background: #45ddf7; border-radius: 50%; box-shadow: 0 0 0 6px rgba(69,221,247,.1), 0 0 16px #45ddf7; }
.hero h1 { max-width: 750px; margin: 28px 0 26px; font-size: clamp(50px, 5.6vw, 92px); font-weight: 590; line-height: .98; letter-spacing: -.062em; }
.hero h1 span { color:#dffaff; background:linear-gradient(115deg, #ffffff 12%, #70e9ff 55%, #9486ff); background-clip:text; -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.hero__copy > p:not(.risk-line) { max-width: 620px; color: var(--muted); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.6; }
.hero__actions { margin-top: 38px; display: flex; align-items: center; gap: 30px; }
.text-link { color: #c7d1ea; font-weight: 600; }
.risk-line { margin-top: 28px; color: #6f7891; font-size: 12px; line-height: 1.5; }

.hero-access { position: relative; width: 100%; max-width: 520px; margin-left: auto; scroll-margin-top: 94px; }
.hero-access__glow { position: absolute; inset: -70px; z-index: -1; border-radius: 50%; background: repeating-radial-gradient(circle at center, transparent 0 34px, rgba(70,210,239,.08) 35px 36px), radial-gradient(circle at 55% 45%, rgba(39,201,239,.2), transparent 58%), radial-gradient(circle at 45% 65%, rgba(120,104,255,.13), transparent 64%); filter: blur(.2px); animation: orb-breathe 6s ease-in-out infinite; }
.hero-access .lead-form { border-color: rgba(76,218,248,.42); box-shadow: 0 34px 110px rgba(0,0,0,.48), 0 0 80px rgba(39,201,239,.13), inset 0 1px rgba(255,255,255,.05); }
.hero-access .lead-form__head h2 { font-size: clamp(28px, 2.25vw, 36px); }

.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; perspective: 1200px; }
.orb { position: relative; width: min(42vw, 490px); aspect-ratio: 1; border: 1px solid rgba(95,139,255,.36); border-radius: 50%; background: radial-gradient(circle at 38% 32%, rgba(112,153,255,.26), transparent 11%), radial-gradient(circle at 50% 50%, rgba(47,107,255,.12), rgba(4,6,11,.82) 66%), repeating-radial-gradient(circle at center, transparent 0 21px, rgba(74,114,224,.15) 22px 23px); box-shadow: inset 0 0 80px rgba(45,95,255,.18), 0 0 90px rgba(47,107,255,.15); animation: orb-breathe 5.5s ease-in-out infinite; }
.orb::before, .orb::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(101,143,255,.23); border-radius: 50%; transform: rotateX(65deg); box-shadow: 0 0 24px rgba(47,107,255,.22); animation: orbit-spin 16s linear infinite; }
.orb::after { inset: 28% -15%; transform: rotate(20deg) rotateX(75deg); }
.orb span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #72a0ff; box-shadow: 0 0 14px #3c75ff; }
.orb span:nth-child(1) { top: 18%; left: 30%; }.orb span:nth-child(2) { right: 22%; top: 38%; }.orb span:nth-child(3) { left: 20%; bottom: 29%; }
.data-card { position: absolute; min-width: 230px; padding: 18px; border: 1px solid rgba(108,144,255,.28); border-radius: 18px; background: linear-gradient(145deg, rgba(20,29,48,.93), rgba(7,10,17,.85)); box-shadow: 0 24px 50px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.05); backdrop-filter: blur(18px); }
.data-card small { display: block; margin-bottom: 8px; color: #77839e; font-size: 10px; letter-spacing: .1em; }.data-card strong { font-size: 16px; }.data-card--a { top: 12%; left: 0; transform: rotateY(8deg); }.data-card--b { right: -2%; top: 40%; }.data-card--c { left: 10%; bottom: 7%; }
.data-card--a { animation: float-a 5.8s ease-in-out infinite; }.data-card--b { animation: float-b 6.6s ease-in-out infinite; }.data-card--c { animation: float-c 6.2s ease-in-out infinite; }
.mini-line { position: relative; height: 48px; margin-top: 12px; border-bottom: 1px solid rgba(255,255,255,.08); overflow: hidden; }.mini-line::before { content:""; position:absolute; inset:18px 0 0; border-top:2px solid #5b8aff; transform: skewY(-9deg); box-shadow: 65px -9px 0 -1px #78a0ff, 125px -2px 0 -1px #4a73d9; }
.bars { height: 46px; margin-top: 10px; display: flex; align-items: flex-end; gap: 6px; }.bars i { width: 12px; background: linear-gradient(#789aff,#2f6bff); }.bars i:nth-child(1){height:35%}.bars i:nth-child(2){height:70%}.bars i:nth-child(3){height:50%}.bars i:nth-child(4){height:88%}.bars i:nth-child(5){height:62%}
.dots { margin-top: 18px; display: flex; gap: 10px; }.dots i { width: 10px; height: 10px; border-radius: 50%; background:#385db8; }.dots i:nth-child(2), .dots i:nth-child(3){background:#6b92ff;box-shadow:0 0 12px #4d7cff}

.signal-strip { min-height: 88px; padding: 20px clamp(24px, 8vw, 150px); display: flex; align-items: center; justify-content: center; gap: 38px; border-block: 1px solid var(--line); background: #07090e; color: #aab4cd; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.signal-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }

.section { padding: 140px clamp(24px, 8vw, 150px); }
.section-heading { max-width: 1240px; margin: 0 auto 76px; display: flex; justify-content: space-between; gap: 70px; }
.section-heading h2 { margin-top: 20px; font-size: clamp(40px, 4.2vw, 66px); font-weight: 560; line-height: 1.04; letter-spacing: -.052em; }
.section-heading > p { max-width: 440px; margin-top: 38px; color: var(--muted); font-size: 17px; line-height: 1.68; }
.section-heading--center { justify-content: center; text-align: center; }

.platform { background: linear-gradient(180deg, #07090e, #04060b); }
.feature-grid { max-width: 1240px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 480px; padding: 30px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, rgba(18,23,35,.92), rgba(7,9,14,.92)); }
.feature-card__number { color: #7f8ba7; font-size: 12px; letter-spacing: .14em; }
.feature-card__visual { position: relative; height: 230px; margin: 20px -30px 24px; background: radial-gradient(circle, rgba(47,107,255,.22), transparent 48%), linear-gradient(rgba(88,116,188,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(88,116,188,.06) 1px, transparent 1px); background-size: auto, 28px 28px, 28px 28px; }
.feature-card__visual::before, .feature-card__visual::after { content:""; position:absolute; border:1px solid rgba(102,141,247,.3); border-radius:50%; inset:18%; }.feature-card__visual::after{inset:30%;box-shadow:0 0 36px rgba(47,107,255,.25)}
.feature-card__visual span { position:absolute; width:8px; height:8px; border-radius:50%; background:#5b85ff; box-shadow:0 0 14px #3669ff; }.feature-card__visual span:nth-child(1){top:25%;left:36%}.feature-card__visual span:nth-child(2){top:53%;right:27%}.feature-card__visual span:nth-child(3){bottom:22%;left:29%}
.feature-card h3 { margin-bottom: 12px; font-size: 25px; font-weight: 560; letter-spacing: -.025em; }.feature-card p { color: var(--muted); line-height: 1.6; }
.feature-card:hover .feature-card__visual::after { transform: scale(1.08); border-color: rgba(113,151,255,.48); }
.feature-card__visual::after { transition: transform .45s ease, border-color .45s ease; }

.markets { background: #06080d; }
.market-grid { max-width: 1240px; margin: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.market-card { position: relative; min-height: 220px; padding: 28px; display: flex; align-items: flex-end; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--panel); transition: transform .25s, border-color .25s; }
.market-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }.market-card img { position: absolute; inset: 0 0 0 auto; width: 56%; height: 100%; object-fit: cover; opacity: .5; mask-image: linear-gradient(90deg, transparent, black 45%); }.market-card > div { position: relative; z-index: 1; max-width: 55%; }.market-card h3 { margin-bottom: 10px; font-size: 25px; font-weight: 560; }.market-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }.market-card__arrow { position:absolute; right:22px; top:20px; z-index:2; color:#7196ff; font-size:22px; }
.inline-cta { max-width:1240px; margin:28px auto 0; padding:30px 32px; display:flex; align-items:center; justify-content:space-between; gap:30px; overflow:hidden; border:1px solid rgba(73,214,245,.25); border-radius:22px; background:radial-gradient(circle at 78% 50%, rgba(39,201,239,.13), transparent 27%), linear-gradient(120deg, rgba(14,28,43,.98), rgba(12,14,27,.98)); box-shadow:inset 0 1px rgba(255,255,255,.04); }
.inline-cta h3 { margin-top:9px; font-size:clamp(23px,2.2vw,32px); font-weight:560; letter-spacing:-.035em; }

.how { background: radial-gradient(circle at 50% 28%, rgba(47,107,255,.1), transparent 30%), #04060b; }
.steps { max-width: 1240px; margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--line); }
.step { min-height: 420px; padding: 28px; background: #090c13; }.step > span { color:#7280a0; font-size:12px; letter-spacing:.13em; }.step__icon { width: 112px; height: 112px; margin: 64px auto 60px; display:grid; place-items:center; border:1px solid rgba(95,134,237,.24); border-radius:50%; box-shadow:inset 0 0 40px rgba(47,107,255,.12); }.step__icon i { width:24px;height:24px;border:1px solid #7396ff;border-radius:6px;transform:rotate(45deg);box-shadow:0 0 18px rgba(70,116,255,.4); }.step h3 { margin-bottom:12px; font-size:20px; font-weight:560; }.step p { color:var(--muted); font-size:14px; line-height:1.6; }

.access { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1fr 520px; gap: 90px; align-items: center; background: radial-gradient(circle at 25% 50%, rgba(47,107,255,.08), transparent 34%); }
.access__copy h2 { max-width: 700px; margin: 22px 0; font-size: clamp(42px, 4.3vw, 68px); line-height:1.03; letter-spacing:-.05em; font-weight:560; }.access__copy > p { max-width:640px; color:var(--muted); font-size:17px; line-height:1.68; }.access__copy ul { margin-top:34px; display:flex; flex-wrap:wrap; gap:10px; list-style:none; }.access__copy li { padding:10px 14px; border:1px solid var(--line); border-radius:999px; color:#c7d1e8; font-size:13px; }
.lead-form { padding: 34px; border:1px solid rgba(72,203,234,.27); border-radius:26px; background:linear-gradient(155deg, rgba(13,27,42,.98), rgba(8,10,21,.97)); box-shadow:0 30px 90px rgba(0,0,0,.36); }.lead-form__head h2 { margin:13px 0 10px; font-size:30px; letter-spacing:-.04em; }.lead-form__head p { color:var(--muted); font-size:14px; line-height:1.55; }.form-benefits { margin-top:18px; display:flex; flex-wrap:wrap; gap:7px; }.form-benefits span { padding:7px 9px; border:1px solid rgba(102,221,244,.18); border-radius:999px; background:rgba(39,201,239,.055); color:#bfeef7; font-size:10px; font-weight:650; letter-spacing:.02em; }.form-benefits span::before { content:"✓"; margin-right:5px; color:#58def6; }.form-grid { margin-top:20px; display:grid; grid-template-columns:1fr 1fr; gap:12px; }.form-grid label > span { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }.form-grid__wide { grid-column:1/-1; }.lead-form input, .lead-form select { width:100%; height:52px; padding:0 15px; border:1px solid rgba(156,198,215,.17); border-radius:12px; outline:none; background:#060b14; color:white; transition:border-color .2s, box-shadow .2s, background .2s; }.lead-form input:hover, .lead-form select:hover { border-color:rgba(109,220,244,.32); background:#07101b; }.lead-form input:focus, .lead-form select:focus { border-color:#4bd9f4; box-shadow:0 0 0 3px rgba(39,201,239,.12); }.phone-field { display:grid; grid-template-columns:128px minmax(0,1fr); overflow:hidden; border:1px solid rgba(156,198,215,.17); border-radius:12px; background:#060b14; transition:border-color .2s, box-shadow .2s, background .2s; }.phone-field:hover { border-color:rgba(109,220,244,.32); background:#07101b; }.phone-field:focus-within { border-color:#4bd9f4; box-shadow:0 0 0 3px rgba(39,201,239,.12); }.country-picker { position:relative; display:grid; grid-template-columns:32px 1fr 18px; align-items:center; padding:0 10px 0 12px; border-right:1px solid rgba(156,198,215,.16); }.country-flag { font-family:"Apple Color Emoji","Segoe UI Emoji",sans-serif; font-size:22px; line-height:1; filter:saturate(1.08); }.country-picker select { height:50px; padding:0 2px; appearance:none; border:0; border-radius:0; background:transparent; box-shadow:none; color:#f4fbff; font-family:var(--font-inter),Inter,sans-serif; font-size:14px; font-weight:650; }.country-picker select:hover,.country-picker select:focus { border:0; background:transparent; box-shadow:none; }.country-chevron { color:#7892a8; font-size:17px; line-height:1; transform:translateY(-2px); pointer-events:none; }.phone-field > input { height:50px; min-width:0; padding:0 16px; border:0; border-radius:0; background:transparent; box-shadow:none; }.phone-field > input:hover,.phone-field > input:focus { border:0; background:transparent; box-shadow:none; }.consent { margin:18px 0; display:flex; align-items:flex-start; gap:10px; color:#8998ae; font-size:11px; line-height:1.5; }.consent input { width:16px; height:16px; flex:none; accent-color:var(--blue); }.consent a { color:#7ce7fa; text-decoration:underline; }.form-note { margin-top:16px; color:#7f8ba0; font-size:11px; text-align:center; }.form-note span{color:#63e1f8}.form-status{min-height:16px;margin-top:8px;color:#83e6f8;font-size:12px;text-align:center}

.country-picker { padding:0 8px 0 9px; }
.country-trigger { grid-column:1/-1; height:50px; display:grid; grid-template-columns:34px 1fr 14px; align-items:center; padding:0; border:0; outline:0; border-radius:10px 0 0 10px; background:transparent; color:#f4fbff; cursor:pointer; text-align:left; transition:background .2s ease; }
.country-trigger:hover,.country-trigger[aria-expanded="true"] { background:linear-gradient(90deg,rgba(39,201,239,.07),transparent); }
.country-trigger:focus-visible { outline:0; }
.country-trigger .country-flag { width:27px; height:27px; display:grid; place-items:center; border:1px solid rgba(132,221,240,.16); border-radius:8px; background:rgba(255,255,255,.045); font-size:17px; line-height:1; filter:saturate(1.03); }
.country-code { padding-left:3px; font-size:15px; font-weight:680; letter-spacing:.01em; }
.country-chevron { width:8px; height:8px; justify-self:end; border-right:2px solid #7797ad; border-bottom:2px solid #7797ad; font-size:0; transform:rotate(45deg) translate(-1px,-1px); transition:transform .2s ease,border-color .2s ease; }
.country-trigger:hover .country-chevron,.country-trigger[aria-expanded="true"] .country-chevron { border-color:#72e8ff; }
.country-chevron--open { transform:rotate(225deg) translate(-1px,-1px); }
.country-menu { position:absolute; top:calc(100% + 9px); left:-1px; z-index:40; width:280px; max-height:286px; padding:7px; overflow-y:auto; border:1px solid rgba(76,218,248,.35); border-radius:14px; background:linear-gradient(155deg, rgba(13,27,42,.99), rgba(7,11,21,.99)); box-shadow:0 24px 70px rgba(0,0,0,.58),0 0 38px rgba(39,201,239,.1),inset 0 1px rgba(255,255,255,.07); backdrop-filter:blur(18px); }
.country-option { width:100%; min-height:42px; padding:8px 10px; display:grid; grid-template-columns:30px minmax(0,1fr) auto; align-items:center; gap:8px; border:1px solid transparent; border-radius:9px; background:transparent; color:#dceaf1; cursor:pointer; text-align:left; transition:background .18s,border-color .18s,color .18s; }
.country-option:hover,.country-option:focus-visible { outline:0; border-color:rgba(83,218,245,.25); background:rgba(39,201,239,.1); color:white; }
.country-option--selected { border-color:rgba(83,218,245,.22); background:linear-gradient(90deg, rgba(39,201,239,.16), rgba(120,104,255,.1)); color:white; }
.country-option__flag { font-family:"Apple Color Emoji","Segoe UI Emoji",sans-serif; font-size:20px; line-height:1; }
.country-option__name { overflow:hidden; font-size:12px; font-weight:600; text-overflow:ellipsis; white-space:nowrap; }
.country-option__code { color:#77e3f7; font-size:12px; font-weight:700; }
.phone-field { overflow:visible; }

.faq { background: #07090e; }
.faq-list { max-width: 1240px; margin: auto; border-top:1px solid var(--line); }.faq-list details { border-bottom:1px solid var(--line); }.faq-list summary { min-height:92px; display:grid; grid-template-columns:58px 1fr 30px; align-items:center; cursor:pointer; list-style:none; font-size:20px; font-weight:520; }.faq-list summary::-webkit-details-marker{display:none}.faq-list summary span{color:#65708c;font-size:12px}.faq-list summary i{font-size:26px;font-style:normal;font-weight:300;color:#6d8ff0;transition:transform .2s}.faq-list details[open] summary i{transform:rotate(45deg)}.faq-list details p{max-width:800px;padding:0 30px 32px 58px;color:var(--muted);line-height:1.7}

.site-footer { padding: 76px clamp(24px, 8vw, 150px) 40px; background:#030509; border-top:1px solid var(--line); }.footer-top { display:grid; grid-template-columns:1fr 1fr auto; align-items:center; gap:36px; padding-bottom:60px; }.brand--footer{width:198px}.footer-top > p{color:var(--muted);font-size:14px}.footer-bottom { padding:26px 0; display:flex; justify-content:space-between; gap:20px; border-top:1px solid var(--line); color:#707a93;font-size:12px }.footer-bottom div{display:flex;gap:24px}.footer-bottom a:hover{color:white}.footer-disclaimer { max-width:1100px;color:#586178;font-size:10px;line-height:1.7; }

/* Soft pearl highlights keep the dark interface airy without competing with CTAs. */
.section-heading h2,
.access__copy h2,
.lead-form__head h2 {
  color: #f8fdff;
  background: linear-gradient(112deg, #ffffff 5%, #f5fbff 46%, #cce1ed 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.platform,
.markets,
.how,
.faq { position: relative; isolation: isolate; }
.platform::before,
.markets::before,
.how::before,
.faq::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012) 35%, transparent 100%);
}
.feature-card,
.market-card,
.step,
.lead-form,
.inline-cta {
  box-shadow: inset 0 1px rgba(255,255,255,.085), 0 24px 70px rgba(0,0,0,.18);
}
.lead-form {
  position: relative;
  overflow: visible;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.075), transparent 34%), linear-gradient(155deg, rgba(13,27,42,.98), rgba(8,10,21,.97));
}
.lead-form::before {
  content: "";
  position: absolute;
  inset: 0 10% auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), rgba(179,241,255,.56), transparent);
}
.signal-strip {
  background: linear-gradient(90deg, #07090e, rgba(255,255,255,.035) 50%, #07090e);
}

.section-heading,
.feature-card,
.market-card,
.step,
.access__copy,
.lead-form,
.faq-list details {
  animation: reveal-up .75s cubic-bezier(.2,.7,.2,1) both;
  animation-timeline: view();
  animation-range: entry 5% cover 28%;
}
.feature-card:nth-child(2), .market-card:nth-child(even), .step:nth-child(2) { animation-delay: 70ms; }
.feature-card:nth-child(3), .step:nth-child(3) { animation-delay: 130ms; }
.step:nth-child(4) { animation-delay: 190ms; }

@keyframes grid-drift { to { background-position: 54px 54px; } }
@keyframes orb-breathe { 0%,100% { transform: scale(1); filter: brightness(1); } 50% { transform: scale(1.025); filter: brightness(1.12); } }
@keyframes orbit-spin { from { rotate: 0deg; } to { rotate: 360deg; } }
@keyframes float-a { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes float-b { 0%,100% { translate: 0 0; } 50% { translate: 9px -8px; } }
@keyframes float-c { 0%,100% { translate: 0 0; } 50% { translate: -7px -10px; } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.legal-page, .thank-page { min-height:100vh; background:radial-gradient(circle at 70% 10%,rgba(47,107,255,.1),transparent 30%),var(--bg); }.legal-header { height:72px;padding:0 clamp(24px,8vw,150px);display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line); }.legal-main { max-width:1000px;margin:auto;padding:100px 24px 140px; }.legal-main h1{font-size:clamp(46px,7vw,82px);line-height:1;letter-spacing:-.06em}.legal-intro{margin:24px 0 70px;color:var(--muted);font-size:18px;line-height:1.7}.legal-section{padding:46px 0;border-top:1px solid var(--line)}.legal-section h2{margin-bottom:22px;font-size:32px;letter-spacing:-.04em}.legal-section h3{margin:24px 0 8px;font-size:18px}.legal-section p,.legal-section li{color:var(--muted);line-height:1.72}.legal-section ul{padding-left:20px}.legal-section a{color:#92adff}.thank-page{display:grid;place-items:center;padding:30px}.thank-card{max-width:760px;padding:60px;text-align:center;border:1px solid var(--line-strong);border-radius:30px;background:rgba(12,16,26,.9);box-shadow:0 40px 120px rgba(0,0,0,.4)}.thank-mark{width:74px;height:74px;margin:0 auto 26px;display:grid;place-items:center;border-radius:50%;background:rgba(47,107,255,.15);border:1px solid rgba(87,127,238,.4);color:#7ea0ff;font-size:30px}.thank-card h1{font-size:clamp(38px,7vw,66px);letter-spacing:-.05em}.thank-card p{max-width:600px;margin:20px auto 30px;color:var(--muted);line-height:1.7}

@media (max-width: 1100px) {
  .site-nav{gap:20px}.hero{grid-template-columns:1fr;padding-top:132px}.hero__copy{text-align:center;margin:auto}.hero__actions{justify-content:center}.risk-line{text-align:center}.hero-access{max-width:620px;margin:30px auto 0}.feature-grid{grid-template-columns:1fr}.feature-card{min-height:400px}.feature-card__visual{height:190px}.steps{grid-template-columns:1fr 1fr}.access{grid-template-columns:1fr;gap:60px}.access__copy{text-align:center}.access__copy>p{margin:auto}.access__copy ul{justify-content:center}.lead-form{max-width:620px;width:100%;margin:auto}
}
@media (max-width: 760px) {
  body{padding-bottom:74px}.site-header{padding:0 20px}.brand{width:158px;height:44px}.brand img{width:156px}.header-cta{display:none}.mobile-cta{position:fixed;left:14px;right:14px;bottom:12px;z-index:60;min-height:52px;padding:0 20px;display:flex;align-items:center;justify-content:center;gap:12px;border:1px solid rgba(139,237,255,.55);border-radius:15px;background:linear-gradient(118deg, rgba(22,189,221,.97), rgba(65,111,233,.97) 60%, rgba(120,104,255,.97));box-shadow:0 14px 42px rgba(2,5,12,.7),0 0 24px rgba(39,201,239,.18);color:white;font-size:14px;font-weight:750;backdrop-filter:blur(12px)}.menu-toggle{display:block;position:relative;z-index:2}.site-nav{position:absolute;top:72px;left:14px;right:14px;transform:none;padding:18px;display:none;flex-direction:column;gap:0;border:1px solid var(--line);border-radius:16px;background:rgba(8,11,18,.98)}.site-nav--open{display:flex}.site-nav a{padding:14px}.hero{padding:116px 20px 72px;gap:24px}.hero h1{font-size:clamp(46px,15vw,68px)}.hero__actions{flex-direction:column}.hero-access{margin-top:18px}.hero-access__glow{inset:-30px}.signal-strip{justify-content:flex-start;overflow:auto;white-space:nowrap}.section{padding:92px 20px}.section-heading{margin-bottom:48px;display:block}.section-heading>p{margin-top:24px}.feature-card{padding:24px}.feature-card__visual{margin-inline:-24px}.market-grid{grid-template-columns:1fr}.market-card{min-height:200px}.market-card>div{max-width:66%}.inline-cta{padding:25px;align-items:flex-start;flex-direction:column}.inline-cta .button{width:100%}.steps{grid-template-columns:1fr}.step{min-height:350px}.step__icon{margin:48px auto}.access{padding-inline:20px}.lead-form{padding:24px}.form-grid{grid-template-columns:1fr}.form-grid__wide{grid-column:auto}.faq-list summary{grid-template-columns:38px 1fr 24px;min-height:82px;font-size:17px}.faq-list details p{padding-left:38px}.footer-top{grid-template-columns:1fr;text-align:left}.footer-bottom{flex-direction:column}.footer-bottom div{flex-wrap:wrap}.legal-header{padding:0 20px}.legal-main{padding-top:70px}.thank-card{padding:42px 24px}
}
@media (prefers-reduced-motion: reduce) {
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;animation-timeline:auto!important;transition-duration:.01ms!important}
}

/* Warm light theme — 60% warm canvas, 30% neutral surfaces, 10% vivid accents. */
:root {
  --bg: #F7F5F0;
  --bg-soft: #EFEEE9;
  --panel: #FFFFFF;
  --panel-2: #FFFFFF;
  --line: rgba(21,23,26,.12);
  --line-strong: rgba(49,92,255,.42);
  --text: #15171A;
  --muted: #5F6670;
  --blue: #315CFF;
  --blue-2: #315CFF;
  --violet: #315CFF;
  --lime: #C8FF3D;
}
body { background:#F7F5F0; color:#15171A; }
.site-header { background:rgba(247,245,240,.9); border-bottom-color:rgba(21,23,26,.1); box-shadow:0 8px 30px rgba(21,23,26,.035); }
.site-header .brand { width:220px; padding:0; border-radius:0; background:transparent; box-shadow:none; }
.site-header .brand img { width:216px; }
.site-nav a { color:#5F6670; }
.site-nav a:hover { color:#15171A; }
.menu-toggle { color:#15171A; }
.button--primary { color:#FFFFFF; background:#315CFF; border-color:#315CFF; box-shadow:0 0 0 2px rgba(49,92,255,.11),0 14px 36px rgba(49,92,255,.2); }
.button--primary:hover { color:#FFFFFF; background:#244DE6; border-color:#244DE6; box-shadow:0 0 0 3px rgba(49,92,255,.11),0 18px 44px rgba(49,92,255,.26); }
.button:focus-visible,.text-link:focus-visible,.site-nav a:focus-visible,.mobile-cta:focus-visible { outline-color:#315CFF; }

.hero { background:#F7F5F0; }
.hero-grid { background-image:linear-gradient(rgba(49,92,255,.065) 1px,transparent 1px),linear-gradient(90deg,rgba(49,92,255,.065) 1px,transparent 1px); }
.hero::before { background:radial-gradient(circle at 82% 42%,rgba(49,92,255,.11),transparent 31%),radial-gradient(circle at 55% 75%,rgba(200,255,61,.12),transparent 30%),linear-gradient(90deg,#F7F5F0 2%,transparent 45%); }
.hero-glow--one { background:rgba(49,92,255,.12); }
.hero-glow--two { background:rgba(200,255,61,.18); }
.eyebrow { color:#315CFF; }
.live-dot { background:#C8FF3D; border:1px solid rgba(21,23,26,.22); box-shadow:0 0 0 6px rgba(200,255,61,.24),0 0 18px rgba(111,149,0,.3); }
.hero h1 { color:#15171A; }
.hero h1 span { color:#315CFF; background:none; -webkit-text-fill-color:#315CFF; }
.hero__copy > p:not(.risk-line) { color:#5F6670; }
.text-link { color:#15171A; }
.text-link:hover { color:#315CFF; }
.risk-line { color:#6F747B; }
.hero-access__glow { background:repeating-radial-gradient(circle at center,transparent 0 34px,rgba(49,92,255,.065) 35px 36px),radial-gradient(circle at 55% 45%,rgba(49,92,255,.1),transparent 58%),radial-gradient(circle at 45% 65%,rgba(200,255,61,.12),transparent 64%); }
.hero-access .lead-form { border-color:rgba(49,92,255,.23); box-shadow:0 30px 80px rgba(21,23,26,.12),0 0 0 1px rgba(255,255,255,.7),inset 0 1px #FFFFFF; }

.signal-strip { border-block-color:rgba(21,23,26,.1); background:#FFFFFF; color:#5F6670; }
.signal-strip i { background:#C8FF3D; border:1px solid rgba(21,23,26,.2); box-shadow:0 0 12px rgba(124,163,0,.28); }
.platform { background:#F7F5F0; }
.markets { background:#EFEEE9; }
.how { background:radial-gradient(circle at 50% 28%,rgba(49,92,255,.07),transparent 31%),#F7F5F0; }
.faq { background:#EFEEE9; }
.access { background:radial-gradient(circle at 24% 50%,rgba(200,255,61,.13),transparent 34%); }
.platform::before,.markets::before,.how::before,.faq::before { background:linear-gradient(180deg,rgba(255,255,255,.42),rgba(255,255,255,.12) 38%,transparent 100%); }
.section-heading h2,.access__copy h2,.lead-form__head h2 { color:#15171A; background:none; -webkit-text-fill-color:#15171A; }
.section-heading > p,.access__copy > p { color:#5F6670; }

.feature-card,.market-card,.step,.lead-form,.inline-cta { border-color:rgba(21,23,26,.11); background:#FFFFFF; box-shadow:inset 0 1px #FFFFFF,0 18px 54px rgba(21,23,26,.075); }
.feature-card { background:linear-gradient(155deg,#FFFFFF,#FBFAF7); }
.feature-card__number,.step > span { color:#737983; }
.feature-card__visual { background:radial-gradient(circle,rgba(49,92,255,.13),transparent 48%),linear-gradient(rgba(49,92,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(49,92,255,.055) 1px,transparent 1px); background-size:auto,28px 28px,28px 28px; }
.feature-card__visual::before,.feature-card__visual::after { border-color:rgba(49,92,255,.22); }
.feature-card__visual::after { box-shadow:0 0 36px rgba(49,92,255,.14); }
.feature-card__visual span { background:#315CFF; box-shadow:0 0 14px rgba(49,92,255,.38); }
.feature-card h3,.market-card h3,.step h3,.inline-cta h3 { color:#15171A; }
.feature-card p,.market-card p,.step p { color:#5F6670; }
.market-card { background:#FFFFFF; }
.market-card img { opacity:.28; mix-blend-mode:multiply; }
.market-card__arrow { color:#315CFF; }
.steps { border-color:rgba(21,23,26,.1); background:rgba(21,23,26,.1); }
.step { background:#FFFFFF; }
.step__icon { border-color:rgba(49,92,255,.24); box-shadow:inset 0 0 40px rgba(49,92,255,.08); }
.step__icon i { border-color:#315CFF; box-shadow:0 0 18px rgba(49,92,255,.22); }
.access__copy li { border-color:rgba(21,23,26,.12); background:#FFFFFF; color:#34383E; }

.inline-cta { border-color:rgba(49,92,255,.17); background:radial-gradient(circle at 80% 50%,rgba(200,255,61,.2),transparent 28%),linear-gradient(120deg,#FFFFFF,#F8F7F3); }
.inline-cta .button { color:#15171A; background:#C8FF3D; border-color:#B7EB32; box-shadow:0 14px 34px rgba(117,153,15,.16); }
.inline-cta .button:hover { color:#15171A; background:#D2FF61; border-color:#C8FF3D; box-shadow:0 18px 40px rgba(117,153,15,.21); }

.lead-form { border-color:rgba(21,23,26,.11); background:radial-gradient(ellipse at 50% 0%,rgba(49,92,255,.055),transparent 34%),#FFFFFF; }
.lead-form::before { background:linear-gradient(90deg,transparent,rgba(49,92,255,.48),rgba(200,255,61,.65),transparent); }
.lead-form__head p { color:#5F6670; }
.form-benefits span { border-color:rgba(151,191,28,.28); background:rgba(200,255,61,.23); color:#343B1D; }
.form-benefits span::before { color:#315CFF; }
.lead-form input,.lead-form select { border-color:rgba(21,23,26,.13); background:#F7F5F0; color:#15171A; }
.lead-form input::placeholder { color:#7A8088; opacity:1; }
.lead-form input:hover,.lead-form select:hover { border-color:rgba(49,92,255,.3); background:#FFFFFF; }
.lead-form input:focus,.lead-form select:focus { border-color:#315CFF; background:#FFFFFF; box-shadow:0 0 0 3px rgba(49,92,255,.11); }
.phone-field { border-color:rgba(21,23,26,.13); background:#F7F5F0; }
.phone-field:hover { border-color:rgba(49,92,255,.3); background:#FFFFFF; }
.phone-field:focus-within { border-color:#315CFF; background:#FFFFFF; box-shadow:0 0 0 3px rgba(49,92,255,.11); }
.country-picker { border-right-color:rgba(21,23,26,.12); }
.country-trigger { color:#15171A; }
.country-trigger:hover,.country-trigger[aria-expanded="true"] { background:linear-gradient(90deg,rgba(49,92,255,.07),transparent); }
.country-trigger .country-flag { border-color:rgba(21,23,26,.1); background:#FFFFFF; }
.country-chevron { border-color:#737983; }
.country-trigger:hover .country-chevron,.country-trigger[aria-expanded="true"] .country-chevron { border-color:#315CFF; }
.country-menu { border-color:rgba(49,92,255,.24); background:#FFFFFF; box-shadow:0 24px 70px rgba(21,23,26,.18),0 0 0 1px rgba(255,255,255,.85); }
.country-option { color:#34383E; }
.country-option:hover,.country-option:focus-visible { border-color:rgba(49,92,255,.16); background:rgba(49,92,255,.07); color:#15171A; }
.country-option--selected { border-color:#315CFF; background:#315CFF; color:#FFFFFF; }
.country-option__code { color:#315CFF; }
.country-option--selected .country-option__code { color:#C8FF3D; }
.consent { color:#686E76; }
.consent a { color:#315CFF; }
.form-note { color:#737983; }
.form-note span,.form-status { color:#315CFF; }

.faq-list { border-top-color:rgba(21,23,26,.12); }
.faq-list details { border-bottom-color:rgba(21,23,26,.12); }
.faq-list summary { color:#15171A; }
.faq-list summary span { color:#737983; }
.faq-list summary i { color:#315CFF; }
.faq-list details p { color:#5F6670; }

.site-footer { background:linear-gradient(180deg,#EFEEE9 0,#F7F5F0 130px); border-top-color:rgba(21,23,26,.1); color:#15171A; }
.footer-top { max-width:1240px; margin:0 auto; padding:32px; border:1px solid rgba(21,23,26,.1); border-radius:24px; background:#FFFFFF; box-shadow:inset 0 1px #FFFFFF,0 18px 54px rgba(21,23,26,.075); }
.site-footer .brand { width:220px; padding:0; background:transparent; box-shadow:none; }
.site-footer .brand img { width:216px; }
.footer-top > p { color:#5F6670; }
.footer-bottom { max-width:1240px; margin:34px auto 0; border-top-color:rgba(21,23,26,.12); color:#5F6670; }
.footer-bottom a { color:#34383E; }
.footer-bottom a:hover { color:#315CFF; }
.footer-disclaimer { margin:0 auto; color:#737983; }

.legal-page,.thank-page { background:radial-gradient(circle at 70% 10%,rgba(49,92,255,.08),transparent 30%),#F7F5F0; color:#15171A; }
.legal-header { border-bottom-color:rgba(21,23,26,.1); }
.legal-header .brand { width:220px; padding:0; border-radius:0; background:transparent; box-shadow:none; }
.legal-header .brand img { width:216px; }
.legal-intro,.legal-section p,.legal-section li,.thank-card p { color:#5F6670; }
.legal-section { border-top-color:rgba(21,23,26,.12); }
.legal-section a { color:#315CFF; }
.thank-card { border-color:rgba(49,92,255,.23); background:#FFFFFF; box-shadow:0 32px 90px rgba(21,23,26,.12); }
.thank-mark { border-color:rgba(125,158,20,.32); background:#C8FF3D; color:#15171A; }

@media (max-width:760px) {
  .site-header .brand { width:176px; padding:0; }
  .site-header .brand img { width:172px; }
  .legal-header .brand { width:174px; }
  .legal-header .brand img { width:170px; }
  .site-nav { border-color:rgba(21,23,26,.12); background:rgba(255,255,255,.98); box-shadow:0 18px 48px rgba(21,23,26,.13); }
  .site-nav a { color:#34383E; }
  .mobile-cta { color:#15171A; border-color:#B7EB32; background:#C8FF3D; box-shadow:0 14px 40px rgba(21,23,26,.22),0 0 22px rgba(151,191,28,.18); }
  .country-menu { max-height:220px; }
  .site-footer { padding:52px 20px 32px; }
  .footer-top { padding:24px; gap:24px; }
  .footer-top .button { width:100%; }
}
