/* Convicta — landing v2 "Constellation". Palette+type from tokens.css
   (THE ORACLE); geometry/motion — the constellation art language. */

@font-face { font-family: "Space Grotesk"; src: url("fonts/space-grotesk-var-latin.woff2") format("woff2"); font-weight: 300 700; font-display: swap; }
@font-face { font-family: "Space Mono"; src: url("fonts/space-mono-400-latin.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Space Mono"; src: url("fonts/space-mono-700-latin.woff2") format("woff2"); font-weight: 700; font-display: swap; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--bg-deep);
  font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body);
  overflow-x: hidden;
}

/* fixed layered ground: hex texture + drifting amber nebula */
.ground { position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1000px 700px at 75% -5%, rgba(242,148,27,.06), transparent 60%),
    radial-gradient(900px 900px at 15% 110%, rgba(242,148,27,.04), transparent 60%),
    var(--bg-deep);
}
.ground::after { content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24'%3E%3Cpath d='M7 0 L21 0 L28 12 L21 24 L7 24 L0 12 Z' fill='none' stroke='%23ECE9E1' stroke-opacity='.035'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--font-head); letter-spacing: var(--ls-head); line-height: var(--lh-tight); margin: 0 0 var(--sp-4); }
h2 { font-size: clamp(30px, 4.6vw, 46px); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 var(--sp-3); }
em { font-style: normal; background: linear-gradient(100deg, var(--accent), #ffd9a0 60%, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.center { text-align: center; }
.mono-inline { font-family: var(--font-mono); color: var(--accent); font-weight: 700; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.eyebrow { font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 700;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent); margin-bottom: var(--sp-3); }
.micro { color: var(--faint); font-size: var(--fs-small); }
.lede { color: var(--muted); font-size: 19px; max-width: 620px; }
.lede.center { margin-inline: auto; }

/* ── nav ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg-deep) 62%, transparent);
  border-bottom: 1px solid var(--line-2); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark svg { width: 32px; height: 32px; display: block; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; }

.btn { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: var(--fs-body);
  text-decoration: none; cursor: pointer; border-radius: var(--radius-pill); padding: 13px 30px;
  min-height: var(--tap-min); border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-page) var(--ease), background var(--dur-fast) var(--ease); }
.btn-primary { background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 0 0 rgba(242,148,27,0); }
.btn-primary:hover { box-shadow: 0 0 26px rgba(242,148,27,.45); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); border-color: var(--line); }
/* hero-кнопки поверх треугольника (Fold7/планшетные ширины, фидбек 2026-07-11 п.1):
   ghost был прозрачным — линии hero-art просвечивали сквозь кнопки. Почти-непрозрачная
   подложка + blur: кнопки читаемы на арте, сам арт вне кнопок не тронут. */
.hero-btns .btn-ghost, .hero-cta .btn-sm { background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(5px); }
/* легенда «что за приложения» (п.3): кратко, порядок = сила (выше = мощнее) */
.hero-apps { list-style: none; margin: var(--sp-2) 0 0; padding: 0; max-width: 560px;
  font-size: 13px; line-height: 1.55; color: var(--muted); text-align: left;
  text-shadow: 0 2px 20px rgba(6,8,13,.95);
  background: color-mix(in srgb, var(--bg) 72%, transparent); backdrop-filter: blur(4px);
  border-radius: 12px; padding: 8px 14px; }
.hero-apps b { color: var(--ink); font-family: var(--font-head); }
.hero-apps li + li { margin-top: 2px; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── hero ── */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; padding: 120px 24px 140px; }
.hero-art { position: absolute; inset: 0; display: grid; place-items: center; z-index: -1; opacity: 1; }  /* глаз явнее (2026-07-10): было .92 */
.hero-art svg { width: min(1400px, 130vw); height: auto; }
.hero-copy { text-align: center; max-width: 860px; transform: translateY(8vh); }
.hero h1 { font-size: clamp(36px, 5.4vw, 62px); font-weight: 700; margin: var(--sp-4) 0;
  text-shadow: 0 4px 60px rgba(6,8,13,.9); }
/* hero buttons: smaller than default .btn (declutter, owner review 2026-07-17) */
.hero .btn-hero { padding: 10px 22px; font-size: 14px; min-height: 0; }
.hero .sub { font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 640px; margin: 0 auto var(--sp-5); text-shadow: 0 2px 30px rgba(6,8,13,.95); }
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; translate: -50% 0; width: 24px; height: 40px;
  border: 1px solid var(--line); border-radius: 12px; display: block; }
.scroll-cue span { position: absolute; top: 7px; left: 50%; translate: -50% 0; width: 3px; height: 8px;
  border-radius: 2px; background: var(--accent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } }

/* hero art line-draw choreography (classes exist inside injected hero.svg) */
.hero-art .draw { stroke-dasharray: 100; stroke-dashoffset: 100; animation: draw 2.2s var(--ease) forwards; }
.hero-art .cst-eye .draw { animation-delay: .5s; }
.hero-art .net .draw { animation-duration: 3.2s; animation-delay: .9s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero-art .cst-iris .iris-ring { transform-origin: center; animation: irisPulse 5s ease-in-out infinite 2.4s; }
@keyframes irisPulse { 0%,100% { opacity: 1; } 50% { opacity: .92; } }  /* почти без провала (глаз явнее, 2-я итерация) */
.hero-art .cst-facets, .hero-art .cst-spokes { animation: facets 2.4s var(--ease) both 1.1s; }
@keyframes facets { from { opacity: 0; } to { opacity: 1; } }
.hero-art .cst-dots circle { animation: pop .5s var(--ease) both; }
.hero-art .cst-dots circle:nth-child(2n) { animation-delay: 1.4s; }
.hero-art .cst-dots circle:nth-child(2n+1) { animation-delay: 1.7s; }
@keyframes pop { from { opacity: 0; } to { opacity: 1; } }

/* ── ticker ── */
.ticker { overflow: hidden; border-block: 1px solid var(--line-2); padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { display: flex; gap: 34px; width: max-content; animation: tick 36s linear infinite;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.ticker-track i { color: var(--accent); font-style: normal; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ── blocks ── */
.block { max-width: 1040px; margin: 0 auto; padding: var(--sp-9) var(--sp-5); position: relative; }

/* problem split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; }
.giant { font-family: var(--font-head); font-weight: 700; font-size: clamp(56px, 7vw, 96px);
  background: linear-gradient(160deg, #ffd9a0, var(--accent) 55%, #8a5410);
  -webkit-background-clip: text; background-clip: text; color: transparent; display: block; line-height: 1; }
.giant-sub { font-size: .38em; }
.giant-cap { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--faint); margin-top: var(--sp-3); }

/* signal path */
.path-sec h2 { margin-bottom: var(--sp-7); }
.path { position: relative; max-width: 640px; margin: 0 auto; padding-left: 72px; }
.path-line { position: absolute; left: 27px; top: 8px; height: calc(100% - 16px); width: 4px; }
.path-progress { stroke-dasharray: 100; stroke-dashoffset: calc(100 - var(--path-p, 0)); }
.path-step { position: relative; padding: 0 0 var(--sp-8); }
.path-step:last-child { padding-bottom: 0; }
.path-node { position: absolute; left: -72px; top: -4px; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: var(--card);
  border: 1px solid var(--accent); box-shadow: 0 0 18px rgba(242,148,27,.25); }
.path-node i { font-family: var(--font-mono); font-weight: 700; font-style: normal; color: var(--accent); font-size: 14px; }
.path-step p { color: var(--muted); max-width: 480px; }

/* flagship — conic animated border */
.flagship-card { border-radius: calc(var(--radius-card) + 2px); padding: 2px; position: relative; overflow: hidden; }
.flagship-card::before { content: ""; position: absolute; inset: -60%;
  background: conic-gradient(from 0deg, transparent 0 60%, var(--accent) 78%, #ffd9a0 82%, var(--accent) 86%, transparent 92%);
  animation: spin 7s linear infinite; }
@keyframes spin { to { transform: rotate(1turn); } }
.flagship-inner { position: relative; border-radius: var(--radius-card);
  background: linear-gradient(180deg, var(--card), var(--bg)); padding: clamp(28px, 5vw, 64px); }
.flagship-inner h2 { font-size: clamp(34px, 5vw, 56px); }
.badge { display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--accent); border-radius: var(--radius-pill); padding: 5px 14px;
  margin-bottom: var(--sp-4); background: var(--accent-soft); }

/* bento */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); margin-top: var(--sp-6); }
.cell { background: color-mix(in srgb, var(--card) 82%, transparent); border: 1px solid var(--line-2);
  border-radius: var(--radius-card); padding: var(--sp-5) var(--sp-4); position: relative; overflow: hidden;
  transition: border-color var(--dur-page) var(--ease), transform var(--dur-page) var(--ease); }
.cell:hover { border-color: var(--accent); transform: translateY(-3px); }
.cell::after { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity var(--dur-page) var(--ease);
  background: radial-gradient(300px 160px at 20% 0%, var(--accent-soft), transparent 70%); pointer-events: none; }
.cell:hover::after { opacity: 1; }
.cell-wide { grid-column: span 2; }
.cell i { font-family: var(--font-mono); font-style: normal; font-weight: 700; font-size: 12px;
  color: var(--accent); letter-spacing: .2em; }
.cell h3 { margin: var(--sp-2) 0; font-size: 18px; }
.cell p { color: var(--muted); font-size: var(--fs-small); margin: 0; }

/* preview */
.preview-stage { position: relative; display: grid; place-items: center; padding: var(--sp-6) 0; }
.preview-spark { position: absolute; bottom: -10px; width: min(900px, 100%); opacity: .6; pointer-events: none; }
.preview-card { background: linear-gradient(180deg, var(--card), var(--card-2)); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: var(--sp-5); max-width: 620px; width: 100%;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8), 0 0 40px rgba(242,148,27,.07);
  transition: transform .2s ease-out; will-change: transform; }
.pv-row { display: flex; justify-content: space-between; }
.pv-label, .pv-time { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.pv-time { color: var(--faint); }
.pv-headline { font-family: var(--font-head); font-weight: 700; font-size: 21px; margin: var(--sp-3) 0; }
.pv-market { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; border-top: 1px solid var(--line-2); padding-top: var(--sp-3); }
.pv-market-name { color: var(--muted); font-size: var(--fs-small); flex: 1 1 auto; }
.pv-chip { font-family: var(--font-mono); font-size: 12px; font-weight: 700; border-radius: var(--radius-pill); padding: 3px 10px; }
.pv-yes { color: var(--yes); border: 1px solid var(--yes); }
.pv-no { color: var(--no); border: 1px solid var(--no); }
.pv-context { color: var(--faint); font-size: 13px; margin: var(--sp-3) 0 0; }

/* proof */
.mega-quote { margin: 0 0 var(--sp-6); text-align: center; }
.mega-quote p { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.12; letter-spacing: -.01em; margin-bottom: var(--sp-3); }
.mega-quote cite { font-style: normal; font-family: var(--font-mono); color: var(--faint); font-size: var(--fs-small); }
.proof-frame { border: 1px dashed var(--line); border-radius: var(--radius-card);
  padding: var(--sp-6); margin: var(--sp-5) auto 0; max-width: 640px; text-align: center; }
.proof-note { color: var(--faint); font-size: var(--fs-small); margin: 0; }

/* pricing */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); margin-top: var(--sp-6); align-items: start; }
.tier { background: color-mix(in srgb, var(--card) 82%, transparent); border: 1px solid var(--line-2);
  border-radius: var(--radius-card); padding: var(--sp-5) var(--sp-4); position: relative;
  transition: transform var(--dur-page) var(--ease), border-color var(--dur-page) var(--ease); }
.tier:hover { transform: translateY(-4px); border-color: var(--line); }
.tier-featured { border-color: var(--accent); box-shadow: 0 0 34px rgba(242,148,27,.18); transform: scale(1.04); }
.tier-featured:hover { transform: scale(1.04) translateY(-4px); border-color: var(--accent); }
.tier-tag { position: absolute; top: -12px; left: 50%; translate: -50% 0; font-family: var(--font-mono);
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  background: var(--accent); color: var(--accent-ink); border-radius: var(--radius-pill); padding: 3px 12px; }
.tier h3 { font-size: var(--fs-body); }
.tier p { color: var(--muted); font-size: var(--fs-small); margin: 0; }
.tier-price { font-family: var(--font-mono); font-weight: 700; font-size: 30px; color: var(--ink) !important; margin: var(--sp-2) 0 var(--sp-3) !important; }
.tier-price span { font-size: 13px; color: var(--faint); }
.tiers + .micro { margin-top: var(--sp-5); }

/* faq */
.faq { margin-top: var(--sp-5); }
.faq details { border-top: 1px solid var(--line-2); }
.faq details:last-child { border-bottom: 1px solid var(--line-2); }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 500; font-size: 17px;
  padding: var(--sp-4) 0; list-style: none; display: flex; justify-content: space-between; align-items: center; min-height: var(--tap-min); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); font-size: 20px; color: var(--accent);
  transition: transform var(--dur-switch) var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); font-size: var(--fs-small); max-width: 680px; padding-bottom: var(--sp-4); margin: 0; }

/* waitlist — turing-style split card: visual panel left, form right */
.waitlist { padding-block: var(--sp-9); }
.wl-card { display: grid; grid-template-columns: minmax(320px, 5fr) 6fr; overflow: hidden;
  border: 1px solid var(--line-2); border-radius: var(--radius-card);
  background: linear-gradient(180deg, var(--card), var(--bg)); }
.wl-visual { position: relative; min-height: 340px; overflow: hidden;
  background: radial-gradient(130% 110% at 20% 15%, #131b2b, var(--bg-deep) 75%);
  border-inline-end: 1px solid var(--line-2); }
.wl-mock { position: absolute; left: 12%; top: 50%; width: 72%;
  background: color-mix(in srgb, var(--card) 94%, transparent);
  border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5); transform: translateY(-38%) rotate(-2deg); }
.wl-mock-back { transform: translateY(-88%) rotate(3deg) scale(.94); opacity: .45; filter: blur(.4px); }
.wl-mock-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.wl-mchip { display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line-2); border-radius: var(--radius-pill); padding: 4px 10px; }
.wl-mchip-live { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.wl-mchip-up { color: var(--yes); border-color: color-mix(in srgb, var(--yes) 40%, transparent); }
.wl-mock-title { margin: 0 0 8px; font-family: var(--font-head); font-weight: 700;
  font-size: 17px; line-height: 1.3; color: var(--ink); }
.wl-mock-mkt { margin: 0; font-family: var(--font-mono); font-size: 11px; color: var(--faint); }
.wl-form-col { padding: clamp(28px, 4.5vw, 56px); }
.wl-form-col h2 { font-size: clamp(30px, 3.6vw, 42px); }
.wl-sub { color: var(--muted); max-width: 460px; }
.wl-form { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); flex-wrap: wrap; }
.wl-form input { flex: 1; background: color-mix(in srgb, var(--bg-deep) 70%, transparent); border: 1px solid var(--line);
  color: var(--ink); border-radius: var(--radius-pill); padding: 13px 22px; font: inherit; min-width: 220px; min-height: var(--tap-min); }
.wl-form input::placeholder { color: var(--faint); }
.wl-form input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 22px rgba(242,148,27,.3); }
.waitlist .micro { margin-top: var(--sp-4); }
.wl-msg { min-height: 1.5em; font-family: var(--font-mono); font-size: var(--fs-small); margin-top: var(--sp-2); }
.wl-msg.ok { color: var(--yes); } .wl-msg.err { color: var(--no); }
@media (max-width: 900px) {
  .wl-card { grid-template-columns: 1fr; }
  .wl-visual { min-height: 250px; border-inline-end: 0; border-bottom: 1px solid var(--line-2); }
}

/* footer */
.footer { max-width: 1040px; margin: 0 auto; padding: var(--sp-6) var(--sp-5) var(--sp-8); border-top: 1px solid var(--line-2); }
.foot-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; margin-bottom: var(--sp-3); }
.foot-mark { color: var(--faint); }

/* reveal choreography */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* reduced motion: everything lands instantly, nothing loops */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-art .draw { animation: none; stroke-dashoffset: 0; }
  .hero-art .cst-facets, .hero-art .cst-spokes, .hero-art .cst-dots circle { animation: none; opacity: 1; }
  .hero-art .iris-ring, .scroll-cue span, .flagship-card::before, .ticker-track { animation: none; }
  .btn, .cell, .tier, .preview-card { transition: none; }
}

/* responsive */
/* tablet: 4 tier cards fold to a symmetric 2×2 grid (must precede the ≤900 rule
   so the ≤900 single-column override wins at the narrower widths) */
@media (max-width: 1000px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--sp-6); }
  .bento { grid-template-columns: 1fr 1fr; } .cell-wide { grid-column: span 2; }
  .tiers { grid-template-columns: 1fr; } .tier-featured { transform: none; }
  .hero-copy { transform: translateY(8vh); }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; } .cell-wide { grid-column: auto; }
  .wl-form { flex-direction: column; align-items: stretch; } .wl-form input { min-width: 0; }
  .brand-name { display: none; }
}

/* ══════════ v2.1 — creative layer: richer motion per screen ══════════ */

/* refined reveals: blur + scale settle */
.reveal { opacity: 0; transform: translateY(30px) scale(.985); filter: blur(6px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
  transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* hero copy: sequential entrance on load */
.hero-copy > * { opacity: 0; animation: riseIn .9s var(--ease) forwards; }
.hero-copy .eyebrow { animation-delay: .3s; }
.hero-copy h1 { animation-delay: .5s; }
.hero-copy .sub { animation-delay: 1.05s; }
.hero-copy .hero-cta { animation-delay: 1.35s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: none; } }
/* word-by-word headline (spans added by JS) */
.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(.5em) rotate(2deg); filter: blur(6px);
  animation: wordIn .7s var(--ease) forwards; animation-delay: calc(.55s + var(--wi) * .09s); }
@keyframes wordIn { to { opacity: 1; transform: none; filter: none; } }
/* hero art parallax layers (JS sets --px/--py in [-1,1]) */
.hero-art svg { transition: transform .25s ease-out; transform:
  translate(calc(var(--px, 0) * 12px), calc(var(--py, 0) * 8px)); }

/* magnetic CTA */
.btn-magnet { will-change: transform; }

/* ticker: pause on hover, glowing separators */
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track i { text-shadow: 0 0 10px rgba(242,148,27,.8); }

/* problem: shimmer sweep across the giant number */
.giant { background: linear-gradient(115deg, #8a5410 0%, var(--accent) 30%, #ffe3b3 50%, var(--accent) 70%, #8a5410 100%);
  background-size: 220% 100%; -webkit-background-clip: text; background-clip: text;
  animation: shimmer 5s ease-in-out infinite; }
@keyframes shimmer { 0%,100% { background-position: 85% 0; } 50% { background-position: 15% 0; } }

/* signal path: nodes ignite as the line reaches them */
.path-node { transition: box-shadow .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease); }
.path-step.lit .path-node { background: var(--accent); box-shadow: 0 0 26px rgba(242,148,27,.55); }
.path-step.lit .path-node i { color: var(--accent-ink); }
.path-step { transition-property: opacity, transform, filter; }
.path-step:nth-child(odd of .path-step) { --rd: .05s; }

/* flagship: floating rule-chips */
.chips { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.chips span { position: absolute; font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent); border-radius: var(--radius-pill);
  padding: 5px 13px; background: color-mix(in srgb, var(--bg-deep) 78%, transparent);
  backdrop-filter: blur(4px); animation: chipFloat 6.5s ease-in-out infinite var(--d, 0s); }
.chips span:nth-child(1) { top: 8%; right: 6%; }
.chips span:nth-child(2) { top: 34%; right: 2.5%; }
.chips span:nth-child(3) { top: 62%; right: 7%; }
.chips span:nth-child(4) { bottom: 7%; right: 20%; }
.chips span:nth-child(5) { top: 12%; right: 22%; }
@keyframes chipFloat { 0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1.2deg); } }

/* bento: cursor spotlight (JS sets --mx/--my per cell) */
.cell::after { background: radial-gradient(220px 180px at var(--mx, 20%) var(--my, 0%),
  var(--accent-soft), transparent 72%); }
.cell i { transition: letter-spacing .3s var(--ease); }
.cell:hover i { letter-spacing: .38em; }

/* preview: glare sweep + typing caret + live dot */
.preview-card { position: relative; overflow: hidden; }
.preview-card::before { content: ""; position: absolute; inset: -40%; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(236,233,225,.07) 50%, transparent 58%);
  transform: translateX(-70%); transition: transform 1.1s var(--ease); }
.preview-card:hover::before { transform: translateX(70%); }
.pv-caret { display: inline-block; width: 2px; height: 1em; vertical-align: -2px; margin-left: 3px;
  background: var(--accent); animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.pv-label { position: relative; padding-left: 14px; }
.pv-label::before { content: ""; position: absolute; left: 0; top: 50%; translate: 0 -50%;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px var(--accent); animation: liveBeat 2s var(--ease) infinite; }
@keyframes liveBeat { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* proof: corner brackets + word-by-word quote (spans by JS) */
.proof-frame { position: relative; border-style: solid; border-color: var(--line-2); }
.proof-frame::before, .proof-frame::after { content: ""; position: absolute; width: 26px; height: 26px;
  border: 1px solid var(--accent); transition: width .6s var(--ease), height .6s var(--ease); }
.proof-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.proof-frame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.proof-frame:hover::before, .proof-frame:hover::after { width: 48px; height: 48px; }
.mega-quote .w { display: inline-block; opacity: 0; transform: translateY(.4em); filter: blur(8px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease);
  transition-delay: calc(var(--wi) * .07s); }
.mega-quote.in .w { opacity: 1; transform: none; filter: none; }

/* pricing: breathing feature glow + hover sheen */
.tier-featured { animation: tierBreathe 5.5s ease-in-out infinite; }
@keyframes tierBreathe { 0%,100% { box-shadow: 0 0 34px rgba(242,148,27,.18); }
  50% { box-shadow: 0 0 52px rgba(242,148,27,.32); } }
.tier { overflow: hidden; }
.tier::before { content: ""; position: absolute; inset: -40%; pointer-events: none;
  background: linear-gradient(115deg, transparent 44%, rgba(236,233,225,.05) 50%, transparent 56%);
  transform: translateX(-75%); transition: transform 1s var(--ease); }
.tier:hover::before { transform: translateX(75%); }

/* FAQ: JS-animated body + sliding amber marker */
.faq details { position: relative; }
.faq details::before { content: ""; position: absolute; left: -18px; top: 0; bottom: 0; width: 2px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform .45s var(--ease); }
.faq details[open]::before { transform: scaleY(1); }
.faq .faq-body { overflow: hidden; }
.faq summary { transition: color .3s var(--ease), padding-left .3s var(--ease); }
.faq details[open] summary, .faq summary:hover { color: var(--accent); padding-left: 6px; }

/* waitlist: breathing iris */
.wl-iris { animation: irisBreathe 9s ease-in-out infinite; }
@keyframes irisBreathe { 0%,100% { opacity: .30; transform: scale(1); }
  50% { opacity: .42; transform: scale(1.035); } }
.wl-iris { transform-origin: center; }

/* reduced motion: v2.1 layer off */
@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .hero h1 .w { animation: none; opacity: 1; transform: none; filter: none; }
  .giant::after, .chips span, .pv-caret, .pv-label::before, .tier-featured, .wl-iris { animation: none; }
  .reveal { filter: none; }
  .mega-quote .w { opacity: 1; transform: none; filter: none; transition: none; }
  .preview-card::before, .tier::before { display: none; }
  .hero-art svg { transform: none; transition: none; }
}
@media (max-width: 700px) { .chips { display: none; } }

/* ══════════ v2.2 — fold/narrow fixes + spacing rhythm normalization ══════════ */

/* kill horizontal overflow at the root (130vw hero-art, 120vw iris) */
html { overflow-x: hidden; }
.hero { overflow: hidden; }

/* unified vertical rhythm (desktop): section pad sp-9; eyebrow>h2>content = sp-3/sp-6 */
.steps, .bento, .tiers, .faq { margin-top: var(--sp-6); }
.path-sec h2 { margin-bottom: var(--sp-6); }
.path { margin-top: var(--sp-6); }
.preview-stage { padding: var(--sp-6) 0 var(--sp-7); }
.waitlist { padding-block: var(--sp-9); }
.proof-frame { margin: var(--sp-6) auto 0; }
.tiers + .micro { margin-top: var(--sp-6); }
.waitlist .micro { margin-top: var(--sp-4); }
.wl-form { margin-top: var(--sp-6); }
.mega-quote { margin-bottom: var(--sp-6); }

/* tablets/phones: tighter but consistent rhythm */
@media (max-width: 700px) {
  .block { padding-block: var(--sp-7); }
  .waitlist { padding-block: var(--sp-8); }
  .hero { padding-bottom: 110px; }
  .split { gap: var(--sp-5); }
  .flagship-inner { padding: 26px 22px; }
  .path { padding-left: 58px; }
  .path-node { width: 46px; height: 46px; left: -58px; top: -2px; }
  .path-line { left: 21px; }
  .ticker-track { font-size: 11px; letter-spacing: .14em; gap: 24px; }
  .preview-stage { padding-bottom: var(--sp-6); }
}

/* fold-class covers (<=380px) */
@media (max-width: 380px) {
  .block, .footer { padding-inline: var(--sp-4); }
  .nav { padding: 12px 14px; }
  .btn { padding: 12px 20px; font-size: 15px; }
  .hero h1 { font-size: clamp(34px, 12vw, 42px); }
  .hero .sub { font-size: 16px; }
  .eyebrow { letter-spacing: .16em; }
  .giant { font-size: clamp(46px, 16vw, 56px); }
  h2 { font-size: clamp(25px, 8vw, 30px); }
  .waitlist h2 { font-size: clamp(30px, 10.5vw, 38px); }
  .mega-quote p { font-size: clamp(26px, 8.6vw, 32px); }
  .pv-headline { font-size: 18px; }
  .tier-price { font-size: 26px; }
  .scroll-cue { display: none; }
}

/* ══════════ v2.3 — focus/legal fixes + extra creative layer ══════════ */

/* seamless ticker: track = flex of two identical halves, animate -50% */
.ticker-track { gap: 0; will-change: transform; }
.ticker-half { display: flex; gap: 34px; padding-right: 34px; align-items: center; white-space: nowrap; }
@media (hover: hover) { .ticker:hover .ticker-track { animation-play-state: paused; } }
@media (hover: none) { .ticker:hover .ticker-track { animation-play-state: running; } }

/* pricing: equal heights, un-clipped tag */
.tiers { align-items: stretch; }
.tier { display: flex; flex-direction: column; overflow: visible; padding-top: var(--sp-6); }
.tier p:last-child { margin-top: auto; }
.tier::before { content: none; }           /* sheen убран — он резал бейдж */
.tier-featured { transform: none; }
.tier-featured:hover { transform: translateY(-4px); }

/* section index rails (editorial left edge) */
.rail { position: absolute; left: -8px; top: var(--sp-9); writing-mode: vertical-rl;
  transform: rotate(180deg); font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .34em; text-transform: uppercase; color: var(--faint); opacity: .55; }
@media (max-width: 1180px) { .rail { display: none; } }

/* ornament divider */
.orn { display: flex; align-items: center; gap: 16px; max-width: 520px; margin: 0 auto; padding: 0 var(--sp-5); }
.orn span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line)); }
.orn span:last-child { background: linear-gradient(90deg, var(--line), transparent); }
.orn i { color: var(--accent); font-style: normal; font-size: 12px; text-shadow: 0 0 12px rgba(242,148,27,.8); }

/* hero: drifting ember particles */
.hero::before, .hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 18% 78%, rgba(242,148,27,.8), transparent 60%),
    radial-gradient(1.6px 1.6px at 72% 64%, rgba(242,148,27,.6), transparent 60%),
    radial-gradient(2px 2px at 86% 30%, rgba(242,148,27,.5), transparent 60%);
  animation: embers 16s linear infinite; opacity: .7; }
.hero::after { animation-duration: 23s; animation-delay: -9s; transform: scale(1.4); opacity: .45; }
@keyframes embers { from { transform: translateY(6vh); opacity: 0; }
  12% { opacity: .7; } 88% { opacity: .7; } to { transform: translateY(-14vh); opacity: 0; } }

/* footer sparkline */
.footer { position: relative; overflow: hidden; }
.foot-spark { position: absolute; right: -40px; bottom: -18px; width: 420px; opacity: .22; pointer-events: none; }

/* amber selection */
::selection { background: rgba(242, 148, 27, .28); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; opacity: .35; }
}

/* ══════════ v2.4 — intro: the Oracle opens its eye ══════════ */
.intro { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center;
  background: var(--bg-deep); transition: opacity .45s var(--ease); }
.intro.out { opacity: 0; pointer-events: none; }
.intro-mark { width: 148px; height: 148px; will-change: transform;
  transition: transform .65s cubic-bezier(.4,.1,.2,1); }
.intro-mark svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* штрихи марки рисуются */
.intro-mark .st { stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: introDraw .9s var(--ease) forwards; }
.intro-mark .st.eye { animation-delay: .45s; }
.intro-mark .rays { opacity: 0; animation: introFade .5s var(--ease) forwards 1.15s; }
@keyframes introDraw { to { stroke-dashoffset: 0; } }
@keyframes introFade { to { opacity: 1; } }

/* зрачок вспыхивает + ударная волна */
.intro-mark .pupil { transform-origin: 60px 66px; transform: scale(0);
  animation: ignite .5s cubic-bezier(.2,.9,.3,1.4) forwards 1.25s;
  filter: drop-shadow(0 0 18px rgba(242,148,27,.9)); }
@keyframes ignite { to { transform: scale(1); } }
.intro-mark .ring { transform-origin: 60px 66px; transform: scale(.2); opacity: 0;
  animation: shock .7s var(--ease) forwards 1.4s; }
@keyframes shock { 0% { transform: scale(.2); opacity: .9; }
  100% { transform: scale(2.6); opacity: 0; } }
.intro-flash { position: absolute; width: 60vmax; height: 60vmax; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,148,27,.35), transparent 60%);
  opacity: 0; animation: flash .8s var(--ease) 1.3s; pointer-events: none; }
@keyframes flash { 20% { opacity: 1; } 100% { opacity: 0; } }
.intro-skip { position: absolute; bottom: 28px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--faint); opacity: 0;
  animation: introFade .6s var(--ease) forwards 1s; }

/* до конца интро — hero и tickerждут */
body.intro-wait .hero-copy > *, body.intro-wait .hero h1 .w,
body.intro-wait .hero-art .draw, body.intro-wait .hero-art .cst-facets,
body.intro-wait .hero-art .cst-spokes, body.intro-wait .hero-art .cst-dots circle
  { animation-play-state: paused !important; }
body.intro-wait .nav .brand-mark { opacity: 0; }
.nav .brand-mark { transition: opacity .2s var(--ease); }

@media (prefers-reduced-motion: reduce) { .intro { display: none; } }

/* ══════════ v2.4b — console boot log (референс: megaeth) ══════════ */
.intro-log { position: absolute; top: clamp(20px, 6vh, 64px); left: clamp(18px, 6vw, 72px);
  margin: 0; font-family: var(--font-mono); font-size: 13px; line-height: 1.9;
  color: var(--muted); display: flex; flex-direction: column; text-align: left; }
.intro-log span { opacity: 0; transform: translateY(4px); white-space: pre-wrap;
  transition: opacity .18s steps(2), transform .18s var(--ease); }
.intro-log span.on { opacity: 1; transform: none; }
.intro-log i { font-style: normal; color: var(--accent); font-weight: 700; }
.intro-log span:last-child.on { animation: caret 1s steps(1) infinite; }
@media (max-width: 560px) { .intro-log { font-size: 11px; line-height: 1.8; } }

/* терминальный курсор у eyebrow в hero */
.hero .eyebrow::after { content: "▍"; color: var(--accent); margin-left: 6px;
  animation: caret 1.1s steps(1) infinite; }
@media (prefers-reduced-motion: reduce) { .hero .eyebrow::after { animation: none; } }

/* интро: сдвигаем таймлайн марки после лога */
.intro-mark .st { animation-delay: .75s; }
.intro-mark .st.eye { animation-delay: 1.15s; }
.intro-mark .rays { animation-delay: 1.7s; }
.intro-mark .pupil { animation-delay: 1.8s; }
.intro-mark .ring { animation-delay: 1.95s; }
.intro-flash { animation-delay: 1.85s; }

/* ══════════ v2.5 — mega outline marquee (референс: monad) ══════════ */
.mega-marquee { overflow: hidden; padding: var(--sp-7) 0 var(--sp-4); user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.mm-track { display: flex; width: max-content; animation: tick 46s linear infinite; }
.mm-half { display: flex; align-items: baseline; gap: 40px; padding-right: 40px; white-space: nowrap; }
.mm-half span, .mm-half b { font-family: var(--font-head); font-weight: 700;
  font-size: clamp(64px, 10vw, 132px); letter-spacing: -.02em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--faint); }
.mm-half b { color: var(--accent); -webkit-text-stroke: 0; text-shadow: 0 0 44px rgba(242,148,27,.35); }
.mm-half i { font-style: normal; color: var(--accent); font-size: 28px; align-self: center; }
@media (hover: hover) { .mega-marquee:hover .mm-track { animation-play-state: paused; } }
@media (prefers-reduced-motion: reduce) { .mm-track { animation: none; } }

/* ══════════ v2.5b — hero copy scrim (грани арта не бьют сквозь текст) ══════════ */
.hero-copy { position: relative; }
.hero-copy::before { content: ""; position: absolute; inset: -8% -14%; z-index: -1;
  background: radial-gradient(ellipse 62% 58% at 50% 52%, rgba(6,8,13,.88), rgba(6,8,13,.55) 55%, transparent 78%);
  pointer-events: none; }

/* ══════════ v2.6 — QA fixes: tap targets, Safari fallbacks, safe-area ══════════ */

/* tap targets ≥44px */
.brand { min-height: 44px; padding: 4px 8px 4px 0; }
.scroll-cue { padding: 12px 14px; box-sizing: content-box; }
.scroll-cue span { top: 19px; }

/* Safari <16.2: фолбэки ПЕРЕД color-mix (каскад заменит где поддерживается) */
.nav { background: rgba(6, 8, 13, .78); }
@supports (background: color-mix(in srgb, red 50%, blue)) {
  .nav { background: color-mix(in srgb, var(--bg-deep) 62%, transparent); }
}
.cell, .tier { background: rgba(21, 25, 34, .82); }
.wl-form input { background: rgba(21, 25, 34, .88); }
.chips span { background: rgba(6, 8, 13, .78); }

/* iOS <15.4: 100vh фолбэк перед svh */
.hero { min-height: 100vh; min-height: 100svh; }

/* маски с -webkit- префиксом (старые WebKit/Blink) */
.ticker { -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.mega-marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }

/* чёлка/safe-area (viewport-fit=cover) */
.nav { padding-left: max(28px, env(safe-area-inset-left)); padding-right: max(28px, env(safe-area-inset-right)); }
.footer { padding-bottom: max(var(--sp-8), env(safe-area-inset-bottom)); }
@media (max-width: 380px) {
  .nav { padding-left: max(14px, env(safe-area-inset-left)); padding-right: max(14px, env(safe-area-inset-right)); }
}
/* tap target: у брендовой марки без имени (≤560px) ширина тоже ≥44px */
@media (max-width: 560px) { .brand { padding: 6px 8px 6px 6px; min-width: 46px; justify-content: flex-start; } }

/* ══════════ v3.0 — beta redesign: new blocks + real eye-opening ══════════ */

/* ── ГЛАЗ ОТКРЫВАЕТСЯ: hero-ирис распахивается веками + периодически моргает ── */
.hero-art .cst-iris { clip-path: inset(50% 0 50% 0); }
body:not(.intro-wait) .hero-art .cst-iris {
  animation: eyeOpen 1.1s var(--ease) forwards .9s, blink 8s ease-in-out infinite 6s; }
@keyframes eyeOpen { from { clip-path: inset(50% 0 50% 0); } to { clip-path: inset(0); } }
@keyframes blink { 0%, 91%, 100% { clip-path: inset(0); }
  94% { clip-path: inset(48% 0 48% 0); } 97% { clip-path: inset(0); } }
/* интро: зрачок появляется РАСКРЫТИЕМ век, не скейлом */
.intro-mark .pupil { transform: none; clip-path: inset(50% 0 50% 0);
  animation: lidOpen .5s var(--ease) forwards 1.8s; }
@keyframes lidOpen { from { clip-path: inset(50% 0 50% 0); } to { clip-path: inset(0); } }

/* ── stats strip ── */
.stats-sec { padding-block: var(--sp-7); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4);
  border-block: 1px solid var(--line-2); padding: var(--sp-6) 0; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px); color: var(--ink); line-height: 1; }
.stat .stat-word { background: linear-gradient(100deg, var(--accent), #ffd9a0);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--faint); display: block; margin-top: 10px; }

/* ── pipeline diagram ── */
.pipe { max-width: 760px; margin: 0 auto var(--sp-7); }
.pipe svg { width: 100%; height: auto; display: block; }
.pipe text { font-family: var(--font-head); font-weight: 700; font-size: 15px; fill: var(--ink); }
.pipe .pp-sub { font-family: var(--font-mono); font-weight: 400; font-size: 10px;
  letter-spacing: .14em; fill: var(--faint); text-transform: uppercase; }
.pipe-line { stroke: var(--line); stroke-width: 2; }
.pipe-iris { animation: irisPulse 4s ease-in-out infinite; }
.pulse { offset-rotate: 0deg; }
.pulse.p1 { offset-path: path("M140 60 H330"); animation: travel 2.6s linear infinite; }
.pulse.p2 { offset-path: path("M570 60 H760"); animation: travel 2.6s linear infinite 1.3s; }
@keyframes travel { 0% { offset-distance: 0%; opacity: 0; } 12% { opacity: 1; }
  88% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@supports not (offset-path: path("M0 0 H1")) { .pulse { display: none; } }

/* ── console ── */
.term { max-width: 720px; margin: var(--sp-6) auto 0; border: 1px solid var(--line);
  border-radius: var(--radius-card); overflow: hidden; background: #0a0d13;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.9), 0 0 34px rgba(242,148,27,.06); }
.term-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  border-bottom: 1px solid var(--line-2); background: var(--card); }
.term-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--faint); opacity: .5; }
.term-bar i:first-child { background: var(--no); opacity: .7; }
.term-bar i:nth-child(2) { background: var(--accent); opacity: .7; }
.term-bar i:nth-child(3) { background: var(--yes); opacity: .7; }
.term-bar span { margin-left: 8px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.term-body { margin: 0; padding: var(--sp-4) var(--sp-4) var(--sp-5); min-height: 216px;
  font-family: var(--font-mono); font-size: 13px; line-height: 2; color: var(--muted);
  white-space: pre-wrap; }
.term-body .tl-in { color: var(--faint); }
.term-body .tl-hit { color: var(--ink); }
.term-body .tl-ok { color: var(--accent); font-weight: 700; }
.term-body .tl-yes { color: var(--yes); }

/* ── deep-dive rows ── */
.dive-sec { display: grid; gap: var(--sp-8); }
.dive { display: grid; grid-template-columns: 1fr 1.15fr; gap: var(--sp-7); align-items: center; }
.dive-rev { grid-template-columns: 1.15fr 1fr; }
.dive-rev .dive-art { order: 2; }
.dive-art { position: relative; border-radius: var(--radius-card); overflow: hidden;
  border: 1px solid var(--line-2); background: radial-gradient(120% 120% at 50% 0%, #10141d, var(--bg-deep)); }
.dive-art img { width: 100%; height: 280px; object-fit: cover; display: block;
  transition: transform .8s var(--ease); }
.dive:hover .dive-art img { transform: scale(1.05); }
.dive-txt h3 { font-size: clamp(22px, 2.6vw, 30px); }
.dive-txt p:last-child { color: var(--muted); font-size: var(--fs-small); margin: 0; }

/* ── CTA banner ── */
.banner { display: block; text-decoration: none; border-radius: calc(var(--radius-card) + 2px);
  padding: 2px; background: linear-gradient(120deg, rgba(242,148,27,.7), rgba(242,148,27,.08) 40%,
    rgba(242,148,27,.08) 60%, rgba(242,148,27,.7)); background-size: 220% 100%;
  animation: bannerSheen 6s ease-in-out infinite; transition: transform var(--dur-page) var(--ease); }
.banner:hover { transform: translateY(-3px); }
@keyframes bannerSheen { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.banner-inner { border-radius: var(--radius-card); text-align: center;
  background: radial-gradient(90% 130% at 50% 0%, #171207, var(--bg)); padding: clamp(36px, 6vw, 72px); }
.banner-h { font-family: var(--font-head); font-weight: 700; color: var(--ink);
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.12; letter-spacing: -.01em;
  margin: var(--sp-3) 0 var(--sp-5); }

/* адаптив новых блоков */
@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5) var(--sp-3); }
  .dive, .dive-rev { grid-template-columns: 1fr; gap: var(--sp-4); }
  .dive-rev .dive-art { order: 0; }
  .dive-art img { height: 200px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art .cst-iris, body:not(.intro-wait) .hero-art .cst-iris { clip-path: none; animation: none; }
  .intro-mark .pupil { clip-path: none; animation: none; }
  .pulse, .pipe-iris, .banner { animation: none; }
}

/* ══════════ v3.1 — gentle reduced-motion (анимации живут, вестибулярное выкл) ══════════ */
/* Переопределяем прежние тотальные отключения: под reduce оставляем fade/draw/eye-open,
   глушим только translate/scale/parallax/бесконечные движения. */
@media (prefers-reduced-motion: reduce) {
  .intro { display: grid; }                                  /* интро играет (fade-вариант) */
  .intro-mark .st { animation: introDraw .9s var(--ease) forwards; }
  .intro-mark .st.eye { animation-delay: .45s; }
  .intro-mark .rays { animation: introFade .5s var(--ease) forwards 1s; }
  .intro-mark .pupil { animation: lidOpen .5s var(--ease) forwards 1.3s; }
  .intro-mark .ring, .intro-flash { animation: none; opacity: 0; }
  .intro-log span { transition: opacity .15s; }
  .hero-art .draw { animation: draw 2.2s var(--ease) forwards; stroke-dashoffset: 100; }
  .hero-art .cst-facets, .hero-art .cst-spokes { animation: facets 2s var(--ease) both .9s; }
  .hero-art .cst-dots circle { animation: pop .5s var(--ease) both 1.2s; }
  body:not(.intro-wait) .hero-art .cst-iris { animation: eyeOpen 1.1s var(--ease) forwards .9s; }
  .hero-copy > * { animation: riseInSoft .8s var(--ease) forwards; opacity: 0; }
  .hero-copy .eyebrow { animation-delay: .2s; } .hero-copy h1 { animation-delay: .35s; }
  .hero-copy .sub { animation-delay: .6s; } .hero-copy .hero-cta { animation-delay: .8s; }
  .reveal { opacity: 0; transform: none; filter: none; transition: opacity .7s var(--ease); }
  .reveal.in { opacity: 1; }
  .mega-quote .w { transform: none; filter: none; }
  /* остаются выключенными: параллакс, тилт, магнит, embers, marquee/ticker бег, моргание */
  .ticker-track, .mm-track, .chips span, .hero::before, .hero::after,
  .wl-iris, .tier-featured, .banner, .giant, .pulse, .pipe-iris,
  .iris-ring, .scroll-cue span { animation: none !important; }
  .hero-art svg { transform: none !important; }
}
@keyframes riseInSoft { from { opacity: 0; } to { opacity: 1; } }

/* ══════════ v3.2 — premium: gold, grain, depth (только токен-палитра) ══════════ */

/* золотые CTA: слоёный градиент + пробегающий блик */
.btn-primary {
  background: linear-gradient(180deg, #ffd9a0 0%, var(--accent) 38%, #c96f0e 100%);
  border: 1px solid rgba(255, 217, 160, .55);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 -8px 16px rgba(138,84,16,.35) inset,
              0 8px 28px -8px rgba(242,148,27,.55);
  position: relative; overflow: hidden;
}
.btn-primary::after { content: ""; position: absolute; inset: -30%;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.32) 50%, transparent 58%);
  transform: translateX(-80%); transition: transform .9s var(--ease); pointer-events: none; }
.btn-primary:hover::after { transform: translateX(80%); }
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 -8px 16px rgba(138,84,16,.35) inset,
  0 0 40px rgba(242,148,27,.5); }

/* плёночное зерно поверх ground — глубина дорогой печати */
.ground::before { content: ""; position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* карточки: внутренний верхний блик + благородная тень */
.cell, .tier, .preview-card, .flagship-inner, .term, .dive-art, .banner-inner {
  box-shadow: 0 1px 0 rgba(236,233,225,.05) inset, 0 24px 60px -28px rgba(0,0,0,.85); }
.tier-featured { box-shadow: 0 1px 0 rgba(255,217,160,.14) inset, 0 0 44px rgba(242,148,27,.22); }

/* типографика: display легче и плотнее по трекингу — дороже */
.hero h1 { font-weight: 600; letter-spacing: -.022em; }
h2 { font-weight: 600; letter-spacing: -.018em; }
.mega-quote p { font-weight: 600; }
.banner-h { font-weight: 600; }

/* золотые каре у章 заголовков секций: тонкая линия слева от eyebrow */
.block > .eyebrow:not(.center) { position: relative; padding-left: 26px; }
.block > .eyebrow:not(.center)::before { content: ""; position: absolute; left: 0; top: 50%;
  translate: 0 -50%; width: 16px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent); }

/* stat-числа — золотой отлив */
.stat b:not(.stat-word) { background: linear-gradient(175deg, #fff2dd 8%, var(--ink) 55%, #b9b39f);
  -webkit-background-clip: text; background-clip: text; color: transparent; }

/* тир-featured: золотая линия сверху */
.tier-featured::after { content: ""; position: absolute; left: 12%; right: 12%; top: 0; height: 2px;
  border-radius: 2px; background: linear-gradient(90deg, transparent, #ffd9a0, var(--accent), transparent); }

/* форма: золотая кайма фокуса */
.wl-form input:focus { border-color: rgba(255,217,160,.8); }
@media (prefers-reduced-motion: reduce) { .btn-primary::after { display: none; } }

/* ══════════ v3.3 — свобода блоков · крупные цены · hover-glow · flat-CTA ══════════ */

/* 1) арт не лезет под текст: усиленный скрим hero, приглушённый ирис waitlist */
.hero-copy::before { inset: -14% -22%;
  background: radial-gradient(ellipse 60% 56% at 50% 50%, rgba(6,8,13,.94), rgba(6,8,13,.7) 52%, transparent 76%); }
.hero-art { opacity: .8; }
.wl-iris { opacity: .18; }
.wl-inner::before { content: ""; position: absolute; inset: -10% -16%; z-index: -1;
  background: radial-gradient(ellipse 58% 60% at 50% 46%, rgba(6,8,13,.92), rgba(6,8,13,.6) 55%, transparent 78%); }
.pv-headline, .pv-market-name { position: relative; }

/* 2) важные цифры крупнее */
.tier { padding: var(--sp-6) var(--sp-5); }
.tier h3 { font-size: 19px; }
.tier-price { font-size: 44px !important; letter-spacing: -.02em; }
.tier-price span { font-size: 15px; }
.tier p:last-child { font-size: 15px; line-height: 1.5; }
.tier-tag { font-size: 11px; padding: 5px 16px; top: -14px; z-index: 3; }
.stat b { font-size: clamp(40px, 5vw, 64px); }
.term-body { font-size: 14px; }
.faq summary { font-size: 18px; }

/* 3) плавные hover-свечения — глобально */
a, button, summary, .cell, .tier, .stat, .term, .dive-art, .pv-chip, .foot-soc span, .flink
  { transition: color .35s var(--ease), border-color .35s var(--ease), box-shadow .45s var(--ease),
    transform .35s var(--ease), text-shadow .45s var(--ease), opacity .35s var(--ease), background .35s var(--ease); }
.brand:hover .brand-mark svg { filter: drop-shadow(0 0 10px rgba(242,148,27,.6)); }
.brand .brand-mark svg { transition: filter .4s var(--ease); }
.btn-ghost:hover { box-shadow: 0 0 22px rgba(242,148,27,.25); }
.stat:hover b { text-shadow: 0 0 26px rgba(242,148,27,.35); }
.faq summary:hover { text-shadow: 0 0 18px rgba(242,148,27,.3); }
.tier:hover { box-shadow: 0 1px 0 rgba(236,233,225,.06) inset, 0 0 34px rgba(242,148,27,.16); border-color: var(--line); }
.tier-featured:hover { box-shadow: 0 1px 0 rgba(255,217,160,.16) inset, 0 0 56px rgba(242,148,27,.3); }
.term:hover { box-shadow: 0 1px 0 rgba(236,233,225,.05) inset, 0 30px 80px -30px rgba(0,0,0,.9), 0 0 44px rgba(242,148,27,.14); }
.dive-art:hover { border-color: var(--accent); box-shadow: 0 0 38px rgba(242,148,27,.18); }
.pv-chip:hover { box-shadow: 0 0 14px currentColor; }
.path-node { transition: box-shadow .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease), transform .35s var(--ease); }
.path-step:hover .path-node { transform: scale(1.08); }
.mega-quote p:hover em { text-shadow: 0 0 30px rgba(242,148,27,.45); }

/* 5) CTA как в miniapp: плоская amber-пилюля, glow на hover */
.btn-primary { background: var(--accent); border: none;
  box-shadow: 0 6px 22px -8px rgba(242,148,27,.45); }
.btn-primary::after { content: none; }
.btn-primary:hover { background: #ffa93b; box-shadow: 0 0 34px rgba(242,148,27,.55); transform: translateY(-2px); }

/* 4) богатый футер */
.footer { max-width: 1040px; padding-top: var(--sp-7); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--sp-6); margin-bottom: var(--sp-6); }
.foot-tag { color: var(--muted); font-size: var(--fs-small); max-width: 260px; margin-top: var(--sp-3); }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--faint); margin: 0 0 var(--sp-4); }
.flink { display: block; color: var(--muted); font-size: var(--fs-small); padding: 12px 0; cursor: default; min-height: 44px; box-sizing: border-box; }
a.flink { cursor: pointer; text-decoration: none; }
.flink:hover { color: var(--accent); text-shadow: 0 0 16px rgba(242,148,27,.35); }
.flink i { font-family: var(--font-mono); font-style: normal; font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 1px 7px; margin-left: 8px; vertical-align: 1px; }
.foot-soc { display: flex; gap: 12px; margin-top: var(--sp-4); }
.foot-soc span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--muted); cursor: default; }
.foot-soc span:hover { color: var(--accent); border-color: var(--accent); box-shadow: 0 0 18px rgba(242,148,27,.3); }
.foot-soc svg { width: 17px; height: 17px; display: block; }
.foot-base { border-top: 1px solid var(--line-2); padding-top: var(--sp-4);
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); align-items: baseline; justify-content: space-between; }
.foot-base .micro { margin: 0; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; gap: var(--sp-5); } }

/* ═══ NEWSFLOAT — dimmed live-news cards drifting inside the hero (turing-style) ═══
   Copy sits left; three rows of outlet-logo cards drift LEFT→RIGHT on the right,
   heavily dimmed so the headline owns the frame. Data: /live/headlines.json. */
.hero-grid { display: grid; grid-template-columns: minmax(420px, 2fr) 3fr;
  align-items: center; gap: clamp(20px, 3vw, 48px);
  width: 100%; max-width: 1560px; margin: 0 auto; }
.hero-copy { text-align: left; max-width: 640px; transform: none; justify-self: start;
  padding-inline-start: clamp(4px, 2vw, 40px); }
.hero .sub { margin-inline: 0; }
.newsfloat { position: relative; min-width: 0; align-self: center;
  margin-inline-end: calc(-1 * clamp(24px, 3vw, 60px)); /* bleed off the right edge */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 96%, rgba(0,0,0,.4));
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 96%, rgba(0,0,0,.4)); }
.newsfloat .nw-cap { margin: 0 0 16px 6px; }
.nw-cap { display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); opacity: .8;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: var(--radius-pill); padding: 6px 13px; }
.nw-row { overflow: hidden; pointer-events: none; }
.nw-row + .nw-row { margin-top: 14px; }
.nw-rtrack { display: flex; gap: 16px; width: max-content; will-change: transform;
  animation: nwLeft var(--nw-dur, 80s) linear infinite; padding: 2px 0; }
@keyframes nwLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.nw-card { flex: none; width: clamp(310px, 26vw, 400px);
  background: color-mix(in srgb, var(--card) 72%, transparent);
  border: 1px solid var(--line-2);
  border-radius: 14px; padding: 16px 19px 17px;
  opacity: .5; }
.nw-card:nth-child(3n)   { opacity: .34; }
.nw-card:nth-child(3n+1) { opacity: .4; }
.nw-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.nw-logo { flex: none; height: 21px; width: auto; max-width: 170px;
  filter: brightness(0) invert(1); opacity: .66; }
.nw-mono { flex: none; min-width: 20px; height: 20px; display: grid; place-items: center; padding: 0 5px;
  font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .04em;
  color: var(--accent); background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent); border-radius: 6px; opacity: .8; }
.nw-age { flex: none; margin-inline-start: auto;
  font-family: var(--font-mono); font-size: 10px; color: var(--faint); }
.nw-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent); animation: liveBeat 2.2s var(--ease) infinite; }
.nw-title { margin: 0; font-size: 14.5px; line-height: 1.38; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr; }
  .newsfloat { display: none; }
  .hero-copy { text-align: center; max-width: 860px; justify-self: center;
    transform: translateY(8vh); padding-inline-start: 0; }
  .hero .sub { margin-inline: auto; }
}
@media (prefers-reduced-motion: reduce) { .nw-dot { animation: none; } } /* drift stays — explicit owner request */

/* ── nav right cluster: language switcher + CTA ── */
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-sel { appearance: none; -webkit-appearance: none; cursor: pointer;
  background: color-mix(in srgb, var(--card) 70%, transparent); color: var(--muted);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 9px 30px 9px 14px; min-height: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%238B93A3' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; }
.lang-sel:hover, .lang-sel:focus-visible { border-color: var(--accent); color: var(--ink); outline: none; }
.lang-sel option { background: #10141d; color: var(--ink); }
[dir="rtl"] .lang-sel { padding: 9px 14px 9px 30px; background-position: left 12px center; }
@media (max-width: 560px) { .nav-right .btn-ghost { display: none; } }

/* ── summaries section ── */
.split-rev .split-txt { order: 1; }
.split-rev .split-num { order: 2; }
.giant-sm { font-size: clamp(56px, 8.5vw, 118px); white-space: nowrap; }
@media (max-width: 900px) { .split-rev .split-num { order: 0; } }

/* ── RTL fixes (Arabic) ── */
[dir="rtl"] .rail { right: -8px; left: auto; }
[dir="rtl"] .nw-cap--l { left: auto; right: clamp(10px, 1.6vw, 30px); }
[dir="rtl"] .nw-cap--r { right: auto; left: clamp(10px, 1.6vw, 30px); }

/* ═══ SUBPAGES (pricing / terms) ═══ */
.nav-link { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--muted);
  text-decoration: none; padding: 8px 6px; }
.nav-link:hover { color: var(--accent); }
.page { max-width: 1040px; margin: 0 auto; padding: 150px 24px 80px; min-height: 70svh; }
.page-hero { text-align: center; margin-bottom: var(--sp-7); }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); }
.page .tiers { margin-top: var(--sp-7); }

/* terms — long-form legal text, minimal */
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: var(--sp-2); }
.legal .legal-date { font-family: var(--font-mono); font-size: 12px; color: var(--faint);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--sp-6); }
.legal h2 { font-size: 21px; margin: var(--sp-6) 0 var(--sp-3); }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.legal ul { padding-inline-start: 22px; margin: 0 0 var(--sp-3); }
.legal a { color: var(--accent); }
.legal .legal-note { border: 1px solid var(--line-2); border-radius: var(--radius-card);
  padding: var(--sp-4); background: color-mix(in srgb, var(--card) 70%, transparent); }

/* RTL for the news band */
[dir="rtl"] .nw-rtrack { animation-name: nwRightRTL; }
@keyframes nwRightRTL { from { transform: translateX(50%); } to { transform: translateX(0); } }
.tier-from { display: block; font-size: 13px; font-weight: 400; color: var(--faint);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px; }

/* pricing: tier feature lists + comparison table */
.tier-feats { list-style: none; padding: 0; margin: var(--sp-4) 0 0; text-align: left; }
.tier-feats li { position: relative; padding-inline-start: 24px; margin-bottom: 9px;
  color: var(--muted); font-size: 14px; line-height: 1.45; }
.tier-feats li::before { content: "✓"; position: absolute; inset-inline-start: 0; top: 0;
  color: var(--accent); font-weight: 700; }
.cmp-sec { margin-top: var(--sp-8); }
.cmp-sec h2 { margin-bottom: var(--sp-5); }
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line-2); border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--card) 60%, transparent); }
.cmp { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 14px; }
.cmp th, .cmp td { padding: 13px 18px; text-align: center; border-bottom: 1px solid var(--line-2); }
.cmp thead th { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink); background: color-mix(in srgb, var(--card) 90%, transparent); }
.cmp tbody th { text-align: left; font-weight: 500; color: var(--muted); }
.cmp td { color: var(--muted); font-family: var(--font-mono); font-size: 13px; }
.cmp .cmp-hl { background: color-mix(in srgb, var(--accent) 7%, transparent); color: var(--ink); }
.cmp thead .cmp-hl { color: var(--accent); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }

/* hero-art sits behind the LEFT copy column — clear of the cards on the right */
@media (min-width: 1181px) {
  .hero-art { opacity: .5; }
  .hero-art svg { width: min(720px, 44vw); transform: translateX(-58%) !important; }
}

/* hero: app buttons row (beta is live) */
.hero-btns { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; }
.btn-sm { padding: 9px 20px; font-size: 14px; min-height: 0; border-color: var(--line-2); color: var(--muted); }
@media (min-width: 1181px) { .hero-btns { justify-content: flex-start; } .hero-cta { align-items: flex-start; } }

/* 2026-07-12 п.11: терминал «What the beta feels like» — фиксированная высота (не дышит при добавлении строк) */
.term-body { height: 236px; min-height: 236px; max-height: 236px; overflow: hidden; }

/* 2026-07-12 п.7/12: telegram-значок в кнопках/ссылках */
.tg-btn-ic { vertical-align: -2px; margin-right: 2px; }

/* 2026-07-12 п.22: cookie-consent */
.cookiebar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  max-width: 640px; margin: 0 auto; display: flex; align-items: center; gap: 14px;
  background: var(--panel, #10141C); border: 1px solid var(--line, #242A36);
  border-radius: 14px; padding: 12px 16px; box-shadow: 0 8px 30px rgba(0,0,0,.45); }
.cookiebar p { margin: 0; font-size: 12.5px; color: var(--faint, #8b93a3); }
.cookiebar .btn { flex: none; }
/* 2026-07-12 фикс п.5(batch-2): [hidden] проигрывал явному display:flex — закрытие «не работало» */
.cookiebar[hidden] { display: none !important; }

/* ═══ COMMUNITY BAND — Discord CTA (owner review 2026-07-17) ═══ */
.community-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 20px; text-align: center; padding-top: var(--sp-4); padding-bottom: var(--sp-4); }
.community-band .community-txt { margin: 0; color: var(--muted); font-size: clamp(15px, 1.6vw, 18px); }
.community-band .btn-sm { flex: none; }

/* extension: "coming to Chrome Web Store" note replaces the removed download CTA */
.ext-soon { display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 14px; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  background: var(--accent-soft); border-radius: var(--radius-pill); padding: 9px 18px; }

/* ══════════ v3.4 — long-text / i18n robustness (Cyrillic·DE·UK·RTL) ══════════
   RU/UK/DE strings run ~30-50% longer than EN. This layer makes headings,
   eyebrows, rails, footer, pills and nav tolerate long localized labels WITHOUT
   shrinking base type. EN is unaffected: break-word/hyphens/balance only act on
   strings that would otherwise overflow; min-width:0 is inert for short content. */

/* 1) headings never overflow their box; long words wrap/hyphenate cleanly */
h1, h2, h3,
.hero h1, .flagship-inner h2, .wl-form-col h2, .page-hero h1, .legal h1,
.mega-quote p, .banner-h, .dive-txt h3, .pv-headline, .wl-mock-title {
  overflow-wrap: break-word; word-break: normal;
  -webkit-hyphens: auto; hyphens: auto; max-width: 100%; }
/* balance multi-line headings where the browser supports it (progressive) */
h1, h2, h3, .hero h1, .mega-quote p, .banner-h, .page-hero h1 { text-wrap: balance; }
/* flex/grid children that hold text must be allowed to shrink below content size */
.hero-copy, .hero-grid > *, .split > *, .dive > *, .dive-txt,
.wl-card > *, .wl-form-col, .foot-grid > *, .foot-col, .foot-base > *,
.community-band > *, .path-step, .cell, .tier { min-width: 0; }

/* 2) eyebrows & uppercase letter-spaced labels: allow wrapping so a long
   Cyrillic uppercase string can't blow out its container (letter-spacing kept
   so the Latin look is intact); trailing tracking trimmed to avoid ragged edge */
.eyebrow, .badge, .nw-cap, .giant-cap, .pv-label, .pv-time,
.term-bar span, .foot-col h4, .tier-from, .cmp thead th {
  overflow-wrap: break-word; white-space: normal; max-width: 100%; }
/* section rails (vertical): reduce tracking a touch and cap the run so a long
   localized label wraps/clips gracefully instead of overflowing the section */
.rail { letter-spacing: .24em; max-height: min(64vh, 520px);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 3) footer grid: robust at every width, collapses earlier for long labels */
.foot-grid { grid-template-columns: 1.7fr repeat(3, minmax(0, 1fr)); }
.flink, .foot-col h4, .foot-tag { overflow-wrap: break-word; }
.flink i { white-space: nowrap; }
@media (max-width: 1000px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (max-width: 760px)  { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px)  { .foot-grid { grid-template-columns: 1fr; } }

/* 4) buttons / chips / tier-tags / nav: longer localized labels stay contained */
.btn, .btn-sm, .nav-link, .lang-sel, .ext-soon, .community-txt {
  overflow-wrap: break-word; max-width: 100%; }
.pv-chip, .wl-mchip, .nw-mono { white-space: nowrap; }
.tier-tag { white-space: normal; max-width: min(92%, 220px); text-align: center;
  line-height: 1.25; }

/* 5) RTL (ar, and soon fa/ur): mirror the direction-specific bits the base sets
   with physical left/right. i18n agents set dir="rtl"; these provide the CSS. */
[dir="rtl"] .hero-copy { text-align: right; }
[dir="rtl"] .hero .sub { margin-inline: 0; }
[dir="rtl"] .wl-sub, [dir="rtl"] .lede, [dir="rtl"] .foot-tag { text-align: right; }
/* eyebrow accent tick flips to the right edge */
[dir="rtl"] .block > .eyebrow:not(.center) { padding-left: 0; padding-right: 26px; }
[dir="rtl"] .block > .eyebrow:not(.center)::before { left: auto; right: 0;
  background: linear-gradient(270deg, var(--accent), transparent); }
/* signal path: node column moves to the right side */
[dir="rtl"] .path { padding-left: 0; padding-right: 72px; }
[dir="rtl"] .path-line { left: auto; right: 27px; }
[dir="rtl"] .path-node { left: auto; right: -72px; }
[dir="rtl"] .flink i { margin-left: 0; margin-right: 8px; }
[dir="rtl"] .cmp tbody th { text-align: right; }
[dir="rtl"] .tier-feats, [dir="rtl"] .hero-apps { text-align: right; }
@media (max-width: 700px) {
  [dir="rtl"] .path { padding-right: 58px; }
  [dir="rtl"] .path-line { right: 21px; }
  [dir="rtl"] .path-node { right: -58px; }
}
@media (max-width: 1180px) {
  /* rails hidden below 1180 already; keep hero-copy centered in stacked layout */
  [dir="rtl"] .hero-copy { text-align: center; }
}
