/* ================================================================
   STARNEST™ OFFICIAL — OBSIDIAN LUXURY THEME
   Palette: Void Black (#08090C) + Deep Surface (#0E1117) + 
            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-bright:  rgba(124, 58, 237, 0.35);

  --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;
  --success-green:  #10B981;

  --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; 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;
  max-width: 100vw;
  position: relative;
  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(120px); z-index: 0;
  max-width: 100vw;
}
.glow-top { top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 350px; background: radial-gradient(circle, var(--violet-glow) 0%, transparent 70%); }
.glow-center { top: 600px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%); }

/* ── SYSTEM STATUS BAR ─────────────────────────────────────── */
.sys-bar {
  background: rgba(14, 17, 23, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  padding: 8px 24px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 100;
  overflow: hidden;
}
.sys-status { display: flex; align-items: center; gap: 8px; color: var(--text-muted); flex-wrap: wrap; }
.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); 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.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: 12px; 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.85);
  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.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-title { color: #fff; letter-spacing: -0.01em; }
.brand-pill { font-size: 10px; font-family: var(--font-mono); background: var(--violet); color: #fff; padding: 2px 8px; border-radius: var(--radius-pill); }
.nav { display: flex; align-items: center; gap: 24px; font-size: 13.5px; color: var(--text-muted); font-weight: 500; }
.nav a:hover { color: #fff; }

.btn-glow-sm {
  background: linear-gradient(135deg, var(--violet) 0%, #6366F1 100%);
  color: #fff; font-size: 12.5px; font-weight: 700; 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 30px var(--violet-glow); }

/* ── HERO STAGE ────────────────────────────────────────────── */
.hero-stage {
  padding: 56px 0 48px; position: relative; text-align: center; overflow: hidden; width: 100%;
}
.hero-container { max-width: 920px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; width: 100%; }

.hero-flow-wrapper {
  display: flex; flex-direction: column; align-items: center; width: 100%;
}

.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.3);
  padding: 6px 16px; border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--cyan);
  margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 8px var(--cyan); }

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.12;
}
.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--cyan) 80%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 1.8vw, 1.12rem); color: var(--text-muted);
  max-width: 740px; margin: 0 auto 24px; line-height: 1.6;
}

.hero-preview-frame {
  margin: 0 auto 24px; max-width: 480px; width: 100%;
  position: relative; display: flex; justify-content: center;
}
.hero-product-img {
  width: 100%; max-height: 280px; object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(124, 58, 237, 0.3));
}

.hero-price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  padding: 14px 24px; margin-bottom: 20px; width: 100%; max-width: 520px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.hero-price-row {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.hero-tagline { font-size: 11px; font-family: var(--font-mono); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.04em; }
.hero-pricing { display: flex; align-items: center; gap: 10px; }
.hero-old-price { font-size: 1.05rem; text-decoration: line-through; color: var(--text-dim); }
.hero-sale-price { font-size: 1.85rem; font-weight: 800; color: #fff; font-family: var(--font-heading); }
.hero-discount-badge {
  background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--success-green); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-sm);
}
.hero-micro-note { font-size: 11.5px; color: var(--text-muted); margin-top: 6px; text-align: left; }

.hero-cta-wrapper { width: 100%; max-width: 520px; margin-bottom: 20px; }

.btn-glow-hero {
  background: linear-gradient(135deg, var(--cta-amber) 0%, #D97706 100%);
  color: #08090C; font-size: 14.5px; font-weight: 800; padding: 16px 28px;
  border-radius: var(--radius-pill); display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 0 30px var(--cta-glow); letter-spacing: 0.02em; text-transform: uppercase;
  transition: var(--transition); width: 100%;
}
.btn-glow-hero:hover { transform: translateY(-2px); box-shadow: 0 0 45px var(--cta-glow); color: #000; }
.btn-arrow { font-size: 18px; font-weight: 900; }

.hero-trust-strip {
  display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-muted); margin-bottom: 32px;
}
.trust-item { display: flex; align-items: center; gap: 6px; }

.hero-metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  border-top: 1px solid var(--border-glass); padding-top: 28px; width: 100%;
}
.metric-card {
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  border-radius: var(--radius-md); padding: 14px 10px; text-align: center;
}
.metric-val { display: block; font-size: 1.6rem; font-weight: 800; color: var(--cyan); font-family: var(--font-heading); margin-bottom: 4px; }
.metric-lbl { display: block; font-size: 11.5px; color: var(--text-muted); }

/* ── SECTION INTRO ─────────────────────────────────────────── */
.section-intro { text-align: center; margin-bottom: 44px; }
.section-pill {
  display: inline-block; font-size: 10.5px; font-family: var(--font-mono); font-weight: 700;
  color: var(--cyan); background: rgba(6, 182, 212, 0.1); border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 12px; letter-spacing: 0.05em; text-transform: uppercase;
}
.section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 12px; letter-spacing: -0.01em; }
.section-sub { font-size: 1.02rem; color: var(--text-muted); max-width: 680px; margin: 0 auto; line-height: 1.6; }

/* ── BENTO SECTION ─────────────────────────────────────────── */
.bento-section { padding: 64px 0; position: relative; overflow: hidden; }
.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bento-card {
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); padding: 32px 28px; position: relative;
  transition: var(--transition);
}
.bento-card:hover { border-color: var(--border-bright); transform: translateY(-2px); }
.bento-wide { grid-column: span 2; }
.bento-badge { font-size: 10px; font-family: var(--font-mono); color: var(--violet); font-weight: 700; margin-bottom: 12px; letter-spacing: 0.04em; }
.bento-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.bento-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.bento-stat-pill {
  margin-top: 20px; display: inline-block; font-size: 11px; font-family: var(--font-mono);
  background: rgba(124, 58, 237, 0.1); border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--text-main); padding: 5px 12px; border-radius: var(--radius-pill);
}

/* ── FILMS SECTION ─────────────────────────────────────────── */
.films-section { padding: 64px 0; background: rgba(14, 17, 23, 0.4); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); overflow: hidden; }
.films-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px;
}
.film-item {
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  border-radius: var(--radius-md); padding: 20px 22px; position: relative;
}
.film-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--cyan);
  background: rgba(6, 182, 212, 0.15); padding: 2px 7px; border-radius: var(--radius-sm);
  display: inline-block; margin-bottom: 10px;
}
.film-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.film-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

.films-footer-banner {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid var(--border-bright); border-radius: var(--radius-lg);
  padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.banner-content h3 { font-size: 1.25rem; margin-bottom: 6px; }
.banner-content p { font-size: 13.5px; color: var(--text-muted); max-width: 680px; margin: 0; }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how-section { padding: 64px 0; overflow: hidden; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
}
.step-img-wrap { position: relative; width: 100%; aspect-ratio: 4/3; background: #000; }
.step-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.step-number {
  position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 13px; font-weight: 800;
  background: rgba(14, 17, 23, 0.85); backdrop-filter: blur(10px); color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.4); padding: 4px 10px; border-radius: var(--radius-sm);
}
.step-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.step-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ── UNBOXING ──────────────────────────────────────────────── */
.unboxing-section { padding: 64px 0; background: rgba(14, 17, 23, 0.5); overflow: hidden; }
.unboxing-layout {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: center;
}
.unboxing-visual img {
  border-radius: var(--radius-lg); border: 1px solid var(--border-glass);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); width: 100%;
}
.unboxing-details h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 8px 0 14px; }
.unboxing-details p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.manifest-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.manifest-list li { display: flex; align-items: flex-start; gap: 14px; }
.manifest-check { color: var(--success-green); font-weight: 800; font-size: 16px; margin-top: 2px; }
.manifest-list strong { display: block; font-size: 14px; color: #fff; margin-bottom: 2px; }
.manifest-list span { font-size: 12.5px; color: var(--text-muted); }
.manifest-cta { max-width: 380px; }

/* ── SPECS TABLE ───────────────────────────────────────────── */
.specs-section { padding: 64px 0; overflow: hidden; }
.specs-table-wrapper {
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); overflow-x: auto; -webkit-overflow-scrolling: touch;
  width: 100%; max-width: 100%; display: block;
}
.specs-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 13.5px; min-width: 500px; }
.specs-table th {
  background: rgba(255, 255, 255, 0.04); padding: 16px 24px; font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted);
  border-bottom: 1px solid var(--border-glass);
}
.specs-table td { padding: 16px 24px; border-bottom: 1px solid var(--border-glass); color: var(--text-main); }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

/* ── COMPARE TABLE ─────────────────────────────────────────── */
.compare-section { padding: 64px 0; background: rgba(14, 17, 23, 0.5); overflow: hidden; }
.compare-table-wrapper {
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); overflow-x: auto; -webkit-overflow-scrolling: touch;
  width: 100%; max-width: 100%; display: block;
}
.compare-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 13.5px; min-width: 520px; }
.compare-table th {
  background: rgba(255, 255, 255, 0.04); padding: 18px 20px; font-family: var(--font-heading);
  font-size: 13px; color: var(--text-muted); border-bottom: 1px solid var(--border-glass);
}
.compare-table th.highlight-col { color: var(--cyan); background: rgba(6, 182, 212, 0.1); border-bottom-color: rgba(6, 182, 212, 0.3); }
.compare-table td { padding: 16px 20px; border-bottom: 1px solid var(--border-glass); color: var(--text-muted); }
.compare-table td.highlight-col { background: rgba(6, 182, 212, 0.04); color: #fff; font-weight: 600; border-left: 1px solid rgba(6, 182, 212, 0.2); border-right: 1px solid rgba(6, 182, 212, 0.2); }
.compare-table tr:last-child td { border-bottom: none; }
.chk-good { color: var(--success-green); font-weight: 800; margin-right: 6px; }
.chk-bad { color: #EF4444; font-weight: 800; margin-right: 6px; }

/* ── REVIEWS MASONRY ───────────────────────────────────────── */
.reviews-section { padding: 64px 0; overflow: hidden; }
.reviews-masonry {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-tile {
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); padding: 26px 24px; display: flex; flex-direction: column;
}
.tile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.stars { color: var(--cta-amber); font-size: 15px; letter-spacing: 2px; }
.verified-tag { font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: var(--success-green); background: rgba(16, 185, 129, 0.12); padding: 3px 8px; border-radius: var(--radius-pill); }
.review-tile h4 { font-size: 1.1rem; margin-bottom: 12px; color: #fff; line-height: 1.3; }
.review-tile p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.tile-author { border-top: 1px solid var(--border-glass); padding-top: 14px; }
.author-name { display: block; font-weight: 700; font-size: 13.5px; color: #fff; }
.author-loc { display: block; font-size: 11.5px; color: var(--text-dim); }

/* ── FAQ ACCORDION ─────────────────────────────────────────── */
.faq-section { padding: 64px 0; overflow: hidden; }
.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.accordion-item.active { border-color: var(--border-bright); }
.accordion-header {
  width: 100%; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; text-align: left; font-size: 15px; font-weight: 700; color: #fff;
}
.accordion-header:hover { color: var(--cyan); }
.acc-icon { font-size: 20px; font-family: var(--font-mono); color: var(--cyan); }
.accordion-body {
  display: none; padding: 0 24px 22px; font-size: 14px; color: var(--text-muted); line-height: 1.65;
}
.accordion-item.active .accordion-body { display: block; }

/* ── PACKAGES SECTION (GOLDEN FUNNEL) ──────────────────────── */
.packages-section {
  padding: 72px 0 60px; background: rgba(14, 17, 23, 0.6);
  border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass);
  position: relative; overflow: hidden;
}
.package-routing-banner {
  background: rgba(124, 58, 237, 0.1); border: 1px solid var(--border-bright);
  border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px; font-size: 13.5px; color: var(--text-muted);
}
.routing-icon { font-size: 20px; color: var(--cyan); flex-shrink: 0; }

.packages-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px;
}
.package-card {
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); padding: 24px 20px; display: flex; flex-direction: column;
  position: relative; transition: var(--transition); text-align: center;
}
.package-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
.package-card.featured {
  border-color: var(--violet);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, var(--bg-surface) 100%);
  box-shadow: 0 0 35px var(--violet-glow);
}

.pkg-ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--violet); color: #fff; font-family: var(--font-mono);
  font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: var(--radius-pill);
  letter-spacing: 0.05em; white-space: nowrap; box-shadow: 0 4px 12px var(--violet-glow);
}
.pkg-top-tag {
  font-size: 10.5px; font-family: var(--font-mono); font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; margin-bottom: 12px; letter-spacing: 0.04em;
}
.pkg-top-tag.highlight { color: var(--cyan); }
.pkg-top-tag.best-value { color: var(--cta-amber); }

.pkg-img-wrap {
  width: 100%; aspect-ratio: 4/3; margin-bottom: 16px; border-radius: var(--radius-sm);
  background: #000; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: contain; }

.pkg-title { font-size: 1.25rem; margin-bottom: 4px; color: #fff; }
.pkg-subtitle { font-size: 12px; color: var(--text-dim); margin-bottom: 16px; }

.pkg-pricing {
  background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-glass);
  border-radius: var(--radius-md); padding: 14px 10px; margin-bottom: 20px;
}
.pkg-reg-price { display: block; font-size: 12px; text-decoration: line-through; color: var(--text-dim); }
.pkg-final-price { font-size: 2rem; font-weight: 800; color: #fff; font-family: var(--font-heading); margin: 2px 0; }
.pkg-final-price.highlight { color: var(--cyan); }
.pkg-unit-price { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; font-family: var(--font-mono); }
.pkg-save-badge {
  display: inline-block; font-size: 10.5px; font-weight: 800; font-family: var(--font-mono);
  background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--success-green); padding: 3px 8px; border-radius: var(--radius-sm);
}
.pkg-save-badge.highlight {
  background: rgba(6, 182, 212, 0.15); border-color: rgba(6, 182, 212, 0.4); color: var(--cyan);
}

.pkg-features {
  list-style: none; text-align: left; font-size: 12px; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 24px; flex: 1; padding: 0 4px;
}
.pkg-features li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }

.pkg-cta-wrap { margin-top: auto; }
.btn-pkg-cta {
  background: linear-gradient(135deg, var(--violet) 0%, #6366F1 100%);
  color: #fff; font-size: 12px; font-weight: 800; padding: 13px 12px;
  border-radius: var(--radius-pill); display: block; text-align: center;
  box-shadow: 0 0 15px var(--violet-glow); transition: var(--transition);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.btn-pkg-cta:hover { transform: translateY(-2px); box-shadow: 0 0 25px var(--violet-glow); color: #fff; }
.btn-pkg-cta.highlight {
  background: linear-gradient(135deg, var(--cta-amber) 0%, #D97706 100%);
  color: #08090C; box-shadow: 0 0 20px var(--cta-glow);
}
.btn-pkg-cta.highlight:hover { box-shadow: 0 0 30px var(--cta-glow); color: #000; }
.pkg-footnote { display: block; font-size: 10px; color: var(--text-dim); margin-top: 8px; }

/* ── SECURITY STRIP ────────────────────────────────────────── */
.security-strip {
  display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap;
  border-top: 1px solid var(--border-glass); padding-top: 32px; font-size: 12.5px; color: var(--text-dim);
}
.sec-item { display: flex; align-items: center; gap: 8px; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface); border-top: 1px solid var(--border-glass);
  padding: 48px 0 24px; overflow: hidden;
}
.footer-content { display: flex; flex-direction: column; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; color: #fff; }
.footer-disclaimer { font-size: 12px; color: var(--text-dim); line-height: 1.6; max-width: 880px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  border-top: 1px solid var(--border-glass); padding-top: 20px; font-size: 12px; color: var(--text-dim);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: #fff; }

/* ── STICKY BOTTOM DOCK ────────────────────────────────────── */
.mobile-bottom-dock {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(14, 17, 23, 0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-bright); padding: 12px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
  box-sizing: border-box; width: 100%; max-width: 100vw;
}
.dock-info { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.dock-label { font-size: 11px; font-family: var(--font-mono); color: var(--text-dim); }
.dock-price { font-size: 1.35rem; font-weight: 800; color: #fff; font-family: var(--font-heading); }
.dock-discount {
  font-size: 11px; font-weight: 800; font-family: var(--font-mono);
  background: rgba(16, 185, 129, 0.15); color: var(--success-green);
  padding: 2px 7px; border-radius: var(--radius-sm); border: 1px solid rgba(16, 185, 129, 0.3);
}
.dock-cta {
  background: linear-gradient(135deg, var(--cta-amber) 0%, #D97706 100%);
  color: #08090C; font-size: 13px; font-weight: 800; padding: 10px 22px;
  border-radius: var(--radius-pill); box-shadow: 0 0 20px var(--cta-glow);
  text-transform: uppercase; letter-spacing: 0.02em; white-space: nowrap;
  box-sizing: border-box; text-align: center;
}
.dock-cta:hover { color: #000; transform: translateY(-1px); }
.dock-text-mobile { display: none; }
.dock-text-desktop { display: inline; }

/* ── RESPONSIVE RULES & MOBILE FOLD (R5.1 - R5.4) ───────────── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .films-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .unboxing-layout { grid-template-columns: 1fr; }
  .reviews-masonry { grid-template-columns: 1fr; }
  .nav { display: none; }
}

@media (max-width: 768px) {
  .ambient-glow { display: none !important; }
  .hero-stage { padding: 24px 0 32px; }
  
  /* Flexbox order to guarantee image and CTA appear above fold (R5.4) */
  .hero-flow-wrapper {
    display: flex;
    flex-direction: column;
  }
  .hero-badge { order: 1; margin-bottom: 12px; font-size: 10px; }
  .hero-title { order: 2; font-size: 1.65rem; margin-bottom: 10px; }
  .hero-preview-frame {
    order: 3; margin: 6px auto 12px; max-width: 220px;
  }
  .hero-product-img { max-height: 145px; }
  .hero-price-card {
    order: 4; padding: 10px 16px; margin-bottom: 12px;
  }
  .hero-sale-price { font-size: 1.55rem; }
  .hero-cta-wrapper { order: 5; margin-bottom: 14px; }
  .btn-glow-hero { padding: 13px 18px; font-size: 13px; }
  .hero-subtitle { order: 6; font-size: 0.92rem; margin-bottom: 16px; }
  .hero-trust-strip { order: 7; font-size: 11px; gap: 12px; margin-bottom: 20px; }

  .hero-metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .films-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  
  .sys-bar { flex-direction: column; gap: 4px; align-items: center; text-align: center; }
  .sys-status { justify-content: center; font-size: 11px; }
  .sys-timer { font-size: 11px; }
  .btn-glow-sm { font-size: 11px; padding: 6px 12px; }
  .films-footer-banner { flex-direction: column; text-align: center; }

  /* Mobile Bottom Dock */
  .mobile-bottom-dock { padding: 8px 16px; gap: 10px; }
  .dock-label { display: none; }
  .dock-cta { padding: 9px 14px; font-size: 12px; flex: 1; }
  .dock-text-desktop { display: none; }
  .dock-text-mobile { display: inline; }
}

@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 16px; }
  .header { padding: 0 12px; }
  .header-inner { padding: 8px 14px; }
  .header-inner .btn-glow-sm { display: none; }
  .hero-title { font-size: 1.45rem; line-height: 1.18; }
  .hero-preview-frame { max-width: 190px; margin: 4px auto 10px; }
  .hero-product-img { max-height: 130px; }
  .hero-price-card { padding: 8px 12px; margin-bottom: 10px; }
  .hero-sale-price { font-size: 1.4rem; }
  .btn-glow-hero { padding: 12px 14px; font-size: 12px; }
  
  .mobile-bottom-dock { padding: 8px 12px; gap: 8px; }
  .dock-info { gap: 6px; }
  .dock-price { font-size: 1.15rem; }
  .dock-discount { font-size: 10px; padding: 2px 5px; }
  .dock-cta { padding: 9px 10px; font-size: 11px; flex: 1; }
  
  .security-strip { gap: 16px; font-size: 11.5px; }
  .bento-card { padding: 22px 18px; }
}

@media (max-width: 340px) {
  .container, .container-narrow { padding: 0 12px; }
  .hero-title { font-size: 1.25rem; }
  .hero-preview-frame { max-width: 160px; }
  .hero-product-img { max-height: 115px; }
  .btn-glow-hero { font-size: 11px; padding: 10px 12px; }
  .brand-title { font-size: 15px; }
  
  .mobile-bottom-dock { padding: 6px 8px; gap: 6px; }
  .dock-price { font-size: 1.05rem; }
  .dock-discount { font-size: 9.5px; padding: 1px 4px; }
  .dock-cta { padding: 8px 6px; font-size: 10px; letter-spacing: 0; flex: 1; }
}
