:root {
  --bg: #1a1714;
  --bg-elevated: #242019;
  --bg-card: #2a2520;
  --fg: #f5efe6;
  --fg-muted: #a89e90;
  --accent: #e8663c;
  --accent-glow: #ff7a4d;
  --accent-subtle: rgba(232, 102, 60, 0.15);
  --highlight: #f0c040;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --max-w: 1100px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius: 12px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  position: relative;
  background: radial-gradient(ellipse at 50% 80%, rgba(232, 102, 60, 0.08) 0%, transparent 60%);
}

.hero-inner {
  max-width: var(--max-w);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4em 1.2em;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 15vw, 12rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: var(--space-sm);
  background: linear-gradient(180deg, var(--fg) 40%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--fg-muted);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.hero-detail {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.stat-pill {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5em 1.2em;
  border-radius: 100px;
  background: var(--accent-subtle);
  color: var(--accent-glow);
  letter-spacing: 0.02em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.4;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

/* ===== PROBLEM ===== */
.problem {
  padding: var(--space-xl) var(--space-md);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 239, 230, 0.06);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: rgba(232, 102, 60, 0.3);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-elevated);
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  grid-template-columns: 1fr 1.4fr;
}

.feature-row.reverse .feature-visual {
  order: -1;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.feature-text p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.visual-block {
  background: var(--bg-card);
  border: 1px solid rgba(245, 239, 230, 0.06);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-height: 280px;
}

.visual-block.accent {
  background: var(--accent-subtle);
  border-color: rgba(232, 102, 60, 0.2);
}

.visual-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--fg);
}

.visual-block.accent .visual-number {
  color: var(--accent-glow);
}

.visual-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: var(--space-xs);
}

/* ===== NUTRITION ===== */
.nutrition {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.nutrition-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.nutrition-stat {
  background: var(--bg-card);
  border: 1px solid rgba(245, 239, 230, 0.06);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.nutrition-stat.highlight {
  background: var(--accent-subtle);
  border-color: rgba(232, 102, 60, 0.25);
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.nutrition-stat.highlight .stat-value {
  color: var(--accent-glow);
}

.stat-unit {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.3em;
}

.nutrition-note {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-top: var(--space-md);
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  background: radial-gradient(ellipse at 50% 20%, rgba(232, 102, 60, 0.06) 0%, transparent 60%);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.closing-accent {
  color: var(--accent-glow) !important;
  font-weight: 600;
  font-size: 1.15rem !important;
  margin-top: var(--space-md) !important;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(245, 239, 230, 0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .feature-row.reverse .feature-visual {
    order: 0;
  }

  .visual-block {
    aspect-ratio: auto;
    max-height: none;
    padding: var(--space-md);
  }

  .nutrition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 90vh;
  }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */

/* ----- Nav ----- */
.product-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--space-md);
  background: rgba(26, 23, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 239, 230, 0.06);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-brand:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--fg);
}

/* ----- Product hero / flavor selector ----- */
.product-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 102, 60, 0.1) 0%, transparent 65%);
}

.product-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.product-hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4em 1.2em;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.product-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-xs);
  background: linear-gradient(180deg, var(--fg) 40%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-hero-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

/* Flavor tabs */
.flavor-tabs {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.flavor-tab {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.75em 2em;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 239, 230, 0.1);
  background: var(--bg-card);
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

.flavor-tab:hover {
  border-color: var(--tab-accent, var(--accent));
  color: var(--fg);
}

.flavor-tab.active {
  border-color: var(--tab-accent, var(--accent));
  background: color-mix(in srgb, var(--tab-accent, var(--accent)) 12%, var(--bg-card));
  color: var(--fg);
  box-shadow: 0 0 20px color-mix(in srgb, var(--tab-accent, var(--accent)) 20%, transparent);
}

.flavor-tab-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tab-accent, var(--accent));
  opacity: 0.8;
}

/* Flavor cards */
.flavor-card {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid rgba(245, 239, 230, 0.06);
  border-radius: calc(var(--radius) * 1.5);
  padding: var(--space-lg);
  text-align: left;
  border-color: color-mix(in srgb, var(--card-accent, var(--accent)) 20%, rgba(245,239,230,0.06));
}

.flavor-card-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.flavor-orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  flex-shrink: 0;
}

.flavor-orb-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}

.flavor-card-content {
  flex: 1;
}

.flavor-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.flavor-desc {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.flavor-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.flavor-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4em 1em;
  border-radius: 100px;
  background: var(--accent-subtle);
  color: var(--accent-glow);
  letter-spacing: 0.05em;
}

/* ----- Nutrition panel ----- */
.nutrition-panel {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-elevated);
}

.nutrition-panel-inner {
  max-width: 780px;
  margin: 0 auto;
}

.nutrition-panel-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.nutrition-panel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.nutrition-panel-sub {
  color: var(--fg-muted);
  font-size: 1rem;
}

/* Nutrition label — styled like the real FDA label, but dark */
.nutrition-label {
  background: var(--bg-card);
  border: 2px solid rgba(245, 239, 230, 0.15);
  border-radius: var(--radius);
  padding: var(--space-md);
  font-family: var(--font-body);
}

.nutrition-label-top {
  margin-bottom: 0.75rem;
}

.nl-serving-size {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}

.nl-calories-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.nl-calories-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
}

.nl-calories-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
}

.nl-divider {
  height: 1px;
  background: rgba(245, 239, 230, 0.1);
  margin: 0.5rem 0;
}

.nl-divider.thick {
  height: 8px;
  background: rgba(245, 239, 230, 0.15);
  margin: 0.75rem 0;
  border-radius: 2px;
}

.nl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}

.nl-row.primary .nl-name {
  font-weight: 600;
}

.nl-row.indent .nl-name {
  padding-left: 1.2rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.nl-value {
  font-weight: 600;
  color: var(--fg);
}

.nl-value.accent {
  color: var(--accent-glow);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.nl-vitamins-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0 0.35rem;
}

.nl-vitamins-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.nl-vitamins-count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--highlight);
}

.nl-vitamins-unit {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.nl-vitamins-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.nl-vitamins-list span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25em 0.7em;
  border-radius: 100px;
  background: rgba(240, 192, 64, 0.1);
  color: var(--highlight);
  letter-spacing: 0.05em;
}

.nutrition-disclaimer {
  margin-top: var(--space-md);
  color: var(--fg-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
}

/* ----- Pricing panel ----- */
.pricing-panel {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.pricing-panel-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.pricing-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-md);
  text-align: left;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 102, 60, 0.25);
  border-radius: calc(var(--radius) * 1.5);
  padding: var(--space-md);
  box-shadow: 0 0 40px rgba(232, 102, 60, 0.05);
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.pricing-pack-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.pricing-flavor-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--accent-subtle);
  padding: 0.35em 0.9em;
  border-radius: 100px;
}

.pricing-flavor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-glow);
  flex-shrink: 0;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
}

.pricing-currency {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--fg-muted);
}

.pricing-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-left: 0.25rem;
}

.pricing-breakdown {
  border-top: 1px solid rgba(245, 239, 230, 0.08);
  margin-bottom: var(--space-md);
}

.pricing-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(245, 239, 230, 0.06);
}

.pricing-breakdown-row.highlight {
  color: var(--fg);
  font-weight: 500;
}

.pricing-breakdown-val {
  font-weight: 600;
  color: var(--fg);
}

.pricing-breakdown-val.accent {
  color: var(--accent-glow);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.cta-btn {
  display: block;
  text-align: center;
  padding: 1em 2em;
  background: var(--accent);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 0.75rem;
}

.cta-btn:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 102, 60, 0.35);
}

.pricing-cta-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Comparison table */
.pricing-compare {
  background: var(--bg-elevated);
  border: 1px solid rgba(245, 239, 230, 0.06);
  border-radius: calc(var(--radius) * 1.5);
  padding: var(--space-md);
}

.pricing-compare-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
  color: var(--fg-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.pricing-compare-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pc-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-sm);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.06);
  font-size: 0.9rem;
  align-items: center;
}

.pc-row:last-child {
  border-bottom: none;
}

.pc-row.header {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.pc-row.active {
  background: var(--accent-subtle);
  margin: 0 -0.5rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius);
  border: none;
}

.pc-row.active .pc-name {
  color: var(--fg);
  font-weight: 600;
}

.pc-name {
  color: var(--fg-muted);
}

.pc-val {
  color: var(--fg-muted);
  font-weight: 500;
}

.pc-val.accent {
  color: var(--accent-glow);
  font-weight: 700;
}

/* Footer links */
.footer-links {
  margin-top: var(--space-sm);
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.footer-link {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--fg);
}

/* ----- Landing page nav (add to existing landing page) ----- */
.landing-nav {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 10;
}

.landing-nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  border: 1px solid rgba(245, 239, 230, 0.15);
  padding: 0.45em 1.2em;
  border-radius: 100px;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.landing-nav-link:hover {
  color: var(--fg);
  border-color: rgba(245, 239, 230, 0.35);
}

/* ============================================================
   PRE-ORDER PAGE
   ============================================================ */

/* Hero */
.preorder-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 102, 60, 0.12) 0%, transparent 65%);
}

.preorder-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.preorder-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight);
  border: 1px solid var(--highlight);
  padding: 0.4em 1.2em;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.preorder-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-sm);
  background: linear-gradient(180deg, var(--fg) 40%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preorder-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.preorder-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(232, 102, 60, 0.25);
  padding: 0.5em 1.4em;
  border-radius: 100px;
}

.counter-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent-glow);
}

.counter-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Offer section */
.preorder-offer {
  padding: var(--space-xl) var(--space-md);
}

.preorder-offer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.preorder-details-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.preorder-detail-row {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--fg);
}

.detail-check {
  color: var(--accent-glow);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.preorder-shipping-note {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 239, 230, 0.06);
  font-size: 0.95rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shipping-icon {
  font-size: 1.2rem;
}

/* CTA card */
.preorder-cta-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 102, 60, 0.3);
  border-radius: calc(var(--radius) * 1.5);
  padding: var(--space-md);
  box-shadow: 0 0 60px rgba(232, 102, 60, 0.08);
  position: sticky;
  top: 80px;
}

.preorder-cta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.preorder-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
}

.preorder-price-currency {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--fg-muted);
}

.preorder-price-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.preorder-price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-left: 0.25rem;
}

.preorder-price-breakdown {
  border-top: 1px solid rgba(245, 239, 230, 0.08);
  margin-bottom: var(--space-md);
}

.preorder-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(245, 239, 230, 0.06);
}

.breakdown-val {
  font-weight: 600;
  color: var(--fg);
}

.breakdown-val.accent {
  color: var(--accent-glow);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.preorder-cta-btn {
  font-size: 1.1rem;
  padding: 1.1em 2em;
  margin-bottom: var(--space-sm);
}

.preorder-cta-fine {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
  margin-top: 0.4rem;
}

/* Compare */
.preorder-compare-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-elevated);
}

.preorder-compare-inner {
  max-width: 760px;
  margin: 0 auto;
}

.preorder-compare-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-md);
}

.preorder-compare-table {
  background: var(--bg-card);
  border: 1px solid rgba(245, 239, 230, 0.06);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
}

/* FAQ */
.preorder-faq {
  padding: var(--space-xl) var(--space-md);
}

.preorder-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.preorder-faq-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-md);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(245, 239, 230, 0.06);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.faq-a {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Success page */
.success-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  background: radial-gradient(ellipse at 50% 30%, rgba(232, 102, 60, 0.08) 0%, transparent 60%);
}

.success-inner {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 2px solid var(--accent-glow);
  color: var(--accent-glow);
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: var(--space-sm) 0;
}

.success-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.success-counter {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-glow);
  background: var(--accent-subtle);
  border: 1px solid rgba(232, 102, 60, 0.25);
  padding: 0.4em 1.2em;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.success-summary {
  background: var(--bg-card);
  border: 1px solid rgba(232, 102, 60, 0.2);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  text-align: left;
}

.success-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(245, 239, 230, 0.06);
}

.success-summary-row:last-child {
  border-bottom: none;
}

.success-summary-row.highlight {
  padding-top: 0.75rem;
  font-weight: 600;
}

.summary-label {
  color: var(--fg-muted);
}

.summary-val {
  font-weight: 600;
}

.summary-val.accent {
  color: var(--accent-glow);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.success-actions {
  margin-top: var(--space-md);
}

.success-home-link {
  color: var(--fg-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.success-home-link:hover {
  color: var(--fg);
}

/* Pre-order responsive */
@media (max-width: 768px) {
  .preorder-offer-inner {
    grid-template-columns: 1fr;
  }

  .preorder-cta-card {
    position: static;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUCT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .flavor-card {
    flex-direction: column;
    text-align: center;
  }

  .flavor-orb {
    width: 120px;
    height: 120px;
  }

  .flavor-pills {
    justify-content: center;
  }

  .pricing-card-wrap {
    grid-template-columns: 1fr;
  }

  .pc-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    font-size: 0.8rem;
  }

  .product-nav {
    padding: 0.75rem var(--space-sm);
  }
}