/* ================================================================
   AURORA THEME — Warm Minimalist Clean Wellness
   Domain: thenebuease.com
   Palette:
     - Soft Alabaster:   #F7F5F0
     - Pure White:       #FFFFFF
     - Warm Linen:       #EDE7DF
     - Deep Linen/Border:#DED7CD
     - Espresso Ink:     #2E282A
     - Soft Charcoal:    #5A5450
     - Dim Grey:         #88827C
     - Sage Accent:      #3E6B5C
     - Lavender Accent:  #7C6BA6
     - Terracotta CTA:   #C86D51 (Hover: #B85A3C)
   Typography:
     - Headings: 'DM Serif Display', Georgia, serif
     - Body:     'Plus Jakarta Sans', -apple-system, sans-serif
     - Tech/Data:'IBM Plex Mono', monospace
   ================================================================ */

:root {
  --bg-page:        #F7F5F0;
  --bg-card:        #FFFFFF;
  --bg-card-alt:    #FAF8F5;
  --border-light:   #EDE7DF;
  --border-medium:  #DED7CD;
  --border-accent:  #7C6BA6;

  --ink-primary:    #2E282A;
  --ink-body:       #5A5450;
  --ink-muted:      #88827C;

  --accent-sage:    #3E6B5C;
  --accent-sage-bg: #EDF3F0;
  --accent-lavender:#7C6BA6;
  --accent-lav-bg:  #F3EFF8;
  --accent-cta:     #C86D51;
  --accent-cta-hover:#B85A3C;

  --font-serif:     'DM Serif Display', Georgia, serif;
  --font-sans:      'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;

  --container:        1140px;
  --container-narrow: 820px;
  --radius-sm:        8px;
  --radius-md:        16px;
  --radius-lg:        24px;
  --radius-pill:      9999px;

  --shadow-sm:        0 2px 8px rgba(46, 40, 42, 0.04);
  --shadow-md:        0 8px 24px rgba(46, 40, 42, 0.06);
  --shadow-lg:        0 16px 36px rgba(46, 40, 42, 0.08);
  --transition:       all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── BASE RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body.theme-aurora {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--ink-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink-primary);
  line-height: 1.25;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 20px;
}

.zen-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent-sage);
  background: var(--accent-sage-bg);
  border: 1px solid rgba(62, 107, 92, 0.15);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-sage);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* ── TOP ANNOUNCEMENT BAR ───────────────────────────────────── */
.top-bar {
  background: #2E282A;
  color: #EDE7DF;
  text-align: center;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.top-bar strong {
  color: #FFFFFF;
}

/* ── STICKY HEADER ─────────────────────────────────────────── */
.aurora-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand-link {
  display: flex;
  align-items: center;
}
.brand-logo-img {
  display: block;
  height: 32px;
  width: auto;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-body);
}
.nav a:hover {
  color: var(--ink-primary);
}

.btn-aurora-nav {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--ink-primary);
  color: #FFFFFF;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-aurora-nav:hover {
  background: #151314;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 26px;
  padding: 2px;
}
.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--ink-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── MOBILE DRAWER ─────────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 40, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-page);
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,0.12);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}
.drawer-close {
  font-size: 30px;
  line-height: 1;
  color: var(--ink-primary);
  padding: 4px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.drawer-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-primary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(237, 231, 223, 0.5);
}
.drawer-nav a:hover {
  color: var(--accent-sage);
}
.drawer-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

/* ── HERO SECTION ──────────────────────────────────────────── */
.aurora-hero {
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.aurora-h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  line-height: 1.18;
}
.aurora-h1 em {
  font-style: italic;
  color: var(--accent-lavender);
}

.aurora-sub {
  font-size: 1.08rem;
  color: var(--ink-body);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 580px;
}

.mobile-hero-visual {
  display: none;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.stat-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.stat-pill strong {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--ink-primary);
}
.stat-pill span {
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.btn-aurora-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-cta);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(200, 109, 81, 0.28);
  transition: var(--transition);
}
.btn-aurora-primary:hover {
  background: var(--accent-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 109, 81, 0.38);
}

.hero-trust-notes {
  display: flex;
  gap: 18px;
  font-size: 12.5px;
  color: var(--ink-body);
  margin-top: 16px;
  flex-wrap: wrap;
}
.trust-note-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-note-item svg {
  width: 15px;
  height: 15px;
  fill: var(--accent-sage);
}

.desktop-hero-visual {
  position: relative;
  text-align: center;
}
.soft-halo {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(124, 107, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.aurora-hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  border: 1px solid var(--border-light);
}

.floating-rating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  text-align: left;
}
.rating-stars {
  color: #F59E0B;
  font-size: 14px;
}
.rating-meta strong {
  display: block;
  font-size: 13px;
  color: var(--ink-primary);
}
.rating-meta span {
  font-size: 11px;
  color: var(--ink-muted);
}

/* ── TRUST BAR ─────────────────────────────────────────────── */
.aurora-trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-metric {
  display: flex;
  align-items: center;
  gap: 14px;
}
.metric-icon {
  font-size: 26px;
  line-height: 1;
  color: var(--accent-sage);
}
.trust-metric strong {
  display: block;
  font-size: 14px;
  color: var(--ink-primary);
}
.trust-metric span {
  font-size: 12px;
  color: var(--ink-muted);
}

/* ── SECTION COMMON ────────────────────────────────────────── */
.section {
  padding: 80px 0;
}
.section-alt {
  background-color: var(--bg-card-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-title-wrap h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-title-wrap p {
  color: var(--ink-body);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ── CORE BENEFITS ─────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}
.benefit-icon {
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1;
}
.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--ink-primary);
}
.benefit-card p {
  font-size: 0.95rem;
  color: var(--ink-body);
  line-height: 1.65;
}

/* ── TECH SPOTLIGHT ROW ────────────────────────────────────── */
.tech-spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.tech-detail-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.tech-copy-col h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}
.tech-copy-col p {
  font-size: 1.02rem;
  color: var(--ink-body);
  line-height: 1.7;
  margin-bottom: 18px;
}
.tech-specs-pills {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.t-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
}
.t-pill strong {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--accent-sage);
}
.t-pill span {
  font-size: 11.5px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ── 3-STEP RITUALS ────────────────────────────────────────── */
.rituals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ritual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.ritual-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ritual-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-lavender);
  margin-bottom: 14px;
}
.ritual-img-wrap {
  margin-bottom: 20px;
}
.ritual-img-wrap img {
  border-radius: var(--radius-md);
  margin: 0 auto;
  border: 1px solid var(--border-light);
}
.ritual-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.ritual-card p {
  font-size: 0.92rem;
  color: var(--ink-body);
  line-height: 1.6;
}

/* ── LIFESTYLE INTEGRATION ─────────────────────────────────── */
.lifestyle-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  align-items: center;
}
.lifestyle-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}
.lifestyle-copy p {
  font-size: 1.02rem;
  color: var(--ink-body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.lifestyle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lifestyle-list li {
  font-size: 0.96rem;
  color: var(--ink-body);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.lifestyle-list li::before {
  content: "•";
  color: var(--accent-sage);
  font-size: 20px;
  position: absolute;
  left: 6px;
  top: -2px;
}
.lifestyle-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

/* ── 12 PROTOCOLS GRID ─────────────────────────────────────── */
.protocols-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.protocol-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.protocol-card:hover {
  border-color: var(--accent-lavender);
  transform: translateY(-2px);
}
.p-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent-lavender);
  display: block;
  margin-bottom: 8px;
}
.protocol-card h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.protocol-card p {
  font-size: 0.88rem;
  color: var(--ink-body);
  line-height: 1.55;
}

/* ── UNBOXING SECTION ──────────────────────────────────────── */
.unboxing-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.unboxing-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.manifest-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.manifest-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.manifest-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-sage);
  background: var(--accent-sage-bg);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.manifest-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.manifest-item p {
  font-size: 0.88rem;
  color: var(--ink-body);
  line-height: 1.5;
}

/* ── COMPARISON TABLE ──────────────────────────────────────── */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14.5px;
  min-width: 680px;
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}
.comparison-table th {
  background: #FAF8F5;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-primary);
}
.comparison-table .col-highlight {
  background: rgba(62, 107, 92, 0.05);
  font-weight: 600;
  color: var(--accent-sage);
}
.check-yes {
  color: var(--accent-sage);
  font-weight: 700;
}
.check-no {
  color: #DC2626;
  font-weight: 700;
}

/* ── TECHNICAL SPECS SHEET ─────────────────────────────────── */
.specs-matrix {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.spec-row:last-child {
  border-bottom: none;
}
.spec-row:nth-child(even) {
  background: #FAF8F5;
}
.spec-key {
  font-weight: 600;
  color: var(--ink-primary);
}
.spec-val {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-body);
  text-align: right;
}

/* ── PACKAGES & SPECIAL OFFERS ─────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 36px;
}
.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 22px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}
.pkg-card.featured {
  border: 2px solid var(--accent-sage);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
}

.pkg-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-sage);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(62, 107, 92, 0.25);
  white-space: nowrap;
}
.pkg-ribbon.best-val {
  background: var(--accent-lavender);
}

.pkg-badge-wrap {
  text-align: center;
  margin-bottom: 12px;
}
.pkg-tier-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--ink-muted);
}

.pkg-img-wrap {
  text-align: center;
  margin: 10px auto 16px;
}
.pkg-img-wrap img {
  border-radius: var(--radius-md);
  margin: 0 auto;
  max-height: 180px;
  width: auto;
  object-fit: contain;
}

.pkg-title {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 4px;
}
.pkg-sub {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 16px;
}

.pkg-pricing-box {
  background: #FAF8F5;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  margin-bottom: 20px;
}
.pkg-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.pkg-curr {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink-primary);
}
.pkg-amount {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--ink-primary);
  line-height: 1;
}
.pkg-per-unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-sage);
  margin-top: 4px;
}
.pkg-price-compare {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  margin-top: 6px;
}
.pkg-retail {
  color: var(--ink-muted);
  text-decoration: line-through;
}
.pkg-savings {
  color: var(--accent-cta);
  font-weight: 700;
}

.pkg-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-body);
  margin-bottom: 24px;
  flex: 1;
}
.pkg-features-list li {
  line-height: 1.45;
}

.btn-pkg-cta {
  display: block;
  text-align: center;
  background: var(--ink-primary);
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-pkg-cta:hover {
  background: #151314;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-pkg-cta.btn-featured {
  background: var(--accent-cta);
  box-shadow: 0 6px 18px rgba(200, 109, 81, 0.28);
}
.btn-pkg-cta.btn-featured:hover {
  background: var(--accent-cta-hover);
}

.pkg-checkout-note {
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-top: 8px;
  line-height: 1.4;
}

.guarantee-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.guarantee-icon {
  font-size: 32px;
  color: var(--accent-sage);
  line-height: 1;
}
.guarantee-text {
  font-size: 14px;
  color: var(--ink-body);
  line-height: 1.6;
}

/* ── REVIEWS ───────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 12px;
}
.review-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 0.95rem;
  color: var(--ink-body);
  line-height: 1.65;
  margin-bottom: 20px;
}
.reviewer-meta strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink-primary);
}
.reviewer-meta span {
  font-size: 11.5px;
  color: var(--ink-muted);
}

/* ── FAQ ACCORDION ─────────────────────────────────────────── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink-primary);
  text-align: left;
  background: var(--bg-card);
  transition: var(--transition);
}
.faq-question:hover {
  background: #FAF8F5;
}
.faq-icon {
  font-size: 22px;
  color: var(--ink-muted);
  transition: transform 0.22s ease;
  line-height: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-cta);
}
.faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-body);
  font-size: 0.95rem;
  line-height: 1.65;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ── FINAL INVITATION ──────────────────────────────────────── */
.aurora-invitation {
  padding: 80px 0 100px;
}
.invitation-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.invitation-card h2 {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  margin-bottom: 14px;
}
.invitation-card p {
  font-size: 1.05rem;
  color: var(--ink-body);
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.65;
}
.invitation-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.invitation-price .strikethrough {
  font-size: 1.2rem;
  color: var(--ink-muted);
  text-decoration: line-through;
}
.invitation-price .current {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink-primary);
}
.invitation-price .badge {
  font-size: 11px;
  background: var(--accent-sage-bg);
  color: var(--accent-sage);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ── STICKY BOTTOM ACTION DOCK ─────────────────────────────── */
.action-dock {
  position: fixed;
  bottom: 10px;
  left: 12px;
  right: 12px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateY(130%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.action-dock.visible {
  transform: translateY(0);
}
.dock-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.dock-deal {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--ink-muted);
}
.dock-price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.dock-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink-primary);
}
.dock-savings {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cta);
  background: #FFF1EE;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.btn-dock-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent-cta);
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-dock-cta:hover {
  background: var(--accent-cta-hover);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.aurora-footer {
  background: #FAF8F5;
  border-top: 1px solid var(--border-light);
  padding: 48px 0 80px;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-body);
}
.footer-links a:hover {
  color: var(--ink-primary);
}
.footer-copy {
  font-size: 12px;
  color: var(--ink-muted);
}

/* ── RESPONSIVE RULES ──────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .protocols-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .desktop-hero-visual {
    display: none;
  }
  .mobile-hero-visual {
    display: block;
    margin: 12px auto 16px;
    text-align: center;
  }
  .mobile-hero-img {
    max-height: 110px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .aurora-hero {
    padding: 16px 0 28px;
  }
  .aurora-h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .aurora-sub {
    font-size: 0.94rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 18px;
  }
  .stat-pill {
    padding: 8px 10px;
  }
  .stat-pill strong {
    font-size: 0.95rem;
  }
  .stat-pill span {
    font-size: 10px;
  }

  .btn-aurora-primary {
    font-size: 14px;
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tech-spotlight-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rituals-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lifestyle-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .protocols-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .unboxing-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container, .container-narrow {
    padding: 0 16px;
  }
  .aurora-h1 {
    font-size: 1.62rem;
  }
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
  .protocols-grid {
    grid-template-columns: 1fr;
  }
  .action-dock {
    padding: 8px 14px;
  }
  .dock-container {
    gap: 10px;
  }
  .dock-price {
    font-size: 1.2rem;
  }
  .btn-dock-cta {
    font-size: 12px;
    padding: 10px 16px;
  }
}

@media (max-width: 360px) {
  .top-bar {
    padding: 6px 10px;
    font-size: 11px;
    line-height: 1.3;
  }
  .aurora-header {
    padding: 8px 0;
  }
  .brand-logo-img {
    height: 26px;
  }
  .aurora-hero {
    padding: 10px 0 20px;
  }
  .zen-tag {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 8px;
  }
  .aurora-h1 {
    font-size: 1.45rem;
    line-height: 1.18;
    margin-bottom: 8px;
  }
  .aurora-sub {
    font-size: 0.86rem;
    line-height: 1.42;
    margin-bottom: 12px;
  }
  .mobile-hero-visual {
    margin: 6px auto 10px;
  }
  .mobile-hero-img {
    max-height: 90px;
  }
  .hero-stats-row {
    gap: 6px;
    margin-bottom: 12px;
  }
  .stat-pill {
    padding: 5px 8px;
  }
  .stat-pill strong {
    font-size: 0.88rem;
  }
  .stat-pill span {
    font-size: 9px;
  }
  .btn-aurora-primary {
    font-size: 12.5px;
    padding: 11px 16px;
  }
}

@media (max-width: 340px) {
  .dock-deal {
    display: none;
  }
}
