/* Finsai Trade · Strategic Partner Programme · landing page styles
   Tokens → base → components → sections → responsive → reduced motion. */

@font-face { font-family: "Sora"; src: url("../fonts/Sora-Bold.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Sora"; src: url("../fonts/Sora-ExtraBold.woff2") format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/Inter-Regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/Inter-Medium.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/Inter-SemiBold.woff2") format("woff2"); font-weight: 600; font-display: swap; }

:root {
  --ink: #050A1A;
  --ink-2: #07112A;
  --ink-3: #03060F;
  --navy: #0A1E33;
  --deep: #0C2748;
  --blue: #2F8BFF;
  --blue-deep: #1F6FE5;
  --brand: #056FB4;
  --cyan: #3FD4FF;
  --ice: #CFE8FF;
  --text: #EEF4FF;
  --text-2: rgba(224, 236, 255, .80);
  --text-3: rgba(210, 226, 255, .66);
  --line: rgba(150, 190, 255, .14);
  --line-2: rgba(150, 190, 255, .24);
  --danger: #FF6B7A;

  --font-display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1240px;
  --section-y: clamp(96px, 12vw, 176px);
  --radius: 26px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-quart: cubic-bezier(.25, 1, .5, 1);

  --z-dock: 40;
  --z-top: 50;
  --z-sheet: 60;
  --topbar-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; background: var(--ink); scroll-padding-top: 88px; }
body {
  margin: 0; min-height: 100vh; overflow-x: clip;
  background: var(--ink); color: var(--text);
  font: 400 1.0625rem/1.72 var(--font-body);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--text); text-wrap: balance; }
[hidden] { display: none !important; }
::selection { background: rgba(63, 212, 255, .35); color: #fff; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 10px; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; border-radius: 12px; background: var(--cyan); color: #041226; font-weight: 600; text-decoration: none; transition: top .2s; }
.skip:focus { top: 16px; }
.nowrap { white-space: nowrap; }

.wrap { width: min(var(--maxw), 100% - var(--gutter) * 2); margin-inline: auto; }
section { position: relative; padding-block: var(--section-y); isolation: isolate; }

.h2 { font-weight: 800; font-size: clamp(2rem, 1.1rem + 3.2vw, 3.5rem); line-height: 1.08; letter-spacing: -.03em; }
.h3 { font-weight: 700; font-size: clamp(1.3rem, 1rem + .9vw, 1.7rem); line-height: 1.2; letter-spacing: -.02em; }
.h4 { font-weight: 700; font-size: 1.15rem; line-height: 1.3; letter-spacing: -.01em; }

/* ---------------------------------------------------------------- buttons */
.btn {
  --h: 48px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: var(--h); padding: 0 1.4rem; border-radius: 999px; overflow: hidden; isolation: isolate;
  font: 600 1rem/1.1 var(--font-body); text-decoration: none; white-space: nowrap;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background-color .3s, border-color .3s;
  -webkit-tap-highlight-color: transparent;
}
.btn--sm { --h: 42px; padding: 0 1.1rem; font-size: .92rem; }
.btn--lg { --h: 56px; padding: 0 1.7rem; font-size: 1.02rem; }
.btn--xl { --h: 64px; padding: 0 2.1rem; font-size: 1.08rem; }
.btn__icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .5s var(--ease); }
.btn:hover .btn__icon { transform: translateX(4px); }
.btn--primary {
  color: #041226;
  background: linear-gradient(100deg, var(--cyan) 0%, #54B7FF 48%, var(--blue) 100%);
  box-shadow: 0 10px 34px -12px rgba(63, 212, 255, .7), inset 0 1px 0 rgba(255, 255, 255, .55);
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .7) 50%, transparent 80%);
  transform: translateX(-120%); transition: transform .9s var(--ease);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -14px rgba(63, 212, 255, .9), inset 0 1px 0 rgba(255, 255, 255, .6); }
.btn--primary:hover::before { transform: translateX(120%); }
.btn--primary:active { transform: translateY(0) scale(.98); }
.btn--ghost { color: var(--text); border: 1px solid rgba(207, 232, 255, .3); background: rgba(10, 30, 51, .35); }
.btn--ghost:hover { border-color: rgba(63, 212, 255, .7); background: rgba(63, 212, 255, .08); transform: translateY(-2px); }
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; color: var(--cyan); font-weight: 600; text-decoration: none; }
.link-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .4s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------------------------------------------------------------- top bar + pill nav */
.topbar {
  position: fixed; inset: 0 0 auto; z-index: var(--z-top);
  padding-top: env(safe-area-inset-top);
  transition: transform .55s var(--ease), background-color .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.topbar.is-scrolled { background: rgba(5, 10, 26, .86); border-color: var(--line); -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%); }
.topbar__inner { display: flex; align-items: center; gap: 24px; height: var(--topbar-h); width: min(1320px, 100% - var(--gutter) * 2); margin-inline: auto; }
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { height: 42px; width: auto; }
.pill {
  position: relative; margin-inline: auto; padding: 6px;
  border-radius: 999px; background: rgba(9, 22, 46, .66); border: 1px solid var(--line-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 12px 40px -20px rgba(0, 0, 0, .8);
}
.pill__list { list-style: none; display: flex; gap: 2px; }
.pill__link {
  position: relative; z-index: 1; display: inline-flex; align-items: center; height: 40px; padding: 0 16px;
  border-radius: 999px; color: var(--text-2); font-weight: 500; font-size: .94rem; text-decoration: none;
  transition: color .3s;
}
.pill__link:hover, .pill__link.is-active { color: #fff; }
.filament { position: absolute; left: 0; bottom: 3px; height: 14px; width: 0; pointer-events: none; opacity: 0; transition: opacity .3s; }
.filament.is-on { opacity: 1; }
.filament svg { width: 100%; height: 100%; overflow: visible; }
.filament__glow { fill: none; stroke: rgba(63, 212, 255, .55); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; filter: blur(3px); }
.filament__bolt { fill: none; stroke: #E6FAFF; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.filament__spark { position: absolute; right: -3px; top: 50%; width: 7px; height: 7px; margin-top: -3.5px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px 3px rgba(63, 212, 255, .9); }
.topbar__cta { flex: none; }
.menu-btn { display: none; }

/* ---------------------------------------------------------------- mobile dock */
.dock { display: none; }

/* ---------------------------------------------------------------- menu sheet */
.sheet {
  position: fixed; inset: 0; z-index: var(--z-sheet);
  display: flex; flex-direction: column; gap: 28px;
  padding: calc(env(safe-area-inset-top) + 14px) var(--gutter) calc(env(safe-area-inset-bottom) + 28px);
  background: var(--ink); overflow-y: auto; overscroll-behavior: contain;
}
.sheet__glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 45% at 80% 10%, rgba(47, 139, 255, .28), transparent 70%), radial-gradient(60% 40% at 10% 90%, rgba(63, 212, 255, .16), transparent 70%); }
.sheet__top { display: flex; align-items: center; justify-content: space-between; min-height: 56px; }
.sheet__logo { height: 34px; width: auto; }
.sheet__close { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; border: 1px solid var(--line-2); }
.sheet__close svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; }
.sheet__nav ol { list-style: none; display: grid; gap: 4px; counter-reset: s; }
.sheet__nav a {
  display: flex; align-items: baseline; gap: 14px; padding: 12px 0; min-height: 48px;
  font: 800 clamp(1.7rem, 7.5vw, 2.4rem)/1.1 var(--font-display); letter-spacing: -.03em; color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.sheet__nav a::before { counter-increment: s; content: counter(s, decimal-leading-zero); font: 700 .8rem var(--font-display); color: var(--cyan); letter-spacing: 0; }
.sheet__cta { align-self: stretch; }
.sheet__note { color: var(--text-3); font-size: .9rem; text-align: center; }

/* ---------------------------------------------------------------- hero */
.hero { min-height: 100svh; display: grid; align-items: center; padding-top: calc(var(--topbar-h) + 40px); padding-bottom: 88px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -3; background: radial-gradient(55% 55% at 74% 44%, rgba(47, 139, 255, .22), transparent 70%), radial-gradient(38% 40% at 16% 26%, rgba(63, 212, 255, .10), transparent 72%), linear-gradient(180deg, #050A1A 0%, #06122B 62%, #050A1A 100%); }
.hero__glow { position: absolute; left: 50%; top: 58%; width: 70vmax; height: 70vmax; transform: translate(-10%, -50%); background: radial-gradient(circle, rgba(47, 139, 255, .12), transparent 60%); filter: blur(10px); }
.hero__floor { position: absolute; left: -30%; right: -30%; bottom: -8%; height: 48%; perspective: 520px; opacity: .5; -webkit-mask-image: linear-gradient(to top, #000 10%, transparent 88%); mask-image: linear-gradient(to top, #000 10%, transparent 88%); }
.hero__grid { position: absolute; inset: 0; transform: rotateX(74deg); transform-origin: 50% 100%; background-image: linear-gradient(rgba(63, 212, 255, .28) 1px, transparent 1px), linear-gradient(90deg, rgba(47, 139, 255, .2) 1px, transparent 1px); background-size: 72px 72px; animation: grid-move 5s linear infinite; }
@keyframes grid-move { to { background-position: 0 72px, 0 0; } }
.hero__line { position: absolute; left: 0; right: 0; bottom: 16%; width: 100%; height: 150px; opacity: .55; }
.hero__line path { fill: none; stroke: var(--cyan); stroke-width: 1.4; vector-effect: non-scaling-stroke; stroke-dasharray: 3200; stroke-dashoffset: 3200; animation: line-draw 3.4s .4s var(--ease) forwards; filter: drop-shadow(0 0 6px rgba(63, 212, 255, .6)); }
@keyframes line-draw { to { stroke-dashoffset: 0; } }
.hero__stage { position: absolute; inset: 0; z-index: -1; }
.hero__canvas { width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero__stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(5, 10, 26, .82) 0%, rgba(5, 10, 26, .45) 36%, rgba(5, 10, 26, 0) 56%); }
.hero__stage.is-live .hero__canvas { opacity: 1; }
.hero__fallback { display: none; position: absolute; right: 8%; top: 50%; width: min(34vw, 460px); transform: translateY(-50%); filter: drop-shadow(0 0 30px rgba(63, 212, 255, .55)); opacity: .9; }
.hero__stage.is-fallback .hero__fallback { display: block; }
.hero__stage.is-fallback .hero__canvas, .hero__stage.is-fallback .hero__caption { display: none; }
.hero__caption {
  position: absolute; right: clamp(24px, 12vw, 200px); bottom: clamp(96px, 16vh, 170px);
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px;
  border-radius: 999px; background: rgba(8, 20, 42, .72); border: 1px solid var(--line-2);
  color: var(--text-2); font-size: .88rem; font-weight: 500; pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.hero__caption.is-swap { opacity: 0; transform: translateY(6px); }
.hero__caption-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px 2px rgba(63, 212, 255, .8); }
.hero__content { position: relative; z-index: 1; }
.hero__content > * { max-width: 640px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; margin-bottom: 26px;
  border-radius: 999px; border: 1px solid rgba(63, 212, 255, .3); background: rgba(47, 139, 255, .1);
  color: var(--ice); font-size: .9rem; font-weight: 500;
}
.hero__kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(90deg, var(--cyan) 50%, var(--blue) 50%); box-shadow: 0 0 10px rgba(63, 212, 255, .8); }
.hero__title { font-weight: 800; font-size: clamp(2.4rem, 3.7vw, 3.3rem); line-height: 1.06; letter-spacing: -.035em; max-width: 760px !important; }
@media (min-width: 960px) { .br-m { display: none; } }
.hero__sub { margin-top: 18px; color: #fff; font: 700 clamp(1.05rem, 1rem + .35vw, 1.28rem)/1.35 var(--font-display); letter-spacing: -.01em; max-width: 44ch; }
.hero__sub b { color: var(--cyan); }
.hero__title .w--hot { color: var(--cyan); }
.hero__title--type { position: relative; }
.type__live { position: absolute; left: 0; top: 0; right: 0; }
html.type-on .type__ghost { visibility: hidden; }
.type__caret { display: inline-block; width: .07em; height: .86em; margin-left: .08em; border-radius: 1px; background: var(--cyan); vertical-align: -.06em; box-shadow: 0 0 10px rgba(63, 212, 255, .9); animation: caret 1s steps(1) infinite; }
.type__live.is-typing .type__caret { animation: none; }
.type__word { white-space: nowrap; }
.type__rest { visibility: hidden; }
@keyframes caret { 50% { opacity: 0; } }
.hero__tag { margin-top: 18px; font: 700 clamp(1.1rem, 1rem + .5vw, 1.35rem)/1.3 var(--font-display); color: #9FE7FF; letter-spacing: -.01em; }
.hero__lead { margin-top: 16px; color: var(--text-2); font-size: clamp(1rem, .95rem + .25vw, 1.12rem); max-width: 54ch !important; }
@media (min-width: 960px) and (max-width: 1199px) { .hero__content > :not(.tray) { max-width: 560px; } .hero__lead { max-width: min(54ch, 560px) !important; } .hero__fallback { width: min(30vw, 340px); } }
.hero__actions { display: grid; justify-items: start; gap: 18px; margin-top: 34px; }
.btn--sheen { position: relative; overflow: hidden; isolation: isolate; box-shadow: 0 14px 40px -14px rgba(63, 212, 255, .85); animation: cta-glow 3.2s ease-in-out infinite; }
.btn--sheen .btn__label, .btn--sheen .btn__icon { position: relative; z-index: 2; }
.btn__sheen { position: absolute; inset: -40% -60%; z-index: 1; pointer-events: none; background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .55) 50%, transparent 58%); animation: sheen 3.6s var(--ease) infinite; }
@keyframes sheen { 0%, 58% { transform: translateX(-70%); } 88%, 100% { transform: translateX(70%); } }
@keyframes cta-glow { 50% { box-shadow: 0 18px 54px -12px rgba(63, 212, 255, 1); } }
.hero__note { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; padding-left: 4px; color: var(--text-3); font-size: .86rem; font-weight: 500; line-height: 1.4; }
.hero__note svg { width: 16px; height: 16px; fill: none; stroke: #9FE7FF; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero__note-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(150, 190, 255, .5); margin: 0 4px; }
.hero__note-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.tray { position: relative; list-style: none; display: inline-grid; grid-auto-flow: column; margin-top: 26px; border-radius: 18px; border: 1px solid rgba(150, 190, 255, .22); background: rgba(8, 20, 44, .62); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 20px 50px -30px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .06); overflow: hidden; }
.tray__cell { position: relative; display: flex; align-items: center; gap: 10px; padding: 14px 20px; color: var(--text-3); font-size: .95rem; transition: color .3s, background-color .3s; }
.tray__cell + .tray__cell { border-left: 1px solid rgba(150, 190, 255, .16); }
.tray__cell:hover { color: #fff; background: rgba(63, 212, 255, .06); }
.tray__ic { flex: none; width: 22px; height: 22px; fill: none; stroke: #9FE7FF; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.tray__t { white-space: nowrap; }
.tray__t b { color: #fff; font-weight: 700; margin-right: .32em; }
.tray__cell--hot { color: #fff; padding-right: 30px; background: linear-gradient(90deg, rgba(63, 212, 255, .16), rgba(47, 139, 255, .16)); }
.tray__cell--hot .tray__ic { stroke: var(--cyan); filter: drop-shadow(0 0 6px rgba(63, 212, 255, .8)); }
.tray__pulse { position: absolute; right: 12px; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); animation: hl-pulse 2s ease-out infinite; }
.tray__light { position: absolute; left: 0; top: 0; width: 40%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: tray-light 3.4s linear infinite; }
@media (min-width: 601px) { .tray { grid-auto-flow: row; grid-template-columns: 1fr 1fr; } .tray__cell + .tray__cell { border-left: 0; } .tray__cell:nth-child(even) { border-left: 1px solid rgba(150, 190, 255, .16); } .tray__cell:nth-child(n+3) { border-top: 1px solid rgba(150, 190, 255, .16); } }
@keyframes tray-light { from { transform: translateX(-100%); } to { transform: translateX(350%); } }
.hl { display: inline-flex; align-items: center; gap: .5em; padding: .22em .8em .22em .6em; border-radius: 999px; color: #fff; font-weight: 700; line-height: 1.3; white-space: nowrap;
  background: linear-gradient(100deg, rgba(63, 212, 255, .22), rgba(47, 139, 255, .22)); border: 1px solid rgba(63, 212, 255, .65);
  box-shadow: 0 0 22px -6px rgba(63, 212, 255, .95), inset 0 1px 0 rgba(255, 255, 255, .14); }
.hl::before { content: ""; flex: none; width: .5em; height: .5em; border-radius: 50%; background: var(--cyan); animation: hl-pulse 2s ease-out infinite; }
.hl strong, .hl b { color: #fff; font-weight: 800; }
.hl--sm { font-size: .8rem; }
.hl-text { color: #9FE7FF; font-weight: 700; }
@keyframes hl-pulse { 0% { box-shadow: 0 0 0 0 rgba(63, 212, 255, .75); } 100% { box-shadow: 0 0 0 .7em rgba(63, 212, 255, 0); } }

.compare__b li.is-hot { padding-left: 0; }
.compare__b li.is-hot::before { display: none; }
.hero__cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); width: 44px; height: 52px; border-radius: 999px; border: 1px solid var(--line-2); display: grid; justify-items: center; padding-top: 8px; }
.hero__cue span { width: 4px; height: 10px; border-radius: 4px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(18px); opacity: 0; } 100% { opacity: 0; } }

.why__cta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 600px) { .why__cta .btn { width: 100%; } }

/* ---------------------------------------------------------------- benefits (flow) */
.benefits__lead { margin-top: 12px; color: var(--text-2); max-width: 46ch; }
.benefits { background: radial-gradient(55% 45% at 50% 100%, rgba(47, 139, 255, .16), transparent 72%), var(--ink); overflow: hidden; }
.benefits__head { display: flex; align-items: end; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; }
.benefits__head .h2 { max-width: 16ch; }
.seg { position: relative; display: inline-flex; padding: 5px; border-radius: 999px; background: rgba(12, 39, 72, .7); border: 1px solid var(--line-2); }
.seg__btn { position: relative; z-index: 1; min-height: 44px; padding: 0 18px; border-radius: 999px; color: var(--text-2); font-weight: 600; font-size: .92rem; transition: color .35s; white-space: nowrap; }
.seg__btn.is-on { color: #041226; }
.seg__blob { position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px; width: 60px; border-radius: 999px; background: linear-gradient(100deg, var(--cyan), var(--blue)); box-shadow: 0 6px 20px -6px rgba(63, 212, 255, .8); }
.flow { margin-top: clamp(28px, 4vw, 48px); }
.flow__track {
  --card: clamp(260px, 26vw, 320px);
  list-style: none; display: flex; gap: 22px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
  padding: 44px calc(50% - var(--card) / 2) 54px; scrollbar-width: none; perspective: 1300px;
  -webkit-overflow-scrolling: touch; cursor: grab; overscroll-behavior-x: contain;
}
.flow__track::-webkit-scrollbar { display: none; }
.flow__track.is-drag { cursor: grabbing; scroll-snap-type: none; }
.bcard { position: relative; flex: 0 0 var(--card); scroll-snap-align: center; display: flex; transform-style: preserve-3d; }
.bcard.is-out { display: none; }
.bcard__in {
  position: relative; flex: 1 1 auto; min-height: 390px;
  display: flex; flex-direction: column; gap: 14px; padding: 28px 26px;
  border-radius: var(--radius); background: linear-gradient(180deg, #0F2D52 0%, #0B2140 100%);
  border: 1px solid rgba(150, 190, 255, .18);
  transform: rotateY(var(--ry, 0deg)) translateZ(var(--tz, 0px)) scale(var(--sc, 1));
  opacity: var(--op, 1); transition: border-color .4s, box-shadow .5s, opacity .3s;
  will-change: transform;
}
.bcard.is-active .bcard__in { border-color: rgba(63, 212, 255, .6); box-shadow: 0 34px 80px -34px rgba(47, 139, 255, .75), inset 0 1px 0 rgba(255, 255, 255, .08); }
.bcard__icon { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 22px; background: radial-gradient(circle at 30% 25%, rgba(63, 212, 255, .26), rgba(47, 139, 255, .06)); border: 1px solid rgba(150, 190, 255, .22); margin-bottom: 10px; }
.bcard__n { position: absolute; top: 26px; right: 26px; font: 700 .85rem var(--font-display); color: var(--text-3); }
.bcard p { color: var(--text-2); font-size: .98rem; line-height: 1.6; }
.bcard .bcard__stat { margin-top: auto; padding-top: 14px; border-top: 1px dashed rgba(150, 190, 255, .22); color: var(--text-2); font-size: .9rem; }
.bcard__stat b { margin-right: 6px; font: 800 1.7rem/1 var(--font-display); color: #fff; letter-spacing: -.02em; }
.bcard__stat sup, .benefits__note sup { color: #9FE7FF; }
.benefits__note { width: min(var(--maxw), 100% - var(--gutter) * 2); margin: 18px auto 0; color: var(--text-3); font-size: .82rem; text-align: center; }
.ic-signal .ic-line { stroke-dasharray: 70; }
.is-active .ic-signal .ic-line { animation: sig-in 1.6s var(--ease) both; }
.ic-signal .ic-dot { fill: var(--cyan); stroke: none; transform-box: fill-box; transform-origin: center; }
.is-active .ic-signal .ic-dot { animation: twinkle 1.8s ease-in-out infinite; }
.ic-247 .ic-track { stroke: rgba(150, 190, 255, .25); }
.ic-247 .ic-arc { stroke: var(--cyan); stroke-width: 3; stroke-dasharray: 100.5; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 24px 24px; }
.is-active .ic-247 .ic-arc { animation: arc-full 1.8s var(--ease) both; }
.ic-247 text { font-size: 8.4px; }
@keyframes sig-in { from { stroke-dashoffset: 70; } to { stroke-dashoffset: 0; } }
@keyframes arc-full { from { stroke-dashoffset: 100.5; } to { stroke-dashoffset: 0; } }
.flow__ctrl { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 6px; }
.flow__btn { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(12, 39, 72, .55); transition: border-color .3s, transform .4s var(--ease); }
.flow__btn:hover { border-color: rgba(63, 212, 255, .7); transform: scale(1.06); }
.flow__btn svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.flow__count { min-width: 64px; text-align: center; color: var(--text-3); font: 600 .95rem var(--font-display); font-variant-numeric: tabular-nums; }
.flow__count b { color: #fff; }

/* benefit icons */
.ic { width: 50px; height: 50px; fill: none; stroke: #9FE7FF; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.ic text { fill: #CFF5FF; stroke: none; font: 800 9.5px var(--font-display); }
.ic-bonus .ic-track { stroke: rgba(150, 190, 255, .25); }
.ic-bonus .ic-arc { stroke: var(--cyan); stroke-width: 3; stroke-dasharray: 100.5; stroke-dashoffset: 80.4; transform: rotate(-90deg); transform-origin: 24px 24px; }
.is-active .ic-bonus .ic-arc { animation: arc-fill 1.6s var(--ease) both; }
@keyframes arc-fill { from { stroke-dashoffset: 100.5; } to { stroke-dashoffset: 80.4; } }
.ic-social .ic-link { stroke-dasharray: 24; }
.is-active .ic-social .ic-link { animation: dash-in 1.4s var(--ease) both; }
.is-active .ic-social .ic-f { animation: pop .9s var(--ease) both; }
.is-active .ic-social .ic-f:nth-of-type(3) { animation-delay: .15s; }
.is-active .ic-social .ic-f:nth-of-type(4) { animation-delay: .3s; }
@keyframes dash-in { from { stroke-dashoffset: 24; } to { stroke-dashoffset: 0; } }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.ic-social .ic-f, .ic-social .ic-lead { transform-box: fill-box; transform-origin: center; }
.ic-edu .ic-page { transform-origin: 24px 24px; transform-box: view-box; }
.is-active .ic-edu .ic-page { animation: page-flip 2.4s var(--ease) infinite; }
@keyframes page-flip { 0%, 30% { transform: scaleX(1); } 55% { transform: scaleX(-.2); opacity: .5; } 80%, 100% { transform: scaleX(1); opacity: 1; } }
.ic-rm .ic-pulse { stroke: rgba(63, 212, 255, .5); transform-box: fill-box; transform-origin: center; opacity: 0; }
.is-active .ic-rm .ic-pulse { animation: ring 2.2s ease-out infinite; }
@keyframes ring { 0% { transform: scale(.6); opacity: .8; } 100% { transform: scale(1.25); opacity: 0; } }
.is-active .ic-chat .ic-b1 { animation: bubble 2.6s var(--ease) infinite; }
.is-active .ic-chat .ic-b2 { animation: bubble 2.6s 1.3s var(--ease) infinite; }
.ic-chat path { transform-box: fill-box; transform-origin: center; }
@keyframes bubble { 0%, 100% { transform: translateY(0); opacity: 1; } 40% { transform: translateY(-2px); stroke: var(--cyan); } }
.ic-moon .ic-star { stroke: #CFF5FF; transform-box: fill-box; transform-origin: center; }
.is-active .ic-moon .ic-star { animation: twinkle 1.8s ease-in-out infinite; }
.is-active .ic-moon .ic-star--b { animation-delay: .9s; }
@keyframes twinkle { 0%, 100% { opacity: .2; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.15); } }
.ic-bot .ic-eye { fill: #9FE7FF; stroke: none; transform-box: fill-box; transform-origin: center; }
.is-active .ic-bot .ic-eye { animation: blink 3.2s infinite; }
.ic-bot .ic-ant { fill: var(--cyan); stroke: none; }
.is-active .ic-bot .ic-ant { animation: glow 1.6s ease-in-out infinite; }
@keyframes blink { 0%, 44%, 50%, 100% { transform: scaleY(1); } 47% { transform: scaleY(.1); } }
@keyframes glow { 50% { filter: drop-shadow(0 0 4px #3FD4FF); opacity: .6; } }
.ic-rails path { stroke: rgba(150, 190, 255, .35); }
.ic-rails .ic-dot { fill: var(--cyan); stroke: none; }
.is-active .ic-rails .ic-dot--1 { animation: rail 2s var(--ease-quart) infinite; }
.is-active .ic-rails .ic-dot--2 { animation: rail 2s .35s var(--ease-quart) infinite; }
.is-active .ic-rails .ic-dot--3 { animation: rail 2s .7s var(--ease-quart) infinite; }
@keyframes rail { 0% { transform: translateX(0); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateX(28px); opacity: 0; } }
.ic-slider .ic-knob { fill: #0C2748; stroke: var(--cyan); stroke-width: 2.2; }
.ic-slider .ic-bars { stroke: rgba(63, 212, 255, .55); }
.is-active .ic-slider .ic-knob { animation: knob 3s var(--ease) infinite; }
@keyframes knob { 0%, 15% { transform: translateX(0); } 45%, 60% { transform: translateX(12px); } 85%, 100% { transform: translateX(24px); } }
.ic-audit .ic-check { stroke: var(--cyan); stroke-width: 2.6; stroke-dasharray: 20; stroke-dashoffset: 20; }
.is-active .ic-audit .ic-check { animation: check 1.4s .2s var(--ease) both; }
.ic-share .ic-track { stroke: rgba(150, 190, 255, .25); }
.ic-share .ic-arc { stroke: var(--cyan); stroke-width: 3; stroke-dasharray: 100.5; stroke-dashoffset: 50.25; transform: rotate(-90deg); transform-origin: 24px 24px; }
.is-active .ic-share .ic-arc { animation: arc-half 1.6s var(--ease) both; }
@keyframes arc-half { from { stroke-dashoffset: 100.5; } to { stroke-dashoffset: 50.25; } }
.ic-deposit .ic-arrow, .ic-withdraw .ic-arrow { stroke: var(--cyan); stroke-width: 2.2; transform-box: fill-box; transform-origin: center; }
.is-active .ic-deposit .ic-arrow { animation: drop 2s var(--ease) infinite; }
.is-active .ic-withdraw .ic-arrow { animation: rise 2s var(--ease) infinite; }
@keyframes drop { 0% { transform: translateY(-7px); opacity: 0; } 35%, 75% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(2px); opacity: 0; } }
@keyframes rise { 0% { transform: translateY(7px); opacity: 0; } 35%, 75% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(-2px); opacity: 0; } }
.ic-deposit .ic-opt { fill: var(--cyan); stroke: none; transform-box: fill-box; transform-origin: center; }
.is-active .ic-deposit .ic-opt { animation: pop .8s var(--ease) both; }
.is-active .ic-deposit .ic-opt:nth-of-type(2) { animation-delay: .15s; }
.is-active .ic-deposit .ic-opt:nth-of-type(3) { animation-delay: .3s; }
.ic-withdraw .ic-tick { stroke: var(--cyan); stroke-width: 2.4; stroke-dasharray: 16; stroke-dashoffset: 16; }
.is-active .ic-withdraw .ic-tick { animation: tick-in 1.2s .3s var(--ease) both; }
@keyframes tick-in { to { stroke-dashoffset: 0; } }
.ic-news .ic-nl { stroke-dasharray: 40; stroke-dashoffset: 40; }
.is-active .ic-news .ic-nl { animation: line-in 1.1s var(--ease) both; }
.is-active .ic-news .ic-nl--b { animation-delay: .12s; }
.is-active .ic-news .ic-nl--c { animation-delay: .24s; }
.is-active .ic-news .ic-nl--d { animation-delay: .36s; }
@keyframes line-in { to { stroke-dashoffset: 0; } }
.ic-news .ic-live { fill: var(--cyan); stroke: none; transform-box: fill-box; transform-origin: center; }
.is-active .ic-news .ic-live { animation: twinkle 1.6s ease-in-out infinite; }
.ic-dash .ic-bar { fill: rgba(63, 212, 255, .45); stroke: var(--cyan); stroke-width: 1.4; transform-box: fill-box; transform-origin: bottom; }
.is-active .ic-dash .ic-bar { animation: grow 1.3s var(--ease) both; }
.is-active .ic-dash .ic-bar:nth-of-type(2) { animation-delay: .15s; }
.is-active .ic-dash .ic-bar:nth-of-type(3) { animation-delay: .3s; }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.ic-promo .ic-w1, .ic-promo .ic-w2 { stroke: var(--cyan); transform-box: fill-box; transform-origin: left center; }
.is-active .ic-promo .ic-w1 { animation: twinkle 1.6s ease-in-out infinite; }
.is-active .ic-promo .ic-w2 { animation: twinkle 1.6s .4s ease-in-out infinite; }
@keyframes check { to { stroke-dashoffset: 0; } }

/* ---------------------------------------------------------------- compare */
.why { background: linear-gradient(180deg, #081A36, #0A1E33 55%, #07152E); }
.why__head { display: flex; align-items: end; justify-content: space-between; gap: 16px 40px; flex-wrap: wrap; }
.why__head .h2 { max-width: 20ch; }
.why__hint { color: var(--text-3); font-size: .92rem; }
.compare {
  --pos: 50%;
  position: relative; margin-top: clamp(32px, 5vw, 56px); height: clamp(600px, 44vw, 660px);
  border-radius: 30px; overflow: hidden; border: 1px solid var(--line-2);
  container-type: inline-size; touch-action: pan-y; user-select: none; -webkit-user-select: none;
}
.compare__side { position: absolute; top: 0; bottom: 0; overflow: hidden; }
.compare__side > * { width: calc(50cqw - 2px); }
.compare__a { left: 0; width: var(--pos); background: linear-gradient(160deg, #0D1B33, #0A1528); }
.compare__b { right: 0; width: calc(100% - var(--pos)); background: radial-gradient(80% 90% at 90% 20%, rgba(63, 212, 255, .22), transparent 60%), linear-gradient(160deg, #11407A, #0B2A55); }
.compare__b > * { margin-left: calc(100% - 50cqw + 2px); }
.compare__a > *, .compare__b > * { padding-inline: clamp(24px, 4vw, 52px); }
.compare__title { padding-top: clamp(28px, 4vw, 48px); font: 800 clamp(1.3rem, 1rem + 1vw, 1.8rem)/1.2 var(--font-display); letter-spacing: -.02em; }
.compare__a .compare__title { color: var(--text-2); }
.compare ul { list-style: none; display: grid; gap: 12px; padding-top: 20px; padding-bottom: 28px; }
.compare li { position: relative; min-height: 44px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; padding-left: 30px; line-height: 1.35; }
.compare li small { font-size: .72rem; font-weight: 500; color: rgba(210, 226, 255, .5); }
.compare__b li small { color: rgba(207, 232, 255, .68); }
.compare__a li { color: var(--text-3); }
.compare__a li::before { content: ""; position: absolute; left: 4px; top: 50%; margin-top: -1px; width: 12px; height: 2px; background: rgba(210, 226, 255, .45); }
.compare__b li { color: #fff; }
.compare__b li::before { content: ""; position: absolute; left: 0; top: 50%; margin-top: -9px; width: 18px; height: 18px; border-radius: 50%; background: rgba(63, 212, 255, .2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CFF5FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat; }
.compare__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 56px; margin-left: -28px; display: grid; place-items: center; cursor: ew-resize; touch-action: none; }
.compare__handle::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px; background: linear-gradient(180deg, transparent, var(--cyan) 20%, var(--cyan) 80%, transparent); box-shadow: 0 0 14px rgba(63, 212, 255, .8); }
.compare__knob { position: relative; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(100deg, var(--cyan), var(--blue)); box-shadow: 0 0 0 6px rgba(63, 212, 255, .15), 0 12px 30px -8px rgba(63, 212, 255, .9); transition: transform .4s var(--ease); }
.compare__handle:hover .compare__knob, .compare.is-drag .compare__knob { transform: scale(1.08); }
.compare__b li sup { color: #9FE7FF; margin-left: 2px; }
.compare__hot { display: inline-flex; align-items: flex-start; max-width: 100%; }
.compare__hot .hl { flex: 0 1 auto; }
.compare__hot sup { flex: none; }
.compare__note { margin-top: 14px; color: var(--text-3); font-size: .82rem; }
.compare__note sup { color: #9FE7FF; }
.compare__knob svg { width: 22px; height: 22px; fill: none; stroke: #041226; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------------------------------------------------------------- telegram desk */
.tg { overflow: hidden; background: radial-gradient(60% 70% at 78% 50%, rgba(63, 212, 255, .10), transparent 70%), #061229; }
.tg__wrap { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.tg__kicker { margin-bottom: 12px; color: #9FE7FF; font-weight: 700; font-size: .95rem; }
.tg__title { max-width: 15ch; }
.tg__lead { margin-top: 18px; max-width: 46ch; color: var(--text-2); font-size: clamp(1rem, .95rem + .25vw, 1.12rem); }
.tg__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.tg__handles { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 16px; color: var(--text-3); font-size: .86rem; }
.tg__phone { position: relative; isolation: isolate; justify-self: end; width: min(100%, 420px); }
.tg__glow { position: absolute; inset: -12% -10%; z-index: -1; background: radial-gradient(50% 50% at 50% 50%, rgba(63, 212, 255, .22), transparent 70%); filter: blur(12px); }
.tg__chat { position: relative; border-radius: 28px; border: 1px solid var(--line-2); background: rgba(8, 20, 42, .84); box-shadow: 0 30px 80px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .06); overflow: hidden; transform: perspective(1400px) rotateY(-7deg) rotateX(2deg); }
.tg__head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid rgba(150, 190, 255, .14); background: rgba(10, 30, 51, .6); }
.tg__avatar { display: grid; place-items: center; flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #041022; }
.tg__avatar svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tg__who { display: grid; gap: 2px; min-width: 0; }
.tg__who b { font-size: .98rem; }
.tg__who span { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: #9FE7FF; }
.tg__who i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.tg.is-live .tg__who i { animation: hl-pulse 2.2s infinite; }
.tg__body { display: grid; gap: 10px; padding: 18px; }
.tg__msg { max-width: 84%; margin: 0; padding: 11px 14px; border-radius: 18px; font-size: .92rem; line-height: 1.45; }
.tg__msg--in { justify-self: start; border-bottom-left-radius: 6px; background: rgba(150, 190, 255, .10); color: var(--text); }
.tg__msg--out { justify-self: end; border-bottom-right-radius: 6px; background: linear-gradient(135deg, rgba(47, 139, 255, .92), rgba(63, 212, 255, .78)); color: #041022; font-weight: 500; }
.tg__msg time { display: block; margin-top: 4px; font-size: .7rem; opacity: .75; text-align: right; }
.tg__typing { justify-self: start; display: inline-flex; gap: 5px; padding: 13px 14px; border-radius: 18px; border-bottom-left-radius: 6px; background: rgba(150, 190, 255, .10); }
.tg__typing i { width: 6px; height: 6px; border-radius: 50%; background: #9FE7FF; opacity: .35; }
.tg.is-live .tg__typing i { animation: tg-dot 1.2s infinite; }
.tg.is-live .tg__typing i:nth-child(2) { animation-delay: .2s; }
.tg.is-live .tg__typing i:nth-child(3) { animation-delay: .4s; }
@keyframes tg-dot { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* ---------------------------------------------------------------- faq */
.faq { background: linear-gradient(180deg, #050A1A, #081630); }
.faq__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.faq__pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(63, 212, 255, .4); background: rgba(63, 212, 255, .08); color: #9FE7FF; font-weight: 700; font-size: .9rem; }
.faq__pill svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.faq__intro .h2 { margin-top: 18px; }
.faq__lead { margin-top: 14px; color: var(--text-2); max-width: 30ch; }
.faq__card { margin-top: 28px; padding: 20px; border-radius: 20px; border: 1px solid var(--line-2); background: rgba(10, 30, 51, .5); display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.faq__card-ic { width: 40px; height: 40px; fill: none; stroke: var(--cyan); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.faq__card b { display: block; font: 700 1.05rem var(--font-display); }
.faq__card > div span { display: block; margin-top: 2px; color: var(--text-3); font-size: .9rem; }
.faq__card .btn { grid-column: 1 / -1; justify-content: center; }
.faq__mail { grid-column: 1 / -1; display: inline-flex; align-items: center; gap: 8px; width: max-content; max-width: 100%; padding: 12px 0; margin: -12px 0; color: var(--text-2); font-size: .92rem; text-decoration: none; overflow-wrap: anywhere; }
.faq__mail svg { flex: none; width: 18px; height: 18px; fill: none; stroke: #9FE7FF; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.faq__mail:hover { color: #fff; }
.faq__bubbles { display: block; width: min(100%, 300px); margin-top: 34px; filter: drop-shadow(0 0 24px rgba(63, 212, 255, .25)); }
.faq.is-live .faq__bubbles { animation: faq-float 7s ease-in-out infinite; }
@keyframes faq-float { 50% { transform: translateY(-8px); } }
.faq__list { display: grid; gap: 12px; }
.qa { border: 1px solid var(--line-2); border-radius: 20px; background: rgba(10, 30, 51, .35); padding: 0 20px; transition: border-color .3s, box-shadow .5s var(--ease); }
.qa[open] { border-color: rgba(63, 212, 255, .55); box-shadow: 0 0 0 1px rgba(63, 212, 255, .12), 0 24px 60px -30px rgba(63, 212, 255, .35); }
.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; min-height: 68px; padding: 16px 0; color: var(--text); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: #fff; }
.qa__num { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(63, 212, 255, .45); background: rgba(63, 212, 255, .08); color: #9FE7FF; font: 700 .86rem var(--font-display); }
.qa__q { flex: 1; font: 600 1.08rem/1.35 var(--font-body); }
.qa summary i { position: relative; flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); transition: transform .5s var(--ease), background-color .3s, border-color .3s; }
.qa summary i::before { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 9px; margin: -7px 0 0 -5px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }
.qa[open] summary i { background: rgba(63, 212, 255, .16); border-color: rgba(63, 212, 255, .6); transform: rotate(180deg); }
.qa__body { overflow: hidden; padding: 0 0 22px 52px; }
.qa__body p { color: var(--text-2); max-width: 66ch; }
.qa__body p + p { margin-top: 10px; }
.qa__body .hl-text sup { color: #9FE7FF; }
.qa__callout { margin: 2px 0 18px; padding: 18px; border-radius: 18px; border: 1px solid rgba(63, 212, 255, .3); background: linear-gradient(135deg, rgba(63, 212, 255, .10), rgba(47, 139, 255, .06)); }
.qa__callout-head { display: flex; align-items: center; gap: 14px; }
.qa__callout-ic { display: grid; place-items: center; flex: none; width: 52px; height: 52px; border-radius: 14px; border: 1px solid rgba(63, 212, 255, .35); background: rgba(63, 212, 255, .08); color: var(--cyan); }
.qa__callout-ic svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.qa__callout-head p { font: 800 clamp(1.1rem, 1rem + .6vw, 1.45rem)/1.25 var(--font-display); letter-spacing: -.02em; max-width: none; }
.qa__callout-head p b { display: block; color: #fff; }
.qa__callout-head p span { display: block; color: var(--cyan); }
.qa__facts { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
.qa__facts li { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; border: 1px solid rgba(150, 190, 255, .14); background: rgba(5, 12, 28, .5); font-size: .84rem; line-height: 1.3; color: var(--text); }
.qa__facts svg { flex: none; width: 22px; height: 22px; fill: none; stroke: #9FE7FF; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.faq__note { grid-column: 2; margin-top: 4px; color: var(--text-3); font-size: .82rem; }
.faq__note sup { color: #9FE7FF; }

/* ---------------------------------------------------------------- reserve */
.reserve { overflow: hidden; text-align: center; background: radial-gradient(70% 70% at 50% 105%, rgba(47, 139, 255, .26), transparent 70%), var(--ink); padding-bottom: 0; }
.reserve__arena { position: absolute; left: 50%; bottom: 0; width: min(980px, 96vw); transform: translateX(-50%); z-index: -1; -webkit-mask-image: linear-gradient(to top, #000 55%, transparent); mask-image: linear-gradient(to top, #000 55%, transparent); }
.seats { width: 100%; height: auto; overflow: visible; }
.seats rect { fill: rgba(150, 190, 255, .14); transition: fill .4s, filter .4s; }
.seats rect.is-lit { fill: var(--cyan); filter: drop-shadow(0 0 5px rgba(63, 212, 255, .8)); }
.seats rect.is-lit-b { fill: var(--blue); filter: drop-shadow(0 0 5px rgba(47, 139, 255, .8)); }
.reserve__content { display: grid; justify-items: center; gap: 22px; padding-bottom: calc(min(980px, 96vw) * .39 + 40px); }
.reserve__title { font-size: clamp(2.3rem, 1.2rem + 4.2vw, 4.6rem); max-width: 14ch; }
.reserve__text { display: grid; justify-items: center; gap: 12px; color: var(--text-2); max-width: 44ch; }
.reserve__text .hl { font-size: 1.05rem; }
.reserve__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; }
.reserve__terms { margin-top: -8px; color: var(--text-3); font-size: .86rem; }
.reserve .btn { margin-top: 10px; white-space: normal; text-align: center; line-height: 1.25; }
.reserve__sign { margin-top: 8px; font: 700 1.1rem var(--font-display); color: #9FE7FF; letter-spacing: -.01em; }

/* ---------------------------------------------------------------- footer */
.footer { position: relative; background: var(--ink-3); overflow: hidden; }
.footer__horizon svg { width: 100%; height: 60px; overflow: visible; }
.horizon__glow { fill: none; stroke: rgba(63, 212, 255, .35); stroke-width: 6; filter: blur(6px); }
.horizon__line { fill: none; stroke: var(--cyan); stroke-width: 1.5; stroke-dasharray: 1800; stroke-dashoffset: 1800; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 40px; padding-block: clamp(40px, 5vw, 64px) 36px; }
.footer__logo { height: 44px; width: auto; }
.footer__tagline { margin: 18px 0 22px; font: 700 1.05rem var(--font-display); color: var(--text); letter-spacing: -.01em; }
.footer__h { font: 700 .95rem var(--font-display); color: #fff; margin-bottom: 12px; letter-spacing: 0; }
.footer__col ul { list-style: none; }
.footer__col a { display: inline-flex; align-items: center; min-height: 40px; overflow-wrap: anywhere; color: rgba(255, 255, 255, .8); text-decoration: none; font-size: .96rem; transition: color .3s; }
.footer__col a:hover { color: var(--cyan); }
.footer__social { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-block: 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer__social-label { color: var(--text-2); font-size: .95rem; }
.social { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; }
.social a { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-2); transition: border-color .3s, background-color .3s, transform .4s var(--ease); }
.social a:hover { border-color: rgba(63, 212, 255, .7); background: rgba(63, 212, 255, .1); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.social svg .fill { fill: #fff; stroke: none; }
.footer__word { overflow: clip; padding-top: clamp(20px, 3vw, 40px); text-align: center; line-height: .82; }
.footer__word span { position: relative; display: inline-block; font: 800 clamp(3rem, 12.4vw, 13.5rem)/.9 var(--font-display); letter-spacing: -.04em; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(150, 190, 255, .28); }
.footer__word span::after { content: attr(data-text); position: absolute; inset: 0; color: #0D2B52; -webkit-text-stroke: 1px rgba(63, 212, 255, .5); clip-path: inset(0 var(--fill, 100%) 0 0); }
.footer__legal { display: grid; gap: 12px; padding-block: 28px calc(28px + env(safe-area-inset-bottom)); }
.footer__legal p { color: rgba(255, 255, 255, .72); font-size: .84rem; line-height: 1.65; max-width: 118ch; }
.footer__legal strong { color: rgba(255, 255, 255, .92); }
.footer__base { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.to-top { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--text); font-size: .9rem; font-weight: 600; transition: border-color .3s, transform .4s var(--ease); }
.to-top:hover { border-color: rgba(63, 212, 255, .7); transform: translateY(-2px); }
.to-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------------------------------------------------------------- responsive: tablet and down */
@media (max-width: 1100px) {
  .pill__link { padding: 0 12px; font-size: .9rem; }
  .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 959px) {
  :root { --topbar-h: 62px; }
  body { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  .pill, .topbar__cta { display: none; }
  .topbar__inner { justify-content: space-between; }
  .brand img { height: 34px; }
  .menu-btn { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; border: 1px solid var(--line-2); background: rgba(9, 22, 46, .6); }
  .menu-btn__bars { position: relative; width: 20px; height: 12px; }
  .menu-btn__bars i { position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px; background: #fff; transition: transform .45s var(--ease); }
  .menu-btn__bars i:first-child { top: 0; }
  .menu-btn__bars i:last-child { bottom: 0; right: 6px; }

  .dock {
    position: fixed; z-index: var(--z-dock); left: 50%; bottom: calc(12px + env(safe-area-inset-bottom));
    width: min(100% - 24px, 440px); height: 66px; transform: translateX(-50%);
    display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: center;
    border-radius: 24px; background: rgba(8, 20, 44, .8); border: 1px solid var(--line-2);
    -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .06);
    transition: transform .5s var(--ease), opacity .4s;
  }
  .dock.is-away { transform: translate(-50%, 130%); opacity: 0; }
  .dock__tab { display: grid; justify-items: center; align-content: center; gap: 3px; height: 100%; color: var(--text-3); text-decoration: none; font-size: .68rem; font-weight: 600; transition: color .3s; -webkit-tap-highlight-color: transparent; }
  .dock__tab svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .dock__tab.is-active { color: #fff; }
  .dock__apply { display: grid; justify-items: center; align-content: end; height: 100%; padding-bottom: 7px; color: #fff; text-decoration: none; font-size: .68rem; font-weight: 700; -webkit-tap-highlight-color: transparent; }
  .dock__orb { display: grid; place-items: center; width: 54px; height: 54px; margin-top: -30px; margin-bottom: 3px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--blue)); box-shadow: 0 0 0 5px rgba(5, 10, 26, .9), 0 10px 26px -6px rgba(63, 212, 255, .9); animation: orb 3.2s ease-in-out infinite; }
  .dock__orb svg { width: 24px; height: 24px; fill: none; stroke: #041226; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
  @keyframes orb { 50% { box-shadow: 0 0 0 5px rgba(5, 10, 26, .9), 0 10px 34px -2px rgba(63, 212, 255, 1); } }
  .dock__filament { position: absolute; bottom: 6px; left: 0; width: 26px; height: 3px; border-radius: 3px; background: var(--cyan); box-shadow: 0 0 10px 1px rgba(63, 212, 255, .9); opacity: 0; transition: transform .5s var(--ease), opacity .3s; }
  .dock__filament.is-on { opacity: 1; }

  .hero { display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; padding-top: calc(var(--topbar-h) + env(safe-area-inset-top)); padding-bottom: 56px; }
  .hero__stage { position: relative; inset: auto; height: 40svh; min-height: 260px; max-height: 420px; margin-bottom: 2px; }
  .hero__stage::after { background: linear-gradient(180deg, rgba(5, 10, 26, 0) 70%, rgba(5, 10, 26, .6) 100%); }
  .hero__caption { right: 50%; bottom: 8px; transform: translateX(50%); white-space: nowrap; font-size: .8rem; }
  .hero__caption.is-swap { transform: translate(50%, 6px); }
  .hero__fallback { right: 50%; transform: translate(50%, -50%); width: min(60vw, 280px); }
  .hero__kicker { margin-bottom: 16px; align-self: flex-start; }
  .hero__content { display: flex; flex-direction: column; }
  .tg__wrap { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .tg__phone { justify-self: center; width: min(100%, 460px); }
  .tg__chat { transform: none; }
  .tg__glow { inset: -12% 0; }
  .hero__title { font-size: clamp(1.9rem, 11vw, 3.3rem); }
  .hero__actions { order: 2; margin-top: 24px; }
  .hero__lead { order: 3; margin-top: 26px; }
  .tray { order: 4; }
  .hero__tag { margin-top: 12px; }
  .hero__cue { display: none; }
  .hero__floor { height: 40%; bottom: 20%; }
  .hero__line { top: calc(var(--topbar-h) + env(safe-area-inset-top) + clamp(260px, 40svh, 420px) - 100px); bottom: auto; height: 96px; opacity: .45; }

  .faq__grid { grid-template-columns: minmax(0, 1fr); }
  .faq__intro { position: static; }
  .faq__bubbles { display: none; }
  .faq__note { grid-column: 1; }
  .qa__body { padding-left: 0; }



  .compare { height: auto; container-type: normal; }
  .compare__side { position: relative; width: auto !important; }
  .compare__side > * { width: auto; }
  .compare__b > * { margin-left: 0; }
  .compare__handle { display: none; }
  .compare__a { border-bottom: 1px solid var(--line); }
  .why__hint { display: none; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
}

@media (max-width: 600px) {
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__actions { justify-items: stretch; gap: 14px; }
  .hero__note { justify-content: center; padding-left: 0; }
  .tray { display: grid; grid-auto-flow: row; width: 100%; }
  .tray__cell + .tray__cell { border-left: 0; border-top: 1px solid rgba(150, 190, 255, .16); }
  .tray__cell { padding: 13px 18px; }
  .flow__track { --card: 78vw; gap: 14px; }
  .bcard__in { min-height: 360px; padding: 24px 22px; }
  .seg { width: 100%; }
  .seg__btn { flex: 1; padding: 0 8px; font-size: .86rem; }
  .qa__body p { padding-right: 0; }
  .reserve .btn { width: 100%; }
  .tg__actions .btn { width: 100%; }
  .compare .hl { white-space: normal; }
  .qa { padding: 0 16px; }
  .qa__facts { grid-template-columns: 1fr; }
  .footer__social { justify-content: center; text-align: center; }
  .footer__base { justify-content: center; text-align: center; }
}

@media (min-width: 1600px) {
  :root { --maxw: 1320px; }
}

/* ---------------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__line path { stroke-dashoffset: 0; }
  .horizon__line { stroke-dashoffset: 0; }
  .hero__canvas { opacity: 1; }
}
