/* ================================================================
   OBSIDIAN THEME — Bento-Grid Tech Showcase
   Style: Dark Luxury Cyber-Minimalism (Linear / Apple Pro vibe)
   Palette: Void Black (#08090C) + Electric Violet (#7C3AED) + Cyber Cyan (#06B6D4) + Glowing Amber CTA (#F59E0B)
   Fonts: Space Grotesk (Headings), Inter (Body), JetBrains Mono (Tech Specs)
   ================================================================ */

:root {
  --bg-void:        #08090C;
  --bg-surface:     #0E1117;
  --bg-card:        rgba(255, 255, 255, 0.03);
  --bg-card-hover:  rgba(255, 255, 255, 0.06);
  --border-glass:   rgba(255, 255, 255, 0.08);
  --border-hi:      rgba(124, 58, 237, 0.4);

  --violet:         #7C3AED;
  --violet-glow:    rgba(124, 58, 237, 0.25);
  --cyan:           #06B6D4;
  --cyan-glow:      rgba(6, 182, 212, 0.2);
  --cta-amber:      #F59E0B;
  --cta-glow:       rgba(245, 158, 11, 0.35);

  --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 ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: dark; overflow-x: hidden !important; width: 100%; max-width: 100vw; }
body.theme-obsidian { overflow-x: hidden !important; width: 100%; max-width: 100vw; }
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;
  padding-bottom: 70px;
}
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.15; font-weight: 700; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ── AMBIENT GLOWS ─────────────────────────────────────────── */
.ambient-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); z-index: 0;
  max-width: 100vw;
}
.glow-top { top: -80px; left: 50%; transform: translateX(-50%); width: 400px; height: 250px; background: radial-gradient(circle, var(--violet-glow) 0%, transparent 70%); }
.glow-center { top: 400px; left: 50%; transform: translateX(-50%); width: 350px; height: 200px; background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%); }
.glow-cta { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 350px; height: 200px; background: radial-gradient(circle, var(--violet-glow) 0%, transparent 70%); }

@media (max-width: 992px) {
  .ambient-glow {
    display: none !important;
  }
}

/* ── SYSTEM STATUS BAR ─────────────────────────────────────── */
.sys-bar {
  background: rgba(14, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  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: 100;
}
.sys-status { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.status-dot { width: 7px; height: 7px; background: #10B981; border-radius: 50%; box-shadow: 0 0 10px #10B981; animation: pulse-glow 2s infinite; }
.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(6, 182, 212, 0.15); padding: 2px 8px; border-radius: var(--radius-sm); border: 1px solid rgba(6, 182, 212, 0.3); }

@keyframes pulse-glow { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.9); } }

/* ── FLOATING GLASS HEADER ─────────────────────────────────── */
.header {
  position: sticky; top: 16px; z-index: 90;
  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.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 17px; }
.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: 24px; font-size: 14px; color: var(--text-muted); }
.nav a:hover { color: #fff; }

.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: flex; align-items: center; gap: 6px;
  box-shadow: 0 0 20px var(--violet-glow);
}
.btn-glow-sm:hover { transform: translateY(-1px); box-shadow: 0 0 30px var(--violet-glow); }

/* ── CINEMATIC CENTER HERO ─────────────────────────────────── */
.hero-stage {
  padding: 80px 0 60px; position: relative; text-align: center; overflow: hidden;
}
.hero-container { max-width: 900px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: #C4B5FD; font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 24px;
}
.hero-h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); margin-bottom: 20px; letter-spacing: -0.03em; }
.gradient-text {
  background: linear-gradient(135deg, #fff 20%, #A78BFA 60%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subhead { color: var(--text-muted); font-size: clamp(1rem, 2vw, 1.25rem); max-width: 680px; margin: 0 auto 48px; }

/* ── SHOWCASE POD (CENTER VISUAL + STAT CAPSULES) ──────────── */
.showcase-pod {
  position: relative; max-width: 620px; margin: 0 auto 48px;
}
.pod-halo {
  position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(circle, var(--violet-glow) 0%, transparent 60%);
  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.01) 100%);
  border: 1px solid var(--border-glass);
  padding: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.hero-pod-img { margin: 0 auto; filter: drop-shadow(0 15px 35px rgba(0,0,0,0.5)); transition: transform 0.5s ease; }
.pod-image-wrapper:hover .hero-pod-img { transform: scale(1.03); }

/* Floating Stat Capsules */
.stat-capsule {
  position: absolute; z-index: 5;
  background: rgba(14, 17, 23, 0.85);
  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 10px 30px rgba(0,0,0,0.5);
}
.capsule-left { top: 20%; left: -40px; border-color: rgba(245, 158, 11, 0.3); }
.capsule-right { bottom: 20%; right: -40px; border-color: rgba(6, 182, 212, 0.3); }
.capsule-icon { font-size: 18px; }
.capsule-body { text-align: left; }
.capsule-val { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.capsule-lbl { display: block; font-size: 11px; color: var(--text-muted); }

/* ── ACTION DOCK ───────────────────────────────────────────── */
.action-dock {
  background: rgba(14, 17, 23, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 36px; max-width: 600px; margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.dock-pricing { display: flex; justify-content: center; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.price-strike { font-size: 1.25rem; color: var(--text-dim); text-decoration: line-through; }
.price-current { font-size: 2.4rem; font-weight: 800; font-family: var(--font-heading); color: #fff; }
.discount-tag {
  background: rgba(16, 185, 129, 0.15); color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill);
}

.btn-glow-hero {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--cta-amber) 0%, #D97706 100%);
  color: #08090C; font-family: var(--font-heading); font-size: 17px; font-weight: 800;
  padding: 18px 36px; border-radius: var(--radius-pill); width: 100%;
  box-shadow: 0 0 35px var(--cta-glow), 0 10px 25px rgba(0,0,0,0.4);
  transition: var(--transition); letter-spacing: 0.02em;
}
.btn-glow-hero:hover { transform: translateY(-2px); box-shadow: 0 0 50px var(--cta-glow); }

.trust-pill-strip {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 16px;
  margin-top: 18px; font-size: 12px; color: var(--text-muted); font-family: var(--font-mono);
}

/* ── BENTO SECTION ARCHITECTURE ────────────────────────────── */
.bento-section { padding: 100px 0; background: var(--bg-surface); position: relative; border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }
.section-intro { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-pill {
  display: inline-block; font-size: 11px; font-family: var(--font-mono);
  color: var(--cyan); letter-spacing: 0.15em; margin-bottom: 12px; font-weight: 600;
}
.section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Common Bento Card */
.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);
}
.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hi);
  transform: translateY(-3px);
}
.bento-tag {
  font-size: 11px; font-family: var(--font-mono); color: var(--violet);
  font-weight: 700; letter-spacing: 0.1em; margin-bottom: 12px;
}

/* Specific Bento Cards */
.bento-hero-card {
  grid-column: span 2; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.bento-hero-card h3 { font-size: 1.8rem; margin-bottom: 12px; }
.bento-hero-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.bento-telemetry { display: flex; flex-direction: column; gap: 12px; max-width: 280px; }
.tele-item { display: flex; align-items: center; gap: 10px; font-size: 11px; font-family: var(--font-mono); }
.tele-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.tele-bar span { display: block; height: 100%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.bento-media img { border-radius: var(--radius-md); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }

.bento-stat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.stat-circle {
  width: 140px; height: 140px; border-radius: 50%;
  border: 2px dashed rgba(6, 182, 212, 0.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.stat-number { font-size: 2.2rem; font-weight: 800; color: #fff; font-family: var(--font-heading); }
.stat-legend { font-size: 11px; color: var(--cyan); font-family: var(--font-mono); }
.bento-caption { font-size: 13px; color: var(--text-muted); }

.tech-icon-hex { font-size: 28px; margin-bottom: 16px; }
.bento-tech-card h4, .bento-power-card h4 { font-size: 1.3rem; margin-bottom: 10px; }
.bento-tech-card p, .bento-power-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 18px; }
.code-pill {
  display: inline-block; font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); background: rgba(255,255,255,0.03); padding: 4px 10px; border-radius: var(--radius-sm);
}
.live-metric-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #10B981; font-family: var(--font-mono); }
.live-dot-green { width: 6px; height: 6px; background: #10B981; border-radius: 50%; box-shadow: 0 0 6px #10B981; }

.bento-wide-card { grid-column: span 3; }
.wide-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.wide-copy { max-width: 580px; }
.wide-copy h4 { font-size: 1.6rem; margin-bottom: 12px; }
.wide-copy p { color: var(--text-muted); margin-bottom: 20px; }
.micro-check-list { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.micro-check-list span { color: var(--cyan); font-weight: 700; margin-right: 6px; }
.blueprint-box {
  background: rgba(6, 182, 212, 0.04); border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-md); padding: 20px; text-align: center;
}
.blueprint-label { font-size: 10px; font-family: var(--font-mono); color: var(--cyan); letter-spacing: 0.15em; margin-bottom: 10px; display: block; }

/* ── SPECS SECTION (TABBED CONTROLS) ───────────────────────── */
.specs-section { padding: 90px 0; }
.specs-wrapper { max-width: 860px; margin: 0 auto; }
.specs-tabs {
  display: flex; justify-content: center; gap: 10px; margin-bottom: 32px;
}
.specs-tab-btn {
  padding: 10px 24px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
  color: var(--text-muted); background: var(--bg-surface); border: 1px solid var(--border-glass);
  transition: var(--transition);
}
.specs-tab-btn.active, .specs-tab-btn:hover {
  color: #fff; background: var(--violet); border-color: var(--violet);
  box-shadow: 0 0 20px var(--violet-glow);
}

.specs-panel {
  display: none; background: var(--bg-card); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); padding: 36px;
}
.specs-panel.active { display: block; animation: fadeIn 0.3s ease; }
.specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.spec-cell {
  display: flex; flex-direction: column; gap: 4px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.spec-cell .k { font-size: 12px; font-family: var(--font-mono); color: var(--text-dim); }
.spec-cell .v { font-size: 15px; font-weight: 600; color: #fff; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ── 3-STEP SEQUENCE ───────────────────────────────────────── */
.how-section { padding: 90px 0; background: var(--bg-surface); border-top: 1px solid var(--border-glass); }
.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: 32px; text-align: center; position: relative;
}
.how-step-num {
  font-family: var(--font-mono); font-size: 2.4rem; font-weight: 800; color: rgba(255,255,255,0.06);
  position: absolute; top: 16px; right: 20px;
}
.how-img { margin-bottom: 20px; }
.how-img img { margin: 0 auto; border-radius: var(--radius-md); }
.how-card h4 { font-size: 1.25rem; margin-bottom: 10px; }
.how-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── BENCHMARK MATRIX (COMPARISON) ─────────────────────────── */
.compare-section { padding: 90px 0; }
.compare-table-pod {
  background: var(--bg-card); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); overflow: hidden; max-width: 960px; margin: 0 auto;
}
.table-head, .table-row {
  display: grid; grid-template-columns: 2fr 2fr 1.5fr 1.5fr; padding: 18px 24px;
  align-items: center; border-bottom: 1px solid var(--border-glass);
}
.table-head { background: rgba(255,255,255,0.02); font-weight: 700; font-size: 14px; }
.col-hero-brand { color: var(--cyan); font-weight: 700; }
.col-alt { color: var(--text-dim); }
.chk-good { color: #10B981; font-weight: 800; margin-right: 6px; }
.chk-bad { color: #EF4444; font-weight: 800; margin-right: 6px; }

/* ── REVIEWS MASONRY ───────────────────────────────────────── */
.telemetry-section { padding: 90px 0; background: var(--bg-surface); border-top: 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;
}
.tile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.stars { color: #F59E0B; font-size: 14px; }
.verified-tag { font-size: 10px; font-family: var(--font-mono); color: #10B981; background: rgba(16,185,129,0.1); padding: 2px 6px; border-radius: var(--radius-sm); }
.review-tile h4 { font-size: 1.1rem; margin-bottom: 8px; }
.review-tile p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; }
.tile-author { font-size: 13px; font-weight: 600; color: #fff; }
.author-loc { display: block; font-size: 11px; color: var(--text-dim); font-weight: normal; }

/* ── FAQ ACCORDION ─────────────────────────────────────────── */
.faq-section { padding: 90px 0; }
.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: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  color: #fff; font-size: 1.05rem; font-weight: 600; text-align: left;
}
.acc-icon { font-size: 20px; color: var(--violet); font-family: var(--font-mono); }
.accordion-body {
  padding: 0 24px 22px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6;
  display: none;
}
.accordion-item.active .accordion-body { display: block; }

/* ── FINAL CTA STAGE ───────────────────────────────────────── */
.final-cta-stage { padding: 90px 0 120px; }
.cta-card {
  max-width: 880px; margin: 0 auto; position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, rgba(14, 17, 23, 0.9) 100%);
  border: 1px solid var(--border-hi); padding: 64px 32px; text-align: center; overflow: hidden;
}
.cta-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.cta-card h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-desc { color: var(--text-muted); margin-bottom: 32px; }
.final-price-box { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-bottom: 32px; }
.old-p { font-size: 1.3rem; color: var(--text-dim); text-decoration: line-through; }
.new-p { font-size: 2.8rem; font-weight: 800; font-family: var(--font-heading); color: #fff; }
.save-badge { background: #10B981; color: #08090C; font-weight: 800; font-size: 12px; padding: 4px 10px; border-radius: var(--radius-pill); }
.final-guarantee-strip {
  display: flex; justify-content: center; gap: 24px; font-size: 13px; color: var(--text-muted); margin-top: 24px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--bg-surface); border-top: 1px solid var(--border-glass); padding: 48px 0 32px; font-size: 13px; color: var(--text-dim); }
.footer-content { display: flex; flex-direction: column; gap: 20px; text-align: center; }
.footer-brand { font-size: 18px; font-weight: 700; color: #fff; }
.footer-disclaimer { max-width: 720px; margin: 0 auto; font-size: 12px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.04); padding-top: 20px; margin-top: 10px; }
.footer-links { display: flex; gap: 20px; }

/* ── MOBILE BOTTOM DOCK ────────────────────────────────────── */
.mobile-bottom-dock {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8, 9, 12, 0.92); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glass); padding: 12px 20px;
  justify-content: space-between; align-items: center;
}
.dock-price { font-size: 1.3rem; font-weight: 800; color: #fff; }
.dock-discount { font-size: 11px; background: #10B981; color: #08090C; padding: 2px 6px; border-radius: var(--radius-sm); margin-left: 8px; font-weight: 700; }
.dock-cta {
  background: var(--cta-amber); color: #08090C; font-weight: 800; font-size: 14px;
  padding: 10px 20px; border-radius: var(--radius-pill); display: flex; align-items: center; gap: 6px;
}

/* ── RESPONSIVE BREAKPOINTS ────────────────────────────────── */
@media (max-width: 992px) {
  .nav { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-hero-card, .bento-wide-card { grid-column: span 1; flex-direction: column; }
  .wide-inner { flex-direction: column; }
  .reviews-masonry { grid-template-columns: repeat(2, 1fr); }
  .how-cards-row { grid-template-columns: 1fr; }
  .stat-capsule { position: static; margin: 10px auto; max-width: 280px; }
  .table-head, .table-row { grid-template-columns: 2fr 2fr; }
  .col-alt { display: none; }
}

@media (max-width: 640px) {
  .hero-h1 { font-size: 2.2rem; }
  .action-dock { padding: 20px; }
  .reviews-masonry { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .mobile-bottom-dock { display: flex; }
  .sys-bar { flex-direction: column; gap: 4px; text-align: center; }
}


/* ── STRICT MOBILE OVERFLOW REMEDIATION (360px & 320px) ────── */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

@media (max-width: 640px) {
  .container, .container-narrow {
    padding: 0 16px;
  }
  .header {
    padding: 0 12px;
    top: 10px;
  }
  .header-inner {
    padding: 8px 14px;
    gap: 8px;
  }
  .brand {
    font-size: 14px;
    white-space: nowrap;
  }
  .brand-logo-glow {
    font-size: 16px;
  }
  .btn-glow-nav {
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
  }
  .sys-bar {
    padding: 8px 12px;
    font-size: 11px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .hero-h1 {
    font-size: 2.1rem;
    line-height: 1.15;
  }
  .hero-subhead {
    font-size: 0.95rem;
  }
  .showcase-pod {
    padding: 10px 0;
  }
  .stat-capsule {
    max-width: 100%;
    margin: 8px auto;
  }
  .action-dock {
    padding: 18px 14px;
  }
  .btn-glow-hero {
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
  }
  .trust-pill-strip {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .bento-card {
    padding: 22px 16px;
  }
  .specs-wrapper {
    padding: 0;
  }
  .specs-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }
  .specs-tab-btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    text-align: center;
  }
  .specs-panel {
    padding: 18px 14px;
  }
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .spec-cell {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 12px;
  }
  .spec-cell .v {
    text-align: left;
  }
  .compare-table-pod {
    padding: 14px;
    border-radius: var(--radius-md);
  }
  .table-head, .table-row {
    grid-template-columns: 1fr 1fr;
    padding: 10px 8px;
    font-size: 12px;
    gap: 8px;
  }
  .col-feature {
    font-size: 12px;
  }
  .col-hero-brand {
    font-size: 12px;
    text-align: right;
  }
  .accordion-header {
    padding: 16px 14px;
    font-size: 0.95rem;
  }
  .accordion-body {
    padding: 0 14px 16px;
    font-size: 0.88rem;
  }
  .cta-card {
    padding: 36px 16px;
  }
  .final-guarantee-strip {
    flex-direction: column;
    gap: 6px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .container, .container-narrow {
    padding: 0 10px;
  }
  .header {
    padding: 0 8px;
    top: 6px;
  }
  .header-inner {
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    gap: 6px;
  }
  .brand {
    font-size: 11px;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .btn-glow-nav {
    padding: 6px 8px;
    font-size: 10px;
    white-space: nowrap;
  }
  .hero-h1 {
    font-size: 1.75rem;
  }
  .btn-glow-hero {
    font-size: 13px;
    padding: 12px 14px;
  }
  .bento-card {
    padding: 16px 12px;
  }
  .compare-table-pod {
    padding: 10px 6px;
  }
  .table-head, .table-row {
    padding: 8px 4px;
    font-size: 11px;
  }
}


.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .lifestyle-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}
