/* =========================================
   BexyTV — Dark, modern, premium UI
   ========================================= */

:root {
  --bg: #07080d;
  --bg-elev: #0d0f17;
  --bg-card: rgba(20, 23, 35, 0.6);
  --bg-card-hover: rgba(28, 32, 48, 0.75);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #eef0f6;
  --text-muted: #9aa1b3;
  --text-dim: #6b7185;

  --accent: #6ee7ff;        /* cyan */
  --accent-2: #a78bfa;      /* purple */
  --accent-3: #f472b6;      /* pink */
  --accent-glow: rgba(110, 231, 255, 0.35);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;

  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 0 1px rgba(110, 231, 255, 0.25), 0 20px 60px rgba(110, 231, 255, 0.15);

  --container: 1180px;
  --header-h: 84px;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: .95rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-muted); }

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

/* ---------- Background orbs ---------- */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.45;
  animation: orbFloat 22s ease-in-out infinite;
}
.orb-1 { width: 520px; height: 520px; background: #1e3a8a; top: -180px; left: -160px; }
.orb-2 { width: 460px; height: 460px; background: #7c3aed; top: 30%; right: -180px; animation-delay: -8s; }
.orb-3 { width: 380px; height: 380px; background: #06b6d4; bottom: -160px; left: 30%; animation-delay: -14s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 8, 13, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}
.logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 4px 18px rgba(0, 213, 241, 0.25));
  transition: filter 0.25s ease, transform 0.25s ease;
}
.logo:hover .logo-img {
  filter: drop-shadow(0 6px 22px rgba(0, 213, 241, 0.45));
  transform: translateY(-1px);
}
.site-footer .logo-img {
  height: 46px;
}

.nav-links {
  display: flex;
  gap: 56px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 40px; height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #07080d;
  box-shadow: 0 10px 30px rgba(110, 231, 255, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(110, 231, 255, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
}

.btn-lg { padding: 14px 24px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Eyebrow / chip ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(110, 231, 255, 0.08);
  border: 1px solid rgba(110, 231, 255, 0.2);
  margin-bottom: 16px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

.grad-text {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
}
.hero-stats span {
  color: var(--text-dim);
  font-size: .85rem;
}

/* Hero visual — fake device mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.device-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 14px;
  backdrop-filter: blur(20px);
}
.device-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.4;
}
.device-screen {
  background: #0a0c14;
  border-radius: 14px;
  height: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
}
.ds-topbar {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ds-pill {
  height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 4px;
  width: 80px;
  opacity: 0.7;
}
.ds-pill-sm { width: 36px; opacity: 0.3; background: var(--text-dim); }

.ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
}
.ds-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
}
.ds-card-lg {
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(110,231,255,0.18), rgba(167,139,250,0.18));
  border-color: rgba(110, 231, 255, 0.3);
  display: flex;
  align-items: flex-start;
  padding: 10px;
}
.ds-card-lg span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  background: var(--accent-3);
  color: #07080d;
  border-radius: 4px;
}
.ds-now-playing {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.ds-thumb {
  width: 40px; height: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
}
.ds-meta { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ds-line { height: 6px; border-radius: 3px; background: var(--text-dim); opacity: 0.6; }
.ds-line-1 { width: 60%; }
.ds-line-2 { width: 40%; opacity: 0.3; }
.ds-play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #07080d;
  display: flex; align-items: center; justify-content: center;
}

.device-base {
  width: 50%;
  height: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  margin: 6px auto 0;
  border-radius: 0 0 12px 12px;
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(20, 23, 35, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  animation: chipFloat 5s ease-in-out infinite;
}
.chip-1 {
  top: 10%;
  left: -8%;
  color: var(--accent);
}
.chip-2 {
  bottom: 12%;
  right: -6%;
  animation-delay: -2.5s;
}
.chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  font-size: .8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 18px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-muted);
  font-size: 1rem;
}
.trust-logos span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.trust-logos span:hover { color: var(--text); }
.trust-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.85;
  transition: opacity .2s, transform .2s;
}
.trust-logos span:hover .trust-ico {
  opacity: 1;
  transform: translateY(-1px);
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02) 30%, rgba(255,255,255,0.02) 70%, transparent);
}
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p {
  font-size: 1.05rem;
}

/* ---------- Features grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: transform .25s, border-color .25s, background .25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.feature-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(110,231,255,0.18), rgba(167,139,250,0.18));
  color: var(--accent);
  border: 1px solid rgba(110, 231, 255, 0.2);
}
.feature-card h3 { color: var(--text); }
.feature-card p { margin-bottom: 0; font-size: .95rem; }

/* ---------- Showcase ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.showcase-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(110,231,255,0.08), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.showcase-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.showcase-card:hover::after { opacity: 1; }

.sc-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.15);
  color: var(--accent-2);
  margin-bottom: 16px;
}
.showcase-card h3 { color: var(--text); }
.showcase-card p { margin-bottom: 0; }

.legal-note {
  margin-top: 32px;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text-muted);
}
.legal-note strong { color: var(--text); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.pricing-grid-5 .price-card { padding: 22px 18px; gap: 14px; }
.pricing-grid-5 .price-amount { font-size: 1.85rem; }
.pricing-grid-5 .price-card header h3 { font-size: 1.1rem; }
.pricing-grid-5 .price-blurb { font-size: .82rem; }
.pricing-grid-5 .price-features { gap: 8px; }
.pricing-grid-5 .price-features li { font-size: .88rem; padding-left: 22px; }
.price-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .25s, border-color .25s;
}
.pricing-grid-4 .price-card { padding: 24px 20px; gap: 16px; }
.pricing-grid-4 .price-amount { font-size: 2.1rem; }
.pricing-grid-4 .price-card header h3 { font-size: 1.2rem; }
.price-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.price-card-featured {
  border-color: rgba(110, 231, 255, 0.4);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(160deg, rgba(110,231,255,0.06), rgba(167,139,250,0.04));
}
.ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.ribbon-soft {
  background: rgba(167, 139, 250, 0.18);
  color: var(--accent-2);
  border: 1px solid rgba(167, 139, 250, 0.35);
}
.price-effective {
  margin: -8px 0 0;
  font-size: .82rem;
  color: var(--accent);
  font-weight: 500;
}
.price-card header h3 { color: var(--text); margin-bottom: 4px; font-size: 1.4rem; }
.price-blurb { font-size: .9rem; margin: 0; }
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
}
.price-amount {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.price-period {
  color: var(--text-dim);
  font-size: .9rem;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-features li {
  position: relative;
  padding-left: 24px;
  font-size: .95rem;
  color: var(--text-muted);
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: rgba(110, 231, 255, 0.3); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform .25s;
}
.faq-icon::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translateY(-50%) rotate(0); }
.faq-body {
  padding: 0 22px 20px;
  color: var(--text-muted);
}
.faq-body p { margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-copy h2 { margin-bottom: 16px; }
.contact-meta {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-meta li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.contact-meta li:last-child { border-bottom: 0; }
.cm-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  width: 70px;
  flex-shrink: 0;
}
.contact-meta a { color: var(--accent); }
.cm-aux {
  color: var(--text-dim);
  font-size: .82rem;
  margin-left: 4px;
}

.contact-form {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.form-row input,
.form-row select,
.form-row textarea {
  background: rgba(7, 8, 13, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(110, 231, 255, 0.15);
}
.form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%239aa1b3' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.form-note {
  margin: 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .9rem;
}
.form-note.is-success {
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #6ee7b7;
}
.form-note.is-error {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #fca5a5;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-tag { color: var(--text-dim); font-size: .9rem; margin: 0 0 14px; }
.footer-region {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.footer-region a { color: var(--accent); }
.region-pip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 5px;
  color: #07080d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.footer-col h4 { color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: .92rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.footer-bottom small {
  color: var(--text-dim);
  font-size: .8rem;
}
.footer-disclaimer { max-width: 520px; text-align: right; }

/* =========================================
   INTERACTIVE POLISH
   ========================================= */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  z-index: 100;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  box-shadow: 0 0 12px rgba(110, 231, 255, 0.5);
  transition: width 0.05s linear;
  pointer-events: none;
}

/* Custom cursor glow (desktop only via media query below) */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(110, 231, 255, 0.15), rgba(167, 139, 250, 0.06) 40%, transparent 70%);
  transform: translate(-50%, -50%) translate3d(var(--cx, -1000px), var(--cy, -1000px), 0);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-glow { display: block; }
  body.cursor-active .cursor-glow { opacity: 1; }
}

/* 3D tilt cards */
.tiltable {
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.tiltable > * {
  transform: translateZ(0);
}
@media (prefers-reduced-motion: reduce) {
  .tiltable { transform: none !important; }
}

/* Click ripple inside any .btn */
.btn,
.btn-watch-demo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 0;
}
.btn-primary .ripple { background: rgba(7, 8, 13, 0.3); }
@keyframes rippleAnim {
  to { transform: scale(2.4); opacity: 0; }
}

/* Active nav link indicator */
.nav-links a {
  position: relative;
  padding: 6px 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}
.nav-links a.is-active { color: var(--text); }

/* Animated conic-gradient border on featured pricing card */
.price-card-featured {
  position: relative;
}
.price-card-featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(
    from 0deg,
    var(--accent) 0deg,
    var(--accent-2) 100deg,
    var(--accent-3) 200deg,
    var(--accent) 360deg
  );
  z-index: -1;
  filter: blur(2px);
  opacity: 0.6;
  animation: conicSpin 6s linear infinite;
}
.price-card-featured > * { position: relative; z-index: 1; }
@keyframes conicSpin {
  to { transform: rotate(360deg); }
}

/* Cursor spotlight on pricing cards (extends showcase pattern) */
.price-card {
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), rgba(110, 231, 255, 0.07), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
  border-radius: inherit;
}
.price-card:hover::before { opacity: 1; }
.price-card > * { position: relative; z-index: 1; }

/* Interactive feature/stat/review cards on hover */
.feature-card,
.stat-card,
.review-card {
  position: relative;
  overflow: hidden;
}
.feature-card::after,
.stat-card::after,
.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(110, 231, 255, 0.08), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
  border-radius: inherit;
}
.feature-card:hover::after,
.stat-card:hover::after,
.review-card:hover::after { opacity: 1; }
.feature-card > *,
.stat-card > *,
.review-card > * { position: relative; z-index: 1; }

/* Scroll-link enhancement: anchor offset for sticky header */
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

/* =========================================
   HERO V2 — advanced/stylish landing
   ========================================= */

.hero-v2 {
  position: relative;
  padding: 80px 0 56px;
  overflow: hidden;
}

/* ---- Background layers ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, #000 60%, transparent 100%);
}
.hero-mesh {
  position: absolute;
  top: -10%; left: 50%;
  width: 80vw; height: 70vh;
  max-width: 1200px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 30% 30%, rgba(110, 231, 255, 0.25), transparent 45%),
    radial-gradient(circle at 70% 50%, rgba(167, 139, 250, 0.22), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(244, 114, 182, 0.18), transparent 55%);
  filter: blur(40px);
  opacity: 0.7;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: overlay;
}

.hero-v2 .container { position: relative; z-index: 1; }

/* ---- Release announcement pill ---- */
.release-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: background .2s, border-color .2s, transform .15s;
}
.release-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.release-badge {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  box-shadow: 0 0 12px rgba(110, 231, 255, 0.4);
}
.release-text { color: var(--text); }
.release-pill svg { transition: transform .2s; }
.release-pill:hover svg { transform: translateX(3px); }

/* ---- Savings banner (positioned top-right of hero, no frame) ---- */
.savings-banner {
  position: absolute;
  top: 8px;
  right: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.savings-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  background: transparent;
  flex-shrink: 0;
}
.savings-text strong {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

@media (max-width: 720px) {
  .savings-banner {
    position: static;
    margin: 0 0 18px;
  }
}

/* ---- Hero title with animated gradient sweep ---- */
.hero-title {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.grad-sweep {
  background-size: 200% 100%;
  animation: gradSweep 6s ease-in-out infinite;
}
@keyframes gradSweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---- Shine button ---- */
.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0% { left: -75%; }
  60% { left: 130%; }
  100% { left: 130%; }
}

/* ---- Watch-demo CTA ---- */
.btn-watch-demo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  transition: background .2s, border-color .2s;
}
.btn-watch-demo:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
}
.play-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.play-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: livePulse 2s ease-out infinite;
}
.demo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.demo-text strong { font-size: .92rem; font-weight: 600; }
.demo-text span { font-size: .78rem; color: var(--text-dim); }

/* ---- Social proof ---- */
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.avatar-pile {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
}
.avatar-pile li {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--av, var(--accent));
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  color: #07080d;
  margin-left: -10px;
}
.avatar-pile li:first-child { margin-left: 0; }
.avatar-pile .more-count {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: .68rem;
}
.proof-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .85rem;
  color: var(--text-muted);
}
.proof-text strong { color: var(--text); }
.proof-stars { display: inline-flex; gap: 2px; }
.proof-stars .star { width: 13px; height: 13px; }

/* =========================================
   HERO VISUAL V2 — TV + phone mockup
   ========================================= */
.hero-visual-v2 {
  position: relative;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.tilt-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  transform-style: preserve-3d;
  transition: transform .4s ease-out;
}

/* TV mockup */
.mockup-tv {
  position: relative;
  width: 100%;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  padding: 12px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: translateZ(0);
}
.mockup-tv::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  z-index: -1;
  filter: blur(28px);
  opacity: 0.45;
  animation: mockupGlow 8s ease-in-out infinite;
}
@keyframes mockupGlow {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.02); }
}
.mockup-screen {
  background: #0a0c14;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.mockup-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 8, 13, 0.4) 100%);
  pointer-events: none;
}

.ms-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ms-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: .72rem;
}
.ms-search svg { color: var(--text-dim); flex-shrink: 0; }
.ms-clock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  color: var(--text);
}
.ms-quality {
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--accent);
  color: #07080d;
}

.ms-feature {
  position: relative;
  height: 44%;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--g1, #3b82f6) 0%, var(--g2, #a78bfa) 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.ms-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.22), transparent 50%);
}
.ms-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent 70%);
}
.ms-feature-tag {
  position: absolute;
  top: 10px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  background: rgba(244, 63, 94, 0.95);
  color: white;
  border-radius: 4px;
  z-index: 1;
}
.ms-feature-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.ms-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.85);
}
.ms-l-lg { width: 60%; }
.ms-l-md { width: 35%; height: 4px; opacity: 0.5; }

.ms-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  flex-shrink: 0;
}
.ms-row-sm {
  grid-template-columns: repeat(5, 1fr);
}
.ms-tile {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--g1, #3b82f6), var(--g2, #a78bfa));
  position: relative;
  overflow: hidden;
}
.ms-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 60%);
}
.ms-tile-sm {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--g1, #3b82f6), var(--g2, #a78bfa));
  opacity: 0.85;
  position: relative;
  overflow: hidden;
}
.ms-tile-sm::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
}

.ms-live-pill {
  position: absolute;
  top: 6px; left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: white;
  border-radius: 3px;
  z-index: 1;
}
.lp-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
  animation: pulse 1.5s ease-in-out infinite;
}

.mockup-stand {
  width: 14%;
  height: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent);
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}
.mockup-base {
  width: 38%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  margin: 2px auto 0;
  border-radius: 999px;
  filter: blur(0.5px);
}

/* Phone mockup */
.mockup-phone {
  position: absolute;
  bottom: -10%;
  right: -8%;
  width: 28%;
  max-width: 160px;
  z-index: 2;
  transform: rotate(6deg) translateZ(60px);
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: rotate(6deg) translateZ(60px) translateY(0); }
  50% { transform: rotate(6deg) translateZ(60px) translateY(-6px); }
}
.phone-frame {
  background: linear-gradient(160deg, #1a1d2a, #0a0c14);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 6px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 28%; height: 12px;
  background: #0a0c14;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}
.phone-screen {
  background: #0a0c14;
  border-radius: 16px;
  aspect-ratio: 9 / 18;
  padding: 18px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.phone-art {
  flex: 1;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.phone-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 60%);
}
.phone-live-tag {
  position: absolute;
  top: 8px; left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  border-radius: 3px;
  z-index: 2;
}
.phone-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.phone-line {
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.85);
}
.phone-l-lg { width: 70%; }
.phone-l-md { width: 45%; height: 3px; opacity: 0.5; }

.phone-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin: 4px;
  overflow: hidden;
}
.phone-progress-fill {
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  animation: phoneProgress 5s ease-in-out infinite;
}
@keyframes phoneProgress {
  0% { width: 18%; }
  90% { width: 92%; }
  100% { width: 18%; }
}
.phone-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px;
}
.phone-ctrl {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.phone-ctrl-main {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
}

/* Floating chips */
.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(15, 17, 26, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  z-index: 3;
  animation: chipFloat 5s ease-in-out infinite;
}
.chip-epg {
  top: 4%;
  left: -10%;
  color: var(--accent);
}
.chip-quality {
  top: 28%;
  right: -14%;
  animation-delay: -1.5s;
}
.chip-q {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
}
.chip-live {
  bottom: 16%;
  left: -6%;
  animation-delay: -3s;
  border-color: rgba(244, 114, 182, 0.4);
}
.chip-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 10px var(--accent-3);
  position: relative;
}
.chip-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent-3);
  animation: livePulse 1.6s ease-out infinite;
}
.chip-num {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--accent-3);
  margin-right: 2px;
}

/* =========================================
   CHANNEL CATEGORY MARQUEE
   ========================================= */
.hero-marquee {
  position: relative;
  margin-top: 56px;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero-marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.02);
  transition: color .2s, border-color .2s;
}
.marquee-pill:hover {
  color: var(--text);
  border-color: var(--accent);
}
.mp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 6px var(--accent-3);
}
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-l { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
.marquee-fade-r { right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }

/* =========================================
   COMPATIBILITY tabs (homepage device categories)
   ========================================= */
.compat-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.compat-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s, transform .15s, box-shadow .25s;
}
.compat-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
}
.compat-tab.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(110, 231, 255, 0.3);
}
.compat-tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.compat-panels {
  position: relative;
}
.compat-panel {
  display: none;
  flex-direction: column;
  gap: 22px;
}
.compat-panel.is-active {
  display: flex;
}
.compat-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  align-items: center;
  animation: compatFade 0.35s ease;
}
.compat-steps-block {
  animation: compatFade 0.4s ease .05s both;
  padding: 6px 8px 0;
}
.compat-steps-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.compat-steps-title::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
@keyframes compatFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.compat-cat {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.compat-info h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}
.compat-platforms {
  margin: 0 0 16px;
  padding: 10px 14px;
  background: rgba(110, 231, 255, 0.06);
  border: 1px solid rgba(110, 231, 255, 0.22);
  border-radius: 10px;
  font-size: .88rem;
  color: var(--text);
  line-height: 1.55;
}
.compat-platforms-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 6px;
}
.compat-info p {
  color: var(--text-muted);
  font-size: .98rem;
  margin-bottom: 14px;
}
.compat-code {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--text-dim);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: inline-block;
}
.compat-code strong {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-left: 4px;
  font-variant-numeric: tabular-nums;
}
.compat-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  flex-wrap: wrap;
}
.compat-guide {
  color: var(--accent);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: color .2s;
}
.compat-guide:hover { color: var(--accent-2); }

.compat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.compat-device {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--g1, #1e3a8a), var(--g2, #7c3aed));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.compat-device::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.35), transparent 50%);
  pointer-events: none;
}
.compat-device::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
    rgba(255, 255, 255, 0.04) 0 2px,
    transparent 2px 16px);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.compat-device svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Numbered install steps inside each compat panel (install.html) */
.install-steps {
  margin: 26px 0 0;
  padding: 22px 22px 22px 18px;
  list-style: none;
  counter-reset: install-step;
  background: rgba(7, 8, 13, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.install-steps li {
  counter-increment: install-step;
  position: relative;
  padding-left: 40px;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.55;
}
.install-steps li::before {
  content: counter(install-step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 12px rgba(110, 231, 255, 0.25);
}
.install-steps li strong {
  color: var(--text);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
  .compat-frame {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .compat-visual { order: -1; }
}
@media (max-width: 720px) {
  .compat-tabs { gap: 8px; }
  .compat-tab { padding: 10px 16px; font-size: .85rem; }
  .compat-frame { padding: 22px; gap: 22px; }
  .compat-steps-block { padding: 22px; }
  .compat-info h3 { font-size: 1.35rem; }
  .install-steps li { padding-left: 36px; font-size: .88rem; }
  .install-steps li::before { width: 22px; height: 22px; font-size: .72rem; }
}

/* ---------- Stats ---------- */
.section-stats { padding: 80px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.stat-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: transform .25s, border-color .25s, background .25s;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,231,255,0.18), transparent 60%);
  pointer-events: none;
}
.stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(110,231,255,0.18), rgba(167,139,250,0.18));
  color: var(--accent);
  border: 1px solid rgba(110, 231, 255, 0.2);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}
.stat-meta {
  color: var(--text-dim);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-card-live {
  border-color: rgba(244, 114, 182, 0.35);
  background: linear-gradient(160deg, rgba(244,114,182,0.06), rgba(167,139,250,0.04));
}
.stat-card-live::before {
  background: radial-gradient(circle, rgba(244,114,182,0.22), transparent 60%);
}
.stat-card-live .stat-num {
  background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.live-pulse {
  position: relative;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent-3);
  display: block;
  box-shadow: 0 0 12px var(--accent-3);
}
.live-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent-3);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
  display: inline-block;
  animation: pulse 1.6s ease-in-out infinite;
}

.stat-mini-row {
  list-style: none;
  margin: 0; padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-mini-row li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-mini-row strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stat-mini-row span {
  font-size: .82rem;
  color: var(--text-dim);
}

/* ---------- Reviews ---------- */
.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}
.rating-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.rating-num {
  font-size: 1.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rating-out {
  color: var(--text-dim);
  font-size: 1rem;
}
.rating-stars {
  display: inline-flex;
  gap: 2px;
}
.rating-count {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  border-left: 1px solid var(--border);
  padding-left: 22px;
}
.rating-count strong {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1rem;
}
.rating-count span {
  font-size: .78rem;
  color: var(--text-dim);
}

/* Star icon (CSS-only via mask) */
.star {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--text-dim);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14l-5-4.87 6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14l-5-4.87 6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.35;
}
.star.is-on {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  opacity: 1;
}
.star.is-half {
  background:
    linear-gradient(90deg, #fbbf24 50%, rgba(255,255,255,0.18) 50%);
}
.review-stars { display: inline-flex; gap: 3px; margin-bottom: 14px; }
.review-stars .star { width: 14px; height: 14px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.review-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  transition: transform .25s, border-color .25s, background .25s;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 6px; right: 18px;
  font-family: 'Space Grotesk', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}

.review-body {
  margin: 0 0 20px;
  font-size: .98rem;
  line-height: 1.6;
  color: var(--text);
  font-style: normal;
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 0.02em;
  color: #07080d;
  background: var(--av, var(--accent));
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.06);
}
.meta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}
.meta-text strong {
  color: var(--text);
  font-size: .92rem;
  font-weight: 600;
}
.meta-text span {
  font-size: .78rem;
  color: var(--text-dim);
}
.verified {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.35);
  flex-shrink: 0;
}

.review-source-note {
  text-align: center;
  font-size: .82rem;
  color: var(--text-dim);
  margin: 28px auto 0;
  max-width: 600px;
}

/* =========================================
   PLANS PAGE
   ========================================= */

.page-hero {
  position: relative;
  padding: 64px 0 24px;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: .82rem;
  color: var(--text-dim);
}
.breadcrumbs a {
  color: var(--text-muted);
  transition: color .2s;
}
.breadcrumbs a:hover { color: var(--accent); }
.bc-sep { opacity: 0.5; }

.page-hero-head {
  max-width: 720px;
}

/* Page-hero 2-column grid (text + visual mockup) */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 36px;
}
@media (max-width: 960px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =========================================
   RESELLER DASHBOARD MOCKUP (animated)
   ========================================= */
.reseller-visual {
  position: relative;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.reseller-visual .tilt-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.dashboard-mockup {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-strong);
  padding: 14px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard-mockup::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  z-index: -1;
  filter: blur(28px);
  opacity: 0.4;
  animation: mockupGlow 8s ease-in-out infinite;
}

/* Top header strip */
.dm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(7, 8, 13, 0.6);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.dm-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  color: var(--text);
}
.dm-mark {
  width: 12px; height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 8px var(--accent-glow);
}
.dm-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}
.dm-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
  animation: pulse 1.6s ease-in-out infinite;
}

/* Stat cards */
.dm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dm-stat {
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dm-stat-featured {
  background: linear-gradient(135deg, rgba(110,231,255,0.10), rgba(167,139,250,0.06));
  border-color: rgba(110, 231, 255, 0.32);
}
.dm-stat-label {
  font-size: .58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.dm-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dm-stat-featured .dm-stat-num {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dm-stat-trend {
  font-size: .65rem;
  color: var(--text-dim);
}
.dm-stat-trend-up { color: #34d399; }

/* Animated growth chart */
.dm-chart {
  height: 56px;
  border-radius: 9px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.dm-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}
.dm-chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: dmChartReveal 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 0 4px rgba(110, 231, 255, 0.5));
}
@keyframes dmChartReveal {
  0%   { stroke-dashoffset: 600; opacity: 0.3; }
  10%  { opacity: 1; }
  60%  { stroke-dashoffset: 0;   opacity: 1; }
  90%  { opacity: 0.4; }
  100% { stroke-dashoffset: -600; opacity: 0.3; }
}
.dm-chart-fill {
  opacity: 0;
  animation: dmChartFill 4s ease-in-out infinite;
}
@keyframes dmChartFill {
  0%, 10% { opacity: 0; }
  30%, 70% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

/* Customer activity rows */
.dm-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-12px);
  animation: dmRowIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.dm-row:nth-child(1) { animation-delay: 0.5s; }
.dm-row:nth-child(2) { animation-delay: 0.85s; }
.dm-row:nth-child(3) { animation-delay: 1.2s; }
@keyframes dmRowIn {
  to { opacity: 1; transform: translateX(0); }
}
.dm-av {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--av);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .6rem;
  color: #07080d;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.dm-row-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.dm-line {
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
}
.dm-line-lg { width: 80%; }
.dm-line-md { width: 65%; }
.dm-line-sm { width: 40%; opacity: 0.6; height: 4px; }

.dm-tag {
  font-family: var(--font-display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.dm-tag-ok {
  background: rgba(52, 211, 153, 0.14);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.28);
}
.dm-tag-new {
  background: rgba(110, 231, 255, 0.14);
  color: var(--accent);
  border: 1px solid rgba(110, 231, 255, 0.32);
}

/* Floating chips around the dashboard mockup */
.reseller-visual .float-chip {
  position: absolute;
  z-index: 3;
}
.reseller-visual .chip-revenue {
  top: 4%;
  left: -8%;
  color: #34d399;
}
.reseller-visual .chip-revenue strong { color: #6ee7b7; font-weight: 800; }
.reseller-visual .chip-margin {
  top: 36%;
  right: -10%;
  animation-delay: -1.5s;
  border-color: rgba(167, 139, 250, 0.4);
}
.chip-margin-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 3px;
}
.reseller-visual .chip-active {
  bottom: 6%;
  left: -6%;
  animation-delay: -3s;
}
.reseller-visual .chip-active strong { color: var(--accent); font-weight: 800; }

@media (max-width: 720px) {
  .reseller-visual { min-height: 320px; }
  .reseller-visual .tilt-stage { max-width: 380px; }
  .reseller-visual .chip-revenue { left: 0; }
  .reseller-visual .chip-margin { right: 0; }
  .reseller-visual .chip-active { left: 0; }
}
.page-hero-head .hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 18px;
}
.page-hero-head .lede {
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.page-hero-head .lede strong { color: var(--text); }

.page-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.meta-num small {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dim);
}
.meta-label {
  font-size: .82rem;
  color: var(--text-dim);
}

.section-pricing-page { padding: 32px 0 64px; }

/* Plan-controls row (currency + device pills) */
.plan-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Currency toggle (USD / CAD) */
.currency-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.currency-label {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
}
.currency-pills {
  display: inline-flex;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}
.currency-pill {
  background: transparent;
  border: 0;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.currency-pill:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.currency-pill.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  box-shadow: 0 6px 16px rgba(110, 231, 255, 0.28);
}

/* Device count selector */
.device-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.device-selector-label {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
}
.device-selector-hint {
  color: var(--text-dim);
  font-size: .8rem;
  font-style: italic;
}
.device-selector-pills {
  display: inline-flex;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}
.dev-pill {
  background: transparent;
  border: 0;
  width: 44px;
  height: 36px;
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: color .2s, background .2s, transform .15s;
}
.dev-pill:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.dev-pill.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  box-shadow: 0 6px 18px rgba(110, 231, 255, 0.3);
}
.dev-pill:active { transform: scale(0.94); }

/* Price flash animation when device count changes */
.price-amount,
[data-effective],
[data-dev-num],
.compare-table [data-eff-rate],
.compare-table [data-total] {
  transition: color .2s, transform .2s, filter .2s;
}
.price-amount.is-flash,
[data-effective].is-flash,
[data-dev-num].is-flash,
.compare-table [data-eff-rate].is-flash,
.compare-table [data-total].is-flash {
  filter: brightness(1.4);
}

/* Comparison table */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 720px;
}
.compare-table thead th {
  background: #0d0f17;
  padding: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  text-align: center;
  border-bottom: 2px solid rgba(110, 231, 255, 0.35);
}
.compare-table thead .ct-feature {
  text-align: left;
  background: linear-gradient(180deg, rgba(110, 231, 255, 0.10), #0d0f17);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: .82rem;
  font-weight: 700;
  padding: 12px 18px;
}
.compare-table thead .ct-featured {
  background: linear-gradient(180deg, rgba(110, 231, 255, 0.12), rgba(13, 15, 23, 0.92));
  color: var(--accent);
  border-bottom-color: rgba(110, 231, 255, 0.4);
}
.compare-table th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  padding: 14px 18px;
  width: 38%;
}
.compare-table tbody tr:nth-child(even of :not(.ct-section)) {
  background: rgba(255, 255, 255, 0.015);
}
.compare-table td {
  padding: 14px 16px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}
.compare-table th[scope="row"] {
  border-top: 1px solid var(--border);
}
.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.compare-table .ct-featured {
  background: rgba(110, 231, 255, 0.04);
  color: var(--text);
}
.compare-table .ct-section th {
  background: rgba(110, 231, 255, 0.08);
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  padding: 12px 18px;
  text-align: left;
  border-top: 1px solid var(--border-strong);
}
.compare-table strong { color: var(--text); font-family: var(--font-display); }

.compare-table tfoot td {
  background: rgba(13, 15, 23, 0.6);
  padding: 18px 12px;
  border-top: 1px solid var(--border-strong);
}
.compare-table tfoot .ct-featured {
  background: rgba(110, 231, 255, 0.06);
}

.ct-yes {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ct-no {
  color: var(--text-dim);
  opacity: 0.5;
  font-weight: 600;
}

.badge-save {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  background: rgba(167, 139, 250, 0.15);
  color: var(--accent-2);
  border: 1px solid rgba(167, 139, 250, 0.3);
}
.badge-save-strong {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  border-color: transparent;
}

/* Add-ons */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.addon-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s, border-color .25s, background .25s;
}
.addon-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.addon-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.18), rgba(167, 139, 250, 0.18));
  color: var(--accent);
  border: 1px solid rgba(110, 231, 255, 0.2);
  margin-bottom: 6px;
}
.addon-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}
.addon-blurb {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: .9rem;
  flex: 1;
}
.addon-price {
  font-size: .92rem;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.addon-price strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-right: 4px;
}

/* Bottom CTA card */
.cta-card {
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 139, 250, 0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(110, 231, 255, 0.18), transparent 50%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
}
.cta-copy h2 { margin-bottom: 8px; }
.cta-copy p { margin-bottom: 0; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================================
   RESELLER PAGE — warm/orange theme
   =========================================
   Strategy: re-map the three accent CSS variables for this body class.
   Every component that uses var(--accent) / --accent-2 / --accent-3
   automatically picks up the warm palette — buttons, eyebrows, gradient
   text, ribbons, price highlights, calculator widgets, FAQ icons, etc.
   We then add specific overrides for elements with hardcoded rgba/hex
   shadows or backgrounds so glows match the new palette. */

.page-reseller {
  --accent:      #fb923c;            /* warm orange (was cyan)   */
  --accent-2:    #ea580c;            /* deep orange (was purple) */
  --accent-3:    #fbbf24;            /* gold / amber (was pink)  */
  --accent-glow: rgba(251, 146, 60, 0.35);
}

/* Background orbs — explicit colors (don't use vars) */
.page-reseller .orb-1 { background: #ea580c; opacity: 0.55; width: 580px; height: 580px; }
.page-reseller .orb-2 { background: #f59e0b; opacity: 0.50; }
.page-reseller .orb-3 { background: #fb923c; opacity: 0.55; width: 460px; height: 460px; }

/* Subtle warm wash sitting behind everything */
.page-reseller::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(234, 88, 12, 0.10), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(251, 146, 60, 0.08), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

/* Cursor glow — uses hardcoded rgba so override here */
.page-reseller .cursor-glow {
  background: radial-gradient(circle at 50% 50%,
    rgba(251, 146, 60, 0.18),
    rgba(234, 88, 12, 0.08) 40%,
    transparent 70%);
}

/* Hardcoded cyan/purple-tinted shadows → orange */
.page-reseller .scroll-progress { box-shadow: 0 0 12px rgba(251, 146, 60, 0.5); }
.page-reseller .btn-primary       { box-shadow: 0 10px 30px rgba(251, 146, 60, 0.25); }
.page-reseller .btn-primary:hover { box-shadow: 0 14px 40px rgba(251, 146, 60, 0.40); }
.page-reseller .logo-mark         { box-shadow: 0 8px 24px rgba(251, 146, 60, 0.40); }
.page-reseller .nav-actions .btn-primary { box-shadow: 0 8px 22px rgba(251, 146, 60, 0.30); }

/* Eyebrow pill (uses hardcoded rgba) */
.page-reseller .eyebrow {
  color: var(--accent);
  background: rgba(251, 146, 60, 0.08);
  border-color: rgba(251, 146, 60, 0.25);
}
.page-reseller .eyebrow-dot {
  box-shadow: 0 0 10px var(--accent);
}

/* Feature / showcase / addon icon backgrounds (rgba hardcoded to cyan/purple) */
.page-reseller .feature-ico,
.page-reseller .addon-ico,
.page-reseller .stat-icon {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.18), rgba(234, 88, 12, 0.16));
  border-color: rgba(251, 146, 60, 0.25);
  color: var(--accent);
}
.page-reseller .stat-card::before {
  background: radial-gradient(circle, rgba(251, 146, 60, 0.18), transparent 60%);
}

/* Card hover-spotlight tints */
.page-reseller .feature-card::after,
.page-reseller .stat-card::after,
.page-reseller .review-card::after,
.page-reseller .price-card::before,
.page-reseller .showcase-card::after {
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%),
    rgba(251, 146, 60, 0.10), transparent 40%);
}

/* Featured pricing card halo */
.page-reseller .price-card-featured {
  border-color: rgba(251, 146, 60, 0.40);
  background: linear-gradient(160deg, rgba(251, 146, 60, 0.06), rgba(234, 88, 12, 0.04));
  box-shadow:
    0 0 0 1px rgba(251, 146, 60, 0.25),
    0 20px 60px rgba(251, 146, 60, 0.15);
}

/* Calculator card and its inner widgets */
.page-reseller .calc-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 146, 60, 0.14), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(234, 88, 12, 0.14), transparent 50%),
    rgba(255, 255, 255, 0.03);
}
.page-reseller .calc-tier {
  background: rgba(251, 146, 60, 0.07);
  border-color: rgba(251, 146, 60, 0.25);
}
.page-reseller .calc-result-highlight {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.10), rgba(234, 88, 12, 0.05));
  border-color: rgba(251, 146, 60, 0.30);
}
.page-reseller .calc-value {
  color: var(--accent);
  background: rgba(251, 146, 60, 0.10);
  border-color: rgba(251, 146, 60, 0.25);
}
.page-reseller .calc-field input[type="range"]::-webkit-slider-thumb {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(251, 146, 60, 0.40);
}
.page-reseller .calc-field input[type="range"]::-moz-range-thumb {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(251, 146, 60, 0.40);
}

/* CTA / contact form focus tint */
.page-reseller .form-row input:focus,
.page-reseller .form-row select:focus,
.page-reseller .form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.16);
}
.page-reseller .form-note.is-success {
  background: rgba(251, 146, 60, 0.08);
  border-color: rgba(251, 146, 60, 0.30);
  color: var(--accent);
}

/* FAQ open-state border */
.page-reseller .faq-item[open] { border-color: rgba(251, 146, 60, 0.35); }

/* Logo gradient circle (already uses vars but its glow is hardcoded) */
.page-reseller .logo-mark {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}

/* Steps flow — let variables drive most of the gradient/colour. Only
   the rgba shadows and special active glows need explicit overrides. */
.page-reseller .steps-flow-v2::after { box-shadow: 0 0 18px rgba(251, 146, 60, 0.55); }
.page-reseller .step-num,
.page-reseller .step-check { box-shadow: 0 8px 24px rgba(251, 146, 60, 0.40); }
.page-reseller .step-card.is-active {
  border-color: rgba(251, 146, 60, 0.50);
  background: linear-gradient(160deg, rgba(251, 146, 60, 0.08), rgba(234, 88, 12, 0.04));
  box-shadow:
    0 0 0 1px rgba(251, 146, 60, 0.40),
    0 24px 60px rgba(251, 146, 60, 0.20);
}
.page-reseller .step-num {
  background: linear-gradient(135deg, #fbbf24, #fb923c, #ea580c);
}
.page-reseller .step-check {
  background: linear-gradient(135deg, #fbbf24, #fb923c, #ea580c);
}
.page-reseller .step-ring { border-color: var(--accent); }
.page-reseller .step-card.is-active .step-meta {
  background: rgba(251, 146, 60, 0.12);
  border-color: rgba(251, 146, 60, 0.32);
}
.page-reseller .steps-dot.is-active {
  background: linear-gradient(90deg, #fbbf24, #fb923c);
}

/* Bottom CTA gradient halo */
.page-reseller .cta-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 146, 60, 0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(234, 88, 12, 0.18), transparent 50%),
    rgba(255, 255, 255, 0.04);
}

/* Verified ✓ badge and live-pulse keep the green/pink accents — those
   aren't part of the brand palette so we leave them alone. */


/* Single-column, full-width feature rows (icon left, content right) */
.features-grid-stack {
  grid-template-columns: 1fr !important;
  gap: 14px;
}
.features-grid-stack .feature-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px 32px;
}
.features-grid-stack .feature-card .feature-ico {
  margin-bottom: 0;
  width: 56px;
  height: 56px;
}
.features-grid-stack .feature-card .feature-ico svg {
  width: 26px;
  height: 26px;
}
.features-grid-stack .feature-card h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}
.features-grid-stack .feature-card p {
  margin: 0;
  max-width: 700px;
  font-size: .95rem;
}
.features-grid-stack .feature-card::before {
  content: counter(stack-row, decimal-leading-zero);
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.65;
  font-variant-numeric: tabular-nums;
}
.features-grid-stack {
  counter-reset: stack-row;
}
.features-grid-stack .feature-card {
  counter-increment: stack-row;
  position: relative;
  padding-right: 80px;
}
.features-grid-stack .feature-card:hover {
  transform: translateX(4px);
}

@media (max-width: 720px) {
  /* Switch to template-areas so the icon spans both rows on the left,
     and title + description both occupy the full-width right column.
     Previous 3-column grid was pushing the description into a tiny
     "auto" cell, causing 1-word-per-line wrapping. */
  .features-grid-stack .feature-card {
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "ico title"
      "ico desc";
    padding: 18px 20px;
    gap: 4px 14px;
    align-items: start;
  }
  .features-grid-stack .feature-card .feature-ico {
    grid-area: ico;
    width: 44px;
    height: 44px;
    align-self: start;
  }
  .features-grid-stack .feature-card .feature-ico svg {
    width: 22px;
    height: 22px;
  }
  .features-grid-stack .feature-card h3 {
    grid-area: title;
    font-size: 1.05rem;
    margin: 0 0 4px;
  }
  .features-grid-stack .feature-card p {
    grid-area: desc;
    font-size: .88rem;
    line-height: 1.5;
    max-width: none;
  }
  .features-grid-stack .feature-card::before {
    display: none;
  }
}

/* Margin calculator */
.calc-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 139, 250, 0.14), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(110, 231, 255, 0.14), transparent 50%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  position: relative;
  overflow: hidden;
}
.calc-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  z-index: -1;
  opacity: 0.25;
  filter: blur(20px);
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.calc-label {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
}
.calc-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  background: rgba(110, 231, 255, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(110, 231, 255, 0.25);
  color: var(--accent);
}

/* Custom range sliders */
.calc-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)) 0/var(--fill, 50%) 100% no-repeat,
              rgba(255,255,255,0.08);
  outline: none;
  cursor: pointer;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #d8e8ff);
  border: 3px solid var(--accent);
  cursor: grab;
  box-shadow: 0 4px 12px rgba(110, 231, 255, 0.4);
  transition: transform .15s;
}
.calc-field input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.15);
  cursor: grabbing;
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #d8e8ff);
  border: 3px solid var(--accent);
  cursor: grab;
  box-shadow: 0 4px 12px rgba(110, 231, 255, 0.4);
}
.calc-track-meta {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

/* Credit-pack picker (replaces customer-count slider) */
.plan-picker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}
.plan-pill {
  background: transparent;
  border: 0;
  padding: 12px 8px;
  border-radius: 10px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color .2s, background .2s, transform .12s;
}
.plan-pill:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.plan-pill.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  box-shadow: 0 6px 18px rgba(110, 231, 255, 0.32);
}
.plan-pill:active { transform: scale(0.95); }

.calc-tier {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(110, 231, 255, 0.06);
  border: 1px solid rgba(110, 231, 255, 0.2);
  border-radius: var(--radius);
  margin-top: 4px;
}
.calc-tier-label {
  font-size: .75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.calc-tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}
.calc-tier-price {
  margin-left: auto;
  color: var(--text-muted);
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: center;
}
.calc-result {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-result-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.1), rgba(167, 139, 250, 0.06));
  border-color: rgba(110, 231, 255, 0.3);
}
.result-label {
  font-size: .8rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.result-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition: filter .25s;
}
.calc-result-highlight .result-num {
  font-size: 2.2rem;
  background-size: 200% 100%;
}
.calc-disclaimer {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .8rem;
  color: var(--text-dim);
  margin: 16px 0 0;
}

/* Steps flow */
.steps-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  counter-reset: step;
}
.steps-flow::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
}
.steps-flow-v2::after {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  width: calc(75% * var(--progress, 0));
  height: 2px;
  background: linear-gradient(90deg,
    var(--accent) 0%,
    var(--accent-2) 50%,
    var(--accent-3) 100%);
  box-shadow: 0 0 18px rgba(110, 231, 255, 0.5);
  z-index: 1;
  border-radius: 999px;
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  outline: none;
  transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color .25s,
              background .25s,
              box-shadow .35s;
}
.step-card:hover,
.step-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(110, 231, 255, 0.4);
  background: var(--bg-card-hover);
}
.step-card.is-active {
  transform: translateY(-8px);
  border-color: rgba(110, 231, 255, 0.55);
  background: linear-gradient(160deg, rgba(110, 231, 255, 0.07), rgba(167, 139, 250, 0.04));
  box-shadow:
    0 0 0 1px rgba(110, 231, 255, 0.4),
    0 24px 60px rgba(110, 231, 255, 0.18);
}
.step-card.is-done {
  border-color: rgba(110, 231, 255, 0.25);
}

/* Marker (number + rings + check) */
.step-marker {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}
.step-num {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(110, 231, 255, 0.35);
  transition: transform .35s, opacity .25s;
}
.step-card.is-active .step-num {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(110, 231, 255, 0.55);
}

/* Pulsing rings — only visible on active step */
.step-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  pointer-events: none;
}
.step-card.is-active .step-ring {
  animation: stepPulseRing 2s ease-out infinite;
}
.step-card.is-active .step-ring-2 {
  animation-delay: -1s;
}
@keyframes stepPulseRing {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0;   }
}

/* Checkmark overlay for completed steps */
.step-check {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  color: #07080d;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(110, 231, 255, 0.4);
}
.step-card.is-done .step-num { opacity: 0; }
.step-card.is-done .step-check {
  opacity: 1;
  transform: scale(1);
}

.step-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  transition: color .25s;
}
.step-card.is-active h3 {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .9rem;
}
.step-meta {
  margin-top: 6px;
  display: inline-block;
  font-size: .72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dim);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition: color .25s, background .25s, border-color .25s;
}
.step-card.is-active .step-meta {
  color: var(--accent);
  background: rgba(110, 231, 255, 0.1);
  border-color: rgba(110, 231, 255, 0.3);
}

/* Steps controls (dots) */
.steps-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.steps-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  padding: 0;
  transition: width .3s, background .25s;
}
.steps-dot:hover { background: rgba(255, 255, 255, 0.4); }
.steps-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* Reseller-page warm overrides for steps */
.page-reseller .steps-flow-v2::after {
  background: linear-gradient(90deg, #fbbf24, #fb923c, #ea580c);
  box-shadow: 0 0 18px rgba(251, 146, 60, 0.55);
}
.page-reseller .step-num,
.page-reseller .step-check {
  background: linear-gradient(135deg, #fbbf24, #fb923c, #ea580c);
  box-shadow: 0 8px 24px rgba(251, 146, 60, 0.4);
}
.page-reseller .step-card.is-active {
  border-color: rgba(251, 146, 60, 0.5);
  background: linear-gradient(160deg, rgba(251, 146, 60, 0.08), rgba(234, 88, 12, 0.04));
  box-shadow:
    0 0 0 1px rgba(251, 146, 60, 0.4),
    0 24px 60px rgba(251, 146, 60, 0.2);
}
.page-reseller .step-ring {
  border-color: #fb923c;
}
.page-reseller .step-card.is-active h3 {
  background: linear-gradient(135deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-reseller .step-card.is-active .step-meta {
  color: #fb923c;
  background: rgba(251, 146, 60, 0.1);
  border-color: rgba(251, 146, 60, 0.3);
}
.page-reseller .steps-dot.is-active {
  background: linear-gradient(90deg, #fbbf24, #fb923c);
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .pricing-grid-5 { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 1080px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-mini-row { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-meta { grid-template-columns: repeat(2, 1fr); }
  .cta-card { grid-template-columns: 1fr; padding: 36px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .calc-card { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .steps-flow { grid-template-columns: repeat(2, 1fr); }
  .steps-flow::before { display: none; }
  .pricing-grid-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero,
  .hero-v2 { padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  /* Headline comes FIRST on mobile so the device mockup's faux search-bar
     doesn't read like a second header band at the top of the screen. */
  .hero-visual,
  .hero-visual-v2 { order: 2; }
  .hero-copy { order: 1; }
  .hero-visual-v2 { min-height: 340px; }
  .tilt-stage { max-width: 440px; }
  .mockup-phone { right: -2%; bottom: -8%; }
  .chip-epg { left: -2%; }
  .chip-quality { right: -4%; }
  .chip-live { left: 2%; }
  .social-proof { flex-wrap: wrap; }
  .features-grid,
  .showcase-grid,
  .pricing-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-disclaimer { text-align: left; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .features-grid,
  .showcase-grid,
  .pricing-grid,
  .pricing-grid-4,
  .pricing-grid-5,
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-wrap: wrap; gap: 14px 18px; padding: 14px 18px; }
  .rating-count { padding-left: 0; border-left: 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-mini-row { grid-template-columns: repeat(2, 1fr); padding: 18px 20px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-stats strong { font-size: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-logos { gap: 20px; font-size: .9rem; }
  .device-frame { max-width: 360px; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .page-hero-meta { grid-template-columns: 1fr 1fr; padding: 16px; }
  .meta-num { font-size: 1.3rem; }
  .addon-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 24px; }
  .cta-actions { flex-direction: column; }
  .compare-table { min-width: 580px; font-size: .82rem; }
  .compare-table th[scope="row"] { padding: 12px; width: 42%; }
  .compare-table td { padding: 12px 8px; }
  .calc-card { padding: 22px; }
  .calc-results { grid-template-columns: 1fr; }
  .calc-result-highlight { grid-column: span 1; }
  .calc-result-highlight .result-num { font-size: 1.8rem; }
  .calc-tier { flex-wrap: wrap; }
  .calc-tier-price { margin-left: 0; width: 100%; }
  .steps-flow { grid-template-columns: 1fr; }
  .hero-v2 { padding: 32px 0 24px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .release-pill { font-size: .78rem; padding: 5px 12px 5px 5px; }
  .release-text { display: none; }
  .release-pill::after { content: 'New device — pre-orders open'; color: var(--text); }
  .btn-watch-demo { padding: 6px 14px 6px 6px; }
  .demo-text strong { font-size: .85rem; }
  .demo-text span { display: none; }
  .tilt-stage { max-width: 360px; }
  .float-chip { font-size: .7rem; padding: 6px 10px; }
  .chip-epg { left: 0; top: -6%; }
  .chip-quality { right: -2%; top: 40%; }
  .chip-live { left: 0; bottom: 6%; }
  .hero-marquee { margin-top: 32px; padding: 12px 0; }
  .marquee-pill { padding: 6px 14px; font-size: .7rem; letter-spacing: 0.08em; }
  .marquee-track { animation-duration: 28s; }
  .marquee-fade { width: 40px; }
}

/* =========================================
   MOBILE / TABLET POLISH
   ========================================= */

/* Tighten hero on mobile so the device mockup doesn't have a tall empty
   black band above it. */
@media (max-width: 960px) {
  .hero-visual-v2 { min-height: 0; }
  .hero-v2 { padding: 16px 0 24px; }
  .hero-grid { gap: 20px; }
}


/* Mobile/tablet refinements (~< 960px) — hide ALL action buttons in the
   header so only logo + hamburger render. Desktop nav-links are completely
   removed from the layout (display: none) until the hamburger toggles
   them open. */
@media (max-width: 960px) {
  .nav-actions .btn { display: none !important; }
  .nav-wrap { gap: 12px; }
  .menu-toggle { display: flex !important; }
  .nav-links {
    display: none !important;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(7, 8, 13, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 40;
  }
  .nav-links.is-open {
    display: flex !important;
  }
}

/* Tablet refinements (~720–1080px) */
@media (max-width: 1080px) {
  .nav-actions .btn-ghost { display: none; } /* keep header from crowding */
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
  .footer-grid .footer-col:nth-child(4) { display: none; } /* legal column collapses to footer-bottom on tablet */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-picker { grid-template-columns: repeat(5, 1fr); gap: 4px; }
}

/* Small phone tweaks (~< 480px) */
@media (max-width: 480px) {
  :root { --header-h: 64px; }
  .container { padding: 0 16px; }
  .site-header { height: var(--header-h); }
  .nav-actions .btn { padding: 8px 14px; font-size: .85rem; }

  /* Hero */
  .hero-v2 { padding: 24px 0 16px; }
  .hero-title { font-size: clamp(1.7rem, 9vw, 2.2rem); line-height: 1.1; }
  .lede { font-size: .95rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .savings-banner { font-size: .82rem; gap: 8px; }
  .savings-icon { width: 24px; height: 24px; }

  /* Avatar pile + social proof */
  .avatar-pile li { width: 30px; height: 30px; font-size: .65rem; }
  .proof-text { font-size: .78rem; }

  /* Floating chips on hero device shrink in */
  .float-chip { font-size: .65rem; padding: 5px 9px; }
  .chip-num { font-size: .75rem; }
  .tilt-stage { max-width: 280px; }

  /* Section spacing */
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(1.5rem, 6.5vw, 1.9rem); }
  .section-head p { font-size: .92rem; }
  .eyebrow { font-size: .72rem; padding: 5px 10px; }

  /* Stats */
  .stat-card { padding: 22px 18px; }
  .stat-num { font-size: 2rem; }
  .stat-mini-row { padding: 16px; gap: 14px; }
  .stat-mini-row strong { font-size: 1.1rem; }

  /* Features / showcase / reviews */
  .feature-card,
  .showcase-card,
  .review-card { padding: 22px 20px; }
  .feature-card h3,
  .showcase-card h3,
  .review-card h3 { font-size: 1rem; }

  /* Plans page — controls + cards */
  .plan-controls { gap: 16px; }
  .device-selector,
  .currency-toggle { gap: 10px; }
  .device-selector-pills,
  .currency-pills { padding: 3px; }
  .dev-pill { width: 38px; height: 32px; font-size: .9rem; }
  .currency-pill { padding: 6px 12px; font-size: .78rem; }
  .price-card,
  .pricing-grid-4 .price-card,
  .pricing-grid-5 .price-card { padding: 22px 20px; }
  .price-amount { font-size: 1.9rem; }

  /* Page hero meta */
  .page-hero-meta { padding: 14px; gap: 10px; }
  .meta-num { font-size: 1.15rem; }
  .meta-label { font-size: .72rem; }

  /* Comparison table */
  .compare-wrap { border-radius: 12px; }
  .compare-table { min-width: 520px; font-size: .78rem; }
  .compare-table thead th { font-size: .82rem; padding: 12px 10px; }
  .compare-table thead .ct-feature { font-size: .72rem; padding: 10px 12px; }
  .compare-table th[scope="row"] { padding: 10px 12px; width: 46%; font-size: .82rem; }
  .compare-table td { padding: 10px 8px; }
  .compare-table .ct-section th { font-size: .68rem; padding: 8px 12px; }

  /* Reseller — calculator */
  .calc-card { padding: 18px; gap: 22px; }
  .calc-results { gap: 10px; }
  .calc-result { padding: 14px; }
  .result-num { font-size: 1.3rem; }
  .calc-result-highlight .result-num { font-size: 1.6rem; }
  .calc-tier { padding: 12px 14px; gap: 8px; }
  .calc-tier-name { font-size: 1rem; }
  .calc-value { font-size: 1rem; padding: 3px 9px; }

  /* Reseller — plan pills (5 buttons) */
  .plan-picker { gap: 4px; padding: 3px; }
  .plan-pill { padding: 9px 4px; font-size: .85rem; }

  /* Steps flow markers */
  .step-marker { width: 48px; height: 48px; }
  .step-num { font-size: 1.1rem; }
  .step-card { padding: 22px 18px; }
  .steps-controls { margin-top: 20px; gap: 8px; }

  /* Stack-style feature cards (reseller "why partner") on small phones —
     2-col template-areas: icon spans both rows on left, title + desc
     stack on the right with full content width. */
  .features-grid-stack .feature-card {
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "ico title"
      "ico desc";
    padding: 16px 18px;
    gap: 4px 12px;
  }
  .features-grid-stack .feature-card .feature-ico {
    grid-area: ico;
    width: 40px; height: 40px;
  }
  .features-grid-stack .feature-card .feature-ico svg {
    width: 20px; height: 20px;
  }
  .features-grid-stack .feature-card h3 { grid-area: title; font-size: 1rem; margin: 0 0 4px; }
  .features-grid-stack .feature-card p { grid-area: desc; font-size: .85rem; max-width: none; }
  .features-grid-stack .feature-card::before { display: none; }

  /* Contact section */
  .contact-form { padding: 22px 20px; }

  /* Footer compactness */
  .site-footer { padding: 40px 0 20px; }
  .footer-grid { gap: 24px; }

  /* Marquee speed up so motion doesn't feel sluggish on mobile */
  .marquee-track { animation-duration: 22s; }

  /* Disable the heaviest decorative effects to keep mobile snappy */
  .hero-mesh,
  .hero-noise { display: none; }
  .device-frame::before { filter: blur(14px); }
}

/* Smooth horizontal scroll on the comparison table for touch users */
.compare-wrap {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Make sure tap targets are large enough on touch devices */
@media (pointer: coarse) {
  .dev-pill,
  .currency-pill,
  .plan-pill,
  .steps-dot,
  .faq-icon,
  .menu-toggle { min-height: 44px; }
  .nav-links a { padding: 10px 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================
   BLOG INDEX
   ========================================= */

.blog-hero {
  position: relative;
  padding: 120px 0 50px;
  text-align: center;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 50% 30%, rgba(110, 231, 255, .10), transparent 60%),
    radial-gradient(700px 400px at 50% 70%, rgba(167, 139, 250, .08), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.blog-hero .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(110, 231, 255, .08);
  border: 1px solid rgba(110, 231, 255, .22);
}
.blog-hero-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
.blog-hero-sub {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.blog-stats-strip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 14px 26px;
  margin: 0 auto 30px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  justify-content: center;
}
.bs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 22px;
}
.bs-num {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.01em;
  line-height: 1;
}
.bs-lbl {
  font-size: .76rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.bs-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.08);
}
@media (max-width: 600px) {
  .blog-stats-strip { gap: 4px 0; padding: 14px; }
  .bs-item { padding: 6px 14px; }
  .bs-divider { display: none; }
}

.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cat-pill {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.cat-pill:hover {
  background: rgba(255,255,255,.08);
  color: var(--text);
}
.cat-pill.is-active {
  background: linear-gradient(135deg, rgba(110, 231, 255, .18), rgba(167, 139, 250, .18));
  border-color: rgba(110, 231, 255, .35);
  color: var(--text);
}

/* Featured card */
.blog-featured {
  padding: 50px 0 40px;
}
.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, border-color .3s ease;
}
.featured-card:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 231, 255, .25);
}
.featured-art {
  position: relative;
  min-height: 360px;
  background: radial-gradient(800px 600px at 30% 30%, rgba(110, 231, 255, .35), transparent 60%),
              radial-gradient(800px 600px at 80% 70%, rgba(167, 139, 250, .35), transparent 60%),
              #0a0d18;
  overflow: hidden;
}
.featured-art-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(110, 231, 255, .08), rgba(167, 139, 250, .08));
  pointer-events: none;
}
.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 17, 26, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
  font-size: .76rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.featured-rank {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.featured-rank .rank-num {
  display: block;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.04em;
}
.featured-rank .rank-label {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 4px;
}
.featured-tile-grid {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  opacity: .55;
}
.featured-tile-grid .ft {
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
}
.featured-meta {
  padding: 36px 36px 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.featured-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.18;
  margin: 0 0 14px;
  color: var(--text);
}
.featured-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.featured-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.tag-rev { background: rgba(110, 231, 255, .12); color: var(--accent); border: 1px solid rgba(110, 231, 255, .22); }
.tag-cmp { background: rgba(167, 139, 250, .12); color: var(--accent-2); border: 1px solid rgba(167, 139, 250, .22); }
.tag-gd  { background: rgba(52, 211, 153, .12); color: #34d399; border: 1px solid rgba(52, 211, 153, .22); }
.tag-st  { background: rgba(244, 114, 182, .12); color: var(--accent-3); border: 1px solid rgba(244, 114, 182, .22); }
.tag-yr  { background: rgba(251, 191, 36, .12); color: #fbbf24; border: 1px solid rgba(251, 191, 36, .22); }

.byline-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--av, #6ee7ff);
  color: #07080d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .03em;
}
.byline-avatar.lg { width: 52px; height: 52px; font-size: 1rem; }
.byline-meta {
  font-size: .9rem;
  color: var(--text-muted);
}
.byline-meta strong { color: var(--text); font-weight: 600; }

/* Blog grid */
.blog-grid-section {
  padding: 50px 0 80px;
}
.blog-section-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -.01em;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
}
.blog-art {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  overflow: hidden;
}
.blog-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 30% 30%, rgba(255,255,255,.18), transparent 60%);
}
.blog-art-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(15, 17, 26, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .72rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.blog-card-body {
  padding: 20px;
}
.blog-card-body .tag {
  margin-bottom: 12px;
}
.blog-card-body h4 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -.01em;
}
.blog-card-body p {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.blog-meta {
  font-size: .82rem;
  color: var(--text-muted);
  opacity: .8;
}

/* Newsletter */
.blog-newsletter {
  padding: 0 0 90px;
}
.newsletter-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 40px;
  border-radius: 22px;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(110, 231, 255, .12), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(167, 139, 250, .12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.10);
}
.newsletter-card h3 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -.015em;
}
.newsletter-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(7, 8, 13, .55);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--accent); }

/* =========================================
   ARTICLE PAGE
   ========================================= */

.article-hero {
  padding: 120px 0 30px;
  position: relative;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 30% 30%, rgba(110, 231, 255, .08), transparent 60%);
  z-index: -1;
}
.article-hero-inner {
  max-width: 880px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: .85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { opacity: .55; }
.crumb-current { color: var(--text); }

.article-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.article-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  color: var(--text);
}
.article-deck {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 760px;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.byline-text {
  display: flex;
  flex-direction: column;
}
.byline-text strong { color: var(--text); font-size: .95rem; }
.byline-text span { font-size: .85rem; color: var(--text-muted); }

/* Article body grid */
.article-body {
  padding: 50px 0 80px;
}
.article-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 110px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
}
.article-toc h4 {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.article-toc li {
  counter-increment: toc;
  margin: 0 0 8px;
}
.article-toc a {
  display: block;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all .2s;
}
.article-toc a:hover {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border-left-color: var(--accent);
}

/* Prose */
.article-prose {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #d4d6de;
}
.article-prose .lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 32px;
}
.article-prose h2 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.2;
  margin: 50px 0 18px;
  color: var(--text);
  scroll-margin-top: 100px;
}
.article-prose h3 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1.3;
  margin: 32px 0 12px;
  color: var(--text);
  scroll-margin-top: 100px;
}
.article-prose p {
  margin: 0 0 18px;
}
.article-prose ul {
  margin: 0 0 22px;
  padding: 0 0 0 22px;
}
.article-prose ul li {
  margin: 0 0 10px;
  line-height: 1.65;
  color: #d4d6de;
}
.article-prose strong { color: var(--text); font-weight: 600; }
.article-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(110, 231, 255, .35);
  transition: text-decoration-color .2s;
}
.article-prose a:hover { text-decoration-color: var(--accent); }

/* Rank cards */
.rank-card {
  margin: 36px 0;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  scroll-margin-top: 100px;
}
.rank-card-featured {
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(110, 231, 255, .14), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(167, 139, 250, .14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-color: rgba(110, 231, 255, .25);
  box-shadow: 0 30px 60px -20px rgba(110, 231, 255, .15);
}
.rank-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
}
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.rank-card:not(.rank-card-featured) .rank-badge {
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  color: var(--text);
  border: 1px solid rgba(255,255,255,.08);
}
.rank-titlewrap { flex: 1; min-width: 0; }
.rank-titlewrap h2 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 0;
  color: var(--text);
}
.rank-tagline {
  display: block;
  font-size: .92rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.rank-score {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.01em;
  flex-shrink: 0;
}

.rank-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 20px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(7, 8, 13, .35);
  border: 1px solid rgba(255,255,255,.05);
}
.rs { display: flex; flex-direction: column; gap: 2px; }
.rs-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.rs-val {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

.rank-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0 0;
}
.pc {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
}
.pc-pros { background: rgba(52, 211, 153, .04); border-color: rgba(52, 211, 153, .15); }
.pc-cons { background: rgba(244, 114, 182, .04); border-color: rgba(244, 114, 182, .15); }
.pc h4 {
  margin: 0 0 10px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.pc-pros h4 { color: #34d399; }
.pc-cons h4 { color: var(--accent-3); }
.pc ul {
  margin: 0;
  padding: 0 0 0 18px;
}
.pc ul li {
  font-size: .92rem;
  margin: 0 0 6px;
  line-height: 1.5;
  color: #d4d6de;
}
.rank-cta {
  margin-top: 22px;
}

/* Article CTA */
.article-cta {
  margin: 50px 0 30px;
}
.article-cta .cta-card {
  padding: 36px;
  border-radius: 20px;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(110, 231, 255, .14), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(167, 139, 250, .14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.10);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}
.article-cta .cta-copy h3 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -.015em;
}
.article-cta .cta-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: .98rem;
}
.article-cta .cta-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Author bio */
.article-author {
  margin: 40px 0 50px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-author strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 2px;
}
.article-author span {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.5;
}

/* Related */
.related-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -.01em;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 231, 255, .25);
}
.related-card .tag { align-self: flex-start; }
.related-card h4 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: .98rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  color: var(--text);
}
.related-meta { font-size: .8rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1080px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr; gap: 40px; }
  .article-toc { position: static; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-art { min-height: 260px; }
  .featured-meta { padding: 30px; }
}
@media (max-width: 720px) {
  .blog-hero { padding: 90px 0 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .newsletter-card { grid-template-columns: 1fr; padding: 28px; gap: 20px; }
  .newsletter-form { flex-direction: column; }
  .article-hero { padding: 90px 0 20px; }
  .rank-stats { grid-template-columns: repeat(2, 1fr); }
  .rank-pros-cons { grid-template-columns: 1fr; }
  .article-cta .cta-card { grid-template-columns: 1fr; padding: 26px; }
  .article-cta .cta-actions { justify-content: flex-start; }
  .featured-rank .rank-num { font-size: 5rem; }
}

/* =========================================
   BLOG INDEX V2 (centered title + 2-col cards)
   ========================================= */

.blog-hero-v2 {
  padding: 120px 0 30px;
  text-align: center;
}
.blog-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.blog-page-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.blog-divider-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 28px;
  max-width: 100%;
}
.bd-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 231, 255, .35), rgba(167, 139, 250, .35), transparent);
}
.bd-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(110, 231, 255, .55);
  margin-left: 4px;
  flex-shrink: 0;
}
.blog-hero-desc {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.blog-titlenav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 36px;
  margin-bottom: 8px;
}
.bt-link {
  position: relative;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 4px;
  letter-spacing: -.005em;
  transition: color .2s;
}
.bt-link:hover { color: var(--text); }
.bt-link.is-active {
  color: var(--text);
  font-weight: 700;
}
.bt-link.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.blog-v2-section { padding: 60px 0 100px; }

.b2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.b2-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 14px 30px -16px rgba(0,0,0,.4);
}
.b2-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 255, .25);
  box-shadow: 0 24px 50px -16px rgba(110, 231, 255, .15);
}
.b2-card.b2-featured {
  border-color: rgba(110, 231, 255, .22);
  background:
    radial-gradient(500px 250px at 0% 0%, rgba(110, 231, 255, .08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
}
.b2-top {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 22px;
  align-items: center;
}
.b2-art {
  position: relative;
  width: 160px;
  height: 130px;
  border-radius: 12px;
  background:
    radial-gradient(180px 140px at 30% 30%, color-mix(in srgb, var(--g1, #6ee7ff) 30%, transparent), transparent 60%),
    radial-gradient(180px 140px at 80% 80%, color-mix(in srgb, var(--g2, #a78bfa) 30%, transparent), transparent 60%),
    rgba(7, 8, 13, .55);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  flex-shrink: 0;
}
.b2-illu {
  width: 100%;
  height: 100%;
  display: block;
}
.b2-titlewrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.b2-titlewrap h3 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.32;
  margin: 0;
  color: var(--text);
  letter-spacing: -.012em;
}
.b2-byline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.b2-byline > div { display: flex; flex-direction: column; }
.b2-name {
  font-size: .88rem;
  color: var(--text);
  font-weight: 500;
}
.b2-time {
  font-size: .78rem;
  color: var(--text-muted);
}
.b2-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  margin: 0 22px;
}
.b2-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 18px 22px 22px;
}
.b2-bottom p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.b2-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(110, 231, 255, .08);
  border: 1px solid rgba(110, 231, 255, .18);
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.b2-card:hover .b2-arrow {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  transform: translateX(4px);
}

.b2-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

@media (max-width: 960px) {
  .b2-grid { grid-template-columns: 1fr; }
  .blog-titlenav { gap: 6px 22px; }
  .bt-link { font-size: .95rem; }
}
@media (max-width: 600px) {
  .b2-top { grid-template-columns: 100px 1fr; gap: 14px; padding: 16px; }
  .b2-art { width: 100px; height: 96px; }
  .b2-titlewrap h3 { font-size: 1rem; }
  .b2-divider { margin: 0 16px; }
  .b2-bottom { padding: 14px 16px 18px; }
  .b2-bottom p { font-size: .88rem; }
}

/* =========================================
   ARTICLE CONTENT COMPONENTS
   ========================================= */

/* Pull quote */
.pullquote {
  position: relative;
  margin: 36px 0;
  padding: 28px 32px 28px 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(110, 231, 255, .08), rgba(167, 139, 250, .08));
  border: 1px solid rgba(110, 231, 255, .18);
  border-left: 4px solid var(--accent);
}
.pullquote .pq-mark {
  position: absolute;
  top: 4px;
  left: 22px;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .6;
}
.pullquote p {
  margin: 0;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -.01em;
}

/* h2 with award emoji */
.award-emoji {
  display: inline-block;
  font-size: 1em;
  margin-right: 8px;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, .35));
}

/* Criteria grid (What makes a great IPTV) */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 32px;
}
.criteria-card {
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease;
}
.criteria-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.16);
}
.criteria-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--ci, #6ee7ff) 14%, transparent);
  color: var(--ci, #6ee7ff);
  border: 1px solid color-mix(in srgb, var(--ci, #6ee7ff) 28%, transparent);
  margin-bottom: 12px;
}
.criteria-card h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Space Grotesk', Inter, sans-serif;
}
.criteria-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Reason list (5 reasons inside BexyTV rank card) */
.reason-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}
.reason-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(7, 8, 13, .35);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s, background .2s;
}
.reason-item:hover {
  border-color: rgba(110, 231, 255, .25);
  background: rgba(7, 8, 13, .55);
}
.reason-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(110, 231, 255, .14), rgba(167, 139, 250, .14));
  border: 1px solid rgba(255,255,255,.10);
  font-size: 1.6rem;
  flex-shrink: 0;
}
.reason-item h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Space Grotesk', Inter, sans-serif;
  letter-spacing: -.01em;
}
.reason-item p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* VS strip — cable vs BexyTV */
.vs-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin: 36px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
.vs-side {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
}
.vs-cable { background: rgba(244, 114, 182, .04); }
.vs-bexytv {
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(110, 231, 255, .12), transparent 60%),
    rgba(110, 231, 255, .04);
}
.vs-tag {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.vs-bexytv .vs-tag { color: var(--accent); }
.vs-cable .vs-tag { color: var(--accent-3); }
.vs-num {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  color: var(--text);
}
.vs-bexytv .vs-num {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vs-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.vs-side ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: .92rem;
  color: #d4d6de;
  line-height: 1.5;
}
.vs-cable ul li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--accent-3);
  font-weight: 700;
  font-size: 1.1rem;
}
.vs-bexytv ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-weight: 700;
}
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-muted);
  background: rgba(7, 8, 13, .55);
  letter-spacing: .04em;
}

/* Alt-grid (other popular IPTV services) */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 28px;
}
.alt-card {
  position: relative;
  padding: 22px 22px 22px 70px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease;
}
.alt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.16);
}
.alt-rank {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-weight: 700;
  font-size: .92rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  letter-spacing: -.01em;
}
.alt-card h4 {
  margin: 0 0 6px;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
}
.alt-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 960px) {
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .alt-grid { grid-template-columns: 1fr; }
  .vs-strip { grid-template-columns: 1fr; }
  .vs-divider { width: 100%; height: 40px; }
}
@media (max-width: 600px) {
  .criteria-grid { grid-template-columns: 1fr; }
  .reason-item { grid-template-columns: 48px 1fr; gap: 12px; padding: 14px; }
  .reason-emoji { width: 48px; height: 48px; font-size: 1.4rem; }
  .pullquote { padding: 22px 22px 22px 60px; }
  .pullquote p { font-size: 1.08rem; }
  .pullquote .pq-mark { font-size: 4rem; left: 16px; }
  .vs-num { font-size: 1.8rem; }
}

/* =========================================
   ARTICLE PAGE V2 (reference-style layout)
   ========================================= */

.art2-crumbs {
  padding: 100px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.art2-crumbs-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-muted);
}
.art2-crumbs a {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  gap: 6px;
}
.art2-crumbs a:hover { color: var(--accent); }
.ac-home {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,.03);
}
.ac-sep { opacity: .45; }
.ac-current { color: var(--text); font-weight: 500; }

/* Title block */
.art2-titleblock {
  padding: 36px 0 30px;
}
.art2-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.18;
  margin: 0 0 18px;
  color: var(--text);
}
.art2-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.art2-name {
  font-size: .96rem;
  color: var(--text);
  font-weight: 500;
}
.art2-readtime {
  margin: 0;
  font-size: .85rem;
  color: var(--text-muted);
}

/* Hero illustration */
.art2-illu-section {
  padding: 20px 0 40px;
}
.art2-illu {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.08);
  padding: 0;
  box-shadow: 0 30px 60px -20px rgba(110, 231, 255, .14);
}
.art2-illu svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Body grid: prose left, TOC right (TOC sticky with vertical rail) */
.art2-body {
  padding: 30px 0 80px;
}
.art2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 70px;
  align-items: start;
}
.art2-grid .article-prose {
  max-width: none;
}

/* Right TOC */
.art2-toc {
  position: sticky;
  top: 100px;
}
.art2-toc-inner {
  position: relative;
  padding-left: 22px;
}
.art2-toc-rail {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, rgba(110, 231, 255, .15), rgba(167, 139, 250, .35) 40%, rgba(167, 139, 250, .15));
  border-radius: 2px;
}
.art2-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.art2-toc-list li {
  position: relative;
  margin-bottom: 22px;
}
.art2-toc-list li a {
  display: block;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: -.005em;
  transition: color .2s, transform .2s;
}
.art2-toc-list li a:hover {
  color: var(--text);
  transform: translateX(2px);
}
.art2-toc-list li.is-active a {
  color: var(--text);
  font-weight: 700;
  font-size: 1.08rem;
}
.art2-toc-list li.is-active::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(110, 231, 255, .55), 0 0 0 3px rgba(7, 8, 13, .92);
}

/* Feedback section (bottom) */
.art2-feedback {
  position: relative;
  padding: 80px 0 110px;
  overflow: hidden;
}
.art2-feedback::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 400px at 18% 50%, rgba(167, 139, 250, .14), transparent 60%),
    radial-gradient(500px 400px at 88% 80%, rgba(110, 231, 255, .12), transparent 60%);
  z-index: -1;
}
.af-heading {
  text-align: center;
  margin-bottom: 50px;
}
.af-heading h2 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.018em;
  margin: 0 0 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.af-underline {
  display: block;
  width: 320px;
  max-width: 80%;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(110, 231, 255, .55), rgba(167, 139, 250, .55), transparent);
  border-radius: 2px;
}

.af-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

/* Rating box */
.af-rate {
  padding: 36px 32px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.af-rate-label {
  margin: 0 0 16px;
  font-size: 1.02rem;
  color: var(--text);
  font-weight: 500;
}
.af-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.af-star {
  background: none;
  border: none;
  padding: 4px;
  color: rgba(255,255,255,.18);
  cursor: pointer;
  transition: transform .15s ease, color .15s;
  display: inline-flex;
}
.af-star:hover { transform: scale(1.12); }
.af-star.is-on { color: #fbbf24; filter: drop-shadow(0 0 8px rgba(251, 191, 36, .35)); }
.af-rate-thanks {
  margin: 0;
  font-size: .88rem;
  color: var(--text-muted);
}

/* Share / form box */
.af-share {
  position: relative;
  padding: 36px 36px 36px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 26px;
  align-items: end;
}
.af-share h3 {
  grid-column: 1 / -1;
  margin: 0 0 20px;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -.012em;
}
.af-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.af-form input {
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(7, 8, 13, .55);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}
.af-form input::placeholder { color: var(--text-muted); }
.af-form input:focus {
  border-color: var(--accent);
  background: rgba(7, 8, 13, .8);
}
.af-send {
  align-self: flex-start;
  letter-spacing: .12em;
  font-weight: 700;
  padding: 12px 32px;
  margin-top: 4px;
}
.af-illu {
  align-self: end;
}
.af-illu svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.4));
}

/* Responsive */
@media (max-width: 1080px) {
  .art2-grid { grid-template-columns: 1fr; gap: 40px; }
  .art2-toc { position: static; }
  .art2-toc-inner { padding-left: 22px; }
}
@media (max-width: 960px) {
  .art2-illu-section { padding: 16px 0 30px; }
  .art2-illu { border-radius: 16px; }
  .af-grid { grid-template-columns: 1fr; gap: 30px; }
  .af-share { grid-template-columns: 1fr; }
  .af-illu { max-width: 180px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .art2-crumbs { padding: 90px 0 12px; }
  .art2-titleblock { padding: 24px 0 22px; }
  .art2-feedback { padding: 50px 0 80px; }
  .af-rate, .af-share { padding: 26px; }
  .af-star svg { width: 26px; height: 26px; }
}

/* Topic illustration banner inside articles */
.topic-illu {
  position: relative;
  margin: 22px 0 28px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 30px -16px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Branded gradient — visible behind/instead of an image */
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(110, 231, 255, .28), transparent 60%),
    radial-gradient(700px 320px at 80% 100%, rgba(167, 139, 250, .28), transparent 60%),
    radial-gradient(500px 240px at 50% 50%, rgba(244, 114, 182, .10), transparent 60%),
    linear-gradient(180deg, #11162a, #0a0d18);
}
.topic-illu::before {
  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: 40px 40px;
  pointer-events: none;
  opacity: .5;
}
.topic-illu svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
}
.topic-illu img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.05);
  z-index: 1;
}
.topic-illu::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,8,13,0) 60%, rgba(7,8,13,0.45) 100%);
  pointer-events: none;
}
.topic-illu-caption {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(7, 8, 13, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(110, 231, 255, .35);
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #6ee7ff;
  text-shadow: 0 0 20px rgba(110, 231, 255, .4);
}
.topic-illu-caption::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ee7ff;
  box-shadow: 0 0 12px rgba(110, 231, 255, .9);
}
/* When an image successfully loads, push the caption to the corner */
.topic-illu:has(img:not([style*="display: none"])) .topic-illu-caption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  padding: 6px 12px;
  font-size: .72rem;
  border-color: rgba(255,255,255,.10);
}
@media (max-width: 720px) {
  .topic-illu img { height: 200px; }
}

/* Read next (between article body and feedback) */
.art2-readnext {
  padding: 40px 0 0;
}
.art2-readnext-head {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.art2-readnext-head::before,
.art2-readnext-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
}
.rn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.rn-card {
  display: block;
  padding: 22px 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.rn-card:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 255, .3);
  background: linear-gradient(180deg, rgba(110, 231, 255, .05), rgba(167, 139, 250, .02));
}
.rn-eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 8px;
}
.rn-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.012em;
  line-height: 1.35;
  margin: 0 0 6px;
}
.rn-meta {
  font-size: .82rem;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .rn-grid { grid-template-columns: 1fr; }
}

/* =========================================
   BLOG PAGE V3 — minimal list
   ========================================= */

.blog-hero-min {
  padding: 120px 0 30px;
  text-align: center;
}
.blog-min-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.blog-min-sub {
  margin: 0 auto;
  max-width: 520px;
  font-size: .98rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.blog-list-section {
  padding: 30px 0 220px;
}
@media (max-width: 600px) {
  .blog-list-section { padding: 20px 0 140px; }
}
.article-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-list li { list-style: none; }
.article-list li::marker { content: ''; }

.al-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 24px -14px rgba(0,0,0,.5);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.al-item:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 255, .35);
  background: linear-gradient(180deg, rgba(110, 231, 255, .06), rgba(167, 139, 250, .03));
  box-shadow: 0 18px 36px -16px rgba(110, 231, 255, .25);
}
.al-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.012em;
  line-height: 1.4;
}
.al-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  background: rgba(110, 231, 255, .08);
  border: 1px solid rgba(110, 231, 255, .25);
  flex-shrink: 0;
  transition: all .25s ease;
}
.al-item:hover .al-read {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080d;
  border-color: transparent;
}
.al-read svg { transition: transform .2s ease; }
.al-item:hover .al-read svg { transform: translateX(3px); }

@media (max-width: 600px) {
  .blog-hero-min { padding: 90px 0 20px; }
  .al-item { padding: 18px 18px; gap: 14px; flex-wrap: wrap; }
  .al-title { font-size: .98rem; }
  .al-read { font-size: .74rem; padding: 6px 12px; }
}


/* =========================================
   AFFILIATE PAGE
   ========================================= */

/* How-it-works steps (4 numbered cards) */
.affil-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: affil-step;
}
.affil-step {
  position: relative;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease;
}
.affil-step:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 255, .25);
}
.affil-step-num {
  display: inline-block;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.affil-step h3 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -.012em;
  margin: 0 0 8px;
  color: var(--text);
}
.affil-step p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Commission cards (4 plan tiers) */
.affil-comm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.affil-comm-card {
  position: relative;
  padding: 28px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}
.affil-comm-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
}
.affil-comm-card-featured {
  background:
    radial-gradient(500px 250px at 50% 0%, rgba(110, 231, 255, .14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-color: rgba(110, 231, 255, .25);
  box-shadow: 0 24px 50px -20px rgba(110, 231, 255, .25);
}
.affil-comm-tag {
  display: inline-block;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.affil-comm-rate {
  display: block;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}
.affil-comm-price {
  margin: 0 0 4px;
  font-size: .92rem;
  color: var(--text-muted);
}
.affil-comm-price small {
  font-size: .8em;
  color: var(--text-muted);
}
.affil-comm-earn {
  margin: 0;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.5;
}
.affil-comm-earn strong {
  color: var(--accent);
  font-weight: 700;
}

/* Earnings calculator */
.affil-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 40px;
  border-radius: 22px;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(110, 231, 255, .12), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(167, 139, 250, .12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.10);
  align-items: center;
}
.affil-calc-controls {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.affil-calc-result {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.affil-calc-stat {
  padding: 22px 26px;
  border-radius: 14px;
  background: rgba(7, 8, 13, .55);
  border: 1px solid rgba(255,255,255,.08);
}
.affil-calc-stat-featured {
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(110, 231, 255, .18), transparent 60%),
    rgba(7, 8, 13, .65);
  border-color: rgba(110, 231, 255, .35);
}
.affil-calc-label {
  display: block;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.affil-calc-num {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.affil-calc-stat:not(.affil-calc-stat-featured) .affil-calc-num {
  font-size: 1.6rem;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--text);
}
.affil-calc-hint {
  margin: 6px 0 0;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.affil-calc-hint strong { color: var(--accent); }

/* Why-join grid */
.affil-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.affil-why-card {
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease;
}
.affil-why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.16);
}
.affil-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--vi, #6ee7ff) 14%, transparent);
  color: var(--vi, #6ee7ff);
  border: 1px solid color-mix(in srgb, var(--vi, #6ee7ff) 28%, transparent);
  margin-bottom: 16px;
}
.affil-why-card h3 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -.012em;
  margin: 0 0 8px;
  color: var(--text);
}
.affil-why-card p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.affil-why-card strong { color: var(--text); font-weight: 600; }

/* Final CTA card */
.affil-cta-card {
  padding: 50px;
  border-radius: 24px;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(110, 231, 255, .14), transparent 60%),
    radial-gradient(800px 400px at 100% 100%, rgba(167, 139, 250, .14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.10);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.affil-cta-card h2 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 10px;
  color: var(--text);
}
.affil-cta-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.affil-cta-card .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .affil-steps { grid-template-columns: repeat(2, 1fr); }
  .affil-comm-grid { grid-template-columns: repeat(2, 1fr); }
  .affil-why-grid { grid-template-columns: repeat(2, 1fr); }
  .affil-calc { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .affil-steps { grid-template-columns: 1fr; }
  .affil-comm-grid { grid-template-columns: 1fr; }
  .affil-why-grid { grid-template-columns: 1fr; }
  .affil-calc { padding: 24px; }
  .affil-cta-card { grid-template-columns: 1fr; padding: 28px; gap: 22px; }
  .affil-cta-card .cta-actions { justify-content: flex-start; }
}
