/* ================================================================
   IPTV PRO — Main Stylesheet
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #06081a;
  --bg-2:        #0a0d24;
  --bg-card:     #0e1230;
  --bg-card-2:   #111535;
  --primary:     #7c3aed;
  --primary-2:   #6d28d9;
  --secondary:   #06b6d4;
  --accent:      #f59e0b;
  --grad:        linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  --grad-2:      linear-gradient(135deg, #6d28d9 0%, #0ea5e9 100%);
  --grad-hero:   linear-gradient(135deg, #1a0533 0%, #06081a 45%, #001533 100%);
  --text:        #f1f5f9;
  --text-2:      #94a3b8;
  --text-3:      #64748b;
  --border:      rgba(124,58,237,.18);
  --border-2:    rgba(6,182,212,.15);
  --glow:        0 0 40px rgba(124,58,237,.25);
  --glow-2:      0 0 40px rgba(6,182,212,.2);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.4);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ── Base ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

a { color: var(--secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ── Utility ───────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { width: 100%; max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* ── Section Header ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.25);
  border-radius: 100px;
  padding: .35rem 1.1rem;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: .75rem;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,.55);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(6,182,212,.08);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,.5);
  color: #000;
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.4rem; font-size: .85rem; }

/* ── Card ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(124,58,237,.4);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

/* ════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(6,8,26,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .65rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

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

/* Logo */
.site-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.site-logo img { height: 44px; width: auto; }
.site-logo .logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Nav menu */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.primary-nav ul li a {
  display: block;
  padding: .5rem .9rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
}
.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item a {
  color: var(--text);
  background: rgba(255,255,255,.07);
}

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: .75rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding-top: 80px;
}

/* Stars / particles background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-bg::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: drift1 12s ease-in-out infinite alternate;
}
.hero-bg::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: drift2 14s ease-in-out infinite alternate;
}

@keyframes drift1 { to { transform: translate(60px, 40px); } }
@keyframes drift2 { to { transform: translate(-60px, -40px); } }

/* Star dots */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 15%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 30%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 60%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 70%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 80%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 45%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 55%, rgba(124,58,237,.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 40%, rgba(6,182,212,.7) 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 100px;
  padding: .4rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat { }
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat span { font-size: .82rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .05em; }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-device-mock {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.device-frame {
  background: linear-gradient(145deg, #1a1f3a, #0d1025);
  border: 2px solid rgba(124,58,237,.4);
  border-radius: 16px;
  padding: .75rem;
  box-shadow: 0 20px 80px rgba(0,0,0,.6), var(--glow);
  overflow: hidden;
}

.device-screen {
  background: linear-gradient(135deg, #1a0533 0%, #001533 100%);
  border-radius: 10px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  position: relative;
  overflow: hidden;
}

.device-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(124,58,237,.03) 0px,
    rgba(124,58,237,.03) 1px,
    transparent 1px,
    transparent 24px
  );
}

.play-btn-mock {
  width: 64px; height: 64px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(124,58,237,.6);
  animation: pulse-ring 2s infinite;
}
.play-btn-mock svg { width: 28px; height: 28px; fill: white; margin-left: 4px; }

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(124,58,237,.6), 0 0 40px rgba(124,58,237,.4); }
  70% { box-shadow: 0 0 0 20px rgba(124,58,237,0), 0 0 40px rgba(124,58,237,.4); }
  100% { box-shadow: 0 0 0 0 rgba(124,58,237,0), 0 0 40px rgba(124,58,237,.4); }
}

.device-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}
.float-badge .badge-icon { font-size: 1.1rem; }

.badge-4k   { top: -20px; right: -10px; animation-delay: 0s; }
.badge-devs { bottom: 30px; left: -30px; animation-delay: 1s; }
.badge-live { top: 60px; right: -40px; animation-delay: 2s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-2);
}
.trust-item svg { width: 18px; height: 18px; color: var(--secondary); flex-shrink: 0; }
.trust-item strong { color: var(--text); }

/* ════════════════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════════════════ */
.features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(124,58,237,.4); box-shadow: var(--glow); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: rgba(124,58,237,.2);
  transform: scale(1.1);
}

.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p  { font-size: .88rem; color: var(--text-2); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════ */
.pricing { background: var(--bg-2); }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.pricing-toggle span { font-size: .9rem; color: var(--text-2); font-weight: 500; }
.pricing-toggle span.active { color: var(--text); }
.toggle-switch {
  position: relative;
  width: 52px; height: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-switch.on { background: var(--primary); border-color: var(--primary); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch.on::after { left: 27px; }
.save-badge {
  display: inline-block;
  background: rgba(245,158,11,.15);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 100px;
  border: 1px solid rgba(245,158,11,.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.pricing-card.featured {
  background: linear-gradient(145deg, #1a0d35, #0d1630);
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--glow), 0 0 0 1px var(--primary);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem 1.2rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .75rem;
}
.featured .plan-name { color: var(--accent); }

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: .25rem;
  margin-bottom: .25rem;
}
.plan-price .currency { font-size: 1.4rem; font-weight: 700; color: var(--text-2); margin-bottom: .4rem; }
.plan-price .amount   { font-size: 3.2rem; font-weight: 800; line-height: 1; }
.plan-price .period   { font-size: .9rem; color: var(--text-2); margin-bottom: .4rem; }

.plan-annual-price { font-size: .82rem; color: var(--text-3); margin-bottom: 1.5rem; }
.plan-annual-price s { color: var(--text-3); }
.plan-annual-price .per-year { color: var(--secondary); font-weight: 600; }

.plan-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

.plan-features { margin-bottom: 2rem; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: var(--text-2);
  padding: .4rem 0;
}
.plan-features li::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2306b6d4'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center/contain;
  flex-shrink: 0;
  margin-top: 1px;
}
.featured .plan-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23f59e0b'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

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

/* Pricing guarantee */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 3rem;
  font-size: .88rem;
  color: var(--text-2);
}
.pricing-guarantee svg { width: 20px; height: 20px; color: var(--secondary); }

/* ════════════════════════════════════════════════════════════
   CHANNELS
   ════════════════════════════════════════════════════════════ */
.channels { background: var(--bg); }

.channels-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.ch-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.ch-stat:hover { border-color: rgba(124,58,237,.4); box-shadow: var(--glow); }
.ch-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .3rem;
}
.ch-stat span { font-size: .82rem; color: var(--text-2); text-transform: uppercase; letter-spacing: .06em; }

.channel-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.ch-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.ch-category:hover {
  border-color: var(--primary);
  background: rgba(124,58,237,.08);
  transform: translateY(-3px);
}
.ch-category .cat-icon { font-size: 2rem; margin-bottom: .6rem; }
.ch-category .cat-name { font-size: .85rem; font-weight: 600; color: var(--text); }
.ch-category .cat-count { font-size: .75rem; color: var(--text-3); margin-top: .2rem; }

.channels-cta-box {
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}
.channels-cta-box h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.channels-cta-box p  { color: var(--text-2); margin-bottom: 1.5rem; }

/* ════════════════════════════════════════════════════════════
   DEVICES
   ════════════════════════════════════════════════════════════ */
.devices { background: var(--bg-2); }

.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
}

.device-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.device-item:hover { border-color: var(--secondary); transform: translateY(-3px); }
.device-item .d-icon { font-size: 2rem; margin-bottom: .5rem; }
.device-item span { font-size: .8rem; color: var(--text-2); }

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
.how-it-works { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card { text-align: center; }
.step-number {
  width: 60px; height: 60px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 30px rgba(124,58,237,.4);
}
.step-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.step-card p  { font-size: .85rem; color: var(--text-2); }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials { background: var(--bg-2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testi-card:hover { border-color: rgba(124,58,237,.35); box-shadow: var(--glow); }

.testi-stars { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text  { font-size: .92rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar {
  width: 42px; height: 42px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  color: white;
  flex-shrink: 0;
}
.testi-info strong { display: block; font-size: .9rem; }
.testi-info span   { font-size: .78rem; color: var(--text-3); }

/* ════════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #1a0533 0%, #001533 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.15) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; position: relative; }
.cta-banner p  { font-size: 1.05rem; color: var(--text-2); margin-bottom: 2rem; position: relative; }
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: #030410;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .87rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--text-2);
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }

.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .87rem; color: var(--text-2); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--secondary); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-2);
  margin-bottom: .6rem;
}
.footer-contact-item a { color: var(--text-2); }
.footer-contact-item a:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: var(--text-3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .82rem; color: var(--text-3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--secondary); }

/* ════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #1a0533 0%, #050814 60%, #001533 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.page-hero .eyebrow { position: relative; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .75rem; position: relative; }
.page-hero p   { font-size: 1.05rem; color: var(--text-2); max-width: 560px; margin: 0 auto; position: relative; }

/* ════════════════════════════════════════════════════════════
   FAQ PAGE
   ════════════════════════════════════════════════════════════ */
.faq-section { background: var(--bg); }

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.faq-cat-btn {
  padding: .55rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: var(--transition);
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: rgba(124,58,237,.12);
  border-color: var(--primary);
  color: var(--text);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(124,58,237,.35); }
.faq-item.open  { border-color: var(--primary); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .92rem;
  gap: 1rem;
  user-select: none;
}
.faq-question:hover { color: var(--secondary); }
.faq-icon {
  width: 24px; height: 24px;
  background: rgba(124,58,237,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--primary);
  font-weight: 400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
}

.contact-info-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.contact-info-card > p { color: var(--text-2); font-size: .92rem; margin-bottom: 2rem; }

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-channel:hover { border-color: rgba(124,58,237,.4); }
.ch-icon {
  width: 44px; height: 44px;
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ch-info strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: .15rem; }
.ch-info a, .ch-info span { font-size: .85rem; color: var(--text-2); }
.ch-info a:hover { color: var(--secondary); }

.contact-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-form-card h3 { font-size: 1.2rem; margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-2); margin-bottom: .5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .85rem 1.1rem;
  color: var(--text);
  font-family: inherit;
  font-size: .92rem;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,.15); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { width: 100%; justify-content: center; }

.form-status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: .9rem;
  margin-top: 1rem;
}
.form-status.success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); color: #10b981; display: block; }
.form-status.error   { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #ef4444; display: block; }

/* ════════════════════════════════════════════════════════════
   BLOG
   ════════════════════════════════════════════════════════════ */
.blog-section { background: var(--bg); }

.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.blog-layout.no-sidebar { grid-template-columns: 1fr; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--glow); border-color: rgba(124,58,237,.35); }

.post-thumb { aspect-ratio: 16/9; background: var(--bg-2); overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(6,182,212,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.post-body { padding: 1.5rem; }
.post-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .85rem;
}
.post-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--secondary);
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.2);
  border-radius: 100px;
  padding: .2rem .75rem;
}
.post-date { font-size: .78rem; color: var(--text-3); }

.post-card h3 { font-size: 1.05rem; line-height: 1.4; margin-bottom: .6rem; }
.post-card h3 a { color: var(--text); }
.post-card h3 a:hover { color: var(--secondary); }
.post-card .excerpt { font-size: .85rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1.25rem; }
.read-more {
  font-size: .82rem;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.read-more:hover { color: var(--primary); }
.read-more::after { content: '→'; transition: var(--transition); }
.read-more:hover::after { transform: translateX(3px); }

/* Sidebar */
.blog-sidebar { }
.widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.widget-title { font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; color: var(--text); }
.widget ul li { border-bottom: 1px solid var(--border); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { display: block; padding: .6rem 0; font-size: .87rem; color: var(--text-2); }
.widget ul li a:hover { color: var(--secondary); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 3rem;
}
.page-numbers {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .87rem;
  color: var(--text-2);
  transition: var(--transition);
  text-decoration: none;
}
.page-numbers.current,
.page-numbers:hover { background: var(--primary); border-color: var(--primary); color: white; }

/* Single post */
.single-post { max-width: 780px; }
.single-post-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.single-post-author { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-2); }
.entry-content { font-size: .98rem; line-height: 1.85; color: var(--text-2); }
.entry-content h2,
.entry-content h3 { color: var(--text); margin: 2rem 0 .75rem; }
.entry-content p  { margin-bottom: 1.25rem; }
.entry-content ul,
.entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content ul li { list-style: disc; margin-bottom: .35rem; }
.entry-content ol li { list-style: decimal; margin-bottom: .35rem; }
.entry-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 1rem 1.5rem;
  background: rgba(124,58,237,.05);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text);
}
.entry-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.entry-content a { color: var(--secondary); }
.entry-content a:hover { color: var(--primary); }
.entry-content code { background: rgba(124,58,237,.1); padding: .15em .4em; border-radius: 4px; font-size: .88em; }
.entry-content pre { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; overflow-x: auto; margin: 1.5rem 0; }
.entry-content pre code { background: none; padding: 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.entry-content th { background: rgba(124,58,237,.1); padding: .75rem 1rem; text-align: left; font-size: .87rem; color: var(--text); }
.entry-content td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); font-size: .87rem; color: var(--text-2); }

/* ════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy / Terms)
   ════════════════════════════════════════════════════════════ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content .last-updated {
  display: inline-block;
  font-size: .82rem;
  color: var(--text-3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .3rem 1rem;
  margin-bottom: 2.5rem;
}
.legal-content h2 { font-size: 1.25rem; color: var(--text); margin: 2.5rem 0 .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.legal-content h3 { font-size: 1rem; color: var(--text); margin: 1.5rem 0 .5rem; }
.legal-content p  { font-size: .92rem; color: var(--text-2); line-height: 1.85; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-content ul li { list-style: disc; font-size: .92rem; color: var(--text-2); line-height: 1.75; margin-bottom: .35rem; }
.legal-content a  { color: var(--secondary); }

/* ════════════════════════════════════════════════════════════
   PRICING PAGE (standalone)
   ════════════════════════════════════════════════════════════ */
.pricing-page { background: var(--bg); }
.pricing-comparison { margin-top: 5rem; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table thead th { padding: 1rem 1.25rem; text-align: center; font-size: .85rem; font-weight: 700; }
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.comparison-table td { padding: .9rem 1.25rem; font-size: .87rem; color: var(--text-2); border-bottom: 1px solid var(--border); text-align: center; }
.comparison-table td:first-child { text-align: left; color: var(--text); }
.comparison-table .check { color: var(--secondary); font-size: 1.1rem; }
.comparison-table .cross { color: var(--text-3); font-size: 1.1rem; }

/* ════════════════════════════════════════════════════════════
   CHANNELS PAGE
   ════════════════════════════════════════════════════════════ */
.channels-page { background: var(--bg); }

.quality-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}
.quality-badge {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .65rem 1.5rem;
  font-size: .88rem;
  font-weight: 600;
}
.quality-badge .qb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: blink 1.5s infinite;
}

/* ════════════════════════════════════════════════════════════
   WooCommerce Overrides
   ════════════════════════════════════════════════════════════ */
.woo-wrapper { padding: 3rem 0; }

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-2);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--bg-2) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
  border-radius: 10px !important;
}
.woocommerce form .form-row input.input-text:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.15) !important;
}

.woocommerce #payment { background: var(--bg-card); border-radius: var(--radius); }
.woocommerce #payment ul.payment_methods { background: var(--bg-2); border-radius: var(--radius); border-color: var(--border); }

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order {
  background: var(--grad) !important;
  color: white !important;
  border-radius: 50px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  padding: .85rem 2rem !important;
  transition: var(--transition) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover { opacity: .9 !important; transform: translateY(-2px) !important; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .section-pad { padding: 4rem 0; }

  /* Nav */
  .primary-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(6,8,26,.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    padding: 5rem 2rem 2rem;
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
  }
  .primary-nav.open { right: 0; }
  .primary-nav ul { flex-direction: column; gap: .25rem; }
  .primary-nav ul li a { padding: .85rem 1rem; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }

  /* Hero */
  .hero { padding-top: 70px; }
  .hero-stats { gap: 1.25rem; }

  /* Pricing */
  .pricing-card.featured { transform: scale(1); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-form-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .channel-categories { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions .btn  { width: 100%; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .channels-stats { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── Selection ─────────────────────────────────────────────── */
::selection { background: rgba(124,58,237,.35); color: white; }

/* ── WordPress Alignments ──────────────────────────────────── */
.aligncenter { display: block; margin: 1.5rem auto; }
.alignleft   { float: left; margin: 0 1.5rem 1rem 0; }
.alignright  { float: right; margin: 0 0 1rem 1.5rem; }
.wp-caption  { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--text-3); text-align: center; margin-top: .4rem; }
