/* ═══════════════════════════════════════════════════════════
   IS7NOW.FUN — Global Styles + Shared Components
   Load AFTER tokens.css
   ═══════════════════════════════════════════════════════════ */

/* ── RESET + BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  background-image: var(--grad-scanline);
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
::selection { background: var(--color-accent); color: #fff; }

/* Diagonal section separators */
.section--slash {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-bottom: -40px;
  padding-bottom: calc(var(--space-20) + 40px);
}
.section--slash-top {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(var(--space-20) + 40px);
  margin-top: -40px;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -200%; left: var(--space-6);
  background: var(--color-accent); color: var(--color-white);
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-md);
  z-index: calc(var(--z-nav) + 10); font-family: var(--font-ui);
  transition: top var(--dur-fast);
}
.skip-link:focus { top: var(--space-4); }

/* ── LAYOUT ── */
.section { padding: var(--space-20) 0; position: relative; }
.section--dark { background: var(--color-bg-2); }
.section--plasma { background: var(--grad-plasma); }
.container { max-width: 1200px; margin-inline: auto; padding-inline: var(--space-6); }
.container--wide { max-width: 1400px; margin-inline: auto; padding-inline: var(--space-6); }
.container--narrow { max-width: 820px; margin-inline: auto; padding-inline: var(--space-6); }

.section__head { max-width: 720px; margin-bottom: var(--space-12); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

/* ── TYPOGRAPHY ── */
.heading-display {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.heading-section {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.heading-sub {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.lead {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.75;
}
.muted { color: var(--color-text-muted); }
.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
}
.section__head--center .eyebrow::before { display: none; }

.text-plasma {
  background: var(--grad-plasma);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-ivory { color: var(--color-ivory); }

/* Glitch text */
.glitch { position: relative; display: inline-block; }
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  background: transparent;
  pointer-events: none;
}
.glitch::before { color: var(--color-plasma-400); animation: glitch-before 3s infinite steps(1); }
.glitch::after  { color: var(--color-plasma-600); animation: glitch-after 3s infinite steps(1); }
@keyframes glitch-before {
  0%, 87%, 89%, 92%, 100% { clip-path: inset(100% 0 0 0); transform: none; }
  88% { clip-path: polygon(0 15%, 100% 15%, 100% 40%, 0 40%); transform: translateX(-3px); }
  91% { clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%); transform: translateX(3px); }
}
@keyframes glitch-after {
  0%, 87%, 89%, 92%, 100% { clip-path: inset(100% 0 0 0); transform: none; }
  88% { clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%); transform: translateX(3px); }
  91% { clip-path: polygon(0 25%, 100% 25%, 100% 35%, 0 35%); transform: translateX(-3px); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-ui); font-weight: 600; font-size: var(--text-base);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 40px;
  position: relative; overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn--primary {
  background: var(--grad-plasma);
  color: var(--color-white);
  clip-path: var(--chamfer-btn);
  box-shadow: var(--shadow-glow-sm);
}
.btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn--primary:hover::after { opacity: 1; }

.btn--white {
  background: var(--color-ivory);
  color: var(--color-accent);
  clip-path: var(--chamfer-btn);
  font-weight: 700;
}
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(250,248,245,0.2); }

.btn--outline {
  background: transparent;
  color: var(--color-ivory);
  clip-path: var(--chamfer-btn);
  box-shadow: inset 0 0 0 1.5px var(--color-border-plasma);
}
.btn--outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--color-accent);
  background: var(--color-accent-subtle);
  transform: translateY(-3px);
}
.btn--telegram {
  background: #229ED9;
  color: var(--color-white);
  clip-path: var(--chamfer-btn);
  box-shadow: 0 4px 20px rgba(34,158,217,0.35);
}
.btn--telegram:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(34,158,217,0.5); }

.btn--sm { padding: 10px 24px; font-size: var(--text-sm); }
.btn--lg { padding: 18px 52px; font-size: var(--text-lg); }
.btn--block { width: 100%; }

/* Chip / tag */
.chip {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-ui); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-plasma);
  color: var(--color-accent); background: var(--color-accent-subtle);
}

/* ── CARDS ── */
.card {
  background: var(--color-surface);
  clip-path: var(--chamfer-card);
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-plasma);
  opacity: 0;
  transition: opacity var(--dur-base);
  z-index: 0;
}
.card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-glow-sm); }
.card:hover::before { opacity: 0.06; }
.card > * { position: relative; z-index: 1; }

.card--ivory {
  background: var(--color-ivory);
  color: var(--color-bg);
  clip-path: var(--chamfer-card);
  border: none;
}
.card--ivory::before { display: none; }
.card--ivory:hover { box-shadow: 0 12px 40px rgba(255,23,68,0.25); transform: translateY(-8px); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--left.is-visible,
.reveal--right.is-visible { transform: none; }
.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }
.reveal--delay-5 { transition-delay: 400ms; }

.reveal-scan { position: relative; overflow: hidden; }
.reveal-scan::after {
  content: '';
  position: absolute; top: 0; left: -100%; bottom: 0;
  width: 60%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.8s var(--ease-out);
}
.reveal-scan.is-visible::after { left: 120%; }

/* ── KEYFRAMES ── */
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes pulse-glow { 0%,100% { box-shadow: var(--shadow-glow-sm); } 50% { box-shadow: var(--shadow-glow); } }
@keyframes scan-vert { 0% { transform: translateY(-100%); } 100% { transform: translateY(100vh); } }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse-ring-plasma { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(1.8); opacity: 0; } }
@keyframes flicker {
  0%,100% { opacity: 1; } 92% { opacity: 1; } 93% { opacity: 0.4; }
  94% { opacity: 1; } 96% { opacity: 0.6; } 97% { opacity: 1; }
}
@keyframes fadeScale { from { opacity: 0; transform: scale(0.88) translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes bounce-chevron { 0%,100% { transform: translateY(0); opacity: 0.6; } 50% { transform: translateY(8px); opacity: 1; } }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: background var(--dur-base), box-shadow var(--dur-base);
}
.nav.scrolled { background: rgba(8,8,8,0.97); box-shadow: var(--shadow-nav); }
.nav__scanbar { height: 2px; background: var(--grad-plasma); animation: flicker 8s ease infinite; }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: var(--space-6);
}
.nav__logo { display: inline-flex; }
.nav__logo img { height: 46px; width: auto; }
.nav__links {
  display: none; gap: var(--space-4);
  position: absolute; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}
.nav__link {
  font-family: var(--font-ui); font-size: var(--text-xs);
  font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--color-text-secondary);
  padding: var(--space-2) 0; position: relative;
  transition: color var(--dur-fast);
}
.nav__link::after {
  content: '';
  position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 2px; background: var(--color-accent);
  transition: left var(--dur-base) var(--ease-out), right var(--dur-base) var(--ease-out);
}
.nav__link:hover, .nav__link.active { color: var(--color-white); }
.nav__link:hover::after, .nav__link.active::after { left: 0; right: 0; }
.nav__actions { display: flex; align-items: center; gap: var(--space-3); }
.nav__dl-btn { display: none; }

.nav__burger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 4px;
}
.nav__burger-line {
  display: block; width: 100%; height: 2px;
  background: var(--color-ivory); border-radius: var(--radius-pill);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast), width var(--dur-base) var(--ease-out);
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(2) { opacity: 0; width: 0; }
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  position: fixed; inset: 0; top: 70px;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(32px);
  z-index: calc(var(--z-nav) - 1);
  display: flex; flex-direction: column;
  justify-content: flex-start; align-items: flex-start;
  padding: var(--space-8);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__overlay.is-open { transform: translateX(0); }
.nav__overlay-links { display: flex; flex-direction: column; gap: var(--space-1); width: 100%; }
.nav__overlay-link {
  font-family: var(--font-display); font-size: var(--text-3xl);
  line-height: 1; text-transform: uppercase;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
  transition: color var(--dur-fast), letter-spacing var(--dur-base) var(--ease-out);
}
.nav__overlay-link:hover, .nav__overlay-link.active { color: var(--color-accent); letter-spacing: 0.06em; }
.nav__overlay-footer { margin-top: var(--space-10); display: flex; flex-direction: column; width: 100%; max-width: 300px; }

@media (min-width: 768px) {
  .nav__dl-btn { display: inline-flex; }
}
@media (min-width: 1120px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .nav__overlay { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-20);
  position: relative;
}
.footer__slash { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-plasma); }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-10);
  padding-bottom: var(--space-12); border-bottom: 1px solid var(--color-border);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer__brand img { height: 42px; width: auto; }
.footer__bio { font-size: var(--text-sm); color: var(--color-text-secondary); line-height: 1.7; }
.footer__tg-community {
  display: flex; align-items: center; gap: var(--space-3);
  background: #0088cc; color: white;
  border-radius: var(--radius-md); padding: var(--space-3) var(--space-4);
  font-family: var(--font-ui); font-size: var(--text-sm); font-weight: 600;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.footer__tg-community:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,136,204,0.35); }
.footer__tg-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer__support-link { font-size: var(--text-xs); color: var(--color-text-muted); transition: color var(--dur-fast); }
.footer__support-link:hover { color: var(--color-accent); }
.footer__heading {
  font-family: var(--font-ui); font-size: var(--text-xs);
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: var(--space-5);
}
.footer__list { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__list a {
  font-size: var(--text-sm); color: var(--color-text-secondary);
  transition: color var(--dur-fast); display: flex; align-items: center; gap: var(--space-2);
}
.footer__list a::before { content: '→'; opacity: 0; transition: opacity var(--dur-fast); font-size: var(--text-xs); }
.footer__list a:hover { color: var(--color-ivory); }
.footer__list a:hover::before { opacity: 1; }
.footer__badges { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer__badge-18, .footer__badge-in {
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--color-border-plasma);
  border-radius: var(--radius-xs);
  font-family: var(--font-ui); font-size: var(--text-xs);
  font-weight: 700; color: var(--color-accent);
}
.footer__app-desc { font-size: var(--text-sm); color: var(--color-text-secondary); margin-bottom: var(--space-5); }
.footer__col--app .btn { width: 100%; }
.footer__providers { padding: var(--space-8) 0; border-bottom: 1px solid var(--color-border); }
.footer__providers-label {
  font-family: var(--font-ui); font-size: var(--text-xs);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: var(--space-5);
}
.footer__providers-strip { display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.footer__provider-pill {
  font-family: var(--font-ui); font-weight: 700; font-size: var(--text-sm);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border-2); border-radius: var(--radius-sm);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.footer__provider-pill:hover { color: var(--color-ivory); border-color: var(--color-border-plasma); }
.footer__compliance {
  display: flex; gap: var(--space-4); align-items: flex-start;
  background: rgba(255,23,68,0.05); border: 1px solid var(--color-border-plasma);
  border-radius: var(--radius-md); padding: var(--space-5) var(--space-6);
  margin: var(--space-8) 0; font-size: var(--text-xs);
  color: var(--color-text-muted); line-height: 1.8;
}
.footer__compliance-icon { font-size: var(--text-xl); flex-shrink: 0; color: var(--color-accent); }
.footer__bottom {
  text-align: center; padding: var(--space-6) 0;
  color: var(--color-text-disabled); font-size: var(--text-xs); line-height: 1.8;
}
@media (min-width: 768px)  { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

/* ═══════════════════════════════════════════════════════════
   TELEGRAM FLOATING FAB
   ═══════════════════════════════════════════════════════════ */
.tg-fab-wrap { position: fixed; bottom: var(--space-8); right: var(--space-6); z-index: var(--z-telegram); }
.tg-fab {
  display: flex; align-items: center; gap: var(--space-3);
  background: #0088cc; color: white;
  border-radius: var(--radius-pill);
  padding: 13px 18px 13px 14px;
  box-shadow: 0 8px 32px rgba(0,136,204,0.50);
  position: relative;
  animation: float-y 5s ease-in-out infinite;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base);
}
.tg-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(0,136,204,0.65);
  animation-play-state: paused;
}
.tg-fab__ring {
  position: absolute; inset: -6px;
  border: 2px solid rgba(0,136,204,0.50);
  border-radius: var(--radius-pill);
  animation: pulse-ring-plasma 2.4s ease-out infinite;
}
.tg-fab__ring--2 { animation-delay: 1.2s; }
.tg-fab__icon { flex-shrink: 0; position: relative; }
.tg-fab__label {
  font-family: var(--font-ui); font-size: var(--text-sm);
  font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; position: relative;
}
@media (max-width: 480px) {
  .tg-fab-wrap { bottom: var(--space-5); right: var(--space-4); }
  .tg-fab { padding: 13px; }
  .tg-fab__label { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   PROVIDER MARQUEE (shared)
   ═══════════════════════════════════════════════════════════ */
.marquee { overflow: hidden; position: relative; padding: var(--space-4) 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee:hover .marquee-inner { animation-play-state: paused; }
.marquee-inner { display: flex; gap: var(--space-12); width: max-content; animation: marquee-scroll 32s linear infinite; }
.marquee-item {
  font-family: var(--font-display); font-size: var(--text-3xl);
  letter-spacing: 0.04em; color: var(--color-text-muted);
  white-space: nowrap; transition: color var(--dur-fast); display: flex; align-items: center; gap: var(--space-3);
}
.marquee-item::after { content: '●'; font-size: 0.5em; color: var(--color-accent); }
.marquee-item:hover { color: var(--color-ivory); }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (interior pages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative; overflow: hidden;
  padding: var(--space-24) 0 var(--space-20);
  background: var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 0%, rgba(255,23,68,0.16), transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); line-height: 0.92; text-transform: uppercase; margin-bottom: var(--space-4); }
.page-hero__desc { font-size: var(--text-lg); color: var(--color-text-secondary); max-width: 620px; }
.breadcrumb { display: flex; gap: var(--space-2); font-family: var(--font-ui); font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: var(--space-6); }
.breadcrumb a { transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { color: var(--color-accent); }

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION (shared)
   ═══════════════════════════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: var(--space-4); max-width: 820px; margin-inline: auto; }
.faq__item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--dur-base); }
.faq__item.is-open { border-color: var(--color-border-plasma); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6); text-align: left;
  font-family: var(--font-ui); font-weight: 600; font-size: var(--text-lg); color: var(--color-ivory);
}
.faq__icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform var(--dur-base) var(--ease-out); color: var(--color-accent); }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; transition: transform var(--dur-base); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq__a-inner { padding: 0 var(--space-6) var(--space-6); color: var(--color-text-secondary); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   FINAL CTA BANNER (shared)
   ═══════════════════════════════════════════════════════════ */
.cta-banner { background: var(--grad-plasma); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: var(--grad-noise); opacity: 0.4; mix-blend-mode: overlay; }
.cta-banner__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.cta-banner__title { font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 5rem); line-height: 0.95; text-transform: uppercase; color: #fff; margin-bottom: var(--space-4); }
.cta-banner__sub { font-size: var(--text-lg); color: var(--color-plasma-100); margin-bottom: var(--space-8); }
.cta-banner__ctas { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }
.cta-banner__note { margin-top: var(--space-8); font-size: var(--text-xs); color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ── UTILITY ── */
.stack { display: flex; flex-direction: column; }
.gap-2 { gap: var(--space-2); } .gap-3 { gap: var(--space-3); } .gap-4 { gap: var(--space-4); }
.btn-row { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); } .mt-8 { margin-top: var(--space-8); }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 1ms !important; }
  html { scroll-behavior: auto; }
  /* elements that rely on a keyframe animation (fill-mode: forwards) to reach their
     visible end-state must not get stuck at their opacity:0 starting state once
     `animation: none` strips that keyframe away */
  .hero__content .eyebrow, .hero__title, .hero__sub, .hero__body,
  .hero__ctas, .hero__trust, .hero__mockup-wrap {
    opacity: 1 !important; transform: none !important;
  }
}
