@import "tailwindcss";

:root {
  --ink: #07131f;
  --navy: #091827;
  --navy-2: #0d2238;
  --paper: #f5f8fb;
  --white: #ffffff;
  --muted: #617083;
  --line: #dfe7ee;
  --aqua: #63e6d5;
  --aqua-dark: #1eaa9c;
  --blue: #6ba8ff;
  --violet: #a48bff;
  --amber: #e9ba68;
  --shadow: 0 22px 70px rgba(11, 35, 60, .09);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
address { font-style: normal; }

.container-shell {
  width: min(calc(100% - 48px), 1220px);
  margin-inline: auto;
}

.page-section { scroll-margin-top: 86px; }
.section-pad { padding-block: 118px; }
.section-light { background: #fff; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus { top: 14px; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}
.button:hover { transform: translateY(-2px); }
.button-large { min-height: 54px; padding: 15px 24px; border-radius: 15px; }
.button-primary { color: #fff; background: var(--ink); box-shadow: 0 12px 28px rgba(7, 19, 31, .16); }
.button-primary:hover { background: #102b46; box-shadow: 0 16px 34px rgba(7, 19, 31, .22); }
.button-aqua { color: #07201f; background: var(--aqua); box-shadow: 0 16px 36px rgba(67, 221, 202, .2); }
.button-aqua:hover { background: #79f1e2; box-shadow: 0 18px 42px rgba(67, 221, 202, .3); }
.button-glass { color: #fff; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.button-glass:hover { border-color: rgba(255,255,255,.27); background: rgba(255,255,255,.1); }
.button-ghost-dark { color: #314154; border-color: #ced9e2; background: #fff; box-shadow: none; }

.telegram-glyph {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: currentColor;
  background: rgba(255,255,255,.14);
  font-size: 13px;
}
.button-aqua .telegram-glyph { background: rgba(7, 32, 31, .1); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(213, 225, 235, .82);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}
.header-row { display: flex; height: 76px; align-items: center; gap: 24px; }
.brand-link { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; }
.brand-mark {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(10, 40, 66, .2);
}
.brand-mark span { position: absolute; display: block; border-radius: 2px; transform: rotate(-34deg); }
.brand-mark span:nth-child(1) { width: 7px; height: 25px; left: 8px; top: 9px; background: var(--aqua); }
.brand-mark span:nth-child(2) { width: 7px; height: 29px; left: 16px; top: 4px; background: var(--blue); }
.brand-mark span:nth-child(3) { width: 7px; height: 21px; left: 25px; top: 4px; background: var(--violet); }
.brand-name { display: grid; font-size: 15px; font-weight: 760; line-height: 1.02; letter-spacing: -.02em; }
.brand-name span:last-child { color: #6e7b8a; }
.desktop-nav { display: flex; margin-left: auto; align-items: center; gap: 21px; }
.desktop-nav a { color: #4f5e70; font-size: 12.5px; font-weight: 650; white-space: nowrap; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--ink); }
.header-cta { flex: 0 0 auto; padding-inline: 17px; }
.burger { display: none; position: relative; width: 46px; height: 46px; margin-left: auto; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.burger-line { position: absolute; left: 12px; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: .25s ease; }
.burger-line:nth-child(1) { top: 15px; }
.burger-line:nth-child(2) { top: 21px; }
.burger-line:nth-child(3) { top: 27px; }
.burger-line.is-top { top: 21px; transform: rotate(45deg); }
.burger-line.is-mid { opacity: 0; }
.burger-line.is-bottom { top: 21px; transform: rotate(-45deg); }
.mobile-menu { display: grid; max-height: 0; overflow: hidden; border-top: 0 solid var(--line); background: #fff; transition: max-height .32s ease, border-width .32s ease; }
.mobile-menu.is-open { max-height: 620px; border-top-width: 1px; }
.mobile-menu nav { display: grid; padding-block: 10px 22px; }
.mobile-menu nav > a:not(.button) { padding: 13px 2px; border-bottom: 1px solid #edf1f5; color: #344458; font-size: 15px; font-weight: 650; }
.mobile-menu .button { margin-top: 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2d6fc6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 1px; content: ""; background: currentColor; }
.eyebrow-dark { color: var(--aqua); }
.eyebrow-dark i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 14px currentColor; }
.eyebrow-dark::before { display: none; }

.hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 7% 12%, rgba(56, 120, 218, .17), transparent 27%),
    radial-gradient(circle at 91% 58%, rgba(88, 229, 212, .12), transparent 24%),
    linear-gradient(rgba(115, 151, 188, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 151, 188, .055) 1px, transparent 1px),
    var(--ink);
  background-size: auto, auto, 56px 56px, 56px 56px, auto;
}
.hero-section::after { position: absolute; inset: auto 0 0; height: 160px; content: ""; background: linear-gradient(transparent, rgba(4,12,20,.46)); pointer-events: none; }
.hero-orbit { position: absolute; border: 1px solid rgba(109, 171, 255, .09); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 760px; height: 760px; right: -350px; top: -310px; animation: orbit 18s linear infinite; }
.orbit-two { width: 410px; height: 410px; left: -270px; bottom: 40px; animation: orbit 14s linear reverse infinite; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 60px; align-items: center; padding-block: 94px 66px; }
.hero-copy h1 { max-width: 740px; margin: 24px 0 0; font-size: clamp(3rem, 5.35vw, 5.5rem); font-weight: 680; letter-spacing: -.066em; line-height: .95; }
.hero-copy h1 span { color: transparent; background: linear-gradient(90deg, var(--aqua), var(--blue) 58%, var(--violet)); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 690px; margin: 29px 0 0; color: #d4deea; font-size: clamp(1.05rem, 1.8vw, 1.22rem); line-height: 1.68; }
.hero-support { max-width: 680px; margin: 16px 0 0; color: #91a3b8; font-size: 14px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 25px 0 0; padding: 0; list-style: none; }
.hero-facts li { display: flex; align-items: center; gap: 7px; color: #afbdcc; font-size: 12px; }
.hero-facts li span { display: grid; width: 17px; height: 17px; place-items: center; border-radius: 50%; color: var(--aqua); background: rgba(99,230,213,.1); font-size: 9px; }
.risk-line { display: flex; max-width: 690px; gap: 12px; align-items: flex-start; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.risk-line > span { display: grid; width: 24px; height: 24px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(233,186,104,.42); border-radius: 50%; color: var(--amber); font-size: 12px; font-weight: 800; }
.risk-line p { margin: 0; color: #788ba2; font-size: 11px; line-height: 1.65; }
.hero-visual { min-width: 0; }

.arbitrage-demo { position: relative; border: 1px solid rgba(144,177,210,.16); border-radius: 24px; padding: 18px; background: linear-gradient(145deg, rgba(18,43,68,.88), rgba(6,17,29,.88)); box-shadow: 0 36px 90px rgba(0,0,0,.38); backdrop-filter: blur(16px); }
.arbitrage-demo::before { position: absolute; inset: -1px; z-index: -1; content: ""; border-radius: inherit; background: linear-gradient(135deg, rgba(99,230,213,.14), transparent 35%, rgba(164,139,255,.12)); filter: blur(16px); }
.demo-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; color: #778ca3; font-size: 9px; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border: 1px solid rgba(99,230,213,.12); border-radius: 999px; color: #9eb0c3; background: rgba(99,230,213,.05); }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 12px var(--aqua); animation: blink 2s ease-in-out infinite; }
.exchange-grid { position: relative; display: grid; grid-template-columns: 1fr 52px 1fr; align-items: center; }
.exchange-card { min-width: 0; padding: 16px; border: 1px solid rgba(255,255,255,.09); border-radius: 17px; background: rgba(255,255,255,.045); }
.exchange-heading { display: flex; align-items: center; justify-content: space-between; color: #8093a8; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.exchange-badge { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 7px; color: #092125; background: var(--aqua); font-size: 9px; font-weight: 900; }
.exchange-b .exchange-badge { color: #fff; background: #536fee; }
.exchange-card > strong { display: block; margin-top: 12px; color: #dce7f1; font-size: 12px; }
.price-label { display: block; margin-top: 16px; color: #61758d; font-size: 9px; text-transform: uppercase; }
.exchange-card > b { display: block; margin-top: 3px; color: var(--aqua); font-size: clamp(1.15rem, 2vw, 1.55rem); letter-spacing: -.03em; }
.exchange-b > b { color: #7b9dff; }
.depth { display: grid; gap: 3px; margin-top: 15px; }
.depth span { height: 3px; border-radius: 3px; background: linear-gradient(90deg, rgba(99,230,213,.85), rgba(99,230,213,.08)); }
.exchange-b .depth span { margin-left: auto; background: linear-gradient(90deg, rgba(83,111,238,.12), rgba(107,168,255,.9)); }
.exchange-card small { display: block; margin-top: 10px; color: #71849b; font-size: 8px; }
.transfer-route { position: relative; display: grid; height: 42px; place-items: center; color: var(--aqua); }
.transfer-route::before { position: absolute; left: 2px; right: 2px; height: 1px; content: ""; background: linear-gradient(90deg, var(--aqua), var(--blue)); box-shadow: 0 0 10px rgba(99,230,213,.55); }
.transfer-route b { position: relative; z-index: 2; display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid rgba(99,230,213,.3); border-radius: 50%; background: #0a1a2b; font-size: 12px; }
.route-dot { position: absolute; z-index: 3; width: 5px; height: 5px; border-radius: 50%; background: #fff; box-shadow: 0 0 9px var(--aqua); animation: route 2.7s ease-in-out infinite; }
.dot-two { animation-delay: 1.35s; }
.demo-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 10px; }
.spread-metric { padding: 10px 11px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.03); }
.spread-metric span { display: block; color: #657a91; font-size: 7px; text-transform: uppercase; }
.spread-metric strong { display: block; margin-top: 4px; color: #c8d5e2; font-size: 10px; }
.calculation-table { margin-top: 9px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; }
.calculation-table > div { display: flex; justify-content: space-between; gap: 15px; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,.06); color: #7f91a5; font-size: 9px; }
.calculation-table > div:last-child { border: 0; }
.calculation-table strong { color: #c6d3e0; }
.calculation-table .is-total { color: #b9c7d5; background: rgba(99,230,213,.055); }
.calculation-table .is-total strong { color: var(--aqua); }
.demo-note { margin: 10px 2px 0; color: #546a82; font-size: 7.5px; line-height: 1.5; }
.trust-strip { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.trust-strip > span { color: #8ea0b4; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.trust-strip div { display: flex; gap: 32px; color: #768ba3; font-size: 11px; }

.section-heading h2, .partnership-copy h2, .audience-heading h2, .faq-heading h2, .final-cta h2, .inner-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.45rem, 4.8vw, 4.7rem);
  font-weight: 680;
  letter-spacing: -.058em;
  line-height: 1.01;
}
.split-heading { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: end; }
.heading-copy { color: var(--muted); font-size: 15px; line-height: 1.78; }
.heading-copy p { margin: 0 0 15px; }
.heading-copy strong { color: #293b50; font-weight: 700; }
.centered-heading { max-width: 850px; margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading > p, .compact-heading > p, .audience-heading > p, .faq-heading > p { margin: 22px auto 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.mechanics-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 66px; border: 1px solid var(--line); border-radius: 24px; background: #f6f9fb; box-shadow: var(--shadow); }
.mechanic-step { position: relative; min-height: 180px; padding: 26px 25px; border-right: 1px solid var(--line); }
.mechanic-step:last-child { border: 0; }
.mechanic-step > span { color: #3982dd; font-family: ui-monospace, monospace; font-size: 11px; font-weight: 800; }
.mechanic-step p { margin: 45px 0 0; color: #37485b; font-size: 14px; font-weight: 650; line-height: 1.55; }
.mechanic-step i { position: absolute; z-index: 2; top: 28px; right: -13px; display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #7192b8; background: #fff; font-size: 11px; font-style: normal; }
.skill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
.skill-card, .benefit-card { border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 16px 50px rgba(14,42,70,.05); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.skill-card:hover, .benefit-card:hover { transform: translateY(-5px); border-color: #b9d0df; box-shadow: 0 22px 60px rgba(14,42,70,.11); }
.skill-card { padding: 25px; }
.skill-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: #186e76; background: #e8faf7; font-size: 17px; font-weight: 800; }
.skill-card:nth-child(2) .skill-icon { color: #336ec0; background: #edf5ff; }
.skill-card:nth-child(3) .skill-icon { color: #795bbd; background: #f4efff; }
.skill-card:nth-child(4) .skill-icon { color: #9a672a; background: #fff7e8; }
.skill-card h3, .benefit-card h3 { margin: 26px 0 0; font-size: 18px; letter-spacing: -.025em; }
.skill-card p, .benefit-card p { margin: 11px 0 0; color: var(--muted); font-size: 13px; line-height: 1.68; }
.notice-card { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; margin-top: 22px; padding: 20px 22px; border: 1px solid #ead8ad; border-radius: 18px; background: #fffaf0; }
.notice-card > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #a27024; background: #f8e5b7; font-weight: 850; }
.notice-card p { margin: 0; color: #6c5d42; font-size: 12px; line-height: 1.65; }

.training-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(155deg, #081827, #0a2035 58%, #0a192a); }
.training-section::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 50% 0, rgba(99,230,213,.1), transparent 30%), linear-gradient(rgba(138,171,204,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(138,171,204,.04) 1px, transparent 1px); background-size: auto, 52px 52px, 52px 52px; }
.training-section .container-shell { position: relative; }
.light-heading h2 { color: #fff; }
.training-section .centered-heading > p, .workflow-section .centered-heading > p { color: #9fb0c3; }
.training-timeline { position: relative; max-width: 1000px; margin: 68px auto 0; }
.training-timeline::before { position: absolute; top: 0; bottom: 0; left: 84px; width: 1px; content: ""; background: linear-gradient(var(--aqua), rgba(107,168,255,.7), var(--violet)); }
.day-card { position: relative; display: grid; grid-template-columns: 170px 1fr; margin-bottom: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; background: rgba(255,255,255,.045); box-shadow: 0 22px 70px rgba(0,0,0,.15); backdrop-filter: blur(12px); }
.day-index { display: grid; align-content: start; gap: 12px; padding: 30px; border-right: 1px solid rgba(255,255,255,.09); }
.day-index span { color: var(--aqua); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.day-index b { color: rgba(255,255,255,.1); font-size: 54px; letter-spacing: -.06em; }
.day-content { padding: 30px 34px; }
.day-content h3 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.day-content > p { margin: 9px 0 0; color: #879ab0; font-size: 13px; }
.day-content ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 26px; margin: 24px 0 0; padding: 0; list-style: none; }
.day-content li { display: flex; gap: 9px; color: #b7c5d3; font-size: 12px; line-height: 1.55; }
.day-content li span { color: var(--aqua); }
.day-result { display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: start; margin-top: 25px; padding: 17px; border: 1px solid rgba(99,230,213,.13); border-radius: 15px; background: rgba(99,230,213,.055); }
.day-result span { color: var(--aqua); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.day-result p { margin: 0; color: #d4dee8; font-size: 12px; line-height: 1.55; }
.centered-action { display: flex; justify-content: center; margin-top: 42px; }

.workflow-section { color: #fff; background: #06111e; }
.funnel-map { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 68px; }
.funnel-map::before { position: absolute; top: 64px; left: 8%; right: 8%; height: 1px; content: ""; background: linear-gradient(90deg, var(--aqua), var(--blue), var(--violet)); opacity: .4; }
.funnel-step { position: relative; min-height: 268px; padding: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 20px; background: rgba(255,255,255,.035); }
.funnel-number { color: #677a90; font-family: ui-monospace, monospace; font-size: 9px; }
.funnel-icon { position: relative; z-index: 2; display: grid; width: 52px; height: 52px; margin-top: 15px; place-items: center; border: 1px solid rgba(99,230,213,.25); border-radius: 15px; color: var(--aqua); background: #0e263a; box-shadow: 0 0 26px rgba(99,230,213,.1); font-size: 19px; }
.funnel-step h3 { margin: 28px 0 0; font-size: 16px; letter-spacing: -.02em; }
.funnel-step p { margin: 11px 0 0; color: #8193a8; font-size: 11.5px; line-height: 1.65; }
.funnel-step > i { position: absolute; z-index: 3; top: 52px; right: -17px; display: grid; width: 34px; height: 25px; place-items: center; color: #80e7dc; font-size: 12px; font-style: normal; animation: arrowPulse 2.4s ease-in-out infinite; }
.funnel-summary { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; margin-top: 18px; padding: 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; color: #a8b7c6; background: rgba(255,255,255,.025); font-size: 10px; }
.funnel-summary b { color: var(--aqua); }
.partnership-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 55px; align-items: start; margin-top: 118px; padding-top: 110px; border-top: 1px solid rgba(255,255,255,.09); }
.partnership-copy > p { max-width: 680px; margin: 22px 0 0; color: #9bacc0; font-size: 15px; line-height: 1.75; }
.partnership-copy h3 { margin: 30px 0 0; color: #dce6ef; font-size: 14px; }
.terms-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px 20px; margin: 18px 0 30px; padding: 0; list-style: none; }
.terms-list li { display: flex; gap: 9px; color: #a7b7c6; font-size: 12px; }
.terms-list span { color: var(--aqua); }
.security-panel { padding: 32px; border: 1px solid rgba(99,230,213,.16); border-radius: 24px; background: linear-gradient(145deg, rgba(99,230,213,.08), rgba(107,168,255,.04)); }
.security-heading { display: flex; gap: 16px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.09); }
.security-shield { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; border-radius: 15px 15px 19px 19px; color: #07201f; background: var(--aqua); font-weight: 900; }
.security-heading div > span { color: var(--aqua); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.security-heading h3 { margin: 5px 0 0; font-size: 18px; }
.security-panel ul { display: grid; gap: 13px; margin: 25px 0 0; padding: 0; list-style: none; }
.security-panel li { display: flex; gap: 11px; color: #bac8d6; font-size: 13px; line-height: 1.55; }
.security-panel li span { color: var(--aqua); }
.security-panel > p { margin: 27px 0 0; padding: 17px; border-radius: 13px; color: #d5bd8f; background: rgba(233,186,104,.08); font-size: 11px; line-height: 1.6; }

.audience-section { background: #f7f9fb; }
.compact-heading { align-items: center; }
.compact-heading > p { max-width: 520px; margin-inline: 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; }
.benefit-card { min-height: 245px; padding: 27px; }
.benefit-card > span { color: #4d82d2; font-family: ui-monospace, monospace; font-size: 10px; font-weight: 800; }
.benefit-card h3 { margin-top: 55px; font-size: 20px; }
.benefit-card p { font-size: 14px; }
.audience-heading { max-width: 780px; margin: 112px auto 0; text-align: center; }
.audience-heading .eyebrow { justify-content: center; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 54px; }
.audience-card { padding: 33px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.audience-label { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: #147d71; background: #e8faf7; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.is-unsuitable .audience-label { color: #8e6030; background: #fff4e5; }
.audience-card h3 { margin: 22px 0 0; font-size: 24px; letter-spacing: -.035em; }
.audience-card ul { display: grid; gap: 13px; margin: 26px 0 0; padding: 0; list-style: none; }
.audience-card li { display: flex; gap: 12px; color: #526277; font-size: 14px; line-height: 1.45; }
.audience-card li span { display: grid; width: 21px; height: 21px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #167a70; background: #e9f9f6; font-size: 11px; }
.is-unsuitable li span { color: #9b6a34; background: #fff3e4; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 82px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { font-size: clamp(2.7rem, 4.6vw, 4.4rem); }
.faq-heading > p { margin-inline: 0; }
.faq-contact { display: grid; gap: 7px; margin-top: 32px; padding: 20px; border-radius: 16px; background: #f4f7fa; }
.faq-contact span { color: #7a8998; font-size: 11px; }
.faq-contact a { color: #226fc9; font-size: 13px; font-weight: 750; }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: border-color .22s ease, box-shadow .22s ease; }
.faq-item.is-open { border-color: #bfd2df; box-shadow: 0 14px 40px rgba(15, 47, 77, .07); }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 24px; padding: 21px 22px; border: 0; color: #16283c; background: transparent; text-align: left; cursor: pointer; font-size: 15px; font-weight: 700; }
.faq-plus { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #45657f; background: #eff4f7; font-size: 19px; font-weight: 400; transition: transform .28s ease, background .28s ease; }
.is-open .faq-plus { transform: rotate(45deg); color: #126b65; background: #e4f8f5; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 22px 22px; color: #647386; font-size: 13px; line-height: 1.75; }
.is-open .faq-answer { grid-template-rows: 1fr; }

.final-cta-section { padding-block: 0 90px; background: #fff; }
.final-cta { position: relative; overflow: hidden; padding: 76px 8%; border-radius: 30px; color: #fff; background: linear-gradient(135deg, #0a1e31, #0b2b42 56%, #17254a); text-align: center; box-shadow: 0 30px 90px rgba(6, 23, 39, .2); }
.final-cta::before { position: absolute; inset: 0; content: ""; background: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, black, transparent); }
.cta-glow { position: absolute; width: 480px; height: 480px; right: -190px; top: -250px; border-radius: 50%; background: rgba(99,230,213,.14); filter: blur(60px); }
.final-cta > *:not(.cta-glow) { position: relative; }
.final-cta h2 { max-width: 880px; margin-inline: auto; }
.final-cta > p { max-width: 780px; margin: 24px auto 0; color: #afbecd; font-size: 16px; line-height: 1.75; }
.final-cta .button { margin-top: 31px; }
.final-cta small { display: block; margin-top: 14px; color: #7f92a6; font-size: 10px; }
.final-cta ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin: 28px 0 0; padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.09); list-style: none; }
.final-cta li { display: flex; gap: 7px; color: #9dafc0; font-size: 11px; }
.final-cta li span { color: var(--aqua); }

.inner-hero { position: relative; overflow: hidden; padding-block: 80px; color: #fff; background: var(--ink); }
.inner-hero::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 80% 20%, rgba(99,230,213,.1), transparent 24%), linear-gradient(rgba(120,159,196,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(120,159,196,.05) 1px, transparent 1px); background-size: auto, 52px 52px, 52px 52px; }
.inner-hero-grid { position: relative; display: grid; grid-template-columns: 1fr .42fr; gap: 60px; align-items: end; }
.inner-hero h1 { max-width: 900px; }
.inner-hero p { max-width: 750px; margin: 23px 0 0; color: #9fb0c2; font-size: 16px; line-height: 1.75; }
.inner-aside { padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; color: #9fb0c2; background: rgba(255,255,255,.04); font-size: 13px; line-height: 1.6; }
.inner-aside strong { display: block; margin-top: 5px; color: #fff; }

.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 72px; padding-block: 86px 110px; }
.legal-toc { position: sticky; top: 110px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #f6f8fa; }
.legal-toc > span { color: #69798a; font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.legal-toc ol { display: grid; gap: 11px; margin: 18px 0 0; padding: 0; list-style: none; }
.legal-toc a { color: #5f7183; font-size: 11px; line-height: 1.4; }
.legal-toc a:hover { color: #276fc5; }
.legal-article { max-width: 820px; }
.legal-section { scroll-margin-top: 110px; padding: 0 0 48px; margin: 0 0 48px; border-bottom: 1px solid var(--line); }
.legal-section:last-child { border: 0; }
.legal-title-row { display: flex; gap: 17px; align-items: flex-start; }
.legal-title-row span { margin-top: 8px; color: #3d7fd2; font-family: ui-monospace, monospace; font-size: 10px; font-weight: 850; }
.legal-section h2 { margin: 0; font-size: 29px; letter-spacing: -.04em; }
.legal-section p { margin: 18px 0 0; color: #596a7d; font-size: 14px; line-height: 1.85; }
.legal-section ul { display: grid; gap: 10px; margin: 20px 0 0; padding: 20px; border-radius: 16px; background: #f4f7fa; list-style: none; }
.legal-section li { display: flex; gap: 10px; color: #55677a; font-size: 13px; line-height: 1.55; }
.legal-section li::before { width: 6px; height: 6px; flex: 0 0 auto; margin-top: 7px; border-radius: 50%; content: ""; background: #4685d4; }

.content-section { padding-block: 100px; background: #fff; }
.content-section.alt { background: #f6f8fa; }
.content-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.content-title h2 { margin: 18px 0 0; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.055em; }
.prose-card { padding: 38px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.prose-card p { margin: 0 0 18px; color: #596a7d; font-size: 15px; line-height: 1.82; }
.prose-card p:last-child { margin-bottom: 0; }
.info-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.info-card { padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.info-card > span { color: #387ad0; font-family: ui-monospace, monospace; font-size: 10px; font-weight: 850; }
.info-card h3 { margin: 30px 0 0; font-size: 19px; }
.info-card p { margin: 11px 0 0; color: #617184; font-size: 13px; line-height: 1.7; }
.detail-list { display: grid; gap: 0; margin: 0; }
.detail-row { display: grid; grid-template-columns: 200px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.detail-row:first-child { padding-top: 0; }
.detail-row dt { color: #7a8998; font-size: 12px; }
.detail-row dd { margin: 0; color: #26394d; font-size: 14px; font-weight: 700; line-height: 1.5; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 20px; }
.contact-card { padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.contact-card h2 { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.contact-links { display: grid; gap: 20px; margin-top: 27px; }
.contact-links span { display: block; color: #7a8999; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.contact-links a, .contact-links address { display: block; margin-top: 5px; color: #246dc4; font-size: 14px; font-weight: 700; line-height: 1.55; }
.contact-links address { color: #405469; }
.telegram-contact { color: #fff; background: linear-gradient(145deg, #0a1e31, #0d2940); }
.telegram-contact p { color: #9fb0c2; }
.telegram-contact h2 { color: #fff; }

.cookie-banner[hidden] { display: none; }
.cookie-banner { position: fixed; z-index: 100; right: 22px; bottom: 22px; display: grid; grid-template-columns: auto 1fr; gap: 14px; width: min(calc(100% - 32px), 590px); padding: 19px; border: 1px solid #d7e1e9; border-radius: 19px; background: rgba(255,255,255,.97); box-shadow: 0 24px 80px rgba(7,19,31,.25); backdrop-filter: blur(18px); }
.cookie-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; color: #147b71; background: #e6f9f6; font-weight: 850; }
.cookie-banner strong { display: block; font-size: 14px; }
.cookie-banner p { margin: 6px 0 0; color: #627286; font-size: 11.5px; line-height: 1.6; }
.cookie-banner p a { color: #216dc4; font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 9px; }
.cookie-actions .button { min-height: 40px; padding: 10px 15px; font-size: 12px; }

.site-footer { color: #fff; background: #050d17; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .75fr 1.1fr; gap: 50px; padding-block: 78px 60px; }
.brand-link-light .brand-name span:last-child { color: #8b9cb0; }
.footer-brand > p { max-width: 350px; margin: 22px 0; color: #8496aa; font-size: 13px; line-height: 1.75; }
.footer-grid h2 { margin: 3px 0 0; color: var(--aqua); font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid ul { display: grid; gap: 11px; margin: 22px 0 0; padding: 0; list-style: none; }
.footer-grid li, .footer-contacts { color: #9aabba; font-size: 12px; }
.footer-grid a { transition: color .2s ease; }
.footer-grid a:hover { color: #fff; }
.footer-contacts { display: grid; gap: 13px; margin-top: 22px; line-height: 1.6; }
.footer-legal { display: flex; gap: 40px; justify-content: space-between; align-items: flex-end; padding-block: 26px 34px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-legal p { max-width: 850px; margin: 0; color: #617388; font-size: 10px; line-height: 1.65; }
.footer-legal span { flex: 0 0 auto; color: #617388; font-size: 10px; }

.reveal { min-width: 0; opacity: 1; transform: none; animation: revealUp .58s cubic-bezier(.2,.75,.25,1) both; }

@keyframes route { 0% { left: 4px; opacity: 0; } 15%, 85% { opacity: 1; } 100% { left: calc(100% - 8px); opacity: 0; } }
@keyframes blink { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }
@keyframes arrowPulse { 0%, 100% { opacity: .35; transform: translateX(-3px); } 50% { opacity: 1; transform: translateX(3px); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes revealUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .burger { display: block; }
  .header-cta { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 860px; }
  .hero-visual { width: min(100%, 650px); margin-inline: auto; }
  .mechanics-flow { grid-template-columns: repeat(3, 1fr); }
  .mechanic-step:nth-child(3) { border-right: 0; }
  .mechanic-step:nth-child(n+4) { border-top: 1px solid var(--line); }
  .funnel-map { grid-template-columns: repeat(3, 1fr); }
  .funnel-map::before { display: none; }
  .funnel-step:nth-child(n+4) { min-height: 230px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .section-pad { padding-block: 88px; }
  .split-heading, .content-grid, .faq-grid, .partnership-grid, .inner-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .skill-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .mechanics-flow { grid-template-columns: 1fr; }
  .mechanic-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .mechanic-step:nth-child(n) { border-top: 0; }
  .mechanic-step p { margin-top: 20px; }
  .mechanic-step i { top: auto; right: 24px; bottom: -13px; transform: rotate(90deg); }
  .day-card { grid-template-columns: 120px 1fr; }
  .day-index { padding: 25px; }
  .day-content ul { grid-template-columns: 1fr; }
  .funnel-map { grid-template-columns: repeat(2, 1fr); }
  .terms-list { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-layout > aside { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .container-shell { width: min(calc(100% - 28px), 1220px); }
  .header-row { height: 68px; }
  .header-cta { display: none; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-name { font-size: 14px; }
  .section-pad { padding-block: 74px; }
  .section-heading h2, .partnership-copy h2, .audience-heading h2, .faq-heading h2, .final-cta h2, .inner-hero h1 { font-size: clamp(2.2rem, 11vw, 3.15rem); }
  .hero-grid { gap: 42px; padding-block: 64px 48px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 14vw, 4.1rem); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-strip { align-items: flex-start; gap: 20px; }
  .trust-strip div { display: grid; grid-template-columns: repeat(2, auto); gap: 9px 18px; }
  .exchange-grid { grid-template-columns: 1fr; gap: 8px; }
  .transfer-route { height: 32px; transform: rotate(90deg); }
  .exchange-card { padding: 14px; }
  .demo-metrics { grid-template-columns: 1fr 1fr; }
  .demo-metrics .spread-metric:last-child { grid-column: 1 / -1; }
  .notice-card { grid-template-columns: auto 1fr; }
  .notice-card .button { grid-column: 1 / -1; }
  .skill-grid, .benefit-grid, .audience-grid, .info-card-grid { grid-template-columns: 1fr; }
  .training-timeline::before { display: none; }
  .day-card { grid-template-columns: 1fr; }
  .day-index { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .day-index b { font-size: 34px; }
  .day-content { padding: 24px 22px; }
  .day-result { grid-template-columns: 1fr; gap: 8px; }
  .funnel-map { grid-template-columns: 1fr; }
  .funnel-step { min-height: 220px; }
  .funnel-step > i { top: auto; right: 22px; bottom: -20px; transform: rotate(90deg); }
  .partnership-grid { margin-top: 78px; padding-top: 74px; }
  .security-panel, .audience-card, .prose-card, .contact-card { padding: 24px; }
  .benefit-card { min-height: 215px; }
  .final-cta { padding: 60px 22px; border-radius: 24px; }
  .final-cta ul { display: grid; justify-content: start; text-align: left; }
  .inner-hero { padding-block: 62px; }
  .legal-layout { padding-block: 66px 80px; }
  .legal-section h2 { font-size: 24px; }
  .detail-row { grid-template-columns: 1fr; gap: 6px; }
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; width: auto; }
  .cookie-actions { display: grid; }
  .cookie-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-block: 60px 45px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-legal { display: grid; }
}

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

button:focus-visible, a:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
