/* ═══════════════════════════════════════════
   RANKGROW — Enterprise Design System
   Glassmorphism · Animations · Dark
═══════════════════════════════════════════ */

/* ── CSS @property for rotating ring + heading shimmer ── */
@property --shimmer-pos {
  syntax: '<percentage>';
  initial-value: -50%;
  inherits: false;
}
@property --ring-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@property --ring-angle-b {
  syntax: '<angle>';
  initial-value: 180deg;
  inherits: false;
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(136,153,180,.35); border-radius: 4px; }

/* ── Glassmorphism util ─────────────────── */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(32px) saturate(2);
  -webkit-backdrop-filter: blur(32px) saturate(2);
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.15),
    0 8px 32px rgba(0,0,0,.3);
}

/* ── Layout ─────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Gradient text ──────────────────────── */
.grad-text {
  background: linear-gradient(135deg, var(--accent-from) 0%, var(--accent-to) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  border-radius: 8px;
  font-size: 14px; font-weight: 600; color: #0a0a0c;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 0 28px rgba(200,212,224,.18), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.25) 0%, transparent 60%);
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(200,212,224,.3), inset 0 1px 0 rgba(255,255,255,.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text);
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .18s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); transform: translateY(-2px); }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }

/* ═══════════════════════════════════════════
   ORB BACKGROUND
═══════════════════════════════════════════ */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
  animation: orb-drift 16s ease-in-out infinite alternate;
}
.orb-1 { width: 800px; height: 800px; top: -250px; left: -200px;
  background: radial-gradient(circle, rgba(90,110,160,.45) 0%, rgba(60,80,130,.2) 40%, transparent 70%);
  animation-duration: 18s; }
.orb-2 { width: 600px; height: 600px; top: 60px; right: -150px;
  background: radial-gradient(circle, rgba(160,180,210,.3) 0%, rgba(120,140,180,.12) 40%, transparent 70%);
  animation-duration: 22s; animation-delay: -8s; }
.orb-3 { width: 500px; height: 500px; bottom: -50px; left: 45%;
  background: radial-gradient(circle, rgba(80,120,170,.25) 0%, transparent 65%);
  animation-duration: 26s; animation-delay: -14s; }

@keyframes orb-drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px,-50px) scale(1.06); }
  100% { transform: translate(-30px,30px) scale(.94); }
}

/* ── Grid background ────────────────────── */
.grid-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 10%, black 20%, transparent 100%);
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 24px;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,16,.75);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  height: 64px; display: flex; align-items: center; gap: 0;
}
.logo { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 17px; letter-spacing: -.3px; }
.logo-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  border-radius: 7px; display: grid; place-items: center;
  font-size: 13px; color: #0a0a0c;
  box-shadow: 0 0 16px rgba(200,212,224,.25);
}
.nav-links { display: flex; gap: 2px; margin-left: 32px; }
.nav-links a {
  padding: 7px 13px; font-size: 14px; color: var(--muted);
  border-radius: 7px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-end { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-signin { font-size: 14px; color: var(--muted); padding: 7px 14px; border-radius: 7px; transition: color .15s; }
.nav-signin:hover { color: var(--text); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  padding: 0 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Hero pills */
.hero-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: center;
}
.hpill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(248,250,252,0.6);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  animation: pill-glow-cycle 6s ease-in-out infinite;
}
.hpill:nth-child(2) { animation-delay: 1.5s; }
.hpill:nth-child(3) { animation-delay: 3s; }
.hpill:nth-child(4) { animation-delay: 4.5s; }

/* sweep shine */
.hpill::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
  animation: pill-shine 6s ease-in-out infinite;
  pointer-events: none;
}
.hpill:nth-child(2)::before { animation-delay: 1.5s; }
.hpill:nth-child(3)::before { animation-delay: 3s; }
.hpill:nth-child(4)::before { animation-delay: 4.5s; }

@keyframes pill-shine {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 1; }
  40%  { left: 140%; opacity: 0; }
  100% { left: 140%; opacity: 0; }
}

@keyframes pill-glow-cycle {
  0%   { border-color: rgba(255,255,255,0.1);  color: rgba(248,250,252,0.6);  box-shadow: none; }
  15%  { border-color: rgba(200,212,224,0.45); color: rgba(248,250,252,0.95); box-shadow: 0 0 12px rgba(180,200,230,0.2), inset 0 0 8px rgba(200,215,240,0.06); }
  30%  { border-color: rgba(255,255,255,0.1);  color: rgba(248,250,252,0.6);  box-shadow: none; }
  100% { border-color: rgba(255,255,255,0.1);  color: rgba(248,250,252,0.6);  box-shadow: none; }
}

.hpill svg {
  flex-shrink: 0;
  color: rgba(200,212,224,0.7);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(200,212,224,.07);
  border: 1px solid rgba(200,212,224,.2);
  border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--accent-to);
  letter-spacing: .3px; margin-bottom: 24px;
}
.pulse-dot {
  width: 7px; height: 7px; background: var(--accent-to); border-radius: 50%;
  position: relative; flex-shrink: 0;
}
.pulse-dot::before {
  content: ''; position: absolute; inset: -3px;
  background: var(--accent-to); border-radius: 50%; opacity: .3;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  to { transform: scale(2.8); opacity: 0; }
}

.hero-text { text-align: center; max-width: 800px; position: relative; z-index: 1; }
.hero-h1 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300; letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 32px rgba(200,212,224,.14));
}

/* Sweep-shine on the main heading line */
.shine-text {
  background: linear-gradient(to right,
    #888  0%,
    #fff  10%,
    #bbb  20%,
    #888  100%
  );
  background-position: 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-shine 6s infinite linear;
}
@keyframes hero-shine {
  0%   { background-position: 0; }
  60%  { background-position: 700px; }
  100% { background-position: 700px; }
}

.hero-p {
  font-size: 18px; color: var(--muted); line-height: 1.7;
  max-width: 580px; margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

/* ── Hero body (single column, centered) ── */
.hero-body {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 140px 24px 60px;
}

/* ─────────────────────────────────────────
   CARD SLIDER (hero)
───────────────────────────────────────── */
.hero-slider {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-slider::before,
.hero-slider::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 20;
  pointer-events: none;
}
.hero-slider::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0c, transparent);
}
.hero-slider::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0c, transparent);
}

.eng-slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
}

.eng-slider .list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.eng-slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: engAutoRun 26s linear infinite;
  animation-delay: calc((26s / var(--quantity)) * (var(--position) - 1) - 26s);
  will-change: transform;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.03) 100%
  );
}

@keyframes engAutoRun {
  from { left: 100%; }
  to   { left: calc(var(--width) * -1); }
}

.eng-slider[reverse="true"] .list .item {
  animation-name: engReverseRun;
}

@keyframes engReverseRun {
  from { left: calc(var(--width) * -1); }
  to   { left: 100%; }
}

/* hover pause removed — cards scroll continuously */


.eng-card {
  position: absolute;
  inset: 1px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.02);
  /*! box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 2px 1px rgba(255, 255, 255, 0.08); */
  display: flex;
  flex-direction: column;
  padding: 11px 10px;
  gap: 0;
  cursor: default;
  transition: transform .25s, box-shadow .25s;
}

/* top edge highlight */
.eng-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.315), transparent);
  pointer-events: none;
}

/* left edge highlight */
.eng-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 60%, rgba(255,255,255,0.04));
  pointer-events: none;
  will-change: opacity;
}

/* keep card content above the ray */
.eng-card > * {
  position: relative;
  z-index: 1;
}

.eng-card:hover { transform: none; }

/* old glow blob — replaced by ray */
.ccard-glow { display: none; }

.ccard-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.ccard-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ccard-logo img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.ccard-engine-name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  flex: 1;
}
.ccard-live {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ccard-rank-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.ccard-rank {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.2px;
  color: #fff;
  text-shadow: 0 0 30px rgba(var(--color-ring),.4);
}
.ccard-change {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -.2px;
}

.ccard-domain {
  font-size: 9px;
  color: rgba(255,255,255,.38);
  margin-bottom: 10px;
  font-weight: 500;
}

.ccard-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ccard-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.ccard-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.2s ease;
}
.ccard-score {
  font-size: 12px;
  font-weight: 800;
  min-width: 22px;
  text-align: right;
}

.ccard-footer {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: rgba(255,255,255,.2);
  margin-top: auto;
}


/* ── Hero engine name cycle ─────────────── */
.hcycle-container {
  position: relative;
  display: inline-block;
  overflow: visible;
  font-size: 0.48em;
}
.hcycle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
  will-change: filter, opacity, transform;
}
.hcycle-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  vertical-align: middle;
  flex-shrink: 0;
}
.hcycle-name {
  color: rgba(255,255,255,0.82);
}

/* ── Hero dashboard ──────────────────────── */
.hero-dash {
  position: relative; width: 100%; max-width: 1100px;
  margin-top: 0; padding-bottom: 0;
  z-index: 1;
}
.dash-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 280px;
  background: radial-gradient(ellipse, rgba(90,115,175,.4) 0%, rgba(70,95,150,.18) 45%, transparent 70%);
  pointer-events: none; filter: blur(40px);
}
.dash-inner {
  border-radius: 20px 20px 0 0;
  border-bottom: none;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 16px;
  box-shadow:
    0 -4px 60px rgba(80,110,170,.2),
    0 0 0 1px rgba(255,255,255,.12),
    inset 0 1px 0 rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
}

/* panels inside dashboard */
.dash-panel {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  padding: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.dpanel-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.dpanel-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); }
.dpanel-sub   { font-size: 11px; color: rgba(255,255,255,.25); }

/* live badge */
.live-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--positive);
}
.live-ping { width: 6px; height: 6px; background: var(--positive); border-radius: 50%; position: relative; }
.live-ping::before {
  content: ''; position: absolute; inset: -3px;
  background: var(--positive); border-radius: 50%; opacity: .3;
  animation: pulse-ring 1.5s ease-out infinite;
}

/* rank rows */
.rank-rows { display: flex; flex-direction: column; gap: 9px; }
.rank-row {
  display: grid; grid-template-columns: 18px 1fr 42px 80px 36px;
  align-items: center; gap: 8px; font-size: 12px;
}
.rank-row--you { background: rgba(99,102,241,.07); border-radius: 7px; padding: 5px 6px; border: 1px solid rgba(99,102,241,.15); }
.rn { color: var(--muted); font-size: 11px; font-weight: 600; }
.rm { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rc { font-size: 11px; font-weight: 700; }
.rc.pos { color: var(--positive); }
.rc.neg { color: var(--negative); }
.rbar { background: rgba(255,255,255,.06); border-radius: 3px; height: 4px; overflow: hidden; }
.rbar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent-from), var(--accent-to)); }
.rbar-fill--2 { background: rgba(255,255,255,.25); }
.rbar-fill--3 { background: rgba(255,255,255,.12); }
.rs { font-weight: 700; font-size: 12px; text-align: right; }

/* agent steps */
.agent-steps { display: flex; flex-direction: column; gap: 6px; }
.astep {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  border: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.astep.done {
  background: rgba(74,222,128,.05);
  border-color: rgba(74,222,128,.15);
}
.astep.active {
  background: rgba(200,212,224,.06);
  border-color: rgba(200,212,224,.18);
}
.astep-icon {
  font-size: 14px; width: 20px; text-align: center; flex-shrink: 0;
  margin-top: 1px;
}
.astep-icon.muted { color: rgba(255,255,255,.2); }
.astep.done  .astep-icon { color: var(--positive); }
.astep.active .astep-icon { color: var(--accent-to); }
.astep-body { display: flex; flex-direction: column; gap: 2px; }
.astep-label { font-size: 12px; font-weight: 500; }
.astep-meta  { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.astep.done  .astep-label { color: var(--text); }
.astep.active .astep-label { color: var(--text); }
.astep:not(.done):not(.active) .astep-label { color: rgba(255,255,255,.35); }

@keyframes spin { to { transform: rotate(360deg); } }
.spin { display: inline-block; animation: spin 1.2s linear infinite; }

/* competitor table */
.comp-table { display: flex; flex-direction: column; gap: 6px; }
.comp-thead {
  display: grid; grid-template-columns: 1fr 80px 80px;
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,.25);
  text-transform: uppercase; letter-spacing: .6px;
  padding: 0 4px; margin-bottom: 4px;
}
.comp-row {
  display: grid; grid-template-columns: 1fr 80px 80px;
  align-items: center; gap: 6px;
  padding: 7px 8px; border-radius: 8px;
  font-size: 12px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
}
.comp-row:hover { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.comp-name { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ctag {
  padding: 3px 7px; border-radius: 5px;
  font-size: 10px; font-weight: 600;
  text-align: center; white-space: nowrap;
}
.ctag.earned     { background: rgba(74,222,128,.08);  color: var(--positive);             border: 1px solid rgba(74,222,128,.2); }
.ctag.mentioned  { background: rgba(200,212,224,.08); color: var(--accent-to);            border: 1px solid rgba(200,212,224,.18); }
.ctag.competitor { background: rgba(248,113,113,.07); color: #fca5a5;                     border: 1px solid rgba(248,113,113,.15); }
.ctag.nodata     { background: rgba(255,255,255,.04);  color: rgba(255,255,255,.28);       border: 1px solid var(--border); }

/* loading dots */
.dots { display: inline-flex; gap: 2px; align-items: center; margin-left: 2px; }
.dots span { width: 3px; height: 3px; background: var(--accent-to); border-radius: 50%; animation: dot-b .8s ease-in-out infinite; }
.dots span:nth-child(2) { animation-delay: .15s; }
.dots span:nth-child(3) { animation-delay: .3s; }
@keyframes dot-b {
  0%,80%,100% { transform: scale(.8); opacity: .4; }
  40%         { transform: scale(1.3); opacity: 1; }
}

/* ═══════════════════════════════════════════
   LOGOS STRIP
═══════════════════════════════════════════ */
/* ── Brand cycle stars ── */
@keyframes bc-star-out {
  0%   { opacity: 0; transform: translate(0,0) scale(0) rotate(0deg); }
  25%  { opacity: 1; transform: translate(var(--sx), var(--sy)) scale(1) rotate(var(--sr)); }
  100% { opacity: 0; transform: translate(calc(var(--sx)*2.8), calc(var(--sy)*2.8 - 12px)) scale(0.15) rotate(calc(var(--sr)*2)); }
}
.bc-star {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  color: #fff;
  line-height: 1;
  animation: bc-star-out var(--dur, .85s) ease-out forwards;
  will-change: transform, opacity;
}

/* ── Brand cycle statement ── */
.bc-section {
  padding: 80px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* Central orb glow */
.bc-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(136,153,180,.22) 0%, rgba(100,120,160,.1) 40%, transparent 68%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: orb-drift 18s ease-in-out infinite alternate;
}
/* Dot grid with radial fade */
.bc-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 65% 80% at 50% 50%, black 0%, transparent 100%);
  z-index: 0;
}
.bc-prefix {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -.3px;
  margin-bottom: 16px;
}
.bc-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.bc-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -.5px;
  line-height: 32px;
  color: #fff;
  will-change: opacity, transform;
}

/* Persistent background sparkles */
.bc-sparkle {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(var(--blur,4px));
  animation: bc-twinkle var(--dur,1.8s) ease-in-out forwards;
}
@keyframes bc-twinkle {
  0%   { opacity:0;            transform:scale(.2)  translate(0,0); }
  35%  { opacity:var(--pk,.7); transform:scale(1)   translate(var(--dx,0px),var(--dy,0px)); }
  65%  { opacity:var(--pk,.7); transform:scale(1)   translate(var(--dx,0px),var(--dy,0px)); }
  100% { opacity:0;            transform:scale(.2)  translate(calc(var(--dx,0px)*1.6),calc(var(--dy,0px)*1.6)); }
}

/* prefix + wrap above pseudo-elements */
.bc-prefix { position: relative; z-index: 2; }
.bc-wrap   { position: relative; z-index: 2; }
.bc-name {
  color: #fff;
}
.bc-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.bc-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logos-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
}
.logos-label {
  text-align: center; font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.3); text-transform: uppercase;
  letter-spacing: .8px; margin-bottom: 32px;
}
.logos-track { overflow: hidden; }
.logos-inner {
  display: flex; gap: 64px; align-items: center;
  width: max-content;
  animation: logos-scroll 24s linear infinite;
}
.logo-item {
  font-size: 16px; font-weight: 700;
  color: rgba(255,255,255,.22);
  letter-spacing: -.3px;
  white-space: nowrap;
  transition: color .2s;
}
.logo-item:hover { color: rgba(255,255,255,.55); }
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   FEATURE SECTIONS
═══════════════════════════════════════════ */
.feat-section {
  padding: 120px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.feat-section--alt .feat-wrap { flex-direction: row-reverse; }

.feat-wrap {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center;
  gap: 80px;
}
.feat-text { flex: 0 0 380px; }
.feat-visual { flex: 1; }

.feat-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--accent-to);
  background: rgba(200,212,224,.07);
  border: 1px solid rgba(200,212,224,.18);
  padding: 5px 12px; border-radius: 6px;
  margin-bottom: 20px;
}
.feat-h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 18px;
  /* glow-heading gradient overrides color — let it */
}
.feat-p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.feat-link {
  font-size: 14px; font-weight: 600; color: var(--accent-to);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.feat-link:hover { gap: 10px; }

/* visual card */
.vis-card {
  border-radius: 16px; padding: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px var(--border);
  transition: transform .3s;
}
.vis-card:hover { transform: translateY(-4px); }
.vis-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.vis-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); }
.vis-count { font-size: 11px; font-weight: 600; color: var(--accent-from); background: rgba(99,102,241,.1); padding: 3px 10px; border-radius: 99px; border: 1px solid rgba(99,102,241,.2); }
.vis-filters { display: flex; gap: 6px; }
.vf { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; color: var(--muted); border: 1px solid var(--border); cursor: pointer; transition: all .15s; }
.vf.active { color: var(--text); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); }

/* prompt table */
.ptable { display: flex; flex-direction: column; gap: 2px; }
.pthead {
  display: grid; grid-template-columns: 1fr 80px 90px 40px;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .6px; color: rgba(255,255,255,.25);
  padding: 4px 10px; margin-bottom: 4px;
}
.ptrow {
  display: grid; grid-template-columns: 1fr 80px 90px 40px;
  align-items: center; padding: 9px 10px; border-radius: 8px;
  font-size: 13px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  transition: background .2s, border-color .2s;
}
.ptrow:hover { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.ptrow--miss { opacity: .55; }
.pt-text { font-weight: 500; }
.pt-vol  { color: var(--muted); font-size: 12px; }
.pt-rank { font-weight: 700; font-size: 12px; }
.pt-rank--miss { color: rgba(255,255,255,.3); font-weight: 400; }
.pt-delta { font-size: 12px; font-weight: 700; }
.pt-delta.pos { color: var(--positive); }
.pt-delta.neg { color: var(--negative); }

/* chart */
.chart-area { position: relative; }
.rank-svg { width: 100%; height: auto; display: block; }
.chart-line { animation: line-draw 1.5s ease-out forwards; stroke-dasharray: 800; stroke-dashoffset: 800; }
@keyframes line-draw { to { stroke-dashoffset: 0; } }
.chart-legend { display: flex; gap: 16px; }
.cl { font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.cl::before { content: ''; width: 16px; height: 2px; border-radius: 2px; display: inline-block; }
.cl-1::before { background: #94a3b8; }
.cl-2::before { background: #cbd5e1; }
.cl-3::before { background: #e2e8f0; }
.chart-metrics { display: flex; gap: 24px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.cmetric { display: flex; flex-direction: column; gap: 3px; }
.cmetric-val { font-size: 18px; font-weight: 800; letter-spacing: -.5px; }
.cmetric-val.pos { color: var(--positive); }
.cmetric-label { font-size: 11px; color: var(--muted); }

/* agent cards */
.agent-cards { display: flex; flex-direction: column; gap: 10px; }
.acard { border-radius: 10px; padding: 14px; transition: border-color .2s; }
.acard--active { border-color: rgba(200,212,224,.2) !important; background: rgba(200,212,224,.04) !important; }
.acard-head { display: flex; align-items: center; gap: 10px; margin-bottom: 0; }
.acard--active .acard-head { margin-bottom: 14px; }
.acard-icon { font-size: 18px; color: var(--accent-to); }
.acard-head > div { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.acard-name { font-size: 13px; font-weight: 600; }
.acard-status { font-size: 11px; font-weight: 500; }
.acard-status.running { color: var(--positive); }
.acard-status.idle    { color: var(--muted); }
.acard-score { font-size: 12px; font-weight: 700; color: var(--positive); }
.acard-log { display: flex; flex-direction: column; gap: 5px; }
.alog { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.alog.done   { color: var(--text); }
.alog.active { color: var(--accent-to); }

/* analytics metrics */
.analytics-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.amet { border-radius: 10px; padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.amet-val   { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.amet-label { font-size: 11px; color: var(--muted); }
.amet-delta { font-size: 12px; font-weight: 700; }
.amet-delta.pos { color: var(--positive); }

/* ═══════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════ */
.testimonial-section {
  padding: 120px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testi-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
}
.testi-visual {
  border-radius: 20px; padding: 40px;
  position: relative; overflow: hidden;
  min-height: 280px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 20px 60px rgba(0,0,0,.35);
}
.testi-orb {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,212,224,.18) 0%, transparent 70%);
  border-radius: 50%; filter: blur(40px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: orb-drift 10s ease-in-out infinite alternate;
}
.testi-card {
  border-radius: 14px; padding: 20px 24px;
  width: 100%; position: relative; z-index: 1;
}
.testi-rank-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.trank-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); }
.trank-val { font-size: 14px; font-weight: 800; }
.trank-val.pos { color: var(--positive); }
.testi-bar-wrap { margin-bottom: 14px; }
.testi-bar { height: 6px; background: rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; }
.testi-bar-fill {
  height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, #6b7280, var(--accent-to));
  transition: width 1.5s cubic-bezier(.25,.46,.45,.94) .4s;
}
.testi-bar-fill.animated { width: 94%; }
.testi-brand { font-size: 12px; font-weight: 600; color: var(--muted); }

.quote-mark { font-size: 80px; line-height: .8; color: rgba(99,102,241,.25); font-family: Georgia, serif; margin-bottom: 16px; }
blockquote { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; line-height: 1.4; letter-spacing: -.5px; margin-bottom: 32px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  display: grid; place-items: center;
  font-size: 16px; font-weight: 800; color: #0a0a0c;
  box-shadow: 0 0 20px rgba(200,212,224,.2);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 700; }
.testi-author span   { display: block; font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.hiw-section {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

/* ── Animated background orbs ── */
.hiw-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: hiw-orb-drift 14s ease-in-out infinite alternate;
}
.hiw-orb-1 {
  width: 500px; height: 500px;
  top: -100px; left: -80px;
  background: radial-gradient(circle, rgba(99,102,241,.35) 0%, rgba(99,102,241,.1) 50%, transparent 70%);
  animation-duration: 18s;
}
.hiw-orb-2 {
  width: 420px; height: 420px;
  top: 50px; right: -60px;
  background: radial-gradient(circle, rgba(168,85,247,.3) 0%, rgba(168,85,247,.08) 50%, transparent 70%);
  animation-duration: 22s;
  animation-delay: -6s;
}
.hiw-orb-3 {
  width: 360px; height: 360px;
  bottom: 20px; left: 30%;
  background: radial-gradient(circle, rgba(6,182,212,.25) 0%, rgba(6,182,212,.07) 50%, transparent 70%);
  animation-duration: 26s;
  animation-delay: -12s;
}
.hiw-orb-4 {
  width: 280px; height: 280px;
  bottom: -60px; right: 15%;
  background: radial-gradient(circle, rgba(16,185,129,.2) 0%, transparent 65%);
  animation-duration: 20s;
  animation-delay: -4s;
}
@keyframes hiw-orb-drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(30px,-40px) scale(1.08); }
  100% { transform: translate(-20px,25px) scale(.92); }
}

/* Subtle grid overlay */
.hiw-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 100%);
}

.hiw-head {
  text-align: center;
  margin-bottom: 72px;
}
.hiw-h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hiw-sub {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
}

/* ── Timeline layout ── */
.hiw-steps {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

/* Vertical connecting line */
.hiw-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(200,212,224,0.15) 15%,
    rgba(200,212,224,0.15) 85%,
    transparent
  );
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  padding-bottom: 28px;
}
.hiw-step:last-child { padding-bottom: 0; }

/* Step number bubble on the timeline */
.hiw-step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-to);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ── Per-step ring colors ── */
.hiw-step:nth-child(1) { --hiw-ca: #6366f1; --hiw-cb: #818cf8; --hiw-cc: #a5b4fc; }
.hiw-step:nth-child(2) { --hiw-ca: #a855f7; --hiw-cb: #c084fc; --hiw-cc: #e879f9; }
.hiw-step:nth-child(3) { --hiw-ca: #06b6d4; --hiw-cb: #22d3ee; --hiw-cc: #67e8f9; }
.hiw-step:nth-child(4) { --hiw-ca: #10b981; --hiw-cb: #34d399; --hiw-cc: #6ee7b7; }

/* ── Card ── */
.hiw-card {
  flex: 1;
  border-radius: 16px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: visible;
  transition: border-color .3s, box-shadow .3s;
  border-color: transparent;
}
.hiw-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,.1);
}

/* ── Spinning conic-gradient ring border ── */
.hiw-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 17.5px;
  background: conic-gradient(
    from var(--ring-angle),
    transparent 0deg,
    var(--hiw-ca) 60deg,
    var(--hiw-cb) 100deg,
    var(--hiw-cc) 140deg,
    transparent 200deg
  );
  z-index: -1;
  animation: hiw-ring-spin 5s linear infinite;
  opacity: 0.05;
  pointer-events: none;
}
.hiw-step:nth-child(2) .hiw-card::before { animation-duration: 6s; }
.hiw-step:nth-child(3) .hiw-card::before { animation-duration: 7s; animation-direction: reverse; }
.hiw-step:nth-child(4) .hiw-card::before { animation-duration: 5.5s; }

@keyframes hiw-ring-spin {
  to { --ring-angle: 360deg; }
}

/* Inner mask: covers the conic so only the 1.5px border shows */
.hiw-card-inner-mask {
  position: absolute;
  inset: 1.5px;
  border-radius: 15px;
  background: var(--bg);
  z-index: -1;
  pointer-events: none;
}

/* ── Sparkle dot particles ── */
.hiw-card::after {
  content: '';
  pointer-events: none;
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  top: 18px; right: 28px;
  background: var(--hiw-cc);
  box-shadow:
    20px  4px 0 1px color-mix(in srgb, var(--hiw-cb) 70%, transparent),
    42px -6px 0 0px color-mix(in srgb, var(--hiw-ca) 50%, transparent),
    64px  8px 0 1px color-mix(in srgb, var(--hiw-cc) 60%, transparent),
    90px -2px 0 0px color-mix(in srgb, var(--hiw-cb) 40%, transparent),
   -18px  6px 0 1px color-mix(in srgb, var(--hiw-ca) 55%, transparent),
   -42px -4px 0 0px color-mix(in srgb, var(--hiw-cc) 35%, transparent);
  animation: hiw-sparkle 3.5s ease-in-out infinite;
}
.hiw-step:nth-child(2) .hiw-card::after { animation-delay: .9s; }
.hiw-step:nth-child(3) .hiw-card::after { animation-delay: 1.8s; }
.hiw-step:nth-child(4) .hiw-card::after { animation-delay: 2.7s; }

@keyframes hiw-sparkle {
  0%,100% { opacity: 0; transform: translateY(0) scale(0.5); }
  20%     { opacity: 1; transform: translateY(-6px) scale(1); }
  55%     { opacity: 0.6; transform: translateY(-14px) scale(0.75); }
  85%     { opacity: 0; transform: translateY(-22px) scale(0.3); }
}

/* ── Header row: icon + title ── */
.hiw-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hiw-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: var(--accent-to);
  flex-shrink: 0;
}
.hiw-icon--glow {
  background: rgba(200,212,224,0.1);
  border-color: rgba(200,212,224,0.25);
  box-shadow: 0 0 18px rgba(200,212,224,0.12);
}

.hiw-title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.25;
  background: linear-gradient(to right, #888 0%, #fff 10%, #bbb 20%, #888 100%);
  background-size: 700px auto;
  background-position: 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-shine 6s infinite linear;
}

.hiw-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.hiw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hiw-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(248,250,252,0.55);
}
.hiw-tag--glow {
  background: rgba(200,212,224,0.08);
  border-color: rgba(200,212,224,0.2);
  color: var(--accent-to);
}

.hiw-engine-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hiw-engine {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(248,250,252,0.6);
}
.hiw-engine img { border-radius: 3px; }

/* ── Premium brand logos ── */
.hiw-brands {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  position: relative;
  padding: 14px 0 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
/* left + right fade-out gradient */
.hiw-brands::before,
.hiw-brands::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.hiw-brands::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-card, rgba(14,14,18,1)), transparent);
}
.hiw-brands::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-card, rgba(14,14,18,1)), transparent);
}

.hiw-brand-item {
  flex-shrink: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-brand-item img {
  height: 22px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  /* force white with black shadow → works on both light/dark logos */
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity .2s;
}
.hiw-brand-item:hover img {
  opacity: 0.75;
}

.hiw-connector { display: none; }

.hiw-result {
  display: flex;
  gap: 24px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.hiw-result-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
}
.hiw-result-label { color: var(--muted); }
.hiw-result-val {
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}
.hiw-result-val.pos { color: var(--positive); }

@media (max-width: 560px) {
  .hiw-steps::before { left: 20px; }
  .hiw-step-num { width: 40px; height: 40px; font-size: 10px; }
  .hiw-card { padding: 20px 18px; }

  .hiw-brands {
    flex-wrap: wrap;
    overflow: visible;
    gap: 8px;
    justify-content: center;
  }
  .hiw-brands::before,
  .hiw-brands::after { display: none; }
  .hiw-brand-item { flex-shrink: 0; }
}

/* ═══════════════════════════════════════════
   CHANNELS
═══════════════════════════════════════════ */
.channels-section { padding: 120px 24px; }
.channels-head { margin-bottom: 64px; }
.section-h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; }
.channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ch-col {
  padding: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 8px 32px rgba(0,0,0,.25);
  transition: border-color .25s, background .25s, transform .25s;
  position: relative; overflow: hidden;
}
.ch-col::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,212,224,.35), transparent);
  opacity: 0; transition: opacity .25s;
}
.ch-col:hover { border-color: rgba(200,212,224,.2); background: rgba(200,212,224,.03); transform: translateY(-4px); }
.ch-col:hover::before { opacity: 1; }
.ch-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--accent-to); margin-bottom: 16px;
}
.ch-title { font-size: 20px; font-weight: 800; letter-spacing: -.3px; margin-bottom: 14px; }
.ch-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.ch-list  { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ch-list li { font-size: 14px; display: flex; align-items: center; gap: 8px; }
.ch-check { color: var(--positive); font-size: 13px; }
.ch-link  { font-size: 13px; font-weight: 600; color: var(--accent-to); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.ch-link:hover { gap: 9px; }

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing-section {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.pricing-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: hiw-orb-drift 18s ease-in-out infinite alternate;
}
.pricing-orb-1 {
  width: 600px; height: 600px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, rgba(99,102,241,.2) 0%, transparent 70%);
}
.pricing-orb-2 {
  width: 500px; height: 500px;
  bottom: 0; right: -100px;
  background: radial-gradient(circle, rgba(168,85,247,.18) 0%, transparent 70%);
  animation-delay: -9s;
}

.pricing-head {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 12px;
}

/* 4-column grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color .25s, box-shadow .25s;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
}

/* Highlight card — Most Popular */
.pricing-card--highlight {
  border-color: rgba(200,212,224,.28);
  box-shadow:
    0 0 0 1px rgba(200,212,224,.15),
    0 20px 60px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
}
.pricing-card--highlight::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: conic-gradient(
    from var(--ring-angle),
    transparent 0deg,
    rgba(200,212,224,.5) 60deg,
    rgba(160,180,220,.3) 120deg,
    transparent 180deg
  );
  z-index: -1;
  animation: hiw-ring-spin 7s linear infinite;
  opacity: 0.35;
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  color: #0a0a0c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card-top { display: flex; flex-direction: column; gap: 10px; }

.pricing-plan-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}
.pricing-dollar {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  padding-bottom: 4px;
}
.pricing-amount {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(to right,
    #888  0%,
    #fff  10%,
    #bbb  20%,
    #888  100%
  );
  background-size: 400px 100%;
  background-position: 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: price-shine 10s infinite linear;
}
@keyframes price-shine {
  0%   { background-position: 0; }
  60%  { background-position: 400px; }
  100% { background-position: 400px; }
}
.pricing-period {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 5px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(248,250,252,.65);
  line-height: 1.45;
}
.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent-to);
  opacity: .8;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
}
.pricing-note a {
  color: var(--accent-to);
  transition: opacity .15s;
}
.pricing-note a:hover { opacity: .75; }

/* Tracking band */
.tracking-band {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.tracking-freq-row {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}

.tracking-freq-badge {
  background: rgba(99,102,241,.18);
  border: 1px solid rgba(99,102,241,.32);
  color: #a5b4fc;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tracking-label {
  font-size: 11px;
  color: var(--muted);
}

.engines-row {
  display: flex;
  gap: 10px;
}

.engine-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.engine-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
  flex-shrink: 0;
}

.engine-name {
  font-size: 9px;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* Engine strip below pricing grid */
.pricing-engines-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
  padding: 20px 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}

.pricing-engines-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.pricing-engines-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pricing-engine-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.pricing-engine-item .engine-name {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .pricing-engines-strip { flex-direction: column; gap: 16px; padding: 18px 20px; }
  .pricing-engines-label { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-right: 0; padding-bottom: 12px; width: 100%; text-align: center; }
  .pricing-engines-list { flex-wrap: wrap; justify-content: center; }
}

.pricing-card--highlight .tracking-band {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .engine-name { display: none; }
}

/* ═══════════════════════════════════════════
   CTA PAIR
═══════════════════════════════════════════ */
.cta-pair-section { padding: 80px 24px 120px; }
.cta-pair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-card {
  border-radius: 20px; padding: 48px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 16px 48px rgba(0,0,0,.3);
  transition: border-color .25s, background .25s, transform .25s;
}
.cta-card:hover { border-color: rgba(200,212,224,.22); background: rgba(200,212,224,.06); transform: translateY(-3px); }
.cta-card-title { font-size: 22px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 12px; }
.cta-card-desc  { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 24px 48px;
  gap: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-logo { display: block; opacity: .85; transition: opacity .15s; margin-bottom: 12px; }
.footer-logo:hover { opacity: 1; }
.footer-tagline { font-size: 14px; color: var(--muted); text-align: center; max-width: 300px; line-height: 1.6; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 900px;
  margin: 32px auto 0;
  text-align: left;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-col-title {
  font-size: 13px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color .15s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,.25); }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   Hidden state only active when JS loaded (js-ready on <html>).
   If JS fails, all content stays visible.
═══════════════════════════════════════════ */
.js-ready .reveal-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94),
              transform .7s cubic-bezier(.25,.46,.45,.94);
}
.js-ready .reveal-up.visible { opacity: 1; transform: translateY(0); }

.js-ready .reveal-side {
  opacity: 0; transform: translateX(-28px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94),
              transform .7s cubic-bezier(.25,.46,.45,.94);
}
.js-ready .feat-section--alt .reveal-side { transform: translateX(28px); }
.js-ready .reveal-side.visible { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════
   CARD GLOW — subtle ambient, no rotation
   .glow-ring* kept as no-op for HTML compat
═══════════════════════════════════════════ */

.card-glow {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.1),
    0 4px 24px rgba(0,0,0,.4),
    0 0 48px rgba(90,110,165,.08);
  transition: box-shadow .4s;
}
.card-glow:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.18),
    0 8px 40px rgba(0,0,0,.45),
    0 0 80px rgba(90,110,165,.14);
}

/* ═══════════════════════════════════════════
   SECTION BACKGROUNDS
═══════════════════════════════════════════ */

/* ── Grain noise overlay ── */
.section-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Hero: multi-orb system already in HTML ── */
.hero .orb-1 { opacity: .9; }
.hero .orb-2 { opacity: .7; }
.hero .orb-3 { opacity: .6; }

/* ── Hero scan line ── */
.hero-scanline {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
}
.hero-scanline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,212,224,.15), transparent);
  animation: scan 6s ease-in-out infinite;
}
@keyframes scan {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ── Logo section: shimmer gradient ── */
.logos-section {
  background: linear-gradient(180deg,
    var(--bg) 0%,
    rgba(148,163,184,.04) 50%,
    var(--bg) 100%
  ) !important;
}

/* ── Feature sections ── */
.feat-section {
  overflow: hidden;
  background: var(--bg); /* all same — orbs differentiate */
}
.feat-section--alt { background: var(--bg); } /* remove rectangular alt bg */

.feat-section .sec-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: orb-drift 22s ease-in-out infinite alternate;
}

/* Section 1: large orb top-right, small bottom-left */
.feat-s-1 .sec-orb-a {
  width: 650px; height: 650px; top: -180px; right: -80px;
  background: radial-gradient(circle, rgba(70,95,160,.4) 0%, rgba(50,75,130,.15) 50%, transparent 70%);
}
.feat-s-1 .sec-orb-b {
  width: 380px; height: 380px; bottom: -60px; left: 8%;
  background: radial-gradient(circle, rgba(110,140,200,.22) 0%, transparent 65%);
  animation-duration: 28s; animation-delay: -9s;
}

/* Section 2: orb sweeps from bottom-left + accent top-right */
.feat-s-2 .sec-orb-a {
  width: 700px; height: 700px; bottom: -200px; left: -120px;
  background: radial-gradient(circle, rgba(60,90,155,.42) 0%, rgba(45,70,130,.16) 45%, transparent 68%);
  animation-duration: 26s;
}
.feat-s-2 .sec-orb-b {
  width: 420px; height: 420px; top: -80px; right: 15%;
  background: radial-gradient(circle, rgba(130,155,210,.2) 0%, transparent 65%);
  animation-duration: 20s; animation-delay: -12s;
}

/* Section 3: centered large + diagonal small */
.feat-s-3 .sec-orb-a {
  width: 600px; height: 600px; top: 50%; right: -140px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(75,100,165,.38) 0%, rgba(55,80,140,.14) 45%, transparent 68%);
  animation-duration: 24s;
}
.feat-s-3 .sec-orb-b {
  width: 350px; height: 350px; top: -60px; left: 25%;
  background: radial-gradient(circle, rgba(100,130,195,.2) 0%, transparent 65%);
  animation-duration: 30s; animation-delay: -7s;
}

/* Section 4: mirror of s3 */
.feat-s-4 .sec-orb-a {
  width: 620px; height: 620px; top: 50%; left: -140px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(65,90,158,.4) 0%, rgba(48,72,132,.15) 45%, transparent 68%);
  animation-duration: 25s;
}
.feat-s-4 .sec-orb-b {
  width: 380px; height: 380px; bottom: -50px; right: 20%;
  background: radial-gradient(circle, rgba(120,148,205,.2) 0%, transparent 65%);
  animation-duration: 18s; animation-delay: -14s;
}

/* Subtle dot grid per section (not rectangular, radial fade) */
.feat-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
  z-index: 0;
}
.feat-section .feat-wrap { position: relative; z-index: 1; }

/* ── Testimonial: dramatic spotlight ── */
.testimonial-section {
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(100,130,190,.35) 0%, rgba(80,110,170,.18) 35%, transparent 65%);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: orb-drift 14s ease-in-out infinite alternate;
}
.testimonial-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 100%);
}

/* ── Channels: mesh of 3 orbs ── */
.channels-section {
  position: relative;
  overflow: hidden;
}
.channels-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 70% at 12% 60%, rgba(80,105,165,.32) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 50% 90%, rgba(100,130,190,.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 70% at 88% 60%, rgba(80,105,165,.32) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(50px);
}

/* ── CTA pair: glowing frame ── */
.cta-pair-section {
  position: relative;
  overflow: hidden;
}
.cta-pair-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(90,115,175,.3) 0%, rgba(70,95,150,.12) 45%, transparent 70%);
  pointer-events: none;
  filter: blur(70px);
}

/* ═══════════════════════════════════════════
   GLOW HEADINGS — clean white + soft ambient
═══════════════════════════════════════════ */
.glow-heading {
  color: #f8fafc;
  -webkit-text-fill-color: #f8fafc;
  text-shadow:
    0 0 40px rgba(180,200,235,.22),
    0 0 80px rgba(120,150,210,.1);
}

/* grad-text spans inside glow-heading retain their gradient */
.glow-heading .grad-text {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #c8d4e0 0%, #edf2f8 50%, #c8d4e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(180,205,240,.25));
}

/* ── Footer aurora ── */
.footer {
  position: relative;
  overflow: hidden;
  background: #000;
  border-top: none;
  padding-top: 0;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
/* Aurora layer */
.footer-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(136,153,180,.08) 0%, rgba(136,153,180,0) 58%),
    radial-gradient(ellipse at 75% 30%, rgba(200,212,224,.05) 0%, rgba(200,212,224,0) 55%),
    radial-gradient(ellipse at 50% 80%, rgba(100,120,160,.03) 0%, transparent 20%);
  animation: footer-aurora-drift 48s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: 0;
}

/* Grid texture */
.footer-aurora::before {
  content: '';
  position: absolute;
  width: 200%; height: 200%;
  top: -50%; left: -50%;
  background:
    repeating-linear-gradient(45deg,  rgba(255,255,255,.01) 0px, rgba(255,255,255,.01) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.008) 0px, rgba(255,255,255,.008) 1px, transparent 1px, transparent 60px);
  animation: footer-grid-shift 90s linear infinite;
}

/* Edge vignette */
.footer-aurora::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 55%, rgba(0,0,0,.88) 100%);
  animation: footer-aurora-pulse 8s infinite alternate;
}


@keyframes footer-aurora-drift {
  0%   { opacity: .9;  transform: scale(1);    filter: brightness(1); }
  50%  { opacity: 1;   transform: scale(1.02); filter: brightness(1.08); }
  100% { opacity: .88; transform: scale(1);    filter: brightness(.96); }
}
@keyframes footer-grid-shift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(-50%,-50%); }
}
@keyframes footer-aurora-pulse {
  0%   { opacity:.85; transform:scale(1); }
  50%  { opacity:.5;  transform:scale(1.04); }
  100% { opacity:.85; transform:scale(1); }
}


.footer-inner,
.footer-bottom { position: relative; z-index: 2; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ═══════════════════════════════════════════
   BEAM / LIGHT STREAK in hero
═══════════════════════════════════════════ */
.hero-beam {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 300px;
  background: linear-gradient(180deg, rgba(200,212,224,.5) 0%, transparent 100%);
  filter: blur(1px);
  pointer-events: none;
  animation: beam-fade 4s ease-in-out infinite;
}
.hero-beam-wide {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse at top, rgba(200,212,224,.12) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes beam-fade {
  0%, 100% { opacity: .5; }
  50%       { opacity: 1; }
}

/* ─── Dash panel glow on hover ── */
.dash-panel {
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.dash-panel:hover {
  border-color: rgba(200,212,224,.18);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 40px rgba(200,212,224,.06);
}

/* ── vis-card stronger shadow ── */
.vis-card {
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px var(--border), 0 0 60px rgba(200,212,224,.04) !important;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-body { grid-template-columns: 1fr; gap: 56px; }
  .hero-text { text-align: center; max-width: 640px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .dash-inner { grid-template-columns: 1fr 1fr; }
  .dash-inner .dash-panel:last-child { grid-column: span 2; }
  .feat-wrap, .feat-section--alt .feat-wrap { flex-direction: column; gap: 48px; }
  .feat-text { flex: none; }
  .testi-inner { grid-template-columns: 1fr; gap: 48px; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 76px 16px 60px; }
  .hero-body { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { text-align: center; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-carousel { height: 280px; }
  .hero-h1 { font-size: 42px; letter-spacing: -1.5px; }
  .hero-p { font-size: 16px; }
  .hero-pills { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .dash-inner { grid-template-columns: 1fr; }
  .dash-inner .dash-panel:last-child { grid-column: auto; }
  .channels-grid { grid-template-columns: 1fr; }
  .cta-pair-grid { grid-template-columns: 1fr; }
  .analytics-metrics { grid-template-columns: 1fr; }
  .pthead, .ptrow { grid-template-columns: 1fr 60px 70px; }
  .ptrow > *:last-child, .pthead > *:last-child { display: none; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  /* Hero body top padding — hero already has 76px top, body doesn't need 140px more */
  .hero-body { padding: 20px 0 32px; }

  /* How It Works */
  .hiw-section { padding: 72px 16px 60px; }
  .hiw-h2 { font-size: clamp(28px, 8vw, 40px); }
  .hiw-step { gap: 14px; }

  /* Testimonial */
  .testimonial-section { padding: 72px 16px; }

  /* Logos */
  .logos-section { padding: 40px 0; }

  /* Channels */
  .channels-section { padding: 72px 16px; }

  /* Container safe padding on narrow screens */
  .container { padding: 0 16px; }
}

@media (max-width: 400px) {
  .hero-h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; }
  .hiw-step-num { display: none; }
  .hiw-steps::before { display: none; }
  .hiw-card { padding: 18px 16px; }
}

/* ═══════════════════════════════════════════
   AUTH PAGES (login / register)
═══════════════════════════════════════════ */
.auth-wrap {
  margin-top: 64px;
  height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* ── Left panel ── */
.auth-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px clamp(32px, calc((100vw - 1160px) / 2 + 24px), 9999px);
  overflow: hidden;
  background: #06060a;
  border-right: 1px solid var(--border);
}

.auth-left-inner {
  width: 100%;
  position: relative;
  z-index: 1;
}

.auth-left-orb {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(99,102,241,.28) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(136,153,180,.15) 0%, transparent 50%);
  pointer-events: none;
}

.auth-left-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 28px;
  width: fit-content;
}

.auth-left-title {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 300;
  letter-spacing: -.5px;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--text);
}

.auth-left-title strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-left-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 380px;
}

.auth-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}

.auth-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.auth-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.auth-feature-icon svg { color: #a5b4fc; }

.auth-feature-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.auth-feature-text span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.auth-testimonial {
  border-left: 2px solid rgba(99,102,241,.4);
  padding-left: 18px;
}

.auth-testimonial blockquote {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 10px;
}

.auth-testimonial cite {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
}

/* ── Right panel ── */
.auth-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px clamp(32px, calc((100vw - 1160px) / 2 + 24px), 9999px) 60px 48px;
  background: var(--bg);
}

.auth-card {
  width: 100%;
  max-width: 520px;
}

.auth-heading {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.4px;
  margin-bottom: 6px;
}

.auth-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-divider span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* form fields */
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.auth-field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .3px;
}

.auth-field label a {
  font-weight: 400;
  color: var(--accent-to);
  font-size: 11px;
  transition: opacity .15s;
}
.auth-field label a:hover { opacity: .75; }

.auth-field input {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .18s, background .18s, box-shadow .18s;
  width: 100%;
}

.auth-field input::placeholder { color: rgba(255,255,255,.2); }

.auth-field input:focus {
  border-color: rgba(200,212,224,.3);
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(200,212,224,.06);
}

/* submit */
.auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 13px;
  font-size: 14px;
  border-radius: 10px;
}

/* footer link */
.auth-footer-link {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}
.auth-footer-link a {
  color: var(--accent-to);
  font-weight: 500;
  transition: opacity .15s;
}
.auth-footer-link a:hover { opacity: .75; }

/* terms */
.auth-terms {
  font-size: 11px;
  color: rgba(255,255,255,.22);
  text-align: center;
  margin-top: 16px;
  line-height: 1.65;
}
.auth-terms a { color: rgba(255,255,255,.38); text-decoration: underline; }

/* social button */
.btn-social {
  width: 100%;
  justify-content: center;
  gap: 10px;
  padding: 11px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* field row */
.auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 900px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-left  { display: none; }
  .auth-right { padding: 48px 24px; min-height: calc(100vh - 64px); }
}

@media (max-width: 480px) {
  .auth-field-row { grid-template-columns: 1fr; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Nav CTA button  (moved from includes/header.php)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nav-cta-btn{
  --round:0px;
  cursor:pointer;position:relative;display:inline-flex;
  align-items:center;justify-content:center;overflow:hidden;
  transition:all .25s ease;
  background:
    radial-gradient(65.28% 65.28% at 50% 100%, rgba(220,230,245,.75) 0%, rgba(220,230,245,0) 100%),
    linear-gradient(0deg,#8899b4,#c8d4e0);
  border-radius:var(--round);border:none;outline:none;
  padding:10px 18px;text-decoration:none;
  box-shadow:0 0 28px rgba(200,212,224,.2),inset 0 1px 0 rgba(255,255,255,.4);
}
.nav-cta-btn::before,.nav-cta-btn::after{
  content:'';position:absolute;inset:var(--space);
  transition:all .5s ease-in-out;
  border-radius:calc(var(--round) - var(--space));z-index:0;
}
.nav-cta-btn::before{
  --space:1px;
  background:linear-gradient(177.95deg,rgba(255,255,255,.28) 0%,rgba(255,255,255,0) 100%);
}
.nav-cta-btn::after{
  --space:2px;
  background:
    radial-gradient(65.28% 65.28% at 50% 100%, rgba(220,230,245,.7) 0%, rgba(220,230,245,0) 100%),
    linear-gradient(0deg,#8899b4,#c8d4e0);
}
.nav-cta-btn:active{transform:scale(.95);}
.nav-cta-btn:hover{box-shadow:0 0 48px rgba(200,215,240,.35),inset 0 1px 0 rgba(255,255,255,.5);}
.nav-cta-btn .fold{display:none;}
.nav-cta-btn .points_wrapper{overflow:hidden;width:100%;height:100%;pointer-events:none;position:absolute;z-index:1;}
.nav-cta-btn .point{
  bottom:-10px;position:absolute;animation:nav-floating-pts infinite ease-in-out;
  pointer-events:none;width:2px;height:2px;background:#fff;border-radius:9999px;
}
@keyframes nav-floating-pts{0%{transform:translateY(0);}85%{opacity:0;}100%{transform:translateY(-55px);opacity:0;}}
.nav-cta-btn .point:nth-child(1){left:10%;opacity:1;animation-duration:2.35s;animation-delay:.2s;}
.nav-cta-btn .point:nth-child(2){left:30%;opacity:.7;animation-duration:2.5s;animation-delay:.5s;}
.nav-cta-btn .point:nth-child(3){left:25%;opacity:.8;animation-duration:2.2s;animation-delay:.1s;}
.nav-cta-btn .point:nth-child(4){left:44%;opacity:.6;animation-duration:2.05s;}
.nav-cta-btn .point:nth-child(5){left:50%;opacity:1;animation-duration:1.9s;}
.nav-cta-btn .point:nth-child(6){left:75%;opacity:.5;animation-duration:1.5s;animation-delay:1.5s;}
.nav-cta-btn .point:nth-child(7){left:88%;opacity:.9;animation-duration:2.2s;animation-delay:.2s;}
.nav-cta-btn .point:nth-child(8){left:58%;opacity:.8;animation-duration:2.25s;animation-delay:.2s;}
.nav-cta-btn .point:nth-child(9){left:98%;opacity:.6;animation-duration:2.6s;animation-delay:.1s;}
.nav-cta-btn .point:nth-child(10){left:65%;opacity:1;animation-duration:2.5s;animation-delay:.2s;}
.nav-cta-btn .inner{
  z-index:2;gap:6px;position:relative;width:100%;color:#0d0f18;display:inline-flex;
  align-items:center;justify-content:center;font-size:14px;font-weight:600;line-height:1.5;
  transition:color .2s ease-in-out;white-space:nowrap;
}
.nav-cta-btn .inner svg.icon{width:16px;height:16px;transition:fill .1s linear;}
.nav-cta-btn:hover .inner svg.icon{fill:transparent;animation:nav-dasharray 1s linear forwards,nav-filled .1s linear forwards .95s;}
@keyframes nav-dasharray{from{stroke-dasharray:0 0 0 0;}to{stroke-dasharray:68 68 0 0;}}
@keyframes nav-filled{to{fill:#0d0f18;}}
.mob-cta.nav-cta-btn .inner{color:#0d0f18;}
.nav-signin .shine-text{
  background:linear-gradient(90deg,rgba(200,212,224,.45) 0%,rgba(200,212,224,.45) 35%,#fff 50%,rgba(200,212,224,.45) 65%,rgba(200,212,224,.45) 100%);
  background-size:300% 100%;background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;
  animation:signin-shine 6s infinite linear;
}
@keyframes signin-shine{0%{background-position:200% center;}100%{background-position:-200% center;}}

/* â”€â”€ Mobile nav drawer â”€â”€ */
.mob-btn{display:none;flex-direction:column;justify-content:center;align-items:center;gap:5px;width:38px;height:38px;background:none;border:none;cursor:pointer;margin-left:auto;padding:4px;border-radius:8px;transition:background .15s;}
.mob-btn:hover{background:rgba(255,255,255,.06);}
.mob-btn span{display:block;width:22px;height:2px;background:var(--muted);border-radius:2px;transition:transform .25s,opacity .2s,width .2s;}
.mob-btn.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.mob-btn.open span:nth-child(2){opacity:0;width:0;}
.mob-btn.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.mob-drawer{
  display:none;position:fixed;top:64px;left:0;right:0;z-index:199;
  background:radial-gradient(ellipse 90% 45% at 10% 0%, rgba(99,58,188,.11) 0%, transparent 55%),radial-gradient(ellipse 70% 55% at 90% 110%, rgba(14,165,233,.07) 0%, transparent 55%),rgba(6,6,14,.97);
  backdrop-filter:blur(24px) saturate(1.4);-webkit-backdrop-filter:blur(24px) saturate(1.4);
  border-bottom:1px solid var(--border);padding:16px 20px 24px;flex-direction:column;gap:4px;
  transform:translateY(-8px);opacity:0;transition:transform .22s cubic-bezier(.4,0,.2,1),opacity .2s;
}
.mob-drawer.open{opacity:1;transform:translateY(0);}
.mob-drawer a{display:block;padding:11px 14px;font-size:15px;color:var(--muted);border-radius:9px;transition:color .15s,background .15s;text-decoration:none;}
.mob-drawer a:hover{color:var(--text);background:rgba(255,255,255,.05);}
.mob-drawer-div{height:1px;background:var(--border);margin:10px 0;}
.mob-drawer .mob-cta{display:flex;align-items:center;justify-content:center;margin-top:6px;background:linear-gradient(135deg,var(--accent-from),var(--accent-to));color:#0a0a0c;font-weight:700;font-size:14px;border-radius:9px;padding:12px;}
.mob-drawer .mob-cta:hover{opacity:.9;}
@media(max-width:768px){
  .mob-btn{display:flex;}
  .mob-drawer{display:flex;}
  .nav-end{display:none;}
  .nav-inner{justify-content:center;position:relative;}
  .mob-btn{position:absolute;right:0;}
  .logo{margin:0 auto;}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   About page  (moved from home/about.php)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-section{padding:100px 0 80px;position:relative;overflow:hidden;background:var(--bg);}
.about-section .container{max-width:1100px;}
.ab-dot-grid{position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(circle,rgba(200,215,240,.05) 1px,transparent 1px);background-size:32px 32px;mask-image:radial-gradient(ellipse 80% 70% at 50% 50%,black 10%,transparent 100%);}
.ab-orb{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none;}
.ab-orb-a{width:600px;height:600px;top:-150px;left:-150px;background:radial-gradient(circle,rgba(80,100,160,.25) 0%,transparent 65%);animation:ab-drift-a 18s ease-in-out infinite alternate;}
.ab-orb-b{width:500px;height:500px;bottom:-100px;right:-120px;background:radial-gradient(circle,rgba(60,80,140,.2) 0%,transparent 65%);animation:ab-drift-b 22s ease-in-out infinite alternate;}
@keyframes ab-drift-a{0%{transform:translate(0,0)}100%{transform:translate(50px,30px)}}
@keyframes ab-drift-b{0%{transform:translate(0,0)}100%{transform:translate(-40px,-30px)}}
.ab-hero{text-align:center;margin-bottom:72px;position:relative;z-index:1;}
.ab-eyebrow{display:inline-flex;align-items:center;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;background:rgba(200,215,240,.07);border:1px solid rgba(200,215,240,.15);border-radius:20px;padding:4px 12px;color:rgba(200,215,240,.5);margin-bottom:18px;}
.ab-h1{font-size:clamp(32px,5vw,60px);font-weight:300;letter-spacing:-1.5px;line-height:1.1;margin-bottom:20px;}
.ab-sub{font-size:16px;color:rgba(200,215,240,.45);max-width:580px;margin:0 auto;line-height:1.7;}
.ab-mission{background:linear-gradient(145deg,#14161f,#111318);border:1px solid rgba(200,215,240,.12);border-radius:18px;padding:48px 52px;margin-bottom:24px;position:relative;overflow:hidden;z-index:1;box-shadow:0 12px 48px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.04);}
.ab-mission::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(200,215,240,.25),transparent);}
.ab-mission-quote{font-size:clamp(18px,2.5vw,26px);font-weight:300;color:#e8ecf4;line-height:1.5;letter-spacing:-.02em;margin-bottom:36px;}
.ab-mission-quote em{font-style:normal;color:#dde8f5;}
.ab-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:0;}
.ab-metric{padding:20px 24px;border-right:1px solid rgba(200,215,240,.08);text-align:center;}
.ab-metric:last-child{border-right:none;}
.ab-metric-n{font-size:30px;font-weight:800;color:#e8ecf4;letter-spacing:-.02em;line-height:1;}
.ab-metric-k{font-size:11px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:rgba(200,215,240,.35);margin-top:6px;}
.ab-sec-label{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(200,215,240,.35);margin-bottom:16px;position:relative;z-index:1;}
.ab-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:24px;position:relative;z-index:1;}
.ab-step{background:#111318;border:1px solid rgba(200,215,240,.1);border-radius:14px;padding:28px 26px;position:relative;transition:border-color .2s;}
.ab-step:hover{border-color:rgba(200,215,240,.22);}
.ab-step::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(200,215,240,.18),transparent);}
.ab-step-num{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(200,215,240,.25);margin-bottom:14px;}
.ab-step-icon{width:42px;height:42px;border-radius:11px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;background:rgba(200,215,240,.07);border:1px solid rgba(200,215,240,.12);}
.ab-step-title{font-size:17px;font-weight:700;color:#e8ecf4;margin-bottom:8px;letter-spacing:-.01em;}
.ab-step-desc{font-size:13px;color:rgba(200,215,240,.45);line-height:1.65;}
.ab-values{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:48px;position:relative;z-index:1;}
.ab-value{background:#111318;border:1px solid rgba(200,215,240,.1);border-radius:14px;padding:26px 24px;transition:border-color .2s,background .2s;}
.ab-value:hover{border-color:rgba(200,215,240,.2);background:rgba(200,215,240,.02);}
.ab-value-icon{width:36px;height:36px;border-radius:9px;display:flex;align-items:center;justify-content:center;margin-bottom:14px;border:1px solid rgba(200,215,240,.14);}
.ab-value-name{font-size:15px;font-weight:700;color:#e8ecf4;margin-bottom:7px;}
.ab-value-desc{font-size:13px;color:rgba(200,215,240,.42);line-height:1.6;}
.ab-cta{background:linear-gradient(145deg,#14161f,#111318);border:1px solid rgba(200,215,240,.12);border-radius:18px;padding:48px;text-align:center;position:relative;overflow:hidden;z-index:1;}
.ab-cta::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(200,215,240,.25),transparent);}
.ab-cta-title{font-size:clamp(22px,3vw,36px);font-weight:700;color:#e8ecf4;margin-bottom:10px;letter-spacing:-.02em;}
.ab-cta-sub{font-size:14px;color:rgba(200,215,240,.4);margin-bottom:28px;}
@media(max-width:768px){
  .ab-metrics{grid-template-columns:1fr 1fr;}
  .ab-metric:nth-child(2){border-right:none;}
  .ab-metric:nth-child(3){border-top:1px solid rgba(200,215,240,.08);}
  .ab-metric:nth-child(4){border-top:1px solid rgba(200,215,240,.08);border-right:none;}
  .ab-steps,.ab-values{grid-template-columns:1fr;}
  .about-section{padding:80px 0 60px;}
  .ab-mission{padding:28px 24px;}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Blog page  (moved from home/blog.php)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-section{padding:100px 0 80px;position:relative;overflow:hidden;}
.blog-section .container{max-width:1100px;}
.bl-dot-grid{position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(circle,rgba(200,215,240,.05) 1px,transparent 1px);background-size:32px 32px;mask-image:radial-gradient(ellipse 80% 70% at 50% 50%,black 10%,transparent 100%);}
.bl-orb{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none;}
.bl-orb-a{width:600px;height:600px;top:-180px;right:-100px;background:radial-gradient(circle,rgba(80,100,160,.22) 0%,transparent 65%);animation:bl-drift 20s ease-in-out infinite alternate;}
.bl-orb-b{width:450px;height:450px;bottom:-80px;left:-80px;background:radial-gradient(circle,rgba(60,80,140,.18) 0%,transparent 65%);animation:bl-drift 16s ease-in-out infinite alternate reverse;}
@keyframes bl-drift{0%{transform:translate(0,0)}100%{transform:translate(40px,30px)}}
.bl-hero{text-align:center;margin-bottom:60px;position:relative;z-index:1;}
.bl-eyebrow{display:inline-flex;align-items:center;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;background:rgba(200,215,240,.07);border:1px solid rgba(200,215,240,.15);border-radius:20px;padding:4px 12px;color:rgba(200,215,240,.5);margin-bottom:18px;}
.bl-h1{font-size:clamp(30px,5vw,56px);font-weight:300;letter-spacing:-1.5px;line-height:1.1;margin-bottom:14px;filter:drop-shadow(0 0 32px rgba(200,212,224,.14));}
.bl-sub{font-size:15px;color:rgba(200,215,240,.4);max-width:480px;margin:0 auto;}
.bl-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;position:relative;z-index:1;}
.bl-card{background:#111318;border:1px solid rgba(200,215,240,.1);border-radius:16px;overflow:hidden;display:flex;flex-direction:column;transition:border-color .2s,transform .2s;box-shadow:0 8px 28px rgba(0,0,0,.35);}
.bl-card:hover{border-color:rgba(200,215,240,.22);transform:translateY(-3px);}
.bl-cover{height:160px;position:relative;display:flex;align-items:flex-end;padding:16px;}
.bl-date{font-size:10px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;background:rgba(0,0,0,.45);backdrop-filter:blur(6px);border-radius:6px;padding:3px 8px;color:rgba(255,255,255,.7);}
.bl-body{padding:20px 22px 24px;display:flex;flex-direction:column;flex:1;}
.bl-title{font-size:16px;font-weight:700;color:#e8ecf4;letter-spacing:-.01em;line-height:1.4;margin-bottom:10px;}
.bl-excerpt{font-size:13px;color:rgba(200,215,240,.45);line-height:1.65;flex:1;margin-bottom:18px;}
.bl-read{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:rgba(200,215,240,.55);text-decoration:none;transition:color .15s;width:fit-content;}
.bl-read:hover{color:#e8ecf4;}
.bl-author{font-size:11px;color:rgba(200,215,240,.3);margin-top:10px;padding-top:10px;border-top:1px solid rgba(200,215,240,.07);}
.bl-empty{grid-column:1/-1;text-align:center;padding:72px 24px;color:rgba(200,215,240,.3);font-size:14px;}
.bl-cover-0{background:linear-gradient(135deg,#1a1f35,#0f1520);}
.bl-cover-1{background:linear-gradient(135deg,#1a2520,#0f1a15);}
.bl-cover-2{background:linear-gradient(135deg,#251a1a,#1a0f0f);}
.bl-cover-3{background:linear-gradient(135deg,#201a25,#150f1a);}
.bl-cover-4{background:linear-gradient(135deg,#1a2530,#0f1820);}
.bl-cover-5{background:linear-gradient(135deg,#252015,#1a150f);}
@media(max-width:768px){.bl-grid{grid-template-columns:1fr;}.blog-section{padding:80px 0 60px;}}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Blog preview widget  (moved from home/blog_preview.php)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.bpv-section{padding:80px 0 80px;position:relative;overflow:hidden;}
.bpv-section .container{max-width:1100px;}
.bpv-dot-grid{position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(circle,rgba(200,215,240,.04) 1px,transparent 1px);background-size:32px 32px;mask-image:radial-gradient(ellipse 70% 60% at 50% 50%,black 10%,transparent 100%);}
.bpv-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:36px;position:relative;z-index:1;}
.bpv-heading{font-size:clamp(22px,3vw,32px);font-weight:300;letter-spacing:-1px;color:#e8ecf4;line-height:1.15;}
.bpv-eyebrow{font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(200,215,240,.35);margin-bottom:8px;}
.bpv-all{display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:600;color:rgba(200,215,240,.4);text-decoration:none;transition:color .15s;white-space:nowrap;padding-bottom:4px;}
.bpv-all:hover{color:#e8ecf4;}
.bpv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;position:relative;z-index:1;}
.bpv-card{background:#111318;border:1px solid rgba(200,215,240,.09);border-radius:16px;overflow:hidden;display:flex;flex-direction:column;transition:border-color .2s,transform .2s;box-shadow:0 6px 22px rgba(0,0,0,.3);}
.bpv-card:hover{border-color:rgba(200,215,240,.2);transform:translateY(-3px);}
.bpv-cover{height:140px;position:relative;display:flex;align-items:flex-end;padding:14px;}
.bpv-cover-0{background:linear-gradient(135deg,#1a1f35,#0f1520);}
.bpv-cover-1{background:linear-gradient(135deg,#1a2520,#0f1a15);}
.bpv-cover-2{background:linear-gradient(135deg,#251a1a,#1a0f0f);}
.bpv-date{font-size:10px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;background:rgba(0,0,0,.45);backdrop-filter:blur(6px);border-radius:5px;padding:2px 7px;color:rgba(255,255,255,.6);}
.bpv-body{padding:18px 20px 20px;display:flex;flex-direction:column;flex:1;}
.bpv-title{font-size:15px;font-weight:700;color:#e8ecf4;letter-spacing:-.01em;line-height:1.4;margin-bottom:8px;}
.bpv-exc{font-size:12px;color:rgba(200,215,240,.42);line-height:1.6;flex:1;margin-bottom:14px;}
.bpv-read{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:600;color:rgba(200,215,240,.5);text-decoration:none;transition:color .15s;width:fit-content;}
.bpv-read:hover{color:#e8ecf4;}
.bpv-author{font-size:10px;color:rgba(200,215,240,.27);margin-top:8px;padding-top:8px;border-top:1px solid rgba(200,215,240,.06);}
@media(max-width:768px){.bpv-grid{grid-template-columns:1fr;}.bpv-section{padding:60px 0 60px;}.bpv-header{flex-direction:column;align-items:flex-start;gap:12px;}}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   References page  (moved from home/references.php)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ref-section{padding:100px 0 80px;position:relative;overflow:hidden;}
.ref-section .container{max-width:1100px;}
.ref-dot-grid{position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(circle,rgba(200,215,240,.05) 1px,transparent 1px);background-size:32px 32px;mask-image:radial-gradient(ellipse 80% 70% at 50% 50%,black 10%,transparent 100%);}
.ref-orb{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none;}
.ref-orb-a{width:700px;height:700px;top:-200px;right:-120px;background:radial-gradient(circle,rgba(100,130,220,.28) 0%,transparent 65%);animation:ref-drift 20s ease-in-out infinite alternate;}
.ref-orb-b{width:550px;height:550px;bottom:-100px;left:-100px;background:radial-gradient(circle,rgba(80,60,200,.22) 0%,transparent 65%);animation:ref-drift 16s ease-in-out infinite alternate reverse;}
.ref-orb-c{width:500px;height:500px;top:40%;left:50%;transform:translate(-50%,-50%);background:radial-gradient(circle,rgba(40,180,220,.1) 0%,transparent 65%);animation:ref-drift 24s ease-in-out infinite alternate;}
.ref-orb-d{width:360px;height:360px;top:20%;left:15%;background:radial-gradient(circle,rgba(120,80,240,.14) 0%,transparent 65%);animation:ref-drift 18s ease-in-out infinite alternate reverse;}
@keyframes ref-drift{0%{transform:translate(0,0)}100%{transform:translate(40px,30px)}}
.ref-hero{text-align:center;margin-bottom:56px;position:relative;z-index:1;}
.ref-eyebrow{display:inline-flex;align-items:center;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;background:rgba(200,215,240,.07);border:1px solid rgba(200,215,240,.15);border-radius:20px;padding:4px 12px;color:rgba(200,215,240,.5);margin-bottom:18px;}
.ref-h1{font-size:clamp(30px,5vw,56px);font-weight:300;letter-spacing:-1.5px;line-height:1.1;margin-bottom:14px;filter:drop-shadow(0 0 32px rgba(200,212,224,.14));}
.ref-sub{font-size:15px;color:rgba(200,215,240,.4);max-width:520px;margin:0 auto;}
.ref-img-strip{width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;overflow:hidden;margin-bottom:64px;mask-image:linear-gradient(90deg,transparent 0%,black 8%,black 92%,transparent 100%);-webkit-mask-image:linear-gradient(90deg,transparent 0%,black 8%,black 92%,transparent 100%);}
.ref-img-track{display:flex;align-items:stretch;gap:16px;width:max-content;animation:ref-scroll 40s linear infinite;}
.ref-img-wrap{flex-shrink:0;}
.ref-img-wrap img{height:320px;width:auto;min-width:280px;max-width:480px;object-fit:cover;border-radius:16px;display:block;}
@keyframes ref-scroll{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.ref-stats{display:flex;justify-content:center;gap:0;margin-bottom:52px;position:relative;z-index:1;background:#111318;border:1px solid rgba(200,215,240,.1);border-radius:16px;overflow:hidden;}
.ref-stat{flex:1;padding:24px 20px;text-align:center;border-right:1px solid rgba(200,215,240,.08);}
.ref-stat:last-child{border-right:none;}
.ref-stat-n{font-size:28px;font-weight:800;color:#e8ecf4;letter-spacing:-.02em;line-height:1;}
.ref-stat-k{font-size:11px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:rgba(200,215,240,.33);margin-top:6px;}
.ref-filters{display:flex;gap:8px;justify-content:center;margin-bottom:36px;flex-wrap:wrap;position:relative;z-index:1;}
.ref-tab{font-size:12px;font-weight:600;letter-spacing:.04em;padding:6px 16px;border-radius:20px;cursor:pointer;border:1px solid rgba(200,215,240,.12);color:rgba(200,215,240,.4);background:transparent;transition:all .18s;}
.ref-tab:hover{border-color:rgba(200,215,240,.25);color:rgba(200,215,240,.7);}
.ref-tab.active{background:rgba(200,215,240,.1);border-color:rgba(200,215,240,.25);color:#e8ecf4;}
.ref-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;position:relative;z-index:1;}
.ref-card{background:#111318;border:1px solid rgba(200,215,240,.1);border-radius:18px;overflow:hidden;transition:border-color .2s,transform .2s;box-shadow:0 8px 28px rgba(0,0,0,.35);}
.ref-card:hover{border-color:rgba(200,215,240,.22);transform:translateY(-3px);}
.ref-card[data-cat="hidden"]{display:none;}
.ref-card-top{padding:28px 28px 20px;display:flex;align-items:flex-start;gap:16px;}
.ref-brand-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0;border:1px solid rgba(200,215,240,.12);font-size:20px;font-weight:800;letter-spacing:-.04em;}
.ref-brand-meta{flex:1;}
.ref-brand-name{font-size:16px;font-weight:700;color:#e8ecf4;letter-spacing:-.01em;margin-bottom:3px;}
.ref-brand-cat{font-size:11px;font-weight:600;letter-spacing:.07em;text-transform:uppercase;color:rgba(200,215,240,.3);}
.ref-engines{display:flex;gap:5px;margin-top:8px;flex-wrap:wrap;}
.ref-engine-tag{font-size:10px;font-weight:600;letter-spacing:.04em;padding:2px 8px;border-radius:10px;background:rgba(200,215,240,.07);border:1px solid rgba(200,215,240,.1);color:rgba(200,215,240,.45);}
.ref-divider{height:1px;background:rgba(200,215,240,.07);margin:0 28px;}
.ref-card-body{padding:20px 28px;}
.ref-row{margin-bottom:14px;}
.ref-row-label{font-size:10px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:rgba(200,215,240,.28);margin-bottom:5px;}
.ref-row-text{font-size:13px;color:rgba(200,215,240,.55);line-height:1.6;}
.ref-metrics{display:flex;gap:0;border:1px solid rgba(200,215,240,.08);border-radius:12px;overflow:hidden;margin-top:18px;}
.ref-metric{flex:1;padding:14px 12px;text-align:center;border-right:1px solid rgba(200,215,240,.08);}
.ref-metric:last-child{border-right:none;}
.ref-metric-n{font-size:20px;font-weight:800;color:#e8ecf4;letter-spacing:-.02em;line-height:1;}
.ref-metric-k{font-size:10px;font-weight:600;letter-spacing:.05em;text-transform:uppercase;color:rgba(200,215,240,.28);margin-top:4px;}
.ref-testimonials{margin-top:60px;position:relative;z-index:1;}
.ref-t-label{text-align:center;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(200,215,240,.3);margin-bottom:24px;}
.ref-t-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.ref-t-card{background:#111318;border:1px solid rgba(200,215,240,.08);border-radius:14px;padding:24px 22px;position:relative;}
.ref-t-card::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(200,215,240,.14),transparent);}
.ref-t-quote{font-size:13px;color:rgba(200,215,240,.5);line-height:1.7;margin-bottom:16px;font-style:italic;}
.ref-t-author{display:flex;align-items:center;gap:10px;}
.ref-t-avatar{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:#e8ecf4;flex-shrink:0;}
.ref-t-name{font-size:12px;font-weight:700;color:#e8ecf4;}
.ref-t-role{font-size:11px;color:rgba(200,215,240,.3);}
.ref-cta{margin-top:60px;background:linear-gradient(145deg,#14161f,#111318);border:1px solid rgba(200,215,240,.12);border-radius:18px;padding:48px;text-align:center;position:relative;overflow:hidden;}
.ref-cta::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(200,215,240,.25),transparent);}
.ref-cta-title{font-size:clamp(22px,3vw,36px);font-weight:700;color:#e8ecf4;margin-bottom:10px;letter-spacing:-.02em;}
.ref-cta-sub{font-size:14px;color:rgba(200,215,240,.4);margin-bottom:28px;}
@media(max-width:900px){.ref-grid{grid-template-columns:1fr;}}
@media(max-width:768px){
  .ref-section{padding:80px 0 60px;}
  .ref-t-grid{grid-template-columns:1fr;}
  .ref-stats{flex-wrap:wrap;}
  .ref-stat{flex:0 0 50%;border-bottom:1px solid rgba(200,215,240,.08);}
  .ref-stat:nth-child(even){border-right:none;}
  .ref-stat:nth-last-child(-n+2){border-bottom:none;}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Pricing section  (moved from home/pricing.php)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pricing-section{padding:140px 0 80px;position:relative;overflow:hidden;min-height:100vh;}
.pricing-section .container{max-width:1200px;}
.pricing-head{text-align:center;margin-bottom:40px;}
.pricing-head .feat-tag{display:inline-flex;align-items:center;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;background:rgba(200,215,240,.07);border:1px solid rgba(200,215,240,.15);border-radius:20px;padding:4px 12px;color:rgba(200,215,240,.5);margin-bottom:14px;}
.pricing-h2{font-size:clamp(36px,5vw,64px);font-weight:300;letter-spacing:-1.5px;line-height:1.1;margin-bottom:10px;filter:drop-shadow(0 0 32px rgba(200,212,224,.14));}
.pricing-sub{font-size:14px;color:rgba(200,215,240,.38);max-width:460px;margin:0 auto;}
:root{--sv:#c8d4e8;--sv-bright:#dde8f5;--sv-border:rgba(200,215,240,.12);--col-div:rgba(200,215,240,.09);}
.plans-panel{display:grid;grid-template-columns:repeat(4,1fr);grid-template-rows:1fr auto;border:1px solid var(--sv-border);border-radius:18px;overflow:hidden;position:relative;box-shadow:0 0 0 1px rgba(200,215,240,.03),0 12px 48px rgba(0,0,0,.6),0 0 100px rgba(180,200,235,.04),inset 0 1px 0 rgba(255,255,255,.04);}
.plans-panel::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;z-index:2;background:linear-gradient(90deg,transparent,rgba(200,215,240,.3) 25%,rgba(200,215,240,.3) 75%,transparent);}
.plan-card-wrap{display:contents;}
.plan-col{padding:28px 24px 32px;border-right:1px solid var(--col-div);display:flex;flex-direction:column;position:relative;background:#111318;grid-row:1;transform-style:preserve-3d;transition:transform .18s cubic-bezier(.2,0,.3,1),background .15s;}
.plan-card-wrap:last-child .plan-col{border-right:none;}
.plan-col--highlight{background:rgba(200,215,240,.025);}
.plan-col--highlight::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,rgba(200,215,240,.5),transparent);z-index:1;}
.col-badge{display:inline-flex;align-items:center;font-size:10px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:3px 9px;border-radius:20px;margin-bottom:18px;width:fit-content;min-height:22px;}
.col-badge--popular{background:rgba(200,215,240,.1);color:var(--sv);border:1px solid rgba(200,215,240,.2);}
.col-badge--empty{visibility:hidden;}
.col-name{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(200,215,240,.45);margin-bottom:10px;}
.col-price{display:flex;align-items:baseline;gap:2px;margin-bottom:6px;line-height:1;}
.col-dollar{font-size:16px;font-weight:600;color:rgba(200,215,240,.55);align-self:flex-start;margin-top:6px;}
.col-amount{font-size:36px;font-weight:800;color:#e8ecf4;letter-spacing:-.02em;}
.col-period{font-size:12px;color:rgba(200,215,240,.35);margin-left:2px;}
.col-desc{font-size:12px;color:rgba(200,215,240,.35);line-height:1.5;margin-bottom:22px;min-height:36px;}
.col-cta{display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;border-radius:10px;padding:11px 14px;text-decoration:none;transition:all .18s;margin-bottom:24px;}
.col-cta--default{background:rgba(200,215,240,.07);color:var(--sv);border:1px solid rgba(200,215,240,.16);}
.col-cta--default:hover{background:rgba(200,215,240,.12);border-color:rgba(200,215,240,.28);}
.col-cta--highlight{background:linear-gradient(135deg,#b8c8de,#dde8f5,#b8c8de);color:#0d0f18;border:1px solid rgba(255,255,255,.12);box-shadow:0 4px 14px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.3);}
.col-cta--highlight:hover{box-shadow:0 6px 22px rgba(0,0,0,.5),0 0 28px rgba(200,215,240,.16),inset 0 1px 0 rgba(255,255,255,.35);}
.col-div-line{height:1px;background:rgba(200,215,240,.07);margin:0 -24px 20px;}
.col-track{margin-bottom:18px;}
.col-track-label{font-size:10px;font-weight:600;letter-spacing:.07em;text-transform:uppercase;color:rgba(200,215,240,.3);margin-bottom:7px;}
.col-freq{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:600;color:rgba(200,215,240,.6);background:rgba(200,215,240,.07);border:1px solid rgba(200,215,240,.12);border-radius:6px;padding:3px 8px;margin-bottom:8px;}
.col-engines{display:flex;}
.col-engine{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;padding:8px 4px;border-right:1px solid rgba(200,215,240,.08);font-size:10px;font-weight:600;color:rgba(200,215,240,.45);}
.col-engine:last-child{border-right:none;}
.col-engine-logo{width:20px;height:20px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.col-engine-logo img{width:16px;height:16px;object-fit:contain;}
.col-features-label{font-size:10px;font-weight:600;letter-spacing:.07em;text-transform:uppercase;color:rgba(200,215,240,.3);margin-bottom:10px;}
.col-features{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:4px;flex:1;}
.feat-item{border-radius:7px;overflow:hidden;transition:background .15s;cursor:pointer;}
.feat-item:hover{background:rgba(200,215,240,.04);}
.feat-item.open{background:rgba(97,97,97,.06);}
.feat-row{display:flex;align-items:center;gap:8px;padding:5px 6px;font-size:12.5px;color:rgba(200,215,240,.65);line-height:1.4;}
.feat-tick{width:16px;height:16px;border-radius:5px;flex-shrink:0;background:rgba(110,231,183,.08);border:1px solid rgba(110,231,183,.2);display:flex;align-items:center;justify-content:center;transition:all .2s;}
.feat-item.open .feat-tick{background:rgba(110,231,183,.18);border-color:rgba(110,231,183,.45);}
.feat-tick svg{color:#6ee7b7;opacity:.8;}
.feat-text{flex:1;}
.feat-desc{max-height:0;overflow:hidden;transition:max-height .3s cubic-bezier(.4,0,.2,1),opacity .25s;opacity:0;}
.feat-item.open .feat-desc{max-height:80px;opacity:1;}
.feat-desc-inner{padding:0 6px 8px 30px;font-size:11.5px;color:rgba(200,215,240,.38);line-height:1.55;}
.plan-outlets{border-right:1px solid var(--col-div);border-top:1px solid rgba(200,215,240,.07);padding:18px 24px 24px;display:flex;flex-direction:column;background:#111318;grid-row:2;}
.plan-card-wrap:last-child .plan-outlets{border-right:none;}
.col-outlets-title{font-size:9.5px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:rgba(200,215,240,.28);margin-bottom:10px;line-height:1.4;}
.col-outlets-title strong{display:block;font-size:10px;color:rgba(200,215,240,.38);letter-spacing:.05em;margin-bottom:1px;}
.col-logos{display:grid;grid-template-columns:1fr 1fr;gap:5px;}
.col-logo{height:28px;border-radius:6px;background:rgba(200,215,240,.05);border:1px solid rgba(200,215,240,.1);display:flex;align-items:center;justify-content:center;overflow:hidden;transition:background .15s,border-color .15s;}
.col-logo:hover{background:rgba(200,215,240,.11);border-color:rgba(200,215,240,.2);}
.col-logo img{max-width:80%;max-height:15px;object-fit:contain;filter:brightness(0) invert(1);opacity:.55;}
.plans-note{font-size:12px;color:rgba(200,215,240,.28);margin-top:18px;text-align:center;}
.plans-note a{color:rgba(200,215,240,.45);}
.pr-dot-grid{position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(circle,rgba(200,215,240,.055) 1px,transparent 1px);background-size:32px 32px;mask-image:radial-gradient(ellipse 80% 70% at 50% 50%,black 10%,transparent 100%);}
.pr-orb{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none;}
.pr-orb-a{width:700px;height:700px;top:-200px;left:-180px;background:radial-gradient(circle,rgba(80,100,160,.28) 0%,transparent 65%);animation:pr-drift-a 16s ease-in-out infinite alternate;}
.pr-orb-b{width:600px;height:600px;bottom:-150px;right:-140px;background:radial-gradient(circle,rgba(60,80,140,.22) 0%,transparent 65%);animation:pr-drift-b 20s ease-in-out infinite alternate;}
.pr-orb-c{width:400px;height:400px;top:40%;left:50%;transform:translate(-50%,-50%);background:radial-gradient(circle,rgba(100,120,180,.12) 0%,transparent 70%);animation:pr-drift-c 12s ease-in-out infinite alternate;}
@keyframes pr-drift-a{0%{transform:translate(0,0) scale(1)}100%{transform:translate(60px,40px) scale(1.08)}}
@keyframes pr-drift-b{0%{transform:translate(0,0) scale(1)}100%{transform:translate(-50px,-35px) scale(1.06)}}
@keyframes pr-drift-c{0%{transform:translate(-50%,-50%) scale(1)}100%{transform:translate(-50%,-50%) scale(1.18)}}
.pr-streaks{position:absolute;inset:0;pointer-events:none;overflow:hidden;}
.pr-streak{position:absolute;height:1px;background:linear-gradient(90deg,transparent,rgba(200,215,240,.12),transparent);pointer-events:none;}
.pr-panel-wrap{position:relative;--bx:50%;--by:50%;}
.pr-panel-wrap::before{content:'';position:absolute;inset:-1px;border-radius:19px;background:linear-gradient(135deg,rgba(200,215,240,.12),transparent 40%,transparent 60%,rgba(200,215,240,.08));pointer-events:none;z-index:0;}
.pr-panel-wrap .plans-panel{position:relative;z-index:1;}
.pr-panel-wrap::after{content:'';position:absolute;inset:-1px;border-radius:19px;background:radial-gradient(circle 400px at var(--bx) var(--by),rgba(200,215,240,.025),transparent 60%);pointer-events:none;z-index:2;opacity:0;transition:opacity .4s;}
.pr-panel-wrap.mouse-in::after{opacity:1;}
#pr-torch{position:absolute;width:750px;height:750px;border-radius:50%;background:radial-gradient(circle,rgba(180,205,255,.04) 0%,rgba(160,190,240,.02) 35%,transparent 65%);pointer-events:none;z-index:0;will-change:transform;}
.col-glass{position:absolute;inset:0;pointer-events:none;z-index:1;background:radial-gradient(circle 200px at var(--gx,50%) var(--gy,50%),rgba(220,235,255,.015),transparent 65%);opacity:0;transition:opacity .3s;border-radius:inherit;}
.plan-col:hover .col-glass{opacity:1;}
.pr-sparkles{position:absolute;inset:0;pointer-events:none;overflow:hidden;z-index:0;}
.sp{position:absolute;pointer-events:none;opacity:0;will-change:opacity,transform;animation:sp-twinkle var(--sp-dur,5s) ease-in-out var(--sp-delay,0s) infinite;}
.sp::before{content:'';position:absolute;width:var(--sp-thin,1.5px);height:var(--sp-len,10px);background:var(--sp-color,rgba(200,215,240,.75));border-radius:2px;top:50%;left:50%;transform:translate(-50%,-50%);box-shadow:0 0 4px var(--sp-glow,rgba(200,215,240,.4));}
.sp::after{content:'';position:absolute;width:var(--sp-len,10px);height:var(--sp-thin,1.5px);background:var(--sp-color,rgba(200,215,240,.75));border-radius:2px;top:50%;left:50%;transform:translate(-50%,-50%);box-shadow:0 0 4px var(--sp-glow,rgba(200,215,240,.4));}
@keyframes sp-twinkle{0%{opacity:0;transform:scale(.15) rotate(0deg);}20%{opacity:1;transform:scale(1) rotate(15deg);}40%{opacity:.7;transform:scale(.85) rotate(-8deg);}60%{opacity:1;transform:scale(1.05) rotate(10deg);}80%{opacity:.4;transform:scale(.7) rotate(-5deg);}100%{opacity:0;transform:scale(.15) rotate(0deg);}}
@media(max-width:767px){
  .pricing-section{padding:80px 0 60px;}
  .pricing-h2{font-size:32px;letter-spacing:-.5px;}
  .pr-panel-wrap::before,.pr-panel-wrap::after{display:none;}
  .plans-panel{display:flex;flex-direction:column;gap:14px;border:none;border-radius:0;overflow:visible;background:transparent;box-shadow:none;}
  .plans-panel::before{display:none;}
  .plan-card-wrap{display:block;border:1px solid var(--sv-border);border-radius:16px;overflow:hidden;box-shadow:0 8px 28px rgba(0,0,0,.45),inset 0 1px 0 rgba(255,255,255,.04);background:#111318;}
  .plan-card-wrap:last-child .plan-col,.plan-card-wrap:last-child .plan-outlets{border-right:none;}
  .plan-col{border-right:none;border-bottom:1px solid var(--col-div);padding:24px 20px 26px;}
  .plan-col--highlight::before{display:block;}
  .plan-outlets{border-right:none;border-top:1px solid rgba(200,215,240,.07);padding:16px 20px 20px;}
  .col-amount{font-size:30px;}
  .col-logos{grid-template-columns:repeat(4,1fr);}
  .col-engines{flex-wrap:wrap;}
  .col-engine{min-width:25%;}
  .col-cta{padding:12px 14px;}
}
