:root {
  /* Brand — calmer mint-green primary; cobalt secondary; violet tertiary */
  --g:  #3ddc9a;
  --g2: #2bb27d;
  --b:  #5b7cff;
  --b2: #4763e0;
  --p:  #7b5fff;
  --pink: #ff6b9d;
  --cyan: #5fd4ff;
  --glow-g: rgba(61,220,154,.30);
  --glow-b: rgba(91,124,255,.26);
  --glow-p: rgba(123,95,255,.24);
  --bg:  #07080c;
  --bg1: #0a0b10;
  --bg2: #0d0e14;
  --surface-1: rgba(15,17,23,0.92);
  --surface-2: rgba(15,17,23,0.78);
  --surface-3: rgba(15,17,23,0.62);
  --card:      rgba(15,17,23,0.88);
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --border-g:      rgba(61,220,154,0.24);
  --text:        #e6ebf5;
  --text-soft:   #b8c0d0;
  --muted:       #7b8499;
  --success: #3ddc9a;
  --warning: #f5b544;
  --error:   #ff6b6b;
  --sans: 'Inter', system-ui, sans-serif;
  --display: 'Bricolage Grotesque', 'Inter', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --brand: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --r: 1rem;
  --r2: 1.5rem;

  /* ── Unified card surface system ── */
  --card-surface: linear-gradient(160deg, #0f1117 0%, #0b0c11 55%, #07080c 100%);
  --card-border:  1px solid rgba(255,255,255,.07);
  --card-border-hover: rgba(255,255,255,.14);
  --card-border-accent: rgba(61,220,154,.26);
  --card-shadow:
    0 0 0 1px rgba(0,0,0,0.40),
    0 1px 0 rgba(255,255,255,.05) inset,
    0 -1px 0 rgba(0,0,0,.40) inset,
    0 12px 24px -6px rgba(0,0,0,.35),
    0 24px 48px -12px rgba(0,0,0,.45);
  --card-shadow-hover:
    0 0 0 1px rgba(0,0,0,0.50),
    0 1px 0 rgba(255,255,255,.07) inset,
    0 -1px 0 rgba(0,0,0,.45) inset,
    0 18px 36px -6px rgba(0,0,0,.50),
    0 36px 72px -12px rgba(0,0,0,.60);
  --card-edge-line: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* Brand-tinted text selection */
::selection { background: rgba(61,220,154,.32); color: #fff; text-shadow: 0 0 18px rgba(61,220,154,.5); }
::-moz-selection { background: rgba(61,220,154,.32); color: #fff; }

/* ─── RESET ────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; color-scheme: dark; }
body {
  font-family: var(--sans);
  min-height: 100vh;
  background: #000000;
  background-attachment: fixed;
  color: #fff;
  overflow-x: hidden;
  cursor: auto;
}
/* Ambient atmosphere — soft brand glow at top */
body::before {
  content: '';
  position: fixed;
  inset: -10% -10% auto -10%;
  height: 80vh;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(61,220,154,.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 18% 18%, rgba(91,124,255,.08) 0%, transparent 70%),
    radial-gradient(ellipse 38% 35% at 85% 22%, rgba(123,95,255,.07) 0%, transparent 70%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
}

/* Cursor-aware ambient orb — follows mouse with soft brand glow.
   Only visible on hover-capable fine pointers (desktop). */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 700px; height: 700px;
  margin: -350px 0 0 -350px;
  z-index: 1;
  pointer-events: none;
  /* Soft gradient mimics blur without filter — animating filter:blur
     on a 700px fixed element that lerps every frame was costing
     ~10ms/frame on low-end GPUs. */
  background:
    radial-gradient(circle, rgba(61,220,154,.10) 0%, rgba(91,124,255,.06) 30%, transparent 60%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .35s var(--ease);
  will-change: transform;
  transform: translate3d(50vw, 50vh, 0);
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}
.cursor-glow.active { opacity: 1; }

/* Magnetic-attract buttons (desktop only).
   --mag-x / --mag-y are set by JS within a small radius of the button. */
.btn-primary, .btn-secondary, .nav-btn {
  --mag-x: 0px;
  --mag-y: 0px;
}

/* ─── Tactile noise grain — adds analog texture, subverts pure-digital feel ─── */
.noise-grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}
@media (prefers-reduced-motion: reduce) {
  .noise-grain { opacity: .02; }
}

/* ─── Hero decorative rune ornaments — Norse-inspired geometric marks ─── */
.hero-rune {
  position: absolute;
  pointer-events: none;
  color: rgba(61,220,154,.18);
  z-index: 1;
  filter: drop-shadow(0 0 14px rgba(61,220,154,.16));
}
.hero-rune-tl { top: 7rem; left: 2.2rem; width: 64px; opacity: 0; animation: runeFadeIn 1.6s .3s var(--ease) forwards; }
.hero-rune-br { bottom: 4rem; right: 2.4rem; width: 88px; opacity: 0; animation: runeFadeIn 1.6s .6s var(--ease) forwards; transform: rotate(180deg) translateZ(0); }
@keyframes runeFadeIn {
  0%   { opacity: 0; transform: translateY(8px) scale(.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-rune-br { animation-name: runeFadeInRotate; }
@keyframes runeFadeInRotate {
  0%   { opacity: 0; transform: rotate(180deg) translateY(-8px) scale(.96); }
  100% { opacity: 1; transform: rotate(180deg) translateY(0) scale(1); }
}
@media (max-width: 720px) {
  .hero-rune-tl { width: 40px; left: 1rem; top: 5.5rem; }
  .hero-rune-br { width: 56px; right: 1rem; bottom: 2.5rem; }
}

/* ─── Hero embers — slow drifting Norse fire sparks ─── */
.embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.embers span {
  position: absolute;
  bottom: -12px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px var(--g), 0 0 14px rgba(91,124,255,.4);
  opacity: 0;
  animation: emberDrift 16s linear infinite;
  will-change: transform, opacity;
}
.embers span:nth-child(1)  { left: 8%;  animation-delay:  0s;   animation-duration: 16s; }
.embers span:nth-child(2)  { left: 22%; animation-delay:  3.2s; animation-duration: 18s; width: 2px; height: 2px; }
.embers span:nth-child(3)  { left: 41%; animation-delay:  6.5s; animation-duration: 14s; }
.embers span:nth-child(4)  { left: 58%; animation-delay:  1.8s; animation-duration: 20s; width: 2px; height: 2px; }
.embers span:nth-child(5)  { left: 73%; animation-delay:  9.4s; animation-duration: 17s; }
.embers span:nth-child(6)  { left: 88%; animation-delay:  4.7s; animation-duration: 15s; width: 4px; height: 4px; }
@keyframes emberDrift {
  0%   { transform: translate3d(0, 0, 0)               scale(.6); opacity: 0; }
  10%  { opacity: .85; }
  40%  { transform: translate3d(14px, -42vh, 0)        scale(1);  opacity: .55; }
  75%  { transform: translate3d(-10px, -78vh, 0)       scale(.85); opacity: .25; }
  100% { transform: translate3d(8px, -110vh, 0)        scale(.5);  opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .embers { display: none; }
}

/* ─── .brand-stamp utility — Cinzel for special phrases ─── */
.brand-stamp {
  font-family: var(--brand);
  letter-spacing: .12em;
  font-weight: 600;
  text-transform: uppercase;
}

/* ─── PREMIUM TABS — segmented switcher between Plan/Storage/Ad-Free ─── */
.premium-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 3;
}
.premium-tabs {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  padding: .4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(20,20,24,.7), rgba(8,8,10,.8));
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  box-shadow:
    0 14px 24px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.30);
}
.premium-tab-indicator {
  position: absolute;
  z-index: 1;
  top: .4rem; bottom: .4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(61,220,154,.18) 0%, rgba(91,124,255,.14) 100%);
  border: 1px solid rgba(61,220,154,.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 4px 14px -4px rgba(61,220,154,.30);
  transition: left .4s var(--ease-spring), width .4s var(--ease-spring);
  pointer-events: none;
}
.premium-tab {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .68rem 1.3rem;
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.premium-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.premium-tab:hover { color: var(--text); }
.premium-tab.active { color: #fff; }
.premium-tab:focus-visible { outline: 2px solid var(--g); outline-offset: 3px; }

/* Panels — only .active is shown */
.premium-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  animation: premiumPanelIn .45s var(--ease) forwards;
}
.premium-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
@keyframes premiumPanelIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .premium-panel { animation: none; }
  .premium-panel.active { opacity: 1; transform: none; }
  .premium-tab-indicator { transition: none; }
}

/* Mobile: scroll tabs horizontally if needed, slimmer text */
@media (max-width: 600px) {
  .premium-tabs-wrap { padding: 0 .5rem; }
  .premium-tabs { width: 100%; padding: .35rem; }
  .premium-tab { flex: 1; padding: .65rem .7rem; font-size: .82rem; gap: .35rem; }
  .premium-tab svg { width: 14px; height: 14px; }
}
@media (max-width: 380px) {
  .premium-tab span { display: none; }
  .premium-tab { padding: .65rem .9rem; }
}

/* ─── FEATURED CARD BEAM — SVG stroke-dashoffset (cross-browser robust) ─── */
.pricing-card.featured { isolation: isolate; }
.card-beam {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(61,220,154,.55)) drop-shadow(0 0 18px rgba(95,212,255,.30));
}
.card-beam rect {
  animation: cardBeamDash 3.6s linear infinite;
}
@keyframes cardBeamDash {
  from { stroke-dashoffset: 0;     }
  to   { stroke-dashoffset: -1080; }
}
@media (prefers-reduced-motion: reduce) {
  .card-beam rect { animation: none; }
  .card-beam      { opacity: .35; }
}

/* ─── EXTRA DISK STORAGE — slider calculator inside Storage panel ─── */
.extra-storage {
  position: relative;
  margin-top: 2.5rem;
  padding: 2.4rem 2.4rem 2rem;
  border-radius: var(--r2);
  border: var(--card-border);
  background: var(--card-surface);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.extra-storage::after {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem; height: 1px;
  background: var(--card-edge-line);
  pointer-events: none;
}
.extra-storage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(61,220,154,.04), transparent 60%),
    radial-gradient(ellipse 50% 100% at 100% 50%, rgba(91,124,255,.04), transparent 60%);
  pointer-events: none;
}
.extra-storage > * { position: relative; z-index: 1; }
.extra-storage .es-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.85rem;
  flex-wrap: wrap;
}
.extra-storage .es-head-left { flex: 1; min-width: 240px; }
.es-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: .85rem;
  padding: .3rem .75rem;
  border: 1px solid var(--border-g);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(61,220,154,.10), rgba(91,124,255,.045));
}
.es-kicker::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px var(--g);
  animation: pulse 2.5s ease infinite;
}
.es-title {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.025em;
  margin: 0 0 .4rem;
  line-height: 1.15;
}
.es-sub {
  font-size: .94rem;
  color: var(--text);
  margin: 0;
  max-width: 480px;
  line-height: 1.55;
}
.es-rate-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  padding: .9rem 1.2rem;
  border-radius: var(--r);
  border: 1px solid rgba(61,220,154,.22);
  background: linear-gradient(180deg, rgba(61,220,154,.06), rgba(91,124,255,.03));
  white-space: nowrap;
}
.es-rate-badge-k {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: .15rem;
}
.es-rate-badge-v {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

.es-slider-block {
  position: relative;
  padding: 1.85rem 1.85rem 1.55rem;
  margin-bottom: 1rem;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.es-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.4rem;
  gap: 1rem;
}
.es-row-label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.es-capacity {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
  white-space: nowrap;
}
.es-capacity strong {
  font-weight: 800;
  background: linear-gradient(135deg, #3ddc9a 0%, #5fd4ff 50%, #5b7cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(61,220,154,.18));
}
.es-capacity-unit {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: .4rem;
  letter-spacing: 0;
}
.es-range {
  --es-pct: 35%;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    var(--g) 0%,
    #5fd4ff var(--es-pct),
    rgba(255,255,255,.07) var(--es-pct),
    rgba(255,255,255,.07) 100%);
  outline: none;
  margin: 0 0 .95rem;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.45);
}
.es-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g), #5fd4ff);
  cursor: grab;
  border: 3px solid #050608;
  box-shadow:
    0 0 0 1px rgba(61,220,154,.55),
    0 0 22px rgba(61,220,154,.55),
    0 4px 8px rgba(0,0,0,.45);
  transition: transform .2s var(--ease-spring), box-shadow .2s;
}
.es-range::-webkit-slider-thumb:hover { transform: scale(1.08); }
.es-range:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.18);
  box-shadow:
    0 0 0 1px rgba(61,220,154,.7),
    0 0 32px rgba(61,220,154,.7),
    0 4px 12px rgba(0,0,0,.5);
}
.es-range::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g), #5fd4ff);
  cursor: grab;
  border: 3px solid #050608;
  box-shadow:
    0 0 0 1px rgba(61,220,154,.55),
    0 0 22px rgba(61,220,154,.55),
    0 4px 8px rgba(0,0,0,.45);
}
.es-bounds {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .06em;
}
.es-bounds span:first-child::before,
.es-bounds span:last-child::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  margin-right: .5rem;
  vertical-align: 2px;
}

.es-price-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--r);
  border: 1px solid rgba(61,220,154,.18);
  background:
    radial-gradient(ellipse 100% 100% at 0% 50%, rgba(61,220,154,.06), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}
.es-price-info { display: grid; gap: .15rem; }
.es-rate {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.es-total {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.55rem;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}
.es-total strong {
  background: linear-gradient(135deg, #3ddc9a 0%, #5fd4ff 50%, #5b7cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: .12rem;
}
.es-total-unit {
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: .35rem;
  letter-spacing: .05em;
}
.es-cta {
  --mag-x: 0px; --mag-y: 0px;
  padding: .85rem 1.5rem;
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--g) 0%, #5fd4ff 50%, var(--b) 100%);
  color: #021008;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    inset 0 -1px 0 rgba(0,0,0,.18),
    0 6px 20px rgba(61,220,154,.28);
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease);
}
.es-cta:hover {
  transform: translate(var(--mag-x), calc(var(--mag-y) - 2px)) scale(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(0,0,0,.18),
    0 12px 32px rgba(61,220,154,.40),
    0 0 0 1px rgba(61,220,154,.34);
}
.es-cta:active {
  transform: translate(var(--mag-x), 0) scale(.99);
}
@media (max-width: 720px) {
  .extra-storage { padding: 1.7rem 1.4rem 1.4rem; }
  .extra-storage::after { left: 1rem; right: 1rem; }
  .extra-storage .es-head { gap: 1.2rem; }
  .es-rate-badge { align-self: flex-start; }
  .es-row { flex-direction: column; align-items: flex-start; gap: .55rem; margin-bottom: 1.1rem; }
  .es-capacity { font-size: 2.2rem; }
  .es-slider-block { padding: 1.4rem 1.25rem 1.15rem; }
  .es-price-block {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.2rem 1.25rem;
  }
  .es-cta { justify-content: center; }
}

/* ─── SHARE SECTION — "Drakkar'ı yay" — pre-footer compact CTA ─── */
.share-section {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3rem;
}
.share-card {
  position: relative;
  padding: 2.4rem 2.2rem;
  border-radius: var(--r2);
  border: var(--card-border);
  background: var(--card-surface);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: center;
}
.share-card::after {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,220,154,.4), rgba(91,124,255,.3), rgba(123,95,255,.2), transparent);
  pointer-events: none;
}
.share-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(61,220,154,.04), transparent 60%),
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(123,95,255,.04), transparent 60%);
  pointer-events: none;
}
.share-text > * { position: relative; z-index: 1; }
.share-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--mono);
  font-size: .7rem; font-weight: 500;
  color: var(--g);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border: 1px solid var(--border-g);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(61,220,154,0.10), rgba(91,124,255,0.045));
  margin-bottom: .9rem;
}
.share-eyebrow::before {
  content:''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px var(--g);
  animation: pulse 2.5s ease infinite;
}
.share-title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: .55rem;
  text-wrap: balance;
}
.share-sub {
  font-size: .98rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 480px;
  text-wrap: pretty;
}
.share-buttons {
  position: relative; z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
  justify-content: flex-end;
}
.share-btn {
  --mag-x: 0px; --mag-y: 0px;
  position: relative;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,11,16,.72);
  color: var(--text);
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .25s var(--ease-spring), border-color .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.share-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.share-btn:hover {
  transform: translate(var(--mag-x), calc(var(--mag-y) - 2px));
  color: #fff;
  border-color: rgba(61,220,154,.30);
  background: rgba(61,220,154,.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 6px 18px -8px rgba(61,220,154,.30);
}
.share-btn:active {
  transform: translate(var(--mag-x), 0);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.18);
}
.share-btn-x:hover       { border-color: rgba(255,255,255,.30); background: rgba(255,255,255,.04); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 6px 18px -8px rgba(255,255,255,.18); }
.share-btn-reddit:hover  { border-color: rgba(255,86,0,.35);    background: rgba(255,86,0,.05);    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 6px 18px -8px rgba(255,86,0,.30); }
.share-btn-tg:hover      { border-color: rgba(34,158,217,.35);  background: rgba(34,158,217,.05);  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 6px 18px -8px rgba(34,158,217,.30); }

/* Copied feedback — JS toggles .is-copied for ~1.4s */
.share-btn-copy.is-copied {
  border-color: rgba(61,220,154,.45);
  background: rgba(61,220,154,.10);
  color: var(--g);
}
.share-btn-copy.is-copied .share-btn-icon-link  { display: none; }
.share-btn-copy.is-copied .share-btn-icon-check { display: inline-block; }
.share-btn-icon-check { display: none; }

@media (max-width: 760px) {
  .share-card    { grid-template-columns: 1fr; gap: 1.4rem; padding: 1.85rem 1.5rem; }
  .share-buttons { justify-content: flex-start; }
}
@media (max-width: 420px) {
  .share-btn { padding: .65rem .9rem; font-size: .82rem; }
  .share-btn span { display: none; }
  .share-btn svg { width: 18px; height: 18px; }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── GRID OVERLAY ─────────────────────────────────── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 48%, #000 35%, transparent 100%);
  opacity: 1;
}

/* ─── LAYOUT ───────────────────────────────────────── */
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }
.section {
  padding: 7rem 0;
  position: relative;
  z-index: 2;
  background: transparent;
}
.section::before {
  display: none;
}

/* ─── NAV (Liquid metal pill) ──────────────────────── */
.nav-pill {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  /* GPU layer hint (translateZ) + centering (translateX) BERABER —
     ayrı yerden translate eklersen biri override eder, nav off-center kalır */
  transform: translateX(-50%) translateZ(0);
  backface-visibility: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #1c1c1e 0%, #050505 100%);
  isolation: isolate;
  overflow: hidden;
  box-shadow:
    0 14px 24px rgba(0,0,0,0.30),
    0  6px 10px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.30);
  transition: box-shadow .3s, transform .3s var(--ease);
  white-space: nowrap;
}
.nav-pill.scrolled {
  box-shadow:
    0 18px 36px rgba(0,0,0,0.42),
    0  6px 12px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.36);
}
/* Shader removed -- pill stays a clean static dark metal */
.nav-pill-shader { display: none; }
.nav-pill-shader canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block;
  border-radius: inherit;
}
/* Uniform dark veil -- no radial vignette, keeps brightness even
   end-to-end so no patchy transitions appear next to "How It Works" */
.nav-pill::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(28,28,32,.42) 0%, rgba(8,8,10,.55) 100%);
  pointer-events: none;
  z-index: 1;
}
/* No sheen sweeps -- pill is purely static */
.nav-brand {
  position: relative;
  z-index: 3;
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--brand);
  font-size: .95rem; font-weight: 700;
  padding: .3rem .9rem .3rem .7rem;
  margin-right: .35rem;
  letter-spacing: .08em;             /* Cinzel breathes with positive tracking */
  text-transform: uppercase;
  color: #f5f7fa;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.nav-brand::after {
  /* Soft vertical fade divider -- replaces the harsh 1px hairline */
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0)  0%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,0) 100%);
}
.nav-brand-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px var(--g);
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 6px var(--g); }
  50%      { box-shadow: 0 0 14px var(--g), 0 0 30px rgba(61,220,154,.3); }
}
.nav-link {
  position: relative;
  z-index: 3;
  padding: .38rem .7rem;
  border-radius: 999px;
  font-size: .82rem;
  color: #b8c0d0;
  text-shadow: 0 1px 2px rgba(0,0,0,.55);
  transition: background .2s, color .2s;
  cursor: pointer;
}
.nav-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-sep {
  position: relative;
  z-index: 3;
  width: 1px;
  height: 18px;
  margin: 0 .35rem;
  background: linear-gradient(180deg,
    rgba(255,255,255,0)  0%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,0) 100%);
}
.nav-btn {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .42rem 1.1rem;
  border-radius: 999px;
  font-size: .82rem; font-weight: 600;
  color: #ffffff;
  /* Same gradient as the pill body -- button reads as a sub-region of
     the same metal, only differentiated by an inset highlight ring. */
  background: linear-gradient(180deg, #1c1c1e 0%, #050505 100%);
  border: 1px solid rgba(255,255,255,.14);
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.40),
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 2px 6px rgba(0,0,0,.40);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
  cursor: pointer;
}
.nav-btn-label { position: relative; z-index: 2; }
.nav-btn::after {
  /* Continuous metallic sheen sweep -- only on the Get Started button */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(255,255,255,0)   35%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,0)   65%);
  background-size: 220% 100%;
  background-position: -120% 0;
  background-repeat: no-repeat;
  animation: navBtnSheen 4.5s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
@keyframes navBtnSheen {
  0%, 100% { background-position: -120% 0; }
  50%      { background-position:  220% 0; }
}
.nav-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #0d0e14 0%, #07080c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.20),
    inset 0 -1px 0 rgba(0,0,0,.42),
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 4px 14px rgba(0,0,0,.55);
}
.nav-btn:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,.5),
    inset 0 1px 2px rgba(0,0,0,.3),
    0 1px 2px rgba(0,0,0,.4);
}
@keyframes navRipple {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: .6; }
  100% { transform: translate(-50%, -50%) scale(4.5); opacity: 0;  }
}

/* ── Language switcher (nav dropdown) ────────────────────────────── */
.nav-lang {
  position: relative;
  z-index: 4;
  margin-right: .25rem;
}
.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .34rem .55rem;
  border-radius: 999px;
  font-size: .78rem; font-weight: 500;
  color: #b8c0d0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0,0,0,.55);
  transition: background .2s, color .2s, border-color .2s;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.nav-lang-btn:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.14);
}
.nav-lang-btn svg {
  width: 10px; height: 10px;
  opacity: .65;
  transition: transform .2s var(--ease);
}
.nav-lang.is-open .nav-lang-btn svg { transform: rotate(180deg); }
/* Menu is reparented to <body> at runtime (to escape transform-clipping),
   so the open state lives on the menu itself as well as on .nav-lang. */
.nav-lang-menu {
  /* fixed positioning escapes .nav-pill's overflow:hidden clip;
     top/right are set in JS on each open relative to the button rect */
  position: fixed;
  top: 0;
  right: 0;
  min-width: 168px;
  padding: .35rem;
  background: linear-gradient(180deg, #14161d 0%, #0a0b10 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.4),
    0 12px 28px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.04);
  opacity: 0;
  transform: translateY(-6px) scale(.96);
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  z-index: 1100; /* above .nav-pill (z:1000) */
}
.nav-lang.is-open .nav-lang-menu,
.nav-lang-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.nav-lang-opt {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  padding: .48rem .65rem;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: .82rem;
  font-family: var(--sans);
  cursor: pointer;
  text-align: left;
  transition: background .15s, color .15s;
}
.nav-lang-opt:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.nav-lang-opt.is-active {
  background: rgba(61,220,154,.10);
  color: var(--g);
}
.nav-lang-opt .nl-code {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .55;
  margin-left: auto;
}
.nav-lang-opt .nl-flag {
  width: 18px; height: 13px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .nav-lang { display: none; }
}
/* Mobile-panel language strip */
.nav-mobile-lang {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .65rem .25rem 0;
  margin-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile-lang button {
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-soft);
  font-size: .72rem;
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-mobile-lang button.is-active {
  background: rgba(61,220,154,.12);
  color: var(--g);
  border-color: rgba(61,220,154,.30);
}

/* ─── HAMBURGER BUTTON (mobile/iPad nav trigger) ─────── */
.nav-burger {
  display: none;                  /* hidden by default; media query enables */
  position: relative;
  z-index: 3;
  width: 44px; height: 44px;      /* WCAG / HIG min touch target */
  padding: 0;
  margin-left: .25rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s var(--ease);
}
.nav-burger:hover { background: rgba(255,255,255,.05); }
.nav-burger:active { background: rgba(255,255,255,.08); }
.nav-burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: #f5f7fa;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s var(--ease), opacity .25s, top .35s var(--ease);
}
.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 27px; }
.nav-burger.is-open span:nth-child(1) { top: 21px; transform: rotate( 45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ─── MOBILE SLIDE-DOWN PANEL ────────────────────────── */
.nav-mobile {
  position: fixed;
  top: 4.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 999;
  width: min(calc(100vw - 1.5rem), 420px);
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(20,20,24,.92) 0%, rgba(8,8,10,.94) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
          backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 22px 44px rgba(0,0,0,.55),
    0  8px 16px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  min-height: 44px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  color: #d8dee8;
  letter-spacing: .01em;
  transition: background .2s, color .2s, transform .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile a::after {
  content: '→';
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .25s var(--ease);
  font-family: var(--mono);
  color: var(--g);
}
.nav-mobile a:active {
  background: rgba(255,255,255,.06);
  color: #fff;
  transform: translateX(2px);
}
.nav-mobile a:active::after { opacity: 1; transform: translateX(0); }
.nav-mobile-sep {
  height: 1px;
  margin: .5rem 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
}
.nav-mobile-cta {
  background: linear-gradient(180deg, rgba(61,220,154,.18), rgba(91,124,255,.10)) !important;
  border: 1px solid rgba(61,220,154,.32) !important;
  color: #fff !important;
  font-weight: 600 !important;
  margin-top: .35rem;
}
.nav-mobile-cta::after { opacity: 1 !important; transform: translateX(0) !important; color: #fff !important; }

/* Backdrop behind panel — taps close the panel */
.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,.45);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.nav-mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Body scroll lock when panel open */
body.nav-locked { overflow: hidden; }

/* Show hamburger / hide horizontal links + CTA at tablet portrait + below */
@media (max-width: 860px) {
  .nav-burger             { display: block; margin-left: .15rem; }
  .nav-pill .nav-btn      { display: none; }                   /* CTA -> mobile panel */
  /* SYMMETRIC padding — translateX(-50%) ile gerçek ortalanma için sol/sağ EŞIT */
  .nav-pill               { gap: .35rem; padding: .42rem .65rem; max-width: calc(100vw - 1.25rem); }
  .nav-brand              { padding: .22rem .55rem; margin: 0; font-size: .92rem; }
  .nav-brand::after       { display: none; }                   /* divider gereksiz */

  /* Notch'lı cihazlarda fixed nav safe-area saygılı olsun */
  .nav-pill               { top: calc(1rem + env(safe-area-inset-top)); }
  .nav-mobile             { top: calc(4.2rem + env(safe-area-inset-top)); }
}

/* Global horizontal-overflow guard.
   overflow-x: clip kullanıyoruz — overflow:hidden html/body'de
   "scrolling container" yaratıyor ve position:fixed elementleri
   (nav-pill) viewport yerine container'a göre konumlanıyor → nav
   off-center oluyor. clip aynı görsel klipi sağlar AMA scroll
   container yaratmaz, fixed positioning viewport-anchored kalır. */
html, body { overflow-x: clip; }
*, *::before, *::after { box-sizing: border-box; }

/* ════════════════════════════════════════════════════════════
   Mobile/iPad — grid harshness fix
   Web'deki dust trail dense, mobile'da daha seyrek render olur,
   grid çizgileri arasından sızıyor. Çözüm: grid'i mobile'da
   yumuşat + dust canvas üzerine güçlü vignette ekle. Tasarım
   aynı, sadece harmonize edilmiş.
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-bg {
    /* Çizgi opacity %50 azaldı + grid hücresi 64→48px (daha doku gibi) */
    background-image:
      linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px;
    /* Daha sıkı mask — sadece üst-orta ekran civarında belirgin, kenarlarda
       hızla siliniyor → "background ile birleşik" hissi */
    mask-image: radial-gradient(ellipse 70% 50% at 50% 35%, #000 18%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 35%, #000 18%, transparent 75%);
  }
  /* Tubes canvas üzerine ekstra vignette — dust seyrek olduğunda bile
     altta grid bleeding görünmesin */
  .tubes-canvas-wrap::after {
    background:
      radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,0,0,.55), transparent 78%),
      linear-gradient(180deg, rgba(7,8,12,.25) 0%, rgba(7,8,12,.65) 100%);
  }
  /* Hero arka planına yumuşak gradient tint — body color ile dust canvas
     arasında "bağlayıcı" katman, harsh contrast'ı kırıyor */
  .hero {
    background:
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(20,22,30,.45), transparent 70%);
  }
}

/* Phone — grid biraz daha düşük (telefon ekranı dar, tüm grid'i kaplıyordu) */
@media (max-width: 600px) {
  .grid-bg {
    background-image:
      linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px;
    mask-image: radial-gradient(ellipse 80% 40% at 50% 28%, #000 14%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 40% at 50% 28%, #000 14%, transparent 70%);
  }
}

/* ─── SECTION LABELS ───────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--mono);
  font-size: .72rem; font-weight: 500;
  color: var(--g);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border: 1px solid var(--border-g);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(61,220,154,0.10), rgba(91,124,255,0.045));
  box-shadow: 0 0 18px rgba(61,220,154,.06);
  margin-bottom: 1rem;
}
.kicker::before {
  content:'';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--g);
  animation: pulse 2.5s ease infinite;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.035em;
  color: #fff;
  text-wrap: balance;
}
.grad {
  background: linear-gradient(135deg, #3ddc9a 0%, #5fd4ff 28%, #5b7cff 62%, #7b5fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-cy-pu {
  background: linear-gradient(120deg, #5fd4ff 0%, #5b7cff 50%, #7b5fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-copy {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  text-wrap: pretty;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 10rem 0 5rem;
  position: relative; z-index: 2;
  background: transparent;
  isolation: isolate;
}
/* Static gradient mesh fallback — visible immediately on page load
   so the hero has color even before three.js (or instead of it on
   slow / blocked CDN). NO blur, NO animation: large gradient radii
   already look soft, and animating filter:blur is the #1 GPU FPS
   killer in browsers. Lives behind tubes-canvas-wrap. */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 22% 30%, rgba(61,220,154,.18), transparent 65%),
    radial-gradient(ellipse 65% 48% at 78% 32%, rgba(91,124,255,.16), transparent 65%),
    radial-gradient(ellipse 80% 55% at 50% 82%, rgba(123,95,255,.13), transparent 70%);
  opacity: .85;
}
.tubes-canvas-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.tubes-canvas-wrap.ready { opacity: .85; }
.tubes-canvas-wrap canvas { display: block; width: 100%; height: 100%; }
.tubes-canvas-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 28% 50%, rgba(0,0,0,.55), transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--g);
  padding: .35rem .8rem;
  border: 1px solid var(--border-g);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(61,220,154,0.10), rgba(91,124,255,0.045));
  box-shadow: 0 0 22px rgba(61,220,154,.06), inset 0 1px 0 rgba(255,255,255,.04);
  margin-bottom: 1.5rem;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  animation: heroBadgeFloat 5s ease-in-out infinite;
  will-change: transform;
}
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 22px rgba(61,220,154,.06), inset 0 1px 0 rgba(255,255,255,.04); }
  50%      { transform: translateY(-3px); box-shadow: 0 6px 28px rgba(61,220,154,.12), inset 0 1px 0 rgba(255,255,255,.06); }
}
.hero-badge-dot { width:6px;height:6px;border-radius:50%;background:var(--g);animation:pulse 2s infinite; }
.hero-title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.045em;
  color: #fff;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.typewriter-line {
  position: relative;
  display: inline-block;
  max-width: 100%;
  min-height: 1.02em;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  white-space: nowrap;
  overflow: visible;
  contain: layout style;
}
.tw-sizer {
  display: inline-block;
  visibility: hidden;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.tw-stage {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  will-change: contents;
}
#typewriter-target {
  display: inline-block;
  white-space: nowrap;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--g) 0%, #5fd4ff 48%, var(--b) 100%);
  color: #000;
  font-weight: 700;
  font-size: .95rem;
  text-shadow: 0 1px 0 rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    inset 0 -1px 0 rgba(0,0,0,.18),
    0 6px 20px rgba(61,220,154,.22);
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease);
  cursor: pointer;
  position: relative; overflow: hidden; isolation: isolate;
}
.btn-primary::before {
  content:'';position:absolute;inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent 60%);
  opacity: 0; transition: opacity .25s;
  z-index: 1;
}
.btn-primary::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 35%, rgba(255,255,255,.42) 50%, rgba(255,255,255,0) 65%);
  background-size: 220% 100%;
  background-position: -120% 0;
  background-repeat: no-repeat;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
  transition: background-position .8s var(--ease);
}
.btn-primary > * { position: relative; z-index: 3; }
.btn-primary:hover {
  transform: translate(var(--mag-x), calc(var(--mag-y) - 2px)) scale(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(0,0,0,.18),
    0 10px 34px var(--glow-g),
    0 0 0 1px rgba(61,220,154,.34),
    0 0 38px var(--glow-b);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after { background-position: 220% 0; }
.btn-primary:active {
  transform: translate(var(--mag-x), 0) scale(.99);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,.18),
    inset 0 -1px 0 rgba(255,255,255,.16),
    0 4px 12px rgba(61,220,154,.18);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  background: rgba(6,6,10,.68);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: border-color .25s var(--ease), color .25s, background .25s, transform .25s var(--ease-spring), box-shadow .25s;
  cursor: pointer;
}
.btn-secondary:hover {
  transform: translate(var(--mag-x), calc(var(--mag-y) - 1px));
  border-color: rgba(91,124,255,.32);
  color: #fff;
  background: rgba(91,124,255,.075);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 0 24px rgba(91,124,255,.08),
    0 6px 18px -8px rgba(91,124,255,.22);
}
.btn-secondary:active { transform: translate(var(--mag-x), 0); box-shadow: inset 0 2px 4px rgba(0,0,0,.18); }

/* Hero stats */
.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid transparent;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent) top / 100% 1px no-repeat;
}
.stat-val {
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 700;
  color: #fff; line-height: 1;
  margin-bottom: .25rem;
}
.stat-label { font-size: .75rem; color: var(--muted); font-family: var(--mono); letter-spacing: .05em; }

.hero-grid { display: grid; grid-template-columns: 0.85fr 1.25fr; gap: 1.5rem; align-items: center; }
.runic-shader-wrap {
  position: relative;
  width: 100%;               /* fills the column, no overflow trick */
  aspect-ratio: 1 / 1;
  max-width: 640px;          /* hard ceiling — never grows beyond */
  min-width: 480px;          /* hard floor  — never shrinks below */
  margin: 0 auto;            /* horizontally centered (symmetric) */
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  cursor: default;
  contain: layout paint;     /* lock its box from outside layout shifts */
}
.runic-shader-wrap.ready { opacity: 1; }
.runic-shader-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 92%);
          mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 92%);
}
@media (max-width: 1024px) {
  .runic-shader-wrap { max-width: 560px; min-width: 0; }
}

/* ─── PROOF BAR ────────────────────────────────────── */
.proof-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(6,6,10,0.62), rgba(4,4,6,0.72)),
    linear-gradient(90deg, rgba(61,220,154,.035), transparent 52%, rgba(91,124,255,.032));
  backdrop-filter: blur(16px) saturate(140%);
  padding: 2rem 0;
  overflow: hidden;
}
.proof-bar::before {
  content:'';position:absolute;
  top:0;left:0;right:0;height:1px;
  background: linear-gradient(90deg, transparent, rgba(61,220,154,.55), rgba(91,124,255,.38), rgba(123,95,255,.22), transparent);
}
.proof-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-num {
  font-family: var(--display);
  font-size: 2rem; font-weight: 700;
  color: #fff; line-height: 1;
  margin-bottom: .3rem;
}
.proof-num span { color: var(--g); }
.proof-desc { font-size: .78rem; color: var(--muted); font-family: var(--mono); letter-spacing: .04em; }

/* ─── CARDS / SPOTLIGHT ────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.card {
  position: relative;
  padding: 1.85rem 1.85rem 1.65rem;
  border-radius: var(--r2);
  border: var(--card-border);
  background: var(--card-surface);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s var(--ease);
  box-shadow: var(--card-shadow);
  cursor: auto;
}
/* Top-edge highlight line (shared across all surfaces) */
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem; height: 1px;
  background: var(--card-edge-line);
  pointer-events: none;
}
/* Cursor-tracked spotlight (kept subtle) */
.card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.05), transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-3px) scale(1.005);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(160deg, #0d0e14 0%, #0c0d12 100%);
  border: 1px solid rgba(255,255,255,.10);
  display: grid; place-items: center;
  margin-bottom: 1.15rem;
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--g);
  text-shadow: 0 0 0 rgba(61,220,154,0);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.40),
    0 4px 12px rgba(0,0,0,.35);
  transition: border-color .35s var(--ease), text-shadow .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease-spring);
}
.card:hover .card-icon {
  border-color: rgba(61,220,154,.28);
  text-shadow: 0 0 12px rgba(61,220,154,.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.40),
    0 4px 18px rgba(61,220,154,.18),
    0 0 0 1px rgba(61,220,154,.16);
  transform: translateY(-1px);
}
.card-num {
  font-family: var(--mono);
  font-size: .7rem; color: var(--g);
  margin-bottom: .5rem;
  letter-spacing: .08em;
}
.card-title {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 600;
  color: #fff; margin-bottom: .6rem;
  line-height: 1.3;
}
.card-body { font-size: .87rem; color: var(--text); line-height: 1.65; }
/* ─── FEATURES SECTION ─ #features card grid (4-col HLS / DATA / SEC / GPU) ─── */
#features .cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}
#features .card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 1.45rem;
  border-radius: 1.05rem;
}
#features .card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 10px;
  font-family: var(--display);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: 0;
}
#features .card-num {
  font-size: .64rem;
  margin-bottom: .45rem;
}
#features .card-title {
  min-height: 2.35rem;
  font-size: 1rem;
  margin-bottom: .55rem;
}
#features .card-body {
  min-height: 4.85rem;
  font-size: .82rem;
  line-height: 1.55;
}

/* ─── Feature visual container (.fviz-*) ─── */
.fviz {
  position: relative;
  width: 100%;
  aspect-ratio: 2.45 / 1;
  margin-top: 1.05rem;
  border-radius: .85rem;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(91,124,255,.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.025) 0%, rgba(255,255,255,.01) 100%),
    #0a0d14;
  border: 1px solid rgba(148,163,184,.09);
  isolation: isolate;
}
.fviz::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.045) 1px, transparent 1px);
  background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(120% 90% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.fviz-corner {
  position: absolute; top: 8px; left: 10px;
  font-family: var(--mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(148,163,184,.55);
  z-index: 3;
  display: flex; align-items: center; gap: 6px;
}
.fviz-corner::before {
  content: ""; width: 5px; height: 5px;
  border-radius: 50%; background: var(--g);
  box-shadow: 0 0 6px var(--g);
  animation: fviz-pulse 1.8s ease-in-out infinite;
}
.fviz-corner.r { left: auto; right: 10px; }
.fviz-corner.r::before { display: none; }
@keyframes fviz-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .35; transform: scale(.7); }
}

/* 01 ─ HLS ─ single 1080p quality badge + waveform */
.fviz-hls {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  padding: 26px 12px 18px;
  position: relative; height: 100%; z-index: 2;
}
.fviz-hls .hls-quality {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  text-align: center;
  color: var(--g);
}
.fviz-hls .hls-quality svg {
  width: 22px; height: 22px;
  filter: drop-shadow(0 0 6px rgba(61,220,154,.45));
  margin-bottom: 1px;
}
.fviz-hls .hls-quality-num {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  text-shadow: 0 0 10px rgba(61,220,154,.45);
  line-height: 1;
}
.fviz-hls .hls-quality-sub {
  font-family: var(--mono);
  font-size: 6.5px;
  letter-spacing: .12em;
  color: rgba(148,163,184,.65);
  text-transform: uppercase;
}
.fviz-hls .wave {
  position: relative;
  display: flex; align-items: flex-end; gap: 2px;
  padding-bottom: 8px;
}
.fviz-hls .wave i {
  flex: 1; min-height: 4px;
  border-radius: 1px; opacity: .85;
  background: linear-gradient(to top, var(--b), var(--g));
  animation: hls-wave 2.4s ease-in-out infinite;
}
@keyframes hls-wave { 0%,100%{height:20%} 50%{height:90%} }
.fviz-hls .wave i:nth-child(1)  { animation-delay: 0s;   }
.fviz-hls .wave i:nth-child(2)  { animation-delay: .1s;  }
.fviz-hls .wave i:nth-child(3)  { animation-delay: .2s;  }
.fviz-hls .wave i:nth-child(4)  { animation-delay: .3s;  }
.fviz-hls .wave i:nth-child(5)  { animation-delay: .4s;  }
.fviz-hls .wave i:nth-child(6)  { animation-delay: .5s;  }
.fviz-hls .wave i:nth-child(7)  { animation-delay: .6s;  }
.fviz-hls .wave i:nth-child(8)  { animation-delay: .7s;  }
.fviz-hls .wave i:nth-child(9)  { animation-delay: .8s;  }
.fviz-hls .wave i:nth-child(10) { animation-delay: .9s;  }
.fviz-hls .wave i:nth-child(11) { animation-delay: 1s;   }
.fviz-hls .wave i:nth-child(12) { animation-delay: 1.1s; }
.fviz-hls .wave i:nth-child(13) { animation-delay: 1.2s; }
.fviz-hls .wave i:nth-child(14) { animation-delay: 1.3s; }
.fviz-hls .wave i:nth-child(15) { animation-delay: 1.4s; }
.fviz-hls .wave i:nth-child(16) { animation-delay: 1.5s; }
.fviz-hls .wave i:nth-child(17) { animation-delay: 1.6s; }
.fviz-hls .wave i:nth-child(18) { animation-delay: 1.7s; }
.fviz-hls .scrub {
  position: absolute;
  left: 78px; right: 14px; bottom: 12px;
  height: 2px; border-radius: 2px;
  background: rgba(148,163,184,.15); overflow: hidden;
}
.fviz-hls .scrub::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0;
  width: 30%; border-radius: 2px;
  background: linear-gradient(90deg, var(--b), var(--g));
  animation: hls-scrub 6s linear infinite;
}
@keyframes hls-scrub { 0%{left:-30%} 100%{left:100%} }

/* 02 ─ DATA ─ analytics dashboard */
.fviz-data {
  position: relative; height: 100%; z-index: 2;
  padding: 22px 12px 12px;
  display: grid; grid-template-columns: 1.4fr .9fr; gap: 10px;
}
.fviz-data .dchart { position: relative; display: flex; flex-direction: column; }
.fviz-data .dchart-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
}
.fviz-data .dchart-val {
  font-family: var(--display);
  font-size: 13px; font-weight: 700; color: #fff; letter-spacing: -.01em;
}
.fviz-data .dchart-trend {
  font-family: var(--mono);
  font-size: 8px; font-weight: 600; color: var(--g); letter-spacing: .04em;
}
.fviz-data .dchart svg { flex: 1; width: 100%; display: block; }
.fviz-data .dline {
  fill: none; stroke: url(#fviz-data-line);
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 240; stroke-dashoffset: 240;
  animation: data-draw 3.2s ease-out forwards;
}
.fviz-data .darea {
  fill: url(#fviz-data-area); opacity: 0;
  animation: data-fill .8s ease-out 2.4s forwards;
}
.fviz-data .ddot { fill: var(--g); opacity: 0; animation: data-pop .4s ease-out 3s forwards; }
.fviz-data .ddot-ring {
  fill: none; stroke: var(--g); stroke-width: .8; opacity: 0;
  animation: data-ring 1.6s ease-out 3s infinite;
}
@keyframes data-draw { to { stroke-dashoffset: 0; } }
@keyframes data-fill { to { opacity: 1; } }
@keyframes data-pop  { to { opacity: 1; } }
@keyframes data-ring { 0% {opacity:.8; r:1.5} 100% {opacity:0; r:5} }
.fviz-data .kpis { display: grid; grid-template-rows: repeat(3, 1fr); gap: 4px; }
.fviz-data .kpi {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 4px 7px; border-radius: 5px;
  border: 1px solid rgba(148,163,184,.1);
  background: rgba(148,163,184,.025);
}
.fviz-data .kpi-label {
  font-family: var(--mono); font-size: 7px; letter-spacing: .08em;
  color: rgba(148,163,184,.55); text-transform: uppercase;
}
.fviz-data .kpi-val {
  font-family: var(--display); font-size: 10px; font-weight: 700;
  color: #fff; letter-spacing: -.01em;
}
.fviz-data .kpi-val.up { color: var(--g); }
.fviz-data .kpi-val.dn { color: #ff7a8a; }

/* 03 ─ SEC ─ domain allowlist + watermark shield */
.fviz-sec {
  position: relative; height: 100%; z-index: 2;
  padding: 22px 12px 12px;
  display: grid; grid-template-columns: 1fr 76px;
  gap: 10px; align-items: center;
}
.fviz-sec .domains {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--mono); font-size: 8.5px;
}
.fviz-sec .drow {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 7px 4px 9px; border-radius: 5px;
  border: 1px solid rgba(148,163,184,.1);
  background: rgba(148,163,184,.02);
  position: relative; overflow: hidden;
}
.fviz-sec .drow.allow { color: #cbd5e1; border-color: rgba(61,220,154,.2); }
.fviz-sec .drow.allow::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--g);
}
.fviz-sec .drow.block {
  color: rgba(255,122,138,.6);
  border-color: rgba(255,122,138,.18);
  text-decoration: line-through;
  text-decoration-color: rgba(255,122,138,.4);
}
.fviz-sec .drow.block::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px; background: #ff7a8a;
}
.fviz-sec .drow .durl { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fviz-sec .drow .dtag {
  font-size: 7px; letter-spacing: .08em; text-transform: uppercase;
  opacity: .8; font-weight: 700;
}
.fviz-sec .shield {
  position: relative; width: 76px; height: 76px;
  display: grid; place-items: center;
}
.fviz-sec .shield svg { width: 100%; height: 100%; overflow: visible; }
.fviz-sec .shield-ring {
  fill: none; stroke: rgba(91,124,255,.32);
  stroke-width: .7; stroke-dasharray: 2 4;
  transform-origin: center;
  animation: sec-spin 14s linear infinite;
}
.fviz-sec .shield-ring.r2 {
  stroke: rgba(61,220,154,.22);
  animation-duration: 9s; animation-direction: reverse;
}
@keyframes sec-spin { to { transform: rotate(360deg); } }
.fviz-sec .shield-body {
  fill: rgba(91,124,255,.08);
  stroke: rgba(91,124,255,.55); stroke-width: 1;
}
.fviz-sec .shield-lock {
  stroke: #fff; stroke-width: 1.4; fill: none; stroke-linecap: round;
}
.fviz-sec .wmark {
  position: absolute;
  font-family: var(--mono);
  font-size: 6.5px; font-weight: 700; letter-spacing: .15em;
  color: rgba(255,255,255,.18);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.fviz-sec .wmark.w1 { top: 4px;    right: -4px; transform: rotate(-22deg); }
.fviz-sec .wmark.w2 { bottom: 6px; left: -4px;  transform: rotate(-22deg); }

/* 04 ─ ANTI-ADBLOCK ─ shield deflects adblock attempts */
.fviz-adblock {
  position: relative; height: 100%; z-index: 2;
  display: grid; place-items: center;
}
.fviz-adblock .ab-shield {
  position: relative; z-index: 3;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  color: var(--g);
  filter: drop-shadow(0 0 12px rgba(61,220,154,.45));
  animation: abShieldPulse 2.6s ease-in-out infinite;
}
.fviz-adblock .ab-shield svg { width: 100%; height: 100%; display: block; }
@keyframes abShieldPulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 8px rgba(61,220,154,.32)); }
  50%      { transform: scale(1.06); filter: drop-shadow(0 0 18px rgba(61,220,154,.62)); }
}
/* Soft halo ring around shield — expands and fades */
.fviz-adblock .ab-halo {
  position: absolute; left: 50%; top: 50%;
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 1px solid rgba(61,220,154,.30);
  z-index: 2;
  animation: abHalo 2.6s ease-out infinite;
}
.fviz-adblock .ab-halo.h2 { animation-delay: 1.3s; }
@keyframes abHalo {
  0%   { transform: scale(.6); opacity: 0; }
  20%  { opacity: .55; }
  100% { transform: scale(2.4); opacity: 0; }
}
/* Adblock attack particles — emerge near shield, deflect outward, fade red */
.fviz-adblock .ab-attacks {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.fviz-adblock .ab-attacks span {
  position: absolute;
  left: 50%; top: 50%;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: rgba(255,107,107,.85);
  box-shadow: 0 0 8px rgba(255,107,107,.55);
  --tx: 0px; --ty: 0px;
  animation: abAttack 3.2s linear infinite;
  opacity: 0;
}
.fviz-adblock .ab-attacks span:nth-child(1) { --tx: -90px;  --ty: -22px; animation-delay: 0s;   }
.fviz-adblock .ab-attacks span:nth-child(2) { --tx:  90px;  --ty: -22px; animation-delay: .4s;  }
.fviz-adblock .ab-attacks span:nth-child(3) { --tx: -90px;  --ty:  22px; animation-delay: .8s;  }
.fviz-adblock .ab-attacks span:nth-child(4) { --tx:  90px;  --ty:  22px; animation-delay: 1.2s; }
.fviz-adblock .ab-attacks span:nth-child(5) { --tx: -120px; --ty:   0px; animation-delay: 1.6s; }
.fviz-adblock .ab-attacks span:nth-child(6) { --tx:  120px; --ty:   0px; animation-delay: 2.0s; }
.fviz-adblock .ab-attacks span:nth-child(7) { --tx:    0px; --ty: -38px; animation-delay: 2.4s; }
.fviz-adblock .ab-attacks span:nth-child(8) { --tx:    0px; --ty:  38px; animation-delay: 2.8s; }
@keyframes abAttack {
  0%   { transform: translate(0, 0)            scale(.5); opacity: 0; }
  12%  { transform: translate(0, 0)            scale(1.2); opacity: 1; }
  35%  { transform: translate(calc(var(--tx) * .25), calc(var(--ty) * .25)) scale(1); opacity: .9; }
  100% { transform: translate(var(--tx), var(--ty)) scale(.3); opacity: 0; }
}
.fviz-adblock .ab-stats {
  position: absolute; bottom: 4px; right: 12px;
  display: flex; gap: 10px;
  font-family: var(--mono); font-size: 7px; letter-spacing: .06em;
  color: rgba(148,163,184,.55); z-index: 3;
}
.fviz-adblock .ab-stats span strong { color: #fff; font-weight: 700; margin-left: 3px; }
@media (prefers-reduced-motion: reduce) {
  .fviz-adblock .ab-shield,
  .fviz-adblock .ab-halo,
  .fviz-adblock .ab-attacks span { animation: none; }
}

/* ─── 05 SUB ─ subtitle language stack ─────────────── */
.fviz-sub {
  position: relative; height: 100%; z-index: 2;
  padding: 26px 14px 16px;
  display: flex; flex-direction: column; gap: 5px;
}
.fviz-sub .sub-row {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,.10);
  background: rgba(148,163,184,.025);
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(203,213,225,.7);
  transition: opacity .3s;
}
.fviz-sub .sub-row.active {
  border-color: rgba(61,220,154,.32);
  background: linear-gradient(90deg, rgba(61,220,154,.10), rgba(61,220,154,.02));
  color: #fff;
}
.fviz-sub .sub-row.active .sub-cc {
  background: var(--g); color: #07080c;
  box-shadow: 0 0 8px rgba(61,220,154,.5);
}
.fviz-sub .sub-cc {
  display: inline-grid; place-items: center;
  width: 18px; height: 12px;
  border-radius: 3px;
  background: rgba(148,163,184,.18);
  color: #cbd5e1;
  font-size: 6.5px; font-weight: 700; letter-spacing: .04em;
  flex-shrink: 0;
}
.fviz-sub .sub-flag { font-size: 11px; line-height: 1; flex-shrink: 0; }
.fviz-sub .sub-name { flex: 1; }
.fviz-sub .sub-pct {
  font-size: 7.5px;
  color: rgba(148,163,184,.55);
  letter-spacing: .04em;
}
.fviz-sub .sub-row.active .sub-pct { color: var(--g); }
.fviz-sub .sub-cycle {
  animation: subCycle 5s ease-in-out infinite;
}
@keyframes subCycle {
  0%,18%   { opacity: 1; }
  20%,100% { opacity: .6; }
}
.fviz-sub .sub-row:nth-child(1) { animation-delay: 0s; }
.fviz-sub .sub-row:nth-child(2) { animation-delay: 1s; }
.fviz-sub .sub-row:nth-child(3) { animation-delay: 2s; }
.fviz-sub .sub-row:nth-child(4) { animation-delay: 3s; }

/* ─── 06 ADS ─ custom ad slots inside player ─────── */
.fviz-ads {
  position: relative; height: 100%; z-index: 2;
  padding: 26px 14px 14px;
  display: flex; align-items: center; justify-content: center;
}
.fviz-ads .player-frame {
  position: relative;
  width: 100%; aspect-ratio: 16 / 9;
  max-height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(91,124,255,.10), transparent 70%),
    linear-gradient(180deg, #0a0d14 0%, #050609 100%);
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.fviz-ads .player-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  box-shadow: 0 0 18px rgba(255,255,255,.25);
}
.fviz-ads .player-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #07080c;
  margin-left: 2px;
}
.fviz-ads .ad-slot {
  position: absolute;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(61,220,154,.16), rgba(91,124,255,.12));
  border: 1px solid rgba(61,220,154,.45);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    0 0 12px rgba(61,220,154,.22);
  font-family: var(--mono);
  font-size: 6.5px; font-weight: 700;
  letter-spacing: .08em;
  color: var(--g);
  display: grid; place-items: center;
  text-transform: uppercase;
  animation: adSlotPulse 2.4s ease-in-out infinite;
}
.fviz-ads .ad-slot.s1 { top: 8%;   left: 8%;  width: 28%; height: 16%; animation-delay: 0s;  }
.fviz-ads .ad-slot.s2 { top: 8%;   right: 8%; width: 28%; height: 16%; animation-delay: .4s; }
.fviz-ads .ad-slot.s3 { bottom: 12%; left: 50%; transform: translateX(-50%); width: 50%; height: 14%; animation-delay: .8s; }
@keyframes adSlotPulse {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 0 8px rgba(61,220,154,.18); }
  50%      { box-shadow: inset 0 0 0 1px rgba(255,255,255,.10), 0 0 22px rgba(61,220,154,.42); }
}
.fviz-ads .player-bar {
  position: absolute;
  left: 8%; right: 8%; bottom: 5%;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.fviz-ads .player-bar::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 38%;
  background: linear-gradient(90deg, var(--g), var(--b));
}

/* ─── 07 AUD ─ multiple audio tracks ──────────────── */
.fviz-aud {
  position: relative; height: 100%; z-index: 2;
  padding: 26px 14px 16px;
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 10px; align-items: center;
}
.fviz-aud .aud-tracks {
  display: flex; flex-direction: column; gap: 5px;
}
.fviz-aud .atrack {
  display: flex; align-items: center; gap: 7px;
  padding: 4px 7px;
  border-radius: 5px;
  border: 1px solid rgba(148,163,184,.10);
  background: rgba(148,163,184,.025);
  font-family: var(--mono);
  font-size: 8.5px;
  color: rgba(203,213,225,.65);
  position: relative;
}
.fviz-aud .atrack.active {
  border-color: rgba(91,124,255,.42);
  background: linear-gradient(90deg, rgba(91,124,255,.12), rgba(91,124,255,.02));
  color: #fff;
}
.fviz-aud .atrack-icon {
  width: 10px; height: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: rgba(148,163,184,.5);
}
.fviz-aud .atrack.active .atrack-icon { color: var(--b); }
.fviz-aud .atrack-icon svg { width: 100%; height: 100%; }
.fviz-aud .atrack-name { flex: 1; }
.fviz-aud .atrack-tag {
  font-size: 6.5px;
  letter-spacing: .08em;
  font-weight: 700;
  opacity: .6;
}
.fviz-aud .atrack.active .atrack-tag { opacity: 1; color: var(--b); }
.fviz-aud .aud-eq {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 3px;
  height: 70px;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid rgba(91,124,255,.18);
  background: rgba(91,124,255,.04);
}
.fviz-aud .aud-eq i {
  width: 4px; min-height: 6px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--b), var(--g));
  animation: audEq 1.2s ease-in-out infinite;
}
@keyframes audEq { 0%,100%{height:18%} 50%{height:88%} }
.fviz-aud .aud-eq i:nth-child(1) { animation-delay: 0s;   }
.fviz-aud .aud-eq i:nth-child(2) { animation-delay: .15s; }
.fviz-aud .aud-eq i:nth-child(3) { animation-delay: .3s;  }
.fviz-aud .aud-eq i:nth-child(4) { animation-delay: .45s; }
.fviz-aud .aud-eq i:nth-child(5) { animation-delay: .6s;  }
.fviz-aud .aud-eq i:nth-child(6) { animation-delay: .35s; }
.fviz-aud .aud-eq i:nth-child(7) { animation-delay: .2s;  }

/* ─── 08 ADULT ─ 18+ legal adult content shield ─── */
.fviz-adult {
  position: relative; height: 100%; z-index: 2;
  display: grid; place-items: center;
  padding: 26px 14px 18px;
  overflow: hidden;
}
.fviz-adult .au-glow {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,157,.20), transparent 65%);
  filter: blur(4px);
  animation: auGlow 3.4s ease-in-out infinite;
}
@keyframes auGlow {
  0%,100% { opacity: .55; transform: translate(-50%, -50%) scale(1); }
  50%     { opacity: 1;   transform: translate(-50%, -50%) scale(1.12); }
}
.fviz-adult .au-badge {
  position: relative;
  z-index: 3;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.20), transparent 60%),
    linear-gradient(135deg, #ff6b9d 0%, #c93a73 100%);
  border: 2px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.30),
    inset 0 -2px 4px rgba(0,0,0,.30),
    0 8px 24px rgba(255,107,157,.40),
    0 0 0 4px rgba(255,107,157,.10);
}
.fviz-adult .au-badge span { line-height: 1; transform: translateY(-1px); }
.fviz-adult .au-ring {
  position: absolute;
  left: 50%; top: 52%;
  width: 100px; height: 100px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255,107,157,.45);
  animation: auSpin 14s linear infinite;
}
.fviz-adult .au-ring.r2 {
  width: 120px; height: 120px;
  border-color: rgba(255,107,157,.22);
  animation-duration: 22s;
  animation-direction: reverse;
}
@keyframes auSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.fviz-adult .au-tags {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  display: flex; gap: 5px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 3;
}
.fviz-adult .au-tag {
  font-family: var(--mono);
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,107,157,.35);
  background: rgba(255,107,157,.06);
  color: #ffb3cb;
}
.fviz-adult .au-corner-r {
  position: absolute; top: 8px; right: 10px;
  font-family: var(--mono);
  font-size: 8px; font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,107,157,.65);
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .fviz-sub .sub-cycle,
  .fviz-ads .ad-slot,
  .fviz-aud .aud-eq i,
  .fviz-adult .au-glow,
  .fviz-adult .au-ring { animation: none; }
}

@media (max-width: 1180px) {
  #features .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  #features .cards-grid { grid-template-columns: 1fr; }
  #features .card { min-height: 380px; }
}

/* 3D Tilt cards */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 800px;
  transform: perspective(800px) rotateX(0) rotateY(0);
  transition: transform .08s linear, box-shadow .3s;
}
.tilt-card:hover { box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.card-shine {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.08), transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.tilt-card:hover .card-shine { opacity: 1; }

/* ─── PLATFORM BENEFITS — GlassFlow-inspired grid ─── */
.gf-section { position: relative; }
.gf-head { max-width: 760px; margin: 0 0 2.75rem; }
.gf-lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  max-width: 640px;
}

/* KPI strip */
.gf-kpi {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 2.5rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1rem;
  background: rgba(255,255,255,.05);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 -1px 0 rgba(0,0,0,.4) inset,
    0 14px 36px -10px rgba(0,0,0,.55);
}
.gf-kpi-cell {
  padding: 1.4rem 1.5rem;
  background: linear-gradient(180deg, #0c0d12 0%, #07080c 100%);
  display: flex;
  flex-direction: column;
  gap: .35rem;
  position: relative;
}
.gf-kpi-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 1rem; right: 1rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,220,154,.40), rgba(95,212,255,.25), transparent);
  opacity: .55;
}
.gf-kpi-v {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
  background: linear-gradient(120deg, #3ddc9a 0%, #5fd4ff 55%, #5b7cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gf-kpi-u {
  font-family: var(--mono);
  font-size: .85rem;
  font-weight: 500;
  margin-left: .15rem;
  -webkit-text-fill-color: #7b8499;
  color: #7b8499;
  background: none;
}
.gf-kpi-k {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Capability grid — 6-col, ENCODE spans 4 (showcase) */
.gf-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, auto);
  gap: 1rem;
}
.gf-grid > .gf-card        { grid-column: span 2; }
.gf-grid > .gf-card--wide  { grid-column: span 4; min-height: 320px; }
.gf-card {
  position: relative;
  padding: 1.6rem 1.55rem 1.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(160deg, #0e0f15 0%, #0a0b10 55%, #06070b 100%);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s var(--ease);
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 -1px 0 rgba(0,0,0,.40) inset,
    0 14px 28px -10px rgba(0,0,0,.45),
    0 28px 56px -16px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  isolation: isolate;
}
.gf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 1.25rem; right: 1.25rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,220,154,.50), rgba(95,212,255,.30), transparent);
  opacity: .45;
  pointer-events: none;
  transition: opacity .3s;
}
.gf-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,0%), rgba(61,220,154,.10), transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  z-index: 0;
}
.gf-card > * { position: relative; z-index: 1; }
.gf-card:hover {
  transform: translateY(-3px);
  border-color: rgba(61,220,154,.26);
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 -1px 0 rgba(0,0,0,.45) inset,
    0 18px 36px -10px rgba(0,0,0,.55),
    0 36px 72px -16px rgba(0,0,0,.65),
    0 0 0 1px rgba(61,220,154,.14);
}
.gf-card:hover::before { opacity: 1; }
.gf-card:hover::after { opacity: 1; }

.gf-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.gf-tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g);
  padding: .35rem .6rem;
  border: 1px solid rgba(61,220,154,.22);
  border-radius: 999px;
  background: rgba(61,220,154,.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 18px rgba(61,220,154,.08);
}
.gf-icon {
  width: 28px; height: 28px;
  color: var(--g);
  filter: drop-shadow(0 0 6px rgba(61,220,154,.35));
  flex-shrink: 0;
}
.gf-card-title {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: .55rem;
  line-height: 1.3;
}
.gf-card-body {
  font-size: .87rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.1rem;
  flex: 1;
}
.gf-card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: .9rem 0 0;
  margin: 0;
  border-top: 1px dashed rgba(255,255,255,.06);
}
.gf-card-bullets li {
  position: relative;
  padding-left: 1.05rem;
  font-family: var(--mono);
  font-size: .73rem;
  letter-spacing: .03em;
  color: #b8c0d0;
}
.gf-card-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: .42rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px var(--glow-g);
}

@media (max-width: 1024px) {
  .gf-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gf-grid > .gf-card        { grid-column: span 2; }
  .gf-grid > .gf-card--wide  { grid-column: span 4; }
  .gf-kpi  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .gf-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gf-grid > .gf-card,
  .gf-grid > .gf-card--wide { grid-column: span 1; min-height: 0; }
  .gf-kpi  { grid-template-columns: 1fr; }
  .gf-kpi-v { font-size: 1.55rem; }
}

/* ─── HLS SHOWCASE SCENE (ENCODE wide card) ────────── */
.gf-card--scene { padding: 1.75rem 1.75rem 1.75rem; overflow: hidden; }

.hls-head { max-width: 280px; margin-bottom: .75rem; position: relative; z-index: 4; }
.hls-title {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 .85rem;
}
.hls-sub {
  font-size: .92rem;
  line-height: 1.55;
  color: #7b8499;
  font-weight: 400;
}

/* Stats card overlay (bottom-left) */
.hls-stats {
  position: absolute;
  left: 1.75rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1.1rem .75rem .75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15,17,23,.7), rgba(15,17,23,.55));
  border: 1px solid rgba(91,124,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 24px rgba(0,0,0,.45),
    0 0 30px rgba(91,124,255,.18);
  z-index: 4;
  animation: hlsShimmer 3.4s ease-in-out infinite;
}
@keyframes hlsShimmer {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.45), 0 0 28px rgba(91,124,255,.18); }
  50%      { box-shadow: 0 8px 24px rgba(0,0,0,.45), 0 0 50px rgba(140,90,220,.32); }
}
.hls-stats-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(91,124,255,.22), rgba(61,220,154,.18));
  border: 1px solid rgba(91,124,255,.22);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hls-stats-icon svg { width: 20px; height: 20px; }
.hls-stats-text { display: flex; flex-direction: column; line-height: 1.05; }
.hls-stats-num {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.hls-stats-lab {
  font-size: .72rem;
  color: #7b8499;
  margin-top: .2rem;
}

/* Scene wrapper */
.hls-scene {
  position: absolute;
  inset: 1.5rem 1.5rem 1.5rem 1.5rem;
  z-index: 1;
  pointer-events: none;
}

/* Stream lines */
.hls-streams {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hls-streams path[id^="hlsC"] {
  animation: hlsDashFlow 2.4s linear infinite;
}
@keyframes hlsDashFlow {
  to { stroke-dashoffset: -30; }
}

/* Cloud + play button */
.hls-cloud {
  position: absolute;
  left: 18%;
  top: 50%;
  width: 270px;
  height: 200px;
  transform: translate(-50%, -45%);
  z-index: 3;
  animation: hlsCloudPulse 4s ease-in-out infinite;
}
.hls-cloud svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  filter:
    drop-shadow(0 0 16px rgba(95,212,255,.6))
    drop-shadow(0 0 32px rgba(61,220,154,.45))
    drop-shadow(0 6px 28px rgba(120,80,255,.25));
}
@keyframes hlsCloudPulse {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.15); }
}
.hls-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.45), transparent 50%),
    linear-gradient(135deg, #5b7cff 0%, #7b5fff 55%, #7b5fff 100%);
  display: grid; place-items: center;
  box-shadow:
    0 0 30px rgba(91,124,255,.6),
    0 0 60px rgba(61,220,154,.45),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -2px 4px rgba(0,0,0,.3);
  animation: hlsPlayGlow 2.6s ease-in-out infinite;
  z-index: 1;
}
.hls-play::before {
  content: '';
  width: 0; height: 0;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 6px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.6));
}
@keyframes hlsPlayGlow {
  0%, 100% {
    box-shadow:
      0 0 30px rgba(91,124,255,.55),
      0 0 60px rgba(61,220,154,.4),
      inset 0 1px 0 rgba(255,255,255,.45),
      inset 0 -2px 4px rgba(0,0,0,.3);
  }
  50% {
    box-shadow:
      0 0 50px rgba(91,124,255,.85),
      0 0 90px rgba(61,220,154,.55),
      inset 0 1px 0 rgba(255,255,255,.55),
      inset 0 -2px 4px rgba(0,0,0,.3);
  }
}

/* Bitrate stack (right) */
.hls-rates {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
  pointer-events: auto;
}
.hls-rate-row {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: hlsFloat 4s ease-in-out infinite;
}
.hls-rate-row:nth-child(1) { animation-delay: 0s; }
.hls-rate-row:nth-child(2) { animation-delay: .35s; }
.hls-rate-row:nth-child(3) { animation-delay: .7s; }
.hls-rate-row:nth-child(4) { animation-delay: 1.05s; }
@keyframes hlsFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.hls-rate {
  width: 168px;
  height: 52px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(91,124,255,.32), rgba(61,220,154,.22) 70%);
  border: 1px solid rgba(91,124,255,.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 16px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 22px rgba(91,124,255,.45),
    0 0 22px rgba(91,124,255,.22);
}
.hls-rate-q {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.hls-codec {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(91,124,255,.42);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  color: #b8c0d0;
  letter-spacing: .02em;
  box-shadow: inset 0 0 8px rgba(91,124,255,.15);
}
.hls-codec i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #5fd4ff;
  box-shadow: 0 0 6px #5fd4ff;
  margin-right: 3px;
  align-self: center;
}
.hls-codec small {
  font-size: .58rem;
  font-weight: 600;
  color: #7b8499;
  margin-left: 2px;
  letter-spacing: .04em;
}

/* Tiny dotted connector between rate-card and device */
.hls-dot-link {
  width: 22px;
  height: 1px;
  background-image: radial-gradient(circle, rgba(91,124,255,.55) 1px, transparent 1.4px);
  background-size: 5px 5px;
  background-repeat: repeat-x;
  background-position: center;
}

/* Device icons */
.hls-device {
  width: 40px; height: 44px;
  display: grid; place-items: center;
  position: relative;
  animation: hlsDevGlow 3s ease-in-out infinite;
}
@keyframes hlsDevGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(91,124,255,.4)); }
  50%      { filter: drop-shadow(0 0 10px rgba(91,124,255,.75)); }
}
.hls-dev-monitor {
  width: 36px; height: 28px;
}
.hls-dev-monitor::before {
  content: '';
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 22px;
  border: 1.6px solid #b8c0d0;
  border-radius: 4px;
}
.hls-dev-monitor::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 5px;
  border: 1.6px solid #b8c0d0;
  border-top: 0;
  border-radius: 0 0 3px 3px;
}
.hls-dev-tablet::before {
  content: '';
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 36px;
  border: 1.6px solid #b8c0d0;
  border-radius: 5px;
}
.hls-dev-tablet::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 1.6px;
  background: #b8c0d0;
  border-radius: 1px;
}
.hls-dev-phone::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 32px;
  border: 1.6px solid #b8c0d0;
  border-radius: 4px;
}
.hls-dev-phone::after {
  content: '';
  position: absolute;
  bottom: 9px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 1.4px;
  background: #b8c0d0;
  border-radius: 1px;
}
.hls-dev-phone-sm::before { width: 18px; height: 30px; }

@media (max-width: 1024px) {
  .hls-rate { width: 150px; }
  .hls-cloud { width: 220px; height: 170px; }
}
@media (max-width: 720px) {
  .hls-head { max-width: 100%; }
  .hls-title { font-size: 1.45rem; }
  .hls-cloud { left: 22%; width: 180px; height: 140px; }
  .hls-rate { width: 130px; height: 46px; }
  .hls-rate-q { font-size: .92rem; }
  .hls-codec { font-size: .65rem; padding: 3px 6px; }
  .hls-codec small { display: none; }
  .hls-dot-link { width: 12px; }
  .hls-device { width: 32px; height: 36px; }
  .hls-dev-monitor::before { width: 28px; height: 18px; }
  .hls-dev-tablet::before { width: 22px; height: 30px; }
  .hls-dev-phone::before { width: 16px; height: 28px; }
  .hls-dev-phone-sm::before { width: 14px; height: 26px; }
  .hls-stats { left: 1rem; bottom: 1rem; padding: .55rem .85rem .55rem .55rem; }
  .hls-stats-num { font-size: 1rem; }
}

/* ─── HLS card phone reflow ─ scene goes from absolute → flow ── */
@media (max-width: 600px) {
  .gf-card--scene {
    padding: 1.4rem 1.25rem 1.4rem;
    overflow: visible;
  }
  .hls-head { margin-bottom: 1rem; }
  .hls-title { font-size: 1.35rem; }
  .hls-sub { font-size: .88rem; }
  .hls-sub br { display: none; }     /* let copy wrap naturally on narrow widths */

  /* Scene becomes a flow column instead of an absolutely-positioned canvas */
  .hls-scene {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: .5rem;
  }
  .hls-streams { display: none; }    /* connector curves only work with absolute layout */

  .hls-cloud {
    position: relative;
    left: auto; top: auto;
    transform: none;
    width: 140px; height: 100px;
    margin: 0 auto;
    animation: none;
  }
  .hls-play { width: 54px; height: 54px; transform: translate(-50%, -50%); }
  .hls-play::before { border-left-width: 16px; border-top-width: 10px; border-bottom-width: 10px; margin-left: 4px; }

  .hls-rates {
    position: static;
    transform: none;
    flex-direction: column;
    width: 100%;
    gap: .55rem;
    align-items: stretch;
  }
  .hls-rate-row {
    justify-content: space-between;
    gap: 10px;
    animation: none;     /* flow layout doesn't need the float wobble */
  }
  .hls-rate { width: auto; flex: 1 1 auto; height: 44px; }

  /* Stats card flows under the scene instead of overlaying the bottom-left */
  .hls-stats {
    position: static;
    left: auto; bottom: auto;
    margin-top: 1.1rem;
    align-self: flex-start;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ─── RICH CAPABILITY CARDS (referans uyumlu) ──────── */
.gf-card--rich {
  padding: 1.55rem 1.55rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  min-height: 320px;
  overflow: hidden;
}
.gf-tag-pill {
  font-family: var(--mono, ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b8c0d0;
  padding: .3rem .55rem;
  border: 1px solid rgba(150,120,255,.32);
  border-radius: 6px;
  background: rgba(120,90,220,.08);
  display: inline-flex;
  align-self: flex-start;
  box-shadow: inset 0 0 18px rgba(140,90,220,.10);
}
.gf-card--rich h3.gf-card-title {
  font-size: 1.18rem;
  margin: 0;
  letter-spacing: -.022em;
}
.gf-card--rich .gf-card-body {
  font-size: .87rem;
  line-height: 1.5;
  color: #b8c0d0;
  margin: 0;
}
.gf-card--rich .gf-illu {
  position: relative;
  flex: 1 1 auto;
  min-height: 110px;
  margin: .2rem 0 .2rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.gf-card--rich .gf-illu svg {
  width: 100%;
  height: 100%;
  max-height: 150px;
  overflow: visible;
  display: block;
}
.gf-card--rich .gf-card-bullets {
  margin-top: auto;
  padding-top: .8rem;
  gap: .42rem;
}
.gf-card--rich .gf-card-bullets li {
  font-family: var(--mono, ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace);
  font-size: .72rem;
  color: #b8c0d0;
  letter-spacing: .01em;
  padding-left: 1rem;
}
.gf-card--rich .gf-card-bullets li::before {
  background: radial-gradient(circle, #7b5fff 0%, #7b5fff 70%);
  box-shadow: 0 0 8px rgba(166,77,255,.7);
  width: 5px; height: 5px;
  animation: bulletPulse 2.4s ease-in-out infinite;
}
.gf-card--rich .gf-card-bullets li:nth-child(2)::before { animation-delay: .4s; }
.gf-card--rich .gf-card-bullets li:nth-child(3)::before { animation-delay: .8s; }
@keyframes bulletPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(166,77,255,.5);  transform: translateY(-50%) scale(1); }
  50%      { box-shadow: 0 0 14px rgba(198,91,255,1);  transform: translateY(-50%) scale(1.4); }
}

/* ─── CPM chart animations ───────────────────────── */
.cpm-bar { transform-box: fill-box; transform-origin: bottom center; animation: cpmBar 3s ease-in-out infinite; }
.cpm-bar:nth-child(2) { animation-delay: .15s; }
.cpm-bar:nth-child(3) { animation-delay: .3s; }
.cpm-bar:nth-child(4) { animation-delay: .45s; }
.cpm-bar:nth-child(5) { animation-delay: .6s; }
.cpm-bar:nth-child(6) { animation-delay: .75s; }
.cpm-bar:nth-child(7) { animation-delay: .9s; }
@keyframes cpmBar {
  0%, 100% { transform: scaleY(1);    filter: brightness(1); }
  50%      { transform: scaleY(1.06); filter: brightness(1.25); }
}
.cpm-line { stroke-dasharray: 6 4; animation: cpmFlow 3s linear infinite; }
@keyframes cpmFlow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -40; } }
.cpm-tip { animation: tipFloat 2.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes tipFloat {
  0%, 100% { transform: translateY(0)    scale(1);    opacity: .9; }
  50%      { transform: translateY(-3px) scale(1.15); opacity: 1; }
}

/* ─── Trust illu animations ──────────────────────── */
.trust-dial { transform-box: fill-box; transform-origin: center; animation: trustDial 9s linear infinite; }
@keyframes trustDial { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.trust-shield { animation: trustGlow 3.2s ease-in-out infinite; }
@keyframes trustGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(123,60,255,.45)); }
  50%      { filter: drop-shadow(0 0 14px rgba(198,91,255,.85)); }
}
.trust-trace { stroke-dasharray: 4 6; animation: trustFlow 3.5s linear infinite; }
.trust-trace.t2 { animation-delay: .9s; animation-duration: 4s; }
.trust-trace.t3 { animation-direction: reverse; animation-duration: 4.5s; }
.trust-trace.t4 { animation-direction: reverse; animation-duration: 3.8s; animation-delay: .5s; }
@keyframes trustFlow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -30; } }
.trust-spark { animation: sparkBlink 2s ease-in-out infinite; }
.trust-spark:nth-of-type(2) { animation-delay: .5s; }
.trust-spark:nth-of-type(3) { animation-delay: 1s; }
.trust-spark:nth-of-type(4) { animation-delay: 1.5s; }
@keyframes sparkBlink {
  0%, 100% { opacity: .25; }
  50%      { opacity: 1; }
}

/* ─── Embed illu animations ──────────────────────── */
.emb-code  { animation: embPulse 3s ease-in-out infinite; }
@keyframes embPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(55,213,255,.35)); }
  50%      { filter: drop-shadow(0 0 16px rgba(123,60,255,.85)); }
}
.emb-trace { stroke-dasharray: 4 6; animation: embFlow 3.5s linear infinite; }
.emb-trace.t2 { animation-delay: .8s; animation-duration: 4.2s; }
.emb-trace.t3 { animation-direction: reverse; animation-duration: 4s; }
.emb-trace.t4 { animation-direction: reverse; animation-delay: .5s; }
@keyframes embFlow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -30; } }

/* ─── Analytics animations ───────────────────────── */
.ana-line  { stroke-dasharray: 380; stroke-dashoffset: 0; animation: anaSweep 4.5s ease-in-out infinite; }
@keyframes anaSweep {
  0%   { stroke-dashoffset: 380; }
  45%  { stroke-dashoffset: 0; }
  85%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}
.ana-line2 { stroke-dasharray: 3 5; animation: anaDash 3s linear infinite; }
@keyframes anaDash { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -32; } }
.ana-tip   { transform-box: fill-box; transform-origin: center; animation: tipFloat 2.4s ease-in-out infinite; }
.ana-pie   { transform-box: fill-box; transform-origin: center; animation: anaPie 14s linear infinite; }
@keyframes anaPie { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.ana-node  { transform-box: fill-box; transform-origin: center; animation: cpmBar 2.6s ease-in-out infinite; }
.ana-node:nth-child(2) { animation-delay: .25s; }
.ana-node:nth-child(3) { animation-delay: .5s; }

/* HLS encoder card already animated -- no changes */
.gf-card--scene .hls-cloud { transition: filter .4s; }

/* Card hover lift more lively */
.gf-card { transition: transform .35s var(--ease), border-color .3s, box-shadow .35s; }

/* ─── DELIVER (Globe) wide card ────────────────────── */
.gf-card--deliver {
  padding: 0;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 44%) 1fr;
  align-items: stretch;
}
.deliver-text {
  padding: 1.1rem 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  position: relative;
  z-index: 3;
}
.deliver-text h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #f5f7fa;
  margin: 0;
  line-height: 1.15;
}
.deliver-text p {
  font-size: .82rem;
  line-height: 1.45;
  color: #b8c0d0;
  margin: 0;
  max-width: 30ch;
}
.deliver-features {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.deliver-feat {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .36rem .6rem;
  border: 1px solid rgba(91,124,255,.18);
  background: linear-gradient(135deg, rgba(20,28,52,.65), rgba(14,18,38,.55));
  border-radius: 10px;
  font-size: .76rem;
  color: #b8c0d0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 0 22px rgba(91,124,255,.07);
}
.deliver-feat .deliver-ico {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(140,120,255,.3);
  background: radial-gradient(circle at 40% 30%, rgba(120,100,255,.28), rgba(20,24,52,.7));
  color: #b8c0d0;
  flex-shrink: 0;
}
.deliver-feat .deliver-ico svg { width: 14px; height: 14px; }
.deliver-feat strong {
  font-family: var(--display);
  color: #f5f7fa;
  font-weight: 700;
  margin-right: .2rem;
}

/* Globe stage */
.deliver-stage {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    radial-gradient(circle at 50% 50%, rgba(60,110,255,.20), transparent 55%),
    radial-gradient(circle at 50% 55%, rgba(170,80,255,.18), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(20,28,52,.4), transparent 80%);
}
.deliver-stage::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 82% 14%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 78%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 64% 86%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 92% 56%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 18% 56%, #fff 50%, transparent 51%);
  opacity: .4;
  animation: starsTwinkle 4s ease-in-out infinite;
}
@keyframes starsTwinkle {
  0%, 100% { opacity: .25; }
  50%      { opacity: .55; }
}
.deliver-globe {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 92%;
  height: 102%;
  animation: deliverBreathe 6s ease-in-out infinite;
}
@keyframes deliverBreathe {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(80,140,255,.35)) drop-shadow(0 0 70px rgba(61,220,154,.25)); }
  50%      { filter: drop-shadow(0 0 38px rgba(80,140,255,.55)) drop-shadow(0 0 100px rgba(61,220,154,.4)); }
}
.deliver-globe .globe-core { animation: globeSpin 36s linear infinite; transform-origin: 260px 260px; }
@keyframes globeSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.deliver-globe .globe-meridians { animation: globeSpin 24s linear infinite reverse; transform-origin: 260px 260px; }
.deliver-globe .globe-arc {
  stroke-dasharray: 6 9;
  animation: deliverDash 2.6s linear infinite;
}
.deliver-globe .globe-arc.a2 { animation-duration: 3.2s; animation-delay: .3s; }
.deliver-globe .globe-arc.a3 { animation-duration: 2.9s; animation-delay: .6s; }
.deliver-globe .globe-arc.a4 { animation-duration: 3.6s; animation-direction: reverse; }
.deliver-globe .globe-arc.a5 { animation-duration: 3.1s; animation-direction: reverse; animation-delay: .4s; }
@keyframes deliverDash {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -45; }
}
.deliver-globe .globe-node {
  transform-box: fill-box;
  transform-origin: center;
  animation: deliverNode 2.6s ease-in-out infinite;
}
.deliver-globe .globe-node.n2 { animation-delay: .25s; }
.deliver-globe .globe-node.n3 { animation-delay: .5s;  }
.deliver-globe .globe-node.n4 { animation-delay: .75s; }
.deliver-globe .globe-node.n5 { animation-delay: 1s;   }
.deliver-globe .globe-node.n6 { animation-delay: 1.25s;}
.deliver-globe .globe-node.n7 { animation-delay: 1.5s; }
.deliver-globe .globe-node.n8 { animation-delay: 1.75s;}
.deliver-globe .globe-node.n9 { animation-delay: 2s;   }
@keyframes deliverNode {
  0%, 100% { opacity: .8;  transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.35); }
}
.deliver-globe .globe-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: globeRing 3s ease-out infinite;
  opacity: 0;
}
.deliver-globe .globe-ring.r2 { animation-delay: 1s; }
.deliver-globe .globe-ring.r3 { animation-delay: 2s; }
@keyframes globeRing {
  0%   { transform: scale(.4); opacity: 0; }
  20%  { opacity: .9; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Cobe interactive globe */
.cobe-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  padding: 12px;
  container-type: size;
}
.cobe-canvas {
  /* square sized by the smaller of container width/height */
  width: min(100cqw, 100cqh);
  height: min(100cqw, 100cqh);
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  cursor: grab;
  opacity: 0;
  transition: opacity 1.2s ease;
  border-radius: 50%;
  touch-action: none;
  filter: drop-shadow(0 0 28px rgba(80,140,255,.35)) drop-shadow(0 0 80px rgba(61,220,154,.28));
}
.cobe-canvas:active { cursor: grabbing; }
.cobe-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cobe-label {
  position: absolute;
  top: 0;
  left: 0;
  /* anchor at marker; pull label up so its bottom is ~12px above the marker dot */
  transform: translate(-50%, calc(-100% - 12px));
  font-family: var(--display, ui-monospace, monospace);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f5f7fa;
  background: linear-gradient(135deg, rgba(40,18,60,.85), rgba(20,12,32,.92));
  border: 1px solid rgba(198,91,255,.35);
  padding: .22rem .5rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.35), 0 0 18px rgba(170,80,255,.18);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .35s ease;
}
.cobe-label.is-visible { opacity: 1; }

@media (max-width: 1024px) {
  .gf-card--deliver { grid-template-columns: 1fr; }
  .deliver-stage { min-height: 280px; }
}

/* ─── BULLETPROOF (DMCA-ignored) card ─────────────── */
.gf-card--bullet {
  padding: 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.gf-card--bullet .gf-tag-pill { align-self: flex-start; }
.gf-card--bullet h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #f5f7fa;
  margin: 0;
  line-height: 1.15;
}
.gf-card--bullet > p {
  font-size: .82rem;
  line-height: 1.45;
  color: #b8c0d0;
  margin: 0;
  max-width: 28ch;
}
.bullet-stage {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin: .1rem -.2rem .15rem;
  min-height: 90px;
  overflow: hidden;
}
.bullet-stage svg { width: 100%; height: 100%; max-height: 110px; display: block; }
.bullet-features {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.bullet-feat {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .36rem .6rem;
  border: 1px solid rgba(198,91,255,.22);
  background: linear-gradient(135deg, rgba(40,18,60,.55), rgba(20,12,32,.6));
  border-radius: 10px;
  font-size: .76rem;
  color: #b8c0d0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 0 22px rgba(170,80,255,.07);
}
.bullet-feat .bullet-ico {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(198,91,255,.32);
  background: radial-gradient(circle at 40% 30%, rgba(198,91,255,.28), rgba(28,16,46,.7));
  color: #b8c0d0;
  flex-shrink: 0;
}
.bullet-feat .bullet-ico svg { width: 14px; height: 14px; }
.bullet-feat strong {
  font-family: var(--display);
  color: #f5f7fa;
  font-weight: 700;
  margin-right: .15rem;
}

/* shield animations */
.bp-shield      { animation: bpPulse 3.4s ease-in-out infinite; }
@keyframes bpPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(123,60,255,.4)); }
  50%      { filter: drop-shadow(0 0 18px rgba(198,91,255,.85)); }
}
.bp-stamp       { animation: bpStamp 3.6s ease-in-out infinite; }
@keyframes bpStamp {
  0%, 70%, 100% { opacity: 0; }
  78%           { opacity: 1; }
  90%           { opacity: 1; }
}
.bp-ring        { transform-box: fill-box; transform-origin: 140px 100px; animation: bpRing 2.6s ease-out infinite; transform-origin: center; }
@keyframes bpRing {
  0%   { r: 24; opacity: .9; }
  100% { r: 72; opacity: 0; }
}
.bp-ring.r2 { animation-delay: 1.3s; }
.bp-spark   { animation: sparkBlink 2.2s ease-in-out infinite; }
.bp-spark:nth-of-type(2) { animation-delay: .4s; }
.bp-spark:nth-of-type(3) { animation-delay: .9s; }
.bp-spark:nth-of-type(4) { animation-delay: 1.4s; }
.bp-trace { stroke-dasharray: 4 6; animation: trustFlow 3.6s linear infinite; }
.bp-trace.t2 { animation-direction: reverse; animation-delay: .5s; }

@media (max-width: 1024px) {
  .gf-card--bullet { min-height: 0; }
}

/* ─── HOW IT WORKS ─────────────────────────────────── */
.hiw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hiw-steps { display: grid; gap: 1.75rem; }
.hiw-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  opacity: .35; transform: translateX(-20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.hiw-step.visible { opacity: 1; transform: translateX(0); }
.step-line {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-g);
  background: rgba(61,220,154,.06);
  color: var(--g);
  font-family: var(--mono); font-size: .78rem; font-weight: 600;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.step-connector {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--border-g), transparent);
  margin-top: .3rem;
}
.hiw-step:last-child .step-connector { display: none; }
.step-title { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: .35rem; }
.step-copy { font-size: .87rem; color: var(--text); line-height: 1.6; }
.hiw-visual {
  position: relative;
  border-radius: var(--r2);
  border: var(--card-border);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(61,220,154,.05), transparent 55%),
    radial-gradient(120% 100% at 100% 100%, rgba(91,124,255,.05), transparent 55%),
    linear-gradient(180deg, #11131a 0%, #0a0b10 100%);
  padding: 1.4rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex; flex-direction: column;
  min-height: 460px;
}
.hiw-visual::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background-image:
    linear-gradient(rgba(148,163,184,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.04) 1px, transparent 1px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 50%, #000 30%, transparent 85%);
          mask-image: radial-gradient(120% 90% at 50% 50%, #000 30%, transparent 85%);
  pointer-events: none;
}
.hiw-visual::after {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem; height: 1px;
  background: var(--card-edge-line);
  pointer-events: none;
}

/* Header */
.hiwv-head {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hiwv-title-row {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.hiwv-title-row::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--g); box-shadow: 0 0 10px var(--g);
  animation: hiwv-pulse 1.8s ease-in-out infinite;
}
@keyframes hiwv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .35; transform: scale(.7); }
}
.hiwv-traffic { display: flex; gap: 5px; }
.hiwv-traffic span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.hiwv-traffic span:nth-child(1) { background: rgba(255,95,86,.6); }
.hiwv-traffic span:nth-child(2) { background: rgba(255,189,46,.6); }
.hiwv-traffic span:nth-child(3) { background: rgba(39,201,63,.6); }

/* 3-cell metric strip */
.hiwv-metrics {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .55rem; margin-bottom: 1rem;
}
.hiwv-metric {
  padding: .7rem .8rem;
  border-radius: .55rem;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.015);
}
.hiwv-metric-k {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .35rem;
}
.hiwv-metric-v {
  font-family: var(--display); font-size: .92rem; font-weight: 700;
  color: #fff; letter-spacing: -.01em; line-height: 1;
}
.hiwv-metric-v.up { color: #3ddc9a; }

/* Pipeline rows: icon + text + meta + status */
.hiwv-pipeline {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: .45rem;
  flex: 1;
}
.board-row {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr auto auto;
  align-items: center;
  gap: .8rem;
  padding: .75rem .9rem;
  border-radius: .65rem;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(90deg, rgba(255,255,255,.018), rgba(255,255,255,.005));
  font-size: .82rem;
  overflow: hidden;
}
.board-row::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ca, #3ddc9a), var(--cb, #2bb27d));
  opacity: .8;
}
.board-icon {
  width: 22px; height: 22px;
  border-radius: 5px;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(160deg, var(--ca, #3ddc9a), var(--cb, #2bb27d));
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset;
}
.board-icon svg { width: 11px; height: 11px; }
.board-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.board-k {
  color: var(--muted); font-family: var(--mono);
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
}
.board-v {
  color: #fff; font-size: .82rem; font-weight: 500; line-height: 1.15;
}
.board-meta {
  font-family: var(--mono); font-size: .58rem;
  color: var(--muted); letter-spacing: .04em;
  white-space: nowrap;
}
.board-status {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--mono); font-size: .58rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .5rem;
  border-radius: 999px;
  background: rgba(61,220,154,.08);
  color: #3ddc9a;
  border: 1px solid rgba(61,220,154,.18);
  white-space: nowrap;
}
.board-status::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #3ddc9a; box-shadow: 0 0 6px #3ddc9a;
}
.board-status.queue {
  color: #fbbf24;
  background: rgba(251,191,36,.07);
  border-color: rgba(251,191,36,.2);
}
.board-status.queue::before { background: #fbbf24; box-shadow: 0 0 6px #fbbf24; }

/* Activity ticker */
.hiwv-foot {
  position: relative; z-index: 2;
  margin-top: 1rem; padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .08em; color: var(--muted);
}
.hiwv-foot strong { color: #fff; font-weight: 700; }
.hiwv-foot .hiwv-activity {
  display: inline-flex; align-items: center; gap: .4rem;
}
.hiwv-foot .hiwv-activity::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--g); box-shadow: 0 0 8px var(--g);
  animation: hiwv-pulse 1.4s ease-in-out infinite;
}

/* ─── RATES ────────────────────────────────────────── */
.rates-section {
  background: transparent;
}
.rates-bar-chart {
  display: flex; align-items: flex-end; gap: 1rem;
  height: 220px;
  margin-bottom: 3rem;
  padding: 0 .5rem;
}
.rate-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.rate-bar-label { font-family: var(--mono); font-size: .65rem; color: var(--muted); display: flex; gap: 4px;}
.rate-bar-container { width: 100%; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
.rate-bar {
  width: 100%;
  border-radius: .5rem .5rem 0 0;
  background: linear-gradient(to top, var(--g2), var(--g));
  height: 0;
  transition: height 1.2s var(--ease);
  position: relative;
  overflow: visible;
}
.rate-bar::after {
  content: attr(data-val);
  position: absolute;
  top: -1.5rem;
  left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-size: .75rem; font-weight: 700;
  color: var(--g); white-space: nowrap;
  opacity: 0; transition: opacity .5s .8s;
}
.rate-bar.grown::after { opacity: 1; }
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.rate-card {
  position: relative;
  padding: 1.55rem;
  border-radius: var(--r2);
  border: var(--card-border);
  background: var(--card-surface);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s var(--ease);
  cursor: auto;
  box-shadow: var(--card-shadow);
}
.rate-card::after {
  content: '';
  position: absolute;
  top: 0; left: 1.25rem; right: 1.25rem; height: 1px;
  background: var(--card-edge-line);
  pointer-events: none;
}
.rate-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.045), transparent 55%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.rate-card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}
.rate-card:hover::before { opacity: 1; }
.rate-tier {
  font-family: var(--mono); font-size: .68rem; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: .6rem;
}
.rate-value {
  font-family: var(--display); font-size: 2.2rem; font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: .15rem;
  display: block;
}
.rate-per { font-size: .75rem; color: var(--muted); margin-bottom: 1.25rem; }
.country-cloud { display: flex; flex-wrap: wrap; gap: .4rem; }
.cpill {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  font-size: .72rem; color: var(--text);
  transition: border-color .25s, background .25s;
}
.cpill:hover { border-color: var(--border-g); background: rgba(61,220,154,.05); }
.cflag img { width: 14px; height: 11px; border-radius: 2px; object-fit: cover; }

/* T6 (Global) — minimal stat block.
   "200+" hero number with rotating ticker of city names underneath. */
.t6-globe-wrap {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 178px;
  padding: 1rem 0 .5rem;
  position: relative;
  gap: .85rem;
}
.t6-hero {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}
.t6-hero-num {
  font-size: 4.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #b8c4d6 65%, #6c7a92 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 32px rgba(255,255,255,.06);
}
.t6-hero-plus {
  font-size: 2.4rem;
  color: var(--g);
  font-weight: 600;
  margin-left: -.05em;
}
.t6-hero-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.t6-hero-label::before,
.t6-hero-label::after {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,132,153,.55), transparent);
}
.t6-hero-sublabel {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: .25rem;
}
/* Rotating city ticker */
.t6-ticker {
  position: relative;
  width: 100%;
  height: 22px;
  overflow: hidden;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-soft);
  display: flex;
  justify-content: center;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
.t6-ticker-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  opacity: 0;
  animation: t6TickerCycle 16s infinite;
}
.t6-ticker-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px rgba(61,220,154,.6);
}
.t6-ticker-item:nth-child(1) { animation-delay: 0s; }
.t6-ticker-item:nth-child(2) { animation-delay: 2s; }
.t6-ticker-item:nth-child(3) { animation-delay: 4s; }
.t6-ticker-item:nth-child(4) { animation-delay: 6s; }
.t6-ticker-item:nth-child(5) { animation-delay: 8s; }
.t6-ticker-item:nth-child(6) { animation-delay: 10s; }
.t6-ticker-item:nth-child(7) { animation-delay: 12s; }
.t6-ticker-item:nth-child(8) { animation-delay: 14s; }
@keyframes t6TickerCycle {
  0%, 1%   { opacity: 0; transform: translateY(8px); }
  3%, 12%  { opacity: 1; transform: translateY(0); }
  13%, 14% { opacity: 0; transform: translateY(-8px); }
  100%     { opacity: 0; transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .t6-ticker-item { animation: none; opacity: 1; position: static; }
  .t6-ticker { height: auto; flex-wrap: wrap; gap: .5rem 1rem; justify-content: center; }
  .t6-ticker-item:not(:first-child) { display: none; }
}
.rate-card.tier1 {
  border-color: var(--card-border-accent);
  box-shadow:
    var(--card-shadow),
    0 0 32px rgba(61,220,154,.06);
}
.rate-card.tier1::after {
  background: linear-gradient(90deg, transparent, rgba(61,220,154,.45), transparent);
}
.rate-card.tier1 .rate-value {
  background: linear-gradient(135deg, #3ddc9a, #5fd4ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* PREMIUM PRICING */
.premium-section {
  overflow: hidden;
  background: transparent;
}
.premium-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.75rem;
}
.premium-head .section-copy { margin-top: .85rem; }
.premium-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(61,220,154,.18);
  background: rgba(61,220,154,.055);
  color: #9cf7d3;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.premium-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 14px rgba(61,220,154,.55);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.pricing-card {
  position: relative;
  min-height: 470px;
  padding: 1.65rem 1.55rem 1.55rem;
  border-radius: var(--r2);
  border: var(--card-border);
  background: var(--card-surface);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s var(--ease);
  cursor: auto;
}
.pricing-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,30%), rgba(255,255,255,.05), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.pricing-card::after {
  content: '';
  position: absolute;
  left: 1.5rem; right: 1.5rem; top: 0;
  height: 1px;
  background: var(--card-edge-line);
  pointer-events: none;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card.featured {
  border-color: var(--card-border-accent);
  background:
    radial-gradient(circle at 50% -10%, rgba(61,220,154,.14), transparent 55%),
    var(--card-surface);
  box-shadow:
    var(--card-shadow),
    0 0 48px rgba(61,220,154,.07);
}
.pricing-card.featured::after {
  background: linear-gradient(90deg, transparent, rgba(61,220,154,.55), rgba(91,124,255,.30), transparent);
}
.pricing-card.featured:hover {
  border-color: rgba(61,220,154,.42);
  box-shadow:
    var(--card-shadow-hover),
    0 0 64px rgba(61,220,154,.10);
}
.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .35rem .68rem;
  border-radius: 999px;
  border: 1px solid rgba(61,220,154,.28);
  background: linear-gradient(180deg, rgba(61,220,154,.14), rgba(61,220,154,.05));
  color: #9cf7d3;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 4px 12px rgba(0,0,0,.30),
    0 0 16px rgba(61,220,154,.10);
}
.pricing-eyebrow {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.pricing-name {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: .55rem;
}
.pricing-desc {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.65;
  min-height: 4.45rem;
  margin-bottom: 1.5rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: .45rem;
  margin-bottom: 1.35rem;
}
.pricing-price strong {
  font-family: var(--display);
  font-size: 2.65rem;
  line-height: 1;
  letter-spacing: -.045em;
  color: #fff;
}
.pricing-price span {
  color: var(--muted);
  font-size: .78rem;
}
.pricing-divider {
  height: 1px;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
}
.pricing-list {
  list-style: none;
  display: grid;
  gap: .72rem;
  margin-bottom: 1.65rem;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: .58rem;
  color: #c2cce0;
  font-size: .84rem;
  line-height: 1.45;
}
.pricing-check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: .05rem;
  color: #021008;
  background: linear-gradient(135deg, #3ddc9a, #5fd4ff);
  box-shadow: 0 0 16px rgba(61,220,154,.30);
}
.pricing-check svg {
  width: 11px;
  height: 11px;
}
.pricing-actions {
  margin-top: auto;
  display: grid;
  gap: .7rem;
}
.pricing-btn {
  --mag-x: 0px; --mag-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 700;
  font-size: .88rem;
  transition: transform .25s var(--ease-spring), border-color .25s, background .25s, color .25s, box-shadow .25s;
}
.pricing-btn.primary {
  color: #000000;
  background: linear-gradient(135deg, #3ddc9a, #5fd4ff);
  box-shadow: 0 14px 34px rgba(61,220,154,.28);
}
.pricing-btn.secondary {
  color: #e6ebf5;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
}
.pricing-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.28), transparent 34%);
  transform: scale(0);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.pricing-btn:hover { transform: translate(var(--mag-x), calc(var(--mag-y) - 2px)); }
.pricing-btn:active { transform: translate(var(--mag-x), 0); }
.pricing-btn.primary:hover { box-shadow: 0 18px 46px rgba(61,220,154,.40); }
.pricing-btn.secondary:hover {
  color: #fff;
  border-color: rgba(61,220,154,.28);
  background: rgba(61,220,154,.08);
}
.pricing-btn:hover::before {
  transform: scale(2.4);
  opacity: 1;
}
.pricing-note {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .04em;
  text-align: center;
}
/* FAQ */
#faq {
  background: transparent;
}
.faq-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.faq-head .kicker {
  display: inline-flex;
}
.faq-head .section-copy {
  margin: .9rem auto 1.45rem;
  text-align: center;
}
.faq-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .72rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(61,220,154,.2);
  background: rgba(61,220,154,.075);
  color: #9cf7d3;
  font-weight: 700;
  font-size: .84rem;
  transition: transform .25s var(--ease), border-color .25s, background .25s, box-shadow .25s;
}
.faq-help-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(61,220,154,.34);
  background: rgba(61,220,154,.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.28), 0 0 34px rgba(61,220,154,.08);
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1040px;
  margin: 0 auto;
}
.faq-col {
  display: grid;
  align-content: start;
  gap: .85rem;
}
.faq-item {
  position: relative;
  border-radius: var(--r);
  border: var(--card-border);
  background: var(--card-surface);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: border-color .3s, transform .3s var(--ease), box-shadow .35s var(--ease);
  cursor: auto;
}
.faq-item::after {
  content: '';
  position: absolute;
  top: 0; left: 1rem; right: 1rem; height: 1px;
  background: var(--card-edge-line);
  pointer-events: none;
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}
.faq-item.open {
  border-color: var(--card-border-accent);
  box-shadow:
    var(--card-shadow-hover),
    0 0 32px rgba(61,220,154,.06);
}
.faq-item.open::after {
  background: linear-gradient(90deg, transparent, rgba(61,220,154,.45), transparent);
}
.faq-q {
  width: 100%;
  border: 0;
  appearance: none;
  background: transparent;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.12rem 1.2rem;
  font-family: var(--display);
  font-weight: 600; font-size: .96rem; color: #f4f7fb;
  user-select: none;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s;
}
.faq-q:hover { background: rgba(255,255,255,.025); color: #fff; }
.faq-item.open .faq-q { background: rgba(61,220,154,.025); }
.faq-q:hover .faq-icon { border-color: rgba(61,220,154,.32); color: var(--g); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.11);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
  font-size: .8rem; color: var(--muted);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: rgba(61,220,154,.38); background: linear-gradient(135deg, rgba(61,220,154,.16), rgba(91,124,255,.08)); color: var(--g); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq-inner {
  min-height: 40px;
  padding: .95rem 1.2rem 1.2rem;
  font-size: .88rem; color: var(--text); line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,.075);
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .35s .1s var(--ease), transform .35s .1s var(--ease);
}
.faq-item.open .faq-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CTA ──────────────────────────────────────────── */
.cta-box {
  position: relative;
  border-radius: 2rem;
  border: var(--card-border);
  background: var(--card-surface);
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.cta-box:hover {
  border-color: rgba(61,220,154,.22);
  box-shadow:
    var(--card-shadow-hover),
    0 0 48px rgba(61,220,154,.10);
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(61,220,154,.10), transparent 70%),
    radial-gradient(ellipse 40% 50% at 85%   0%, rgba(91,124,255,.07),  transparent 70%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,220,154,.55), rgba(91,124,255,.35), transparent);
  pointer-events: none;
}
.cta-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; letter-spacing: -.04em;
  color: #fff; margin-bottom: 1rem;
}
.cta-copy { font-size: 1.1rem; color: var(--text); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.65; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── RATES ─ stats / modern chart-wrap / foot ───────── */
.rates-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .6rem; margin-bottom: 1.5rem;
}
.rates-stat {
  position: relative; overflow: hidden;
  padding: .9rem 1rem; border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
}
.rates-stat::after {
  content:''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,220,154,.4), transparent);
  opacity: .55;
}
.rates-stat-k {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .4rem;
}
.rates-stat-v {
  font-family: var(--display); font-size: 1.25rem; font-weight: 700;
  color: #fff; letter-spacing: -.015em; line-height: 1;
}
.rates-stat-v.g {
  background: linear-gradient(135deg, #3ddc9a, #5fd4ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rates-chart-wrap {
  position: relative;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(61,220,154,.04), transparent 55%),
    radial-gradient(100% 100% at 100% 100%, rgba(91,124,255,.04), transparent 55%),
    linear-gradient(180deg, #11131a 0%, #0a0b10 100%);
  padding: 1.4rem 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.rates-chart-wrap::before {
  content:''; position: absolute; left: 1.5rem; right: 1.5rem; top: 0; height: 1px;
  background: var(--card-edge-line); pointer-events: none;
}
.rates-chart-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem;
}
.rates-chart-eyebrow {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: .4rem;
}
.rates-chart-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--g); box-shadow: 0 0 8px var(--g);
}
.rates-chart-title {
  font-family: var(--display); font-size: 1.15rem; font-weight: 600;
  color: #fff; letter-spacing: -.01em; margin: 0;
}
.rates-chart-legend {
  display: flex; flex-wrap: wrap; gap: .65rem;
  font-family: var(--mono); font-size: .65rem; color: var(--muted);
  letter-spacing: .04em;
}
.rates-chart-legend span {
  display: inline-flex; align-items: center; gap: .35rem;
}
.rates-chart-legend i {
  width: 10px; height: 10px; border-radius: 2px; display: inline-block;
}
.rates-chart-wrap .rates-bar-chart {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1rem; height: 240px;
  padding: 0 .5rem 0 3.2rem;
  margin-bottom: 0;
  position: relative;
}
.rates-grid-lines {
  position: absolute; left: 0; right: .5rem; top: 0; bottom: 32px;
  pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between;
}
.rates-grid-lines span {
  position: relative; display: block; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.02) 70%, transparent);
}
.rates-grid-lines span::before {
  content: attr(data-v);
  position: absolute; left: 0; top: -7px;
  font-family: var(--mono); font-size: .58rem;
  color: rgba(148,163,184,.45); letter-spacing: .04em;
}
.rate-card .rate-rank {
  position: absolute;
  left: 0; top: 1.4rem;
  width: 3px; height: 28px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--ca), var(--cb));
  box-shadow: 0 0 14px color-mix(in srgb, var(--ca) 60%, transparent);
}
.rate-card .rate-rank-num {
  position: absolute;
  top: 1.05rem; right: 1.2rem;
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .12em; color: rgba(255,255,255,.28);
  text-transform: uppercase;
}
.rate-card.t1 .rate-rank-num { color: rgba(61,220,154,.55); }
.rate-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .85rem; padding-top: .8rem;
  border-top: 1px dashed rgba(255,255,255,.06);
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.rate-card-foot .country-count {
  display: inline-flex; align-items: center; gap: .35rem;
  color: #cbd5e1;
}
.rate-card-foot .country-count strong { color: #fff; font-weight: 700; }
.rate-card-foot .country-count::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ca), var(--cb));
  box-shadow: 0 0 8px color-mix(in srgb, var(--ca) 50%, transparent);
}

/* Qualified-view rule — prominent callout under tier cards.
   Uses brand green accent + mono badge to read as policy, not marketing. */
.rates-iprule {
  display: flex; align-items: center; gap: 1.1rem;
  max-width: 880px;
  margin: 2rem auto 0;
  padding: 1.1rem 1.3rem;
  border-radius: 14px;
  border: 1px solid rgba(61,220,154,.22);
  background:
    linear-gradient(135deg, rgba(61,220,154,.06), rgba(61,93,255,.025) 60%, transparent),
    var(--surface-1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 32px rgba(61,220,154,.06);
  position: relative;
  overflow: hidden;
}
.rates-iprule::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--g), transparent);
  opacity: .6;
}
.rates-iprule-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g);
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(61,220,154,.28);
  background: rgba(61,220,154,.07);
  white-space: nowrap;
}
.rates-iprule-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px var(--g);
  animation: pulse 2.4s ease infinite;
}
.rates-iprule-body {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: .005em;
}
.rates-iprule-body strong {
  color: #fff;
  font-weight: 600;
}
@media (max-width: 720px) {
  .rates-iprule {
    flex-direction: column;
    align-items: flex-start;
    gap: .7rem;
    padding: 1rem 1.1rem;
  }
  .rates-iprule-body { font-size: .85rem; }
}

.rates-foot {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.rates-foot-item {
  position: relative;
  padding: 1rem 1.1rem; border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.005));
  display: flex; align-items: flex-start; gap: .85rem;
}
.rates-foot-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(61,220,154,.08);
  border: 1px solid rgba(61,220,154,.22);
  color: var(--g);
}
.rates-foot-icon svg { width: 14px; height: 14px; }
.rates-foot-item h4 {
  font-family: var(--display); font-size: .9rem; font-weight: 600;
  color: #fff; margin: 0 0 .25rem;
}
.rates-foot-item p { margin: 0; font-size: .74rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 980px) {
  .rates-stats { grid-template-columns: repeat(2, 1fr); }
  .rates-foot { grid-template-columns: 1fr; }
}

/* ─── PREMIUM ─ summary / pricing-perday / feat-text / foot ─── */
.premium-summary {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .6rem; margin-bottom: 1.5rem;
}
.premium-summary-cell {
  position: relative; overflow: hidden;
  padding: .85rem 1rem; border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
}
.premium-summary-cell::after {
  content:''; position:absolute; left:0; right:0; bottom:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(61,220,154,.4), transparent);
  opacity: .55;
}
.premium-summary-k {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .35rem;
}
.premium-summary-v {
  font-family: var(--display); font-size: 1.1rem; font-weight: 700;
  color: #fff; letter-spacing: -.015em; line-height: 1;
}
.premium-summary-v.g {
  background: linear-gradient(135deg, #3ddc9a, #5fd4ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pricing-perday {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: .25rem;
  font-family: var(--mono); font-size: .62rem;
  color: var(--muted); letter-spacing: .06em;
}
.pricing-perday strong { color: #fff; font-weight: 700; }
.pricing-feature-icon {
  width: 18px; height: 18px;
  border-radius: 5px; flex: 0 0 auto;
  display: grid; place-items: center;
  margin-top: .05rem;
  color: var(--g);
  background: rgba(61,220,154,.08);
  border: 1px solid rgba(61,220,154,.22);
}
.pricing-feature-icon svg { width: 10px; height: 10px; }
.pricing-card.featured .pricing-feature-icon {
  color: #fff;
  background: linear-gradient(135deg, rgba(61,220,154,.32), rgba(91,124,255,.22));
  border-color: rgba(61,220,154,.4);
}
.pricing-list li .pricing-feat-text {
  display: flex; flex-direction: column; gap: 1px;
}
.pricing-list li .pricing-feat-text small {
  font-family: var(--mono); font-size: .6rem;
  color: var(--muted); letter-spacing: .04em;
}
.premium-foot {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 1.5rem;
}
.premium-foot-item {
  position: relative;
  padding: 1rem 1.1rem; border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.005));
  display: flex; align-items: flex-start; gap: .85rem;
}
.premium-foot-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(61,220,154,.08);
  border: 1px solid rgba(61,220,154,.22);
  color: var(--g);
}
.premium-foot-icon svg { width: 14px; height: 14px; }
.premium-foot-item h4 {
  font-family: var(--display); font-size: .9rem; font-weight: 600;
  color: #fff; margin: 0 0 .25rem;
}
.premium-foot-item p { margin: 0; font-size: .74rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 980px) {
  .premium-summary { grid-template-columns: repeat(2, 1fr); }
  .premium-foot { grid-template-columns: 1fr; }
}

/* ─── FAQ ─ head / help-btn / numbered + categorized items ─── */
.faq-head {
  max-width: 720px; margin: 0 auto 3rem;
  text-align: center;
}
.faq-head .kicker { display: inline-flex; }
.faq-head .section-copy { margin: .9rem auto 1.45rem; text-align: center; }
.faq-help-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: .72rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(61,220,154,.2);
  background: rgba(61,220,154,.075);
  color: #9cf7d3;
  font-weight: 700; font-size: .84rem;
  transition: transform .25s var(--ease), border-color .25s, background .25s, box-shadow .25s;
}
.faq-help-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(61,220,154,.34);
  background: rgba(61,220,154,.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.28), 0 0 34px rgba(61,220,154,.08);
}
.faq-item { --faq-a: #3ddc9a; --faq-b: #5fd4ff; }
.faq-item .faq-cat {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--mono);
  font-size: .55rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .25rem .5rem .25rem .42rem;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--faq-a) 25%, transparent);
  background: color-mix(in srgb, var(--faq-a) 7%, transparent);
  color: color-mix(in srgb, var(--faq-a) 60%, #fff);
  flex-shrink: 0;
}
.faq-item .faq-cat::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: linear-gradient(135deg, var(--faq-a), var(--faq-b));
  box-shadow: 0 0 6px color-mix(in srgb, var(--faq-a) 60%, transparent);
}
.faq-q { gap: .9rem; }
.faq-q-text {
  display: flex; align-items: center; gap: .7rem;
  flex: 1; text-align: left;
}
.faq-q-num {
  font-family: var(--mono);
  font-size: .58rem; letter-spacing: .1em;
  color: var(--muted);
  flex-shrink: 0; min-width: 1.6rem;
}
.faq-item.open .faq-q-num { color: color-mix(in srgb, var(--faq-a) 70%, #fff); }
.faq-item.cat-platform   { --faq-a: #3ddc9a; --faq-b: #5fd4ff; }
.faq-item.cat-monetize   { --faq-a: #5fd4ff; --faq-b: #5b7cff; }
.faq-item.cat-premium    { --faq-a: #7b5fff; --faq-b: #5fd4ff; }
.faq-item.cat-control    { --faq-a: #3ddc9a; --faq-b: #7b5fff; }
.faq-item.open {
  border-color: color-mix(in srgb, var(--faq-a) 35%, transparent);
  box-shadow: var(--card-shadow-hover), 0 0 32px color-mix(in srgb, var(--faq-a) 8%, transparent);
}
.faq-item.open::after {
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--faq-a) 55%, transparent), color-mix(in srgb, var(--faq-b) 35%, transparent), transparent);
}
.faq-item.open .faq-icon {
  border-color: color-mix(in srgb, var(--faq-a) 40%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--faq-a) 18%, transparent), color-mix(in srgb, var(--faq-b) 8%, transparent));
  color: color-mix(in srgb, var(--faq-a) 70%, #fff);
}

/* ─── CTA ─ ambient bg / status pill / trust strip ─────── */
.cta-box { isolation: isolate; }
.cta-box > *:not(.cta-bg) { position: relative; z-index: 2; }
.cta-bg {
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.cta-grid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .8;
  mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, #000 30%, transparent 75%);
}
/* Static CTA glow — animating two 320px elements with filter:blur(80px)
   was the heaviest paint on the page. The radial gradient alone reads
   as "glow" without the blur filter. */
.cta-orb {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  opacity: .55;
  pointer-events: none;
}
.cta-orb-g {
  background: radial-gradient(circle, rgba(61,220,154,.42) 0%, transparent 65%);
  top: -100px; left: -80px;
}
.cta-orb-b {
  background: radial-gradient(circle, rgba(91,124,255,.36) 0%, transparent 65%);
  bottom: -120px; right: -100px;
}
.cta-status {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .8rem .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(61,220,154,.28);
  background: linear-gradient(135deg, rgba(61,220,154,.10), rgba(91,124,255,.05));
  font-family: var(--mono);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: #cfead8;
  margin-bottom: 1.4rem;
  box-shadow: 0 0 22px rgba(61,220,154,.10);
}
.cta-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3ddc9a;
  box-shadow: 0 0 10px #3ddc9a, 0 0 18px rgba(61,220,154,.6);
  animation: ctaStatusPulse 1.6s ease-in-out infinite;
}
.cta-status-txt { color: #b8d6c4; }
@keyframes ctaStatusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}
.cta-kicker { margin-bottom: 1.25rem; }
.cta-trust {
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap; gap: 1.4rem 0;
  margin-top: 2.4rem; padding-top: 2rem;
  border-top: 1px dashed rgba(255,255,255,.07);
}
.cta-trust-item {
  display: flex; align-items: center; gap: .65rem;
  padding: 0 1.6rem; text-align: left;
}
.cta-trust-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  border: 1px solid rgba(61,220,154,.22);
  background: linear-gradient(135deg, rgba(61,220,154,.10), rgba(91,124,255,.05));
  color: #3ddc9a;
  flex-shrink: 0;
}
.cta-trust-icon svg { width: 16px; height: 16px; }
.cta-trust-text { display: flex; flex-direction: column; line-height: 1.15; }
.cta-trust-text strong {
  font-family: var(--display);
  font-size: .92rem; font-weight: 700;
  color: #fff; letter-spacing: -.01em;
}
.cta-trust-text span {
  font-family: var(--mono);
  font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
  margin-top: .15rem;
}
.cta-trust-sep {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.10), transparent);
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .cta-trust { gap: 1rem; }
  .cta-trust-item { padding: 0 .8rem; flex: 1 1 calc(50% - 1.6rem); min-width: 160px; }
  .cta-trust-sep { display: none; }
}

/* ─── FOOTER ───────────────────────────────────────── */
footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(61,93,255,.12);
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, rgba(4,7,14,.92), rgba(2,4,8,.96));
}
footer::before {
  content:'';position:absolute;top:0;left:0;right:0;height:1px;
  background: linear-gradient(90deg, transparent, var(--g), var(--b), var(--p), transparent);
  opacity: .55;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand {
  font-family: var(--brand);
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff; display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1rem;
}
.footer-brand-dot { width:8px;height:8px;border-radius:50%;background:var(--g);box-shadow:0 0 8px var(--g);animation:pulse 2.5s infinite; }
.footer-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; max-width: 280px; margin-bottom: 1.25rem; }
.footer-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.fchip {
  padding: .25rem .65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: .7rem; color: var(--muted);
}
.footer-col-title { font-size: .72rem; color: var(--g); font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .85rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-link {
  position: relative;
  display: inline-block;
  font-size: .85rem;
  color: var(--muted);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer-link::before {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, var(--g), transparent);
  transition: right .35s var(--ease);
}
.footer-link:hover { color: #fff; }
.footer-link:hover::before { right: 30%; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: .78rem; color: var(--muted);
  flex-wrap: wrap; gap: 1rem;
}
.footer-legal-strip { display: inline-flex; gap: 1.1rem; flex-wrap: wrap; font-family: var(--mono); font-size: .7rem; }
.footer-legal-strip .footer-link { color: var(--muted); }
.footer-legal-strip .footer-link:hover { color: var(--g); }

/* ─── SCROLL REVEAL ──────────────────────────────────
   Smooth, lively reveal: blur + scale + slide,
   creates a sense of elements "settling into place" */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(.95);
  filter: blur(8px);
  transition:
    opacity .9s cubic-bezier(.22,1,.36,1),
    transform .9s cubic-bezier(.22,1,.36,1),
    filter .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }
.reveal-d6 { transition-delay: .48s; }

/* ─── LIVING ELEMENTS ────────────────────────────────
   Subtle, persistent motion so the page feels alive
   even when the user isn't scrolling. */

/* Kicker pills — gentle breath + dot pulse already built in */
.kicker {
  animation: kickerBreath 3.2s ease-in-out infinite;
}
@keyframes kickerBreath {
  0%, 100% {
    box-shadow: 0 0 18px rgba(61,220,154,.06);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 36px rgba(61,220,154,.32), 0 0 70px rgba(61,220,154,.12);
    transform: translateY(-2px);
  }
}

/* Cards — extremely subtle float, tiny offset per card via nth-child */
/* Cards — static (no float). Internal animations (icons, kpis,
   bullets, rate bars, fviz illustrations) keep playing. */
.card, .gf-card, .pricing-card, .rate-card {
  animation: none;
}
@keyframes cardFloat {
  0%   { transform: translateY(0)    rotate(0); }
  25%  { transform: translateY(-7px) rotate(.15deg); }
  50%  { transform: translateY(-10px) rotate(0); }
  75%  { transform: translateY(-5px)  rotate(-.15deg); }
  100% { transform: translateY(0)     rotate(0); }
}
/* Hover overrides float so transition feels intentional */
.card:hover, .gf-card:hover, .pricing-card:hover, .rate-card:hover {
  animation-play-state: paused;
}

/* Card icons — soft inner glow pulse */
.card-icon {
  position: relative;
  animation: iconGlow 3.8s ease-in-out infinite;
}
@keyframes iconGlow {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.08),
      inset 0 -1px 0 rgba(0,0,0,.40),
      0 4px 12px rgba(0,0,0,.35),
      0 0 0 rgba(61,220,154,0);
    transform: rotate(0) scale(1);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.18),
      inset 0 -1px 0 rgba(0,0,0,.40),
      0 8px 24px rgba(0,0,0,.45),
      0 0 38px rgba(61,220,154,.42);
    transform: rotate(2deg) scale(1.06);
  }
}

/* Card titles get a barely-perceptible warmth shift on hover */
.card:hover .card-title,
.gf-card:hover .gf-card-title { color: #fff; }

/* Section titles — subtle gradient shift on the .grad span */
.grad, .grad-cy-pu {
  background-size: 200% 200%;
  animation: gradShift 9s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Hero badge — soft drift glow */
.hero-badge {
  animation: heroBadgeGlow 3.4s ease-in-out infinite;
}
@keyframes heroBadgeGlow {
  0%, 100% {
    box-shadow: 0 0 22px rgba(61,220,154,.06);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 46px rgba(61,220,154,.32), 0 0 80px rgba(91,124,255,.18);
    transform: translateY(-3px);
  }
}

/* Primary button — continuous shimmer sweep so CTA never feels static */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,255,255,.55) 50%,
    transparent 70%);
  background-size: 220% 100%;
  background-position: -120% 0;
  animation: btnShimmer 2.6s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}
@keyframes btnShimmer {
  0%, 100% { background-position: -120% 0; }
  50%      { background-position:  220% 0; }
}

/* Stat numbers — gentle scale breath */
.stat-val, .proof-num, .gf-kpi-v {
  display: inline-block;
  transform-origin: center;
  animation: statBreath 5.5s ease-in-out infinite;
}
.proof-item:nth-child(2) .proof-num,
.hero-stats > div:nth-child(2) .stat-val,
.gf-kpi-cell:nth-child(2) .gf-kpi-v { animation-delay: -1.8s; }
.proof-item:nth-child(3) .proof-num,
.hero-stats > div:nth-child(3) .stat-val,
.gf-kpi-cell:nth-child(3) .gf-kpi-v { animation-delay: -3.6s; }
.proof-item:nth-child(4) .proof-num,
.hero-stats > div:nth-child(4) .stat-val,
.gf-kpi-cell:nth-child(4) .gf-kpi-v { animation-delay: -2.5s; }
@keyframes statBreath {
  0%, 100% { transform: scale(1);     text-shadow: 0 0 0 rgba(255,255,255,0); }
  50%      { transform: scale(1.06);  text-shadow: 0 0 26px rgba(61,220,154,.45), 0 0 12px rgba(255,255,255,.25); }
}

/* Card-num labels (A — STREAMING etc) — dim/bright cycle */
.card-num {
  animation: numFlicker 4.8s ease-in-out infinite;
}
@keyframes numFlicker {
  0%, 100% { opacity: 1;   text-shadow: 0 0 0 rgba(61,220,154,0); }
  50%      { opacity: .82; text-shadow: 0 0 8px rgba(61,220,154,.4); }
}

/* Tag chips (gf-tag, etc) — slow border pulse */
.gf-tag {
  animation: tagPulse 3.6s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% {
    border-color: rgba(61,220,154,.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 0 18px rgba(61,220,154,.08);
  }
  50% {
    border-color: rgba(61,220,154,.40);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 28px rgba(61,220,154,.20);
  }
}

/* gf-icon SVG icons — subtle drop-shadow pulse */
.gf-icon {
  animation: gfIconPulse 4s ease-in-out infinite;
}
@keyframes gfIconPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(61,220,154,.35)); }
  50%      { filter: drop-shadow(0 0 14px rgba(61,220,154,.60)); }
}

/* Bullets — staggered shimmer along the dot */
.gf-card-bullets li::before {
  animation: bulletPulse 2.8s ease-in-out infinite;
}
.gf-card-bullets li:nth-child(2)::before { animation-delay: -.7s; }
.gf-card-bullets li:nth-child(3)::before { animation-delay: -1.4s; }
.gf-card-bullets li:nth-child(4)::before { animation-delay: -2.1s; }
@keyframes bulletPulse {
  0%, 100% { box-shadow: 0 0 8px var(--glow-g); }
  50%      { box-shadow: 0 0 14px var(--glow-g), 0 0 22px rgba(61,220,154,.35); }
}

/* ─── DYNAMIC GRAPHICS — bars, charts, sparks ─── */

/* Rate bars — continuous wobble simulating live data */
.rate-bar.grown {
  animation: rateBarPulse 3.4s ease-in-out infinite;
  transform-origin: bottom center;
}
.rate-bar.grown::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255,255,255,.35) 0%,
    rgba(255,255,255,0) 40%);
  pointer-events: none;
  animation: rateBarShine 2.6s ease-in-out infinite;
}
.rates-bar-chart .rate-bar-wrap:nth-child(2) .rate-bar.grown { animation-delay: -.3s; }
.rates-bar-chart .rate-bar-wrap:nth-child(3) .rate-bar.grown { animation-delay: -.6s; }
.rates-bar-chart .rate-bar-wrap:nth-child(4) .rate-bar.grown { animation-delay: -.9s; }
.rates-bar-chart .rate-bar-wrap:nth-child(5) .rate-bar.grown { animation-delay: -1.2s; }
.rates-bar-chart .rate-bar-wrap:nth-child(6) .rate-bar.grown { animation-delay: -1.5s; }
@keyframes rateBarPulse {
  0%, 100% { transform: scaleY(1)     translateY(0); filter: brightness(1); }
  50%      { transform: scaleY(1.025) translateY(-2px); filter: brightness(1.18); }
}
@keyframes rateBarShine {
  0%, 100% { opacity: .3; }
  50%      { opacity: .9; }
}

/* Rate-rank bullets — pulsing tier indicator */
.rate-card .rate-rank {
  animation: rateRankPulse 2.6s ease-in-out infinite;
}
.rate-card.t2 .rate-rank { animation-delay: -.4s; }
.rate-card.t3 .rate-rank { animation-delay: -.8s; }
.rate-card.t4 .rate-rank { animation-delay: -1.2s; }
.rate-card.t5 .rate-rank { animation-delay: -1.6s; }
.rate-card.t6 .rate-rank { animation-delay: -2.0s; }
@keyframes rateRankPulse {
  0%, 100% { box-shadow: 0 0 14px color-mix(in srgb, var(--ca) 60%, transparent); transform: translateX(0); }
  50%      { box-shadow: 0 0 26px color-mix(in srgb, var(--ca) 90%, transparent), 0 0 44px color-mix(in srgb, var(--ca) 40%, transparent); transform: translateX(2px); }
}

/* Rate values — counter-style breathe + glow */
.rate-value {
  display: inline-block;
  animation: rateValueBreath 4s ease-in-out infinite;
  transform-origin: left center;
}
.rate-card.t2 .rate-value { animation-delay: -.5s; }
.rate-card.t3 .rate-value { animation-delay: -1s; }
.rate-card.t4 .rate-value { animation-delay: -1.5s; }
.rate-card.t5 .rate-value { animation-delay: -2s; }
.rate-card.t6 .rate-value { animation-delay: -2.5s; }
@keyframes rateValueBreath {
  0%, 100% { transform: scale(1);    filter: brightness(1); }
  50%      { transform: scale(1.04); filter: brightness(1.18); }
}

/* Country count dot — live indicator */
.rate-card-foot .country-count::before {
  animation: liveDot 1.6s ease-in-out infinite;
}
@keyframes liveDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,220,154,.6); transform: scale(1); }
  50%      { box-shadow: 0 0 0 6px rgba(61,220,154,0); transform: scale(1.3); }
}

/* Pricing card prices — breathe */
.pricing-price {
  display: inline-block;
  animation: rateValueBreath 4.6s ease-in-out infinite;
  transform-origin: left center;
}
.pricing-card:nth-child(2) .pricing-price { animation-delay: -1.5s; }
.pricing-card:nth-child(3) .pricing-price { animation-delay: -3s; }

/* Hero title typewriter cursor — already blinks; add scale */
.typewriter-cursor {
  animation: blink .85s step-end infinite, cursorGlow 2s ease-in-out infinite;
}
@keyframes cursorGlow {
  0%, 100% { box-shadow: 0 0 6px var(--g); }
  50%      { box-shadow: 0 0 14px var(--g), 0 0 26px rgba(61,220,154,.5); }
}

/* CPM bars (already animated) — boost intensity */
.cpm-bar {
  animation: cpmBar 1.8s ease-in-out infinite !important;
}

/* Section background ambient glow — subtle radial pulse on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(61,220,154,.04), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(91,124,255,.04), transparent 50%);
  animation: ambientShift 14s ease-in-out infinite;
  z-index: 0;
}
@keyframes ambientShift {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}

/* Note: the "living motion layer" above is part of the page's
   identity. Per-component reduced-motion handling lives near each
   feature (embers, halos, ad-attacks, etc.). We do NOT bulk-kill
   the gentle card float / kicker breath / button shimmer here. */

/* ─── TYPEWRITER ───────────────────────────────────── */
.typewriter-cursor {
  display: inline-block;
  width: 3px; height: .85em;
  background: var(--g);
  animation: blink .85s step-end infinite;
  margin-left: 2px; vertical-align: text-bottom;
}
@keyframes blink { 0%,100% {opacity:1;} 50% {opacity:0;} }

/* ─── RESPONSIVE ───────────────────────────────────── */
/* ─── Tablet landscape (≤1024) ───────────────────────── */
@media (max-width: 1024px) {
  .hiw-grid       { grid-template-columns: 1fr; }
  .hiw-visual     { display: none; }
  .pricing-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gf-grid > .gf-card,
  .gf-grid > .gf-card--wide { grid-column: span 3; }
  .footer-grid    { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
}

/* ─── Hero stack point (≤960) — runic shader below copy ── */
@media (max-width: 960px) {
  .hero-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
  .runic-shader-wrap  { max-width: 480px; aspect-ratio: 1 / 1; min-width: 0; margin: 0 auto; }
  .hero-stats         { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ─── Tablet portrait / large phone (≤860) ──────────── */
@media (max-width: 860px) {
  .rates-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid   { grid-template-columns: 1fr; }
  .premium-head   { align-items: flex-start; flex-direction: column; }
  .faq-list       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr 1fr; gap: 1.75rem; }
  .nav-pill       { max-width: calc(100vw - 1.5rem); }
  .nav-pill .nav-link { display: none; }
  .nav-sep        { display: none; }
  .gf-grid        { grid-template-columns: 1fr; }
  .gf-grid > .gf-card,
  .gf-grid > .gf-card--wide { grid-column: span 1; }
  .gf-card--deliver { grid-template-columns: 1fr; }
  .cta-grid       { grid-template-columns: 1fr; }
  .proof-grid     { gap: 2.5rem; }
}

/* ─── Phone (≤600) ──────────────────────────────────── */
@media (max-width: 600px) {
  .wrap           { padding: 0 1rem; }
  .section        { padding: 4.5rem 0; }
  .hero           { min-height: 100svh; padding: 7rem 0 3.5rem; }
  .hero-title     { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .typewriter-line{ font-size: clamp(2.05rem, 11vw, 2.7rem); }
  .hero-sub       { font-size: 1rem; }
  .hero-btns      { gap: .75rem; flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats     { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; padding-top: 1.5rem; }
  .stat-val       { font-size: 1.4rem; }

  /* runic shader gets a tighter ceiling on phones so it doesn't dwarf copy */
  .runic-shader-wrap { max-width: 360px; }

  .proof-bar      { padding: 1.5rem 0; }
  .proof-grid     { gap: 1.75rem; }
  .proof-num      { font-size: 1.6rem; }

  .rates-grid     { grid-template-columns: 1fr; gap: 1rem; }
  .rate-card      { padding: 1.4rem 1.25rem; }
  .rates-bar-chart{ display: none; }
  .rates-stats    { grid-template-columns: 1fr; gap: 1rem; }
  .rates-foot     { grid-template-columns: 1fr; }

  .pricing-card   { min-height: auto; padding: 1.4rem; }
  .pricing-desc   { min-height: auto; }
  .premium-summary{ grid-template-columns: 1fr; gap: 1rem; }
  .premium-foot   { grid-template-columns: 1fr; }

  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-grid > :first-child { grid-column: 1 / -1; }   /* brand column full-width */

  .cta-box        { padding: 3rem 1.5rem; }

  /* nav sizing */
  .nav-pill       { padding: .55rem .85rem; }
  .nav-brand      { font-size: 1rem; }
}

/* ─── Small phone (≤420) ───────────────────────────── */
@media (max-width: 420px) {
  .wrap           { padding: 0 .85rem; }
  .section        { padding: 4rem 0; }
  .hero           { padding: 6rem 0 3rem; }
  .hero-stats     { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-val       { font-size: 1.25rem; }
  .runic-shader-wrap { max-width: 300px; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .pricing-card   { padding: 1.2rem; }
  .rate-card      { padding: 1.2rem 1rem; }
  .cta-box        { padding: 2.4rem 1.2rem; }
  .proof-num      { font-size: 1.4rem; }
}

@media (hover: none), (pointer: coarse) {
  body, a, button, .faq-item, .faq-q, .card, .rate-card, .pricing-card, .footer-link {
    cursor: auto !important;
  }
}

/* ════════════════════════════════════════════════════════════
   PERFORMANCE — SADECE browser hint'leri. HİÇBİR animasyon,
   transition, filter, blur, shadow değişmez. Sadece browser'a
   "bu kısmı şu şekilde işle" diyoruz; visual çıktı bire bir aynı.
   ──────────────────────────────────────────────────────────── */

/* 1) Off-screen section'lar render skip — viewport dışında olan
      section'ları browser çizmiyor. Scroll dramatik şekilde akıcı. */
@supports (content-visibility: auto) {
  #benefits, #how-it-works, #features, #rates,
  #premium, #faq, #start-uploading, footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 1200px;
  }
}

/* 2) Card-level containment — kart hover/transform değişiklikleri
      parent layout'a propagate olmuyor. Repaint scope dar. */
.gf-card, .rate-card, .pricing-card, .faq-item,
.mm-tier, .mm-prog, .mm-step, .mm-rule-card, .mm-detail-card,
.testimonial, .stat-item {
  contain: layout paint;
}

/* 3) GPU layer promotion — animated element'ler compositor layer'ında.
      translateZ(0) tek bir matrix, görsel etkisi yok.
      .nav-pill ve .nav-btn HARIÇ — onların translateX centering transform'u
      var, buradan tekrar transform vermek override edip nav'ı off-center
      bırakır. nav-pill'in translateZ'si base CSS'inde translateX ile
      combine edilmiş durumda. */
.btn-primary, .btn-secondary,
.gf-card, .rate-card, .pricing-card, .reveal,
.hls-cloud, .hls-play, .hls-rate, .hls-stats {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 4) Reveal animation: will-change only WHILE animating in.
   The .visible class is what the JS adds. Once it's set, free
   the GPU layer so we don't keep 55 promoted layers in memory. */
.reveal:not(.visible) { will-change: transform, opacity; }
.reveal.visible       { will-change: auto; }

/* ─── Skip-to-content link — visually hidden until focused ─── */
.skip-link {
  position: fixed;
  top: 0; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2000;
  padding: .55rem 1.1rem;
  border-radius: 0 0 .9rem .9rem;
  background: var(--g);
  color: #021008;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); outline: 0; }
.rate-card-top{
    margin-bottom: 4px;
}
.rate-tier-badge{
    display: flex;
    gap: 4px;
}