/* ================================================================
   OBSIDIAN THEME — Bento-Grid Tech Showcase for Soothely
   Style: Dark Luxury Cyber-Ergonomics (Space Grotesk + Inter + JetBrains Mono)
   Palette: Void Black (#06080F) + Deep Slate (#0B0F19) + Electric Violet (#8B5CF6) + Cyber Cyan (#06B6D4) + Emerald (#10B981) + Warm Amber (#F59E0B)
   ================================================================ */

:root {
  --bg-void:        #06080F;
  --bg-surface:     #0B0F19;
  --bg-card:        rgba(15, 22, 36, 0.72);
  --bg-card-hover:  rgba(22, 32, 54, 0.88);
  --border-glass:   rgba(255, 255, 255, 0.09);
  --border-hi:      rgba(139, 92, 246, 0.4);
  --border-cyan:    rgba(6, 182, 212, 0.4);

  --violet:         #8B5CF6;
  --violet-glow:    rgba(139, 92, 246, 0.25);
  --cyan:           #06B6D4;
  --cyan-glow:      rgba(6, 182, 212, 0.22);
  --emerald:        #10B981;
  --emerald-glow:   rgba(16, 185, 129, 0.2);
  --amber:          #F59E0B;
  --amber-glow:     rgba(245, 158, 11, 0.25);

  --text-main:      #F1F5F9;
  --text-muted:     #94A3B8;
  --text-dim:       #64748B;

  --font-heading:   'Space Grotesk', -apple-system, sans-serif;
  --font-body:      'Inter', -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-pill:    9999px;
  --container:      1200px;
  --container-narrow: 840px;
  --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;
  overflow-x: hidden;
  width: 100%;
}

body.theme-obsidian {
  font-family: var(--font-body);
  background-color: var(--bg-void);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  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.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  overflow-wrap: break-word;
  word-break: break-word;
}

.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(140px);
  z-index: 0;
}
.glow-top {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 90vw);
  height: 380px;
  background: radial-gradient(circle, var(--violet-glow) 0%, transparent 70%);
}
.glow-center {
  top: 480px;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 85vw);
  height: 320px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
}
.glow-cta {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(540px, 80vw);
  height: 320px;
  background: radial-gradient(circle, var(--violet-glow) 0%, transparent 70%);
}

/* ── SYSTEM STATUS BAR ───────────────────────────────────── */
.sys-bar {
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-glass);
  padding: 10px 24px;
  font-size: 13px;
  font-family: var(--font-mono);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 120;
}
.sys-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald);
  animation: pulse-glow 2s infinite;
  flex-shrink: 0;
}
.sys-sep {
  color: var(--border-glass);
}
.sys-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  white-space: nowrap;
}
.timer-digits {
  font-weight: 700;
  color: #fff;
  background: rgba(6, 182, 212, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(6, 182, 212, 0.35);
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.9); }
}

/* ── FLOATING GLASS HEADER ───────────────────────────────── */
.header {
  position: sticky;
  top: 14px;
  z-index: 110;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: rgba(11, 15, 25, 0.82);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  padding: 8px 18px 8px 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.brand-mark {
  color: var(--cyan);
  font-size: 18px;
  text-shadow: 0 0 12px var(--cyan);
}
.brand-pill {
  font-size: 10px;
  font-family: var(--font-mono);
  background: var(--violet);
  color: #fff;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: nowrap;
}
.nav a {
  padding: 4px 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav a:hover {
  color: #fff;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 20px;
}

.btn-glow-sm {
  background: linear-gradient(135deg, var(--violet) 0%, #6366F1 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 20px var(--violet-glow);
  white-space: nowrap;
}
.btn-glow-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px var(--violet-glow);
}

/* Mobile Menu Toggle Button */
.nav-toggle-btn {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 8px 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.nav-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-cyan);
}
.hamburger-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 20px;
  right: 20px;
  background: rgba(11, 15, 25, 0.96);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 105;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  flex-direction: column;
  gap: 16px;
}
.mobile-nav-drawer.open {
  display: flex;
  animation: slideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-drawer a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: block;
}
.mobile-nav-drawer a:hover {
  background: rgba(139, 92, 246, 0.15);
  color: #fff;
}
.mobile-drawer-cta {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
  width: 100%;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SECTION HEADERS & PILLS ─────────────────────────────── */
.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}
.section-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
}

/* ── CINEMATIC HERO STAGE ────────────────────────────────── */
.hero-stage {
  padding: 70px 0 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #C4B5FD;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.gradient-text {
  background: linear-gradient(135deg, #fff 15%, #C4B5FD 55%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subhead {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  max-width: 720px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

/* Showcase Pod with Pod Image and Capsules */
.showcase-pod {
  position: relative;
  max-width: 660px;
  margin: 0 auto 44px;
}
.pod-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--violet-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.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border-glass);
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
}
.hero-pod-img {
  margin: 0 auto;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.pod-image-wrapper:hover .hero-pod-img {
  transform: scale(1.02);
}

/* Floating Stat Capsules */
.stat-capsule {
  position: absolute;
  z-index: 5;
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}
.capsule-left {
  top: 14%;
  left: 0;
}
.capsule-right {
  bottom: 12%;
  right: 0;
}
.capsule-icon {
  font-size: 20px;
  color: var(--amber);
}
.capsule-body {
  text-align: left;
}
.capsule-val {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}
.capsule-lbl {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

/* Action Dock */
.action-dock {
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 720px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.dock-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.price-strike {
  font-size: 1.4rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.price-current {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fff;
  max-width: 100%;
  word-break: break-word;
}
.discount-tag {
  background: var(--emerald);
  color: #06080F;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  white-space: nowrap;
}
.dock-btn-row {
  margin-bottom: 20px;
}
.btn-glow-hero {
  background: linear-gradient(135deg, var(--amber) 0%, #D97706 100%);
  color: #06080F;
  font-size: 1.12rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 28px var(--amber-glow);
  transition: var(--transition);
  width: 100%;
  max-width: 440px;
}
.btn-glow-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.45);
}
.btn-arrow {
  font-size: 1.25rem;
}
.trust-pill-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ── TRUST BAR STRIP ─────────────────────────────────────── */
.trust-bar-section {
  padding: 24px 0;
  background: rgba(11, 15, 25, 0.6);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  z-index: 10;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item-val {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
.trust-item-val span {
  color: var(--cyan);
}
.trust-item-lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── ASYMMETRICAL BENTO GRID ─────────────────────────────── */
.bento-section {
  padding: 100px 0 80px;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.bento-card:hover {
  border-color: var(--border-hi);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
}
.bento-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--violet-glow) 0%, transparent 70%);
  pointer-events: none;
}
.bento-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.bento-card h3, .bento-card h4 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  line-height: 1.3;
}
.bento-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

.bento-split {
  display: flex;
  gap: 28px;
  align-items: center;
}
.bento-split-copy {
  flex: 1;
  min-width: 0;
}
.bento-split-media {
  flex: 1;
  min-width: 0;
}
.bento-media-img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bento-telemetry {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.tele-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.tele-label {
  width: 110px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.tele-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.tele-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--violet) 100%);
  border-radius: var(--radius-pill);
}
.tele-val {
  color: #fff;
  font-weight: 700;
  width: 48px;
  text-align: right;
  flex-shrink: 0;
}

.code-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--violet);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: 10px;
}

.live-metric-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--emerald);
  margin-top: 10px;
}
.live-dot-green {
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
}

.micro-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.micro-check-list li {
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.micro-check-list li span {
  color: var(--cyan);
  font-weight: 700;
}

/* ── SPOTLIGHT / LIFESTYLE SECTION ───────────────────────── */
.spotlight-section {
  padding: 80px 0;
  background: rgba(11, 15, 25, 0.5);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.spotlight-img-wrap {
  position: relative;
}
.spotlight-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.spotlight-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 18px;
}
.spotlight-copy p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.spotlight-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.pillar-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
}
.pillar-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.pillar-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0 !important;
}

/* ── 3-STEP SEQUENCE ─────────────────────────────────────── */
.how-section {
  padding: 100px 0 80px;
}
.how-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.how-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-3px);
}
.how-step-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(6, 182, 212, 0.4);
  line-height: 1;
  margin-bottom: 16px;
}
.how-img {
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}
.how-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.how-card:hover .how-img img {
  transform: scale(1.04);
}
.how-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.how-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── UNBOXING MANIFEST ───────────────────────────────────── */
.unboxing-section {
  padding: 90px 0;
  background: rgba(11, 15, 25, 0.5);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.unboxing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.unboxing-media {
  position: relative;
}
.unboxing-media img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.manifest-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.manifest-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.manifest-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.manifest-qty {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.12);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.manifest-name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.manifest-desc {
  font-size: 12px;
  color: var(--text-muted);
}
.manifest-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ── TECH SPECS TABBED MATRIX ────────────────────────────── */
.specs-section {
  padding: 100px 0 80px;
}
.specs-wrapper {
  max-width: 920px;
  margin: 0 auto;
}
.specs-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.specs-tab-btn {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.specs-tab-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.specs-tab-btn.active {
  color: #fff;
  background: var(--violet);
  border-color: var(--violet);
  box-shadow: 0 0 16px var(--violet-glow);
}
.specs-panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.specs-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.spec-cell {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}
.spec-cell .k {
  display: block;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.spec-cell .v {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── BENCHMARK COMPARISON MATRIX ─────────────────────────── */
.compare-section {
  padding: 90px 0;
  background: rgba(11, 15, 25, 0.5);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.compare-table-pod {
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}
.compare-table th {
  font-family: var(--font-heading);
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}
.compare-table th.col-hero, .compare-table td.col-hero {
  background: rgba(139, 92, 246, 0.08);
  border-left: 1px solid var(--border-hi);
  border-right: 1px solid var(--border-hi);
  color: #fff;
  font-weight: 700;
}
.chk-good {
  color: var(--emerald);
  font-weight: 700;
  margin-right: 6px;
}
.chk-bad {
  color: #EF4444;
  font-weight: 700;
  margin-right: 6px;
}

/* ── BUNDLES & PRICING SELECTION ─────────────────────────── */
.bundles-section {
  padding: 100px 0 80px;
}
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto 40px;
}
.bundle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bundle-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.bundle-card.featured {
  border-color: var(--violet);
  background: rgba(139, 92, 246, 0.08);
  box-shadow: 0 0 32px var(--violet-glow);
}
.bundle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.bundle-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.bundle-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.bundle-price-box {
  margin-bottom: 18px;
}
.bundle-per-unit {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.bundle-per-unit-lbl {
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
.bundle-total {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}
.bundle-strike {
  text-decoration: line-through;
  color: var(--text-dim);
  margin-right: 6px;
}
.bundle-save-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.bundle-cta-btn {
  background: linear-gradient(135deg, var(--amber) 0%, #D97706 100%);
  color: #06080F;
  font-weight: 800;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  display: block;
  width: 100%;
  transition: var(--transition);
}
.bundle-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px var(--amber-glow);
}
.bundle-card.featured .bundle-cta-btn {
  background: linear-gradient(135deg, #fff 0%, #C4B5FD 100%);
  color: #06080F;
}

/* ── SOCIAL TELEMETRY / REVIEWS ──────────────────────────── */
.telemetry-section {
  padding: 90px 0;
  background: rgba(11, 15, 25, 0.5);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.reviews-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-tile {
  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-tile:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
}
.tile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
}
.verified-tag {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.review-tile h4 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.review-tile p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}
.tile-author {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}
.author-loc {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: normal;
  margin-top: 2px;
}

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-section {
  padding: 100px 0 80px;
}
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item.active {
  border-color: var(--border-hi);
}
.accordion-header {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
}
.accordion-header:hover {
  color: var(--cyan);
}
.acc-icon {
  font-size: 20px;
  color: var(--violet);
  font-family: var(--font-mono);
  margin-left: 16px;
  flex-shrink: 0;
}
.accordion-body {
  padding: 0 26px 24px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  display: none;
}
.accordion-item.active .accordion-body {
  display: block;
  animation: fadeIn 0.25s ease;
}

/* ── FINAL CTA STAGE ─────────────────────────────────────── */
.final-cta-stage {
  padding: 80px 0 120px;
}
.cta-card {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, rgba(11, 15, 25, 0.94) 100%);
  border: 1px solid var(--border-hi);
  padding: 68px 36px;
  text-align: center;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
}
.cta-card h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  margin-bottom: 16px;
}
.cta-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
}
.final-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.old-p {
  font-size: 1.4rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.new-p {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fff;
}
.save-badge {
  background: var(--emerald);
  color: #06080F;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.final-guarantee-strip {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ── COMPLIANT FOOTER ────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  padding: 52px 0 36px;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
}
.footer-brand {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-disclaimer {
  max-width: 760px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.7;
}
.footer-contact-info {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.footer-contact-info a {
  color: var(--cyan);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 22px;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a:hover {
  color: #fff;
}

/* ── FIXED BOTTOM DOCK (MOBILE ONLY) ─────────────────────── */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 8, 15, 0.94);
  backdrop-filter: blur(18px);
  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-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
}
.dock-discount {
  font-size: 11px;
  background: var(--emerald);
  color: #06080F;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
  font-weight: 700;
}
.dock-cta {
  background: var(--amber);
  color: #06080F;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 16px var(--amber-glow);
}

/* ── POLICY PAGE STYLING ─────────────────────────────────── */
.policy-page {
  padding: 60px 0 100px;
}
.policy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
}
.policy-card h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
.policy-card h2 {
  font-size: 1.45rem;
  margin: 32px 0 14px;
  color: var(--cyan);
}
.policy-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.policy-card ul {
  color: var(--text-muted);
  padding-left: 24px;
  margin-bottom: 20px;
}
.policy-card li {
  margin-bottom: 8px;
}
.policy-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 28px;
  font-size: 14px;
}

/* ── RESPONSIVE BREAKPOINTS (Zero Overflow Protection & Header Strategy) ──── */
@media (max-width: 1280px) {
  .nav {
    gap: 10px;
    font-size: 12px;
  }
  .nav a {
    padding: 3px 4px;
  }
  .btn-glow-sm {
    font-size: 12px;
    padding: 7px 14px;
  }
  .header-inner {
    gap: 16px;
    padding: 6px 14px;
  }
}

@media (max-width: 1080px) {
  .nav {
    display: none !important;
  }
  .nav-toggle-btn {
    display: flex !important;
  }
  .header-action .btn-glow-sm {
    display: none !important;
  }
  .bento-col-8, .bento-col-4, .bento-col-6 {
    grid-column: span 12;
  }
  .bento-split {
    flex-direction: column;
  }
  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .unboxing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how-cards-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pod-halo, .bento-glow, .ambient-glow {
    display: none !important;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-capsule {
    position: static;
    margin: 12px auto 0;
    max-width: 280px;
  }
  .action-dock {
    padding: 20px 16px !important;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .bundles-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .reviews-masonry {
    grid-template-columns: 1fr;
  }
  .mobile-bottom-dock {
    display: flex;
  }
  body.theme-obsidian {
    padding-bottom: 74px;
  }
  /* Responsive Compare Table: Clean 2-column mobile layout */
  .compare-table {
    min-width: 0 !important;
    width: 100% !important;
  }
  .compare-table th:nth-child(3),
  .compare-table td:nth-child(3),
  .compare-table th:nth-child(4),
  .compare-table td:nth-child(4) {
    display: none !important;
  }
  .compare-table th, .compare-table td {
    padding: 12px 10px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .container, .container-narrow {
    padding: 0 14px;
  }
  .hero-h1 {
    font-size: 1.85rem;
  }
  .action-dock {
    padding: 16px 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .dock-pricing {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .price-current {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    word-break: break-word !important;
    display: block !important;
  }
  .discount-tag {
    display: inline-block !important;
    max-width: 100% !important;
    text-align: center !important;
    font-size: 11px !important;
    padding: 4px 10px !important;
  }
  .btn-glow-hero {
    font-size: 0.95rem;
    padding: 13px 18px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sys-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .cta-card {
    padding: 30px 14px !important;
  }
  .final-price-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .new-p {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
    word-break: break-word !important;
    display: block !important;
  }
  .save-badge {
    display: inline-block !important;
    font-size: 11px !important;
    padding: 4px 10px !important;
    text-align: center !important;
  }
  .final-trust-strip {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .policy-card {
    padding: 20px 14px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .action-dock {
    padding: 14px 6px !important;
  }
  .price-current, .new-p {
    font-size: 1.15rem !important;
  }
  .btn-glow-hero {
    font-size: 0.88rem !important;
    padding: 12px 12px !important;
  }
  .trust-pill-strip {
    font-size: 11px !important;
    gap: 8px !important;
  }
}
