/* ================================================================
   PLAYVERO TV BOX — Obsidian Theme Stylesheet
   Style: Dark Luxury Cyber-Minimalism (Linear / Apple Pro aesthetic)
   Palette: Void Black (#08090C), Deep Carbon (#0E1117), Electric Cobalt (#3B82F6),
            Indigo Glow (#6366F1), Cyber Cyan (#00F0FF), Amber CTA (#F59E0B)
   Hard 320px–1440px Zero-Overflow Responsive Standards
   ================================================================ */

:root {
  --bg-void:        #08090C;
  --bg-surface:     #0E1117;
  --bg-card:        rgba(255, 255, 255, 0.035);
  --bg-card-hover:  rgba(255, 255, 255, 0.065);
  --border-glass:   rgba(255, 255, 255, 0.09);
  --border-hi:      rgba(59, 130, 246, 0.45);

  --cobalt:         #3B82F6;
  --cobalt-glow:    rgba(59, 130, 246, 0.28);
  --cyan:           #00F0FF;
  --cyan-glow:      rgba(0, 240, 255, 0.22);
  --indigo:         #6366F1;
  --cta-amber:      #F59E0B;
  --cta-amber-hover:#D97706;
  --cta-glow:       rgba(245, 158, 11, 0.35);

  --text-main:      #F8FAFC;
  --text-muted:     #94A3B8;
  --text-dim:       #64748B;

  --font-heading:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body:      -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono:      'SF Mono', 'Fira Code', Menlo, Consolas, monospace;

  --radius-xs:      4px;
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-pill:    9999px;
  --container:      1160px;
  --container-narrow: 820px;
  --transition:     all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body.theme-obsidian {
  font-family: var(--font-body);
  background-color: var(--bg-void);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: #FFF;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

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

/* ── AMBIENT GLOWS ─────────────────────────────────────────── */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
  max-width: 100vw;
  overflow: hidden;
}

.glow-top {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(650px, 90vw);
  height: 320px;
  background: radial-gradient(circle, var(--cobalt-glow) 0%, transparent 70%);
}

.glow-center {
  top: 400px;
  left: 50%;
  transform: translateX(-50%);
  width: min(580px, 90vw);
  height: 280px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
}

/* ── SYSTEM STATUS / ANNOUNCEMENT BAR ──────────────────────── */
.sys-bar {
  background: rgba(14, 17, 23, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-glass);
  padding: 10px 24px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.sys-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
  animation: pulse-glow 2s infinite;
  display: inline-block;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}

.sys-sep {
  color: var(--border-glass);
}

.sys-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
}

.timer-digits {
  font-weight: 700;
  color: #FFF;
  background: rgba(0, 240, 255, 0.12);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

/* ── FLOATING GLASS HEADER ─────────────────────────────────── */
.header {
  position: sticky;
  top: 14px;
  z-index: 95;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(14, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 32px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  list-style: none;
}

.nav a:hover {
  color: var(--cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-glow-sm {
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--indigo) 100%);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 0 20px var(--cobalt-glow);
  transition: var(--transition);
}

.btn-glow-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--cobalt-glow);
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ── MOBILE NAVIGATION DRAWER ──────────────────────────────── */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 310px;
  max-width: 85vw;
  height: 100%;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-glass);
  z-index: 999;
  padding: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.mobile-drawer.active {
  display: flex;
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 16px;
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
  font-weight: 600;
  font-size: 15px;
}

.drawer-links a {
  color: var(--text-main);
  display: block;
}

.drawer-links a:hover {
  color: var(--cyan);
}

.drawer-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── CINEMATIC CENTER HERO ─────────────────────────────────── */
.hero-stage {
  padding: 60px 0 50px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93C5FD;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, #FFF 30%, #93C5FD 70%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subhead {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── SHOWCASE POD (CENTER VISUAL) ──────────────────────────── */
.showcase-pod {
  position: relative;
  max-width: 580px;
  margin: 0 auto 36px;
}

.pod-halo {
  position: absolute;
  inset: 0;
  max-width: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cobalt-glow) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.pod-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border-glass);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
}

.hero-pod-img {
  margin: 0 auto;
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s ease;
}

.pod-image-wrapper:hover .hero-pod-img {
  transform: scale(1.02);
}

/* ── HERO ACTION DOCK ──────────────────────────────────────── */
.hero-action-dock {
  background: rgba(14, 17, 23, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  max-width: 600px;
  margin: 0 auto 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dock-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.dock-price-orig {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.dock-price-sale {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #FFF;
  line-height: 1;
}

.dock-badge {
  background: var(--cobalt);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.btn-primary-hero {
  background: linear-gradient(135deg, var(--cta-amber) 0%, #D97706 100%);
  color: #08090C;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 8px 24px var(--cta-glow);
  width: 100%;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--cta-glow);
}

.hero-early-cta {
  max-width: 480px;
  margin: 0 auto 26px;
}

.bundle-selection-summary,
.merchant-confirmation {
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}

.bundle-selection-summary {
  margin: 0 auto 22px;
  max-width: 620px;
}

.merchant-confirmation {
  margin: 18px auto 0;
  font-size: 0.9rem;
}

.hero-trust-notes {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── HUD READOUT STRIP ─────────────────────────────────────── */
.hud-strip {
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: var(--bg-surface);
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.hud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.hud-val {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--cyan);
}

.hud-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ── SECTION SHELL ─────────────────────────────────────────── */
.section {
  padding: 88px 0;
  position: relative;
  z-index: 10;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-kicker,
.zen-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── BENTO GRID ────────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hi);
  transform: translateY(-2px);
}

.bento-span-2 {
  grid-column: span 2;
}

.bento-card h3 {
  font-size: 1.35rem;
  margin: 12px 0 10px;
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.bento-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--cyan);
}

/* ── SPECS TABLE & BENCHMARK ───────────────────────────────── */
.specs-wrapper,
.comp-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.specs-table,
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.specs-table th, .specs-table td,
.comp-table th, .comp-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
}

.comp-table th {
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.comp-table td:nth-child(2),
.comp-table th:nth-child(2) {
  background: rgba(59, 130, 246, 0.06);
  border-left: 1px solid rgba(59, 130, 246, 0.2);
  border-right: 1px solid rgba(59, 130, 246, 0.2);
  color: #FFF;
  font-weight: 600;
}

.check-yes {
  color: #10B981;
  font-weight: 800;
}

.check-no {
  color: #EF4444;
}

/* ── UNBOXING MANIFEST ─────────────────────────────────────── */
.unboxing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.unboxing-manifest {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.unboxing-manifest li {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.unboxing-manifest li strong {
  color: #FFF;
  font-size: 14.5px;
}

.unboxing-manifest li span {
  color: var(--text-muted);
  font-size: 12.5px;
}

/* ── 3-STEP SETUP TRACK ────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-card img {
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── PACKAGES & GOLDEN FUNNEL PRICING ──────────────────────── */
.packages-section {
  padding: 96px 0;
  background: radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  position: relative;
  z-index: 10;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.package-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.package-card.featured {
  border: 2px solid var(--cobalt);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(14, 17, 23, 0.95) 100%);
  box-shadow: 0 0 35px var(--cobalt-glow);
}

.featured-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--indigo) 100%);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--cobalt-glow);
}

.pkg-header {
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.pkg-tier-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #FFF;
}

.pkg-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.pkg-pricing {
  text-align: center;
  margin-bottom: 24px;
}

.pkg-orig {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.pkg-price {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 900;
  color: #FFF;
  line-height: 1;
  margin: 6px 0;
}

.pkg-unit {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--cyan);
  font-weight: 700;
}

.pkg-save {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg-features li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 800;
}

.btn-package-cta {
  background: linear-gradient(135deg, var(--cta-amber) 0%, #D97706 100%);
  color: #08090C;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 6px 18px var(--cta-glow);
  width: 100%;
}

.btn-package-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--cta-glow);
}

/* ── REVIEWS MASONRY ───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hi);
}

.review-stars {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #FFF;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.review-meta {
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.author-name {
  font-weight: 700;
  color: #FFF;
}

.author-state {
  color: var(--text-dim);
}

.verified-badge {
  color: #10B981;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── FAQ ACCORDION ─────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-hi);
}

.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-a {
  display: block;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  padding: 56px 0 36px;
  color: var(--text-dim);
  font-size: 13px;
  position: relative;
  z-index: 10;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.footer-brand img {
  height: 30px;
  margin: 0 auto;
}

.footer-disclaimer {
  max-width: 760px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a:hover {
  color: var(--cyan);
}

/* ── STICKY BOTTOM DOCK (MOBILE) ───────────────────────────── */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(8, 9, 12, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glass);
  padding: 12px 20px;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
}

.dock-left {
  display: flex;
  flex-direction: column;
}

.dock-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFF;
  font-family: var(--font-heading);
}

.dock-note {
  font-size: 10.5px;
  color: var(--cyan);
  font-family: var(--font-mono);
}

.dock-cta {
  background: var(--cta-amber);
  color: #08090C;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

/* ── COUNTRY SELECTOR PAGE STYLES ──────────────────────────── */
.stepper-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 36px 0 48px;
  font-family: var(--font-mono);
}

.step-node {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 12.5px;
}

.step-node.active {
  color: var(--cyan);
  font-weight: 700;
}

.step-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.step-node.active .step-circle {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.15);
  color: #FFF;
}

.hub-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
}

.hub-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.hub-flag {
  font-size: 38px;
  line-height: 1;
}

.hub-meta h3 {
  font-size: 1.35rem;
  color: #FFF;
  margin-bottom: 4px;
}

.hub-meta p {
  color: var(--text-muted);
  font-size: 13px;
}

.hub-info-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 13px;
}

.hub-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 8px;
}

.hub-row span:first-child {
  color: var(--text-dim);
}

.hub-row span:last-child {
  color: #FFF;
  font-weight: 600;
  font-family: var(--font-mono);
}

.btn-hub-proceed {
  background: linear-gradient(135deg, var(--cta-amber) 0%, #D97706 100%);
  color: #08090C;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 14.5px;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-transform: uppercase;
  box-shadow: 0 8px 24px var(--cta-glow);
}

.btn-hub-proceed:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--cta-glow);
}

/* ── POLICY & CONTACT PAGES ────────────────────────────────── */
.policy-card {
  max-width: var(--container-narrow);
  margin: 40px auto 80px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.policy-card h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.policy-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  margin-bottom: 32px;
  display: block;
}

.policy-content h2 {
  font-size: 1.45rem;
  margin: 32px 0 12px;
  color: #FFF;
}

.policy-content p, .policy-content ul {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.policy-content ul {
  padding-left: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}

.form-input {
  width: 100%;
  background: var(--bg-void);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #FFF;
  font-family: inherit;
  font-size: 14px;
}

.form-input:focus {
  outline: none;
  border-color: var(--cyan);
}

/* ── RESPONSIVE MEDIA QUERIES ──────────────────────────────── */
@media (max-width: 1080px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .btn-glow-sm {
    display: none;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-span-2 {
    grid-column: span 1;
  }
  .unboxing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .hud-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .mobile-bottom-dock {
    display: flex;
  }
  .sys-bar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .policy-card {
    padding: 28px 18px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    display: flex;
    flex-direction: column;
  }
  .container, .container-narrow {
    padding: 0 14px;
  }
  .hero-stage {
    padding: 16px 0 32px;
  }
  .hero-badge {
    order: 1;
    margin-bottom: 12px;
  }
  .hero-h1 {
    order: 2;
    font-size: 1.65rem;
    line-height: 1.12;
    margin-bottom: 12px;
  }
  .hero-early-cta {
    order: 3;
    margin-bottom: 12px;
  }
  .showcase-pod {
    order: 4;
    margin-bottom: 14px;
  }
  .hero-subhead {
    order: 5;
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  .hero-action-dock {
    order: 6;
  }
  .pod-image-wrapper {
    padding: 10px;
  }
  .hero-pod-img {
    max-height: 190px;
  }
  .hero-action-dock {
    padding: 18px 14px;
  }
  .dock-price-sale {
    font-size: 2.5rem;
  }
  .btn-primary-hero {
    font-size: 12px;
    padding: 13px 12px;
    white-space: normal;
    text-align: center;
  }
  .stepper-wrap {
    gap: 8px;
  }
  .step-node span {
    display: none;
  }
}

/* Hard 320px screen guard */
@media (max-width: 340px) {
  .container, .container-narrow {
    padding: 0 10px;
  }
  .hero-h1 {
    font-size: 1.5rem;
  }
  .dock-price-sale {
    font-size: 2.2rem;
  }
  .btn-primary-hero {
    font-size: 11px;
    padding: 11px 8px;
    letter-spacing: 0;
  }
  .hud-val {
    font-size: 1.3rem;
  }
  .hub-card {
    padding: 20px 14px;
  }
}
