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

/* ── LIGHT THEME (default) ── */
:root,
[data-theme="light"] {
  --ch-bg: #fdfaf7;
  --ch-bg-card: #ffffff;
  --ch-bg-alt: #f7f2ec;
  --ch-bg-modal: #ffffff;
  --ch-ink: #1a1512;
  --ch-ink-muted: #6b5f52;
  --ch-ink-faint: #a8998a;
  --ch-rose: #e05c7a;
  --ch-rose-light: #f9e8ed;
  --ch-rose-deep: #b84060;
  --ch-gold: #c9963a;
  --ch-gold-light: #fdf3e0;
  --ch-gold-dark: #9a6e1f;
  --ch-teal: #2a7a6a;
  --ch-teal-light: #e0f0ec;
  --ch-border: rgba(26, 21, 18, 0.1);
  --ch-border-strong: rgba(26, 21, 18, 0.18);
  --ch-shadow: 0 2px 16px rgba(26, 21, 18, 0.08);
  --ch-shadow-card: 0 4px 24px rgba(26, 21, 18, 0.1);
  --ch-nav-bg: rgba(253, 250, 247, 0.94);
  --ch-faq-icon-bg: #f7f2ec;
  --ch-update-bg: #ffffff;
  --ch-risks-bg: #ffffff;
  --ch-sticky-bg: rgba(253, 250, 247, 0.97);
  --gold: #c9963a;
  --gold-lt: #e0c070;
  --gold-dim: rgba(201, 150, 58, 0.1);
  --cream: #f0ebe6;
  --cream-soft: #d4c9b8;
  --muted: #6b5f52;
  --ink: #1a1512;
  --border: rgba(26, 21, 18, 0.1);
  --border-s: rgba(26, 21, 18, 0.06);
  --ink-card: #ffffff;
  --rose: #e05c7a;
}

/* ── DARK THEME ── */
[data-theme="dark"] {
  --ch-bg: #0d0b0a;
  --ch-bg-card: #161210;
  --ch-bg-alt: #111009;
  --ch-bg-modal: #1a1614;
  --ch-ink: #f0ebe6;
  --ch-ink-muted: #a8998a;
  --ch-ink-faint: #6b5f52;
  --ch-rose: #e8758f;
  --ch-rose-light: rgba(224, 92, 122, 0.12);
  --ch-rose-deep: #c45070;
  --ch-gold: #d4a44a;
  --ch-gold-light: rgba(201, 150, 58, 0.12);
  --ch-gold-dark: #e0b86a;
  --ch-teal: #3a9a88;
  --ch-teal-light: rgba(42, 122, 106, 0.15);
  --ch-border: rgba(240, 235, 230, 0.08);
  --ch-border-strong: rgba(240, 235, 230, 0.16);
  --ch-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  --ch-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --ch-nav-bg: rgba(13, 11, 10, 0.95);
  --ch-faq-icon-bg: #1f1b18;
  --ch-update-bg: #161210;
  --ch-risks-bg: #161210;
  --ch-sticky-bg: rgba(13, 11, 10, 0.97);
  --gold: #d4a44a;
  --gold-lt: #e8c070;
  --gold-dim: rgba(212, 164, 74, 0.1);
  --cream: #f0ebe6;
  --cream-soft: #c4b9a8;
  --muted: #a8998a;
  --ink: #f0ebe6;
  --border: rgba(240, 235, 230, 0.08);
  --border-s: rgba(240, 235, 230, 0.05);
  --ink-card: #161210;
  --rose: #e8758f;
}

:root {
  --ch-radius: 12px;
  --ch-radius-sm: 8px;
  --ch-radius-lg: 20px;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
  --nav-h: 64px;
  --font-b: "DM Sans", system-ui, sans-serif;
  --font-s: "Cormorant Garamond", serif;
  --font-d: "Playfair Display", Georgia, serif;
  --r: 8px;
  --r-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--ch-bg);
  color: var(--ch-ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--ch-nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ch-border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 24px;
  justify-content: space-between;
  transition: background 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links li a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ch-ink-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: var(--ch-ink);
  background: var(--ch-bg-alt);
}

.nav-links li a.active {
  color: var(--ch-rose);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-nav-search {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--ch-border);
  background: var(--ch-bg-alt);
  color: var(--ch-ink-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-nav-search:hover {
  border-color: var(--ch-gold);
  color: var(--ch-gold);
}

.btn-wishlist {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--ch-border);
  background: var(--ch-bg-alt);
  color: var(--ch-ink-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}

.btn-wishlist svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
}

.btn-wishlist:hover,
.btn-wishlist.wishlisted {
  border-color: var(--ch-rose);
  color: var(--ch-rose);
}

.btn-wishlist.wishlisted svg {
  fill: var(--ch-rose);
}

.btn-nav-ghost {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ch-ink-muted);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--ch-border);
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-nav-ghost:hover {
  color: var(--ch-ink);
  border-color: var(--ch-border-strong);
  background: var(--ch-bg-alt);
}

.btn-nav-signin {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ch-ink);
  background: var(--ch-bg-alt);
  border: 1px solid var(--ch-border-strong);
  border-radius: 8px;
  padding: 7px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-nav-signin:hover {
  background: var(--ch-border);
  color: var(--ch-ink);
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  background: var(--ch-bg-alt);
  border: 1px solid var(--ch-border-strong);
  border-radius: 999px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--ch-border);
  transform: scale(1.08);
}

.theme-toggle .icon-dark {
  display: block;
}
.theme-toggle .icon-light {
  display: none;
}
[data-theme="light"] .theme-toggle .icon-dark {
  display: none !important;
}
[data-theme="light"] .theme-toggle .icon-light {
  display: block !important;
}

/* ── BURGER ── */
.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--ch-border);
  background: var(--ch-bg-alt);
  color: var(--ch-ink);
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.2s ease;
  align-items: center;
  justify-content: center;
}

.nav-burger:hover {
  background: var(--ch-rose);
  color: #fff;
  border-color: var(--ch-rose);
}

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  right: -100%;
  width: min(88vw, 340px);
  height: calc(100vh - var(--nav-h));
  background: var(--ch-bg);
  border-left: 1px solid var(--ch-border);
  padding: 18px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.35s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--ch-ink);
  padding: 13px 12px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 500;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.mobile-nav a:hover {
  background: var(--ch-bg-alt);
  border-color: var(--ch-border);
  color: var(--ch-rose);
}

/* ── CAMPAIGN STATUS BAR ── */
.campaign-status-bar {
  background: linear-gradient(
    90deg,
    var(--ch-rose) 0%,
    var(--ch-rose-deep) 100%
  );
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 24px;
}

/* ── HERO ── */
.campaign-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0b0a 0%, #1e1210 40%, #0d0b0a 100%);
  padding: 80px 24px 60px;
  min-height: 600px;
  width: 100%;
}

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

[data-theme="light"] .campaign-hero {
  background: linear-gradient(
    135deg,
    #fce8ef 0%,
    #fdf0f4 40%,
    #fff5f8 60%,
    #fdf6f8 100%
  );
  border-bottom: 1px solid rgba(224, 92, 122, 0.12);
}
[data-theme="light"] .hero-title {
  color: #1a1512;
}

[data-theme="light"] .hero-title em {
  color: var(--ch-rose-deep);
}

[data-theme="light"] .hero-title-tagline {
  color: rgba(184, 64, 96, 0.75);
}

[data-theme="light"] .hero-eyebrow {
  background: rgba(224, 92, 122, 0.1);
  border-color: rgba(224, 92, 122, 0.25);
  color: var(--ch-rose-deep);
}

[data-theme="light"] .hero-eyebrow-dot {
  background: var(--ch-rose-deep);
}

[data-theme="light"] .hero-tagline {
  color: rgba(26, 21, 18, 0.7);
}

[data-theme="light"] .hero-stats {
  background: rgba(26, 21, 18, 0.04);
  border-color: rgba(26, 21, 18, 0.08);
}

[data-theme="light"] .hero-stat {
  background: rgba(26, 21, 18, 0.02);
}

[data-theme="light"] .hero-stat-value {
  color: #1a1512;
}

[data-theme="light"] .hero-stat-value.rose {
  color: var(--ch-rose-deep);
}

[data-theme="light"] .hero-stat-label {
  color: rgba(26, 21, 18, 0.5);
}

[data-theme="light"] .hero-progress-bar {
  background: rgba(26, 21, 18, 0.08);
}

[data-theme="light"] .hero-progress-labels {
  color: rgba(26, 21, 18, 0.5);
}

[data-theme="light"] .hero-progress-pct {
  color: var(--ch-rose-deep);
}

[data-theme="light"] .title-switcher-label {
  color: rgba(26, 21, 18, 0.4);
}

[data-theme="light"] .title-dot {
  background: rgba(26, 21, 18, 0.15);
}

[data-theme="light"] .countdown-unit {
  background: rgba(26, 21, 18, 0.05);
  border: 1px solid rgba(26, 21, 18, 0.12);
}

[data-theme="light"] .countdown-num {
  color: #1a1512;
}

[data-theme="light"] .countdown-label {
  color: rgba(26, 21, 18, 0.5);
}

[data-theme="light"] .countdown-num {
  color: #1a1512;
}

[data-theme="light"] .countdown-label {
  color: rgba(26, 21, 18, 0.45);
}

[data-theme="light"] .hero-petals span {
  background: var(--ch-rose-deep);
  opacity: 0.06;
}

[data-theme="light"] .btn-hero-ghost {
  color: rgba(26, 21, 18, 0.75);
  border-color: rgba(26, 21, 18, 0.2);
}

[data-theme="light"] .btn-hero-ghost:hover {
  background: rgba(26, 21, 18, 0.06);
  border-color: rgba(26, 21, 18, 0.35);
}

.hero-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-petals span {
  position: absolute;
  border-radius: 50% 0 50% 0;
  background: var(--ch-rose);
  opacity: 0.07;
  animation: floatPetal linear infinite;
}

@keyframes floatPetal {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.07;
  }
  90% {
    opacity: 0.07;
  }
  100% {
    transform: translateY(-200px) rotate(360deg);
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 92, 122, 0.15);
  border: 1px solid rgba(224, 92, 122, 0.3);
  color: #f9b4c4;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ch-rose);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.title-carousel {
  position: relative;
  min-height: 140px;
  margin-bottom: 10px;
  overflow: hidden;
}

.title-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  pointer-events: none;
}

.title-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.title-slide.exit {
  opacity: 0;
  transform: translateY(-20px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-title em {
  font-style: italic;
  color: #f9b4c4;
}

.hero-title-tagline {
  font-size: 0.82rem;
  color: rgba(249, 180, 196, 0.75);
  font-style: italic;
  margin-top: 5px;
  letter-spacing: 0.02em;
}

.title-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.title-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}

.title-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--ch-rose);
}

.title-switcher-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 4px;
}

.hero-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ch-radius);
  overflow: hidden;
  margin-bottom: 28px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 16px;
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.hero-stat-value.rose {
  color: #f9b4c4;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-progress-wrap {
  margin-bottom: 28px;
}

.hero-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.hero-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ch-rose), #f9a8c0);
  width: 0%;
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.hero-progress-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ch-rose);
  box-shadow: 0 0 8px rgba(224, 92, 122, 0.5);
}

.hero-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-progress-pct {
  color: #f9b4c4;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--ch-rose);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(224, 92, 122, 0.4);
}

.btn-hero-primary:hover {
  background: var(--ch-rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(224, 92, 122, 0.5);
}

.btn-hero-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-right {
  position: relative;
}

.hero-book-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-book-img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--ch-radius);
  box-shadow:
    -20px 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: perspective(800px) rotateY(-8deg);
  transition:
    transform 0.5s ease,
    opacity 0.4s ease;
  display: block;
  margin: 0 auto;
}

.hero-book-img:hover {
  transform: perspective(800px) rotateY(-2deg) translateY(-4px);
}

.hero-countdown {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ch-radius-sm);
  padding: 12px 16px;
  text-align: center;
  min-width: 72px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  transition: all 0.3s;
}

.countdown-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 24px;
}

.section-alt {
  background: var(--ch-bg-alt);
  transition: background 0.3s;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ch-rose);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ch-ink);
  line-height: 1.25;
  transition: color 0.3s;
}

.section-title em {
  font-style: italic;
  color: var(--ch-rose);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--ch-ink-muted);
  margin-top: 10px;
  max-width: 560px;
  transition: color 0.3s;
}

/* ── REWARD TIERS ── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.tier-card {
  background: var(--ch-bg-card);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius-lg);
  padding: 32px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ch-shadow-card);
}

.tier-card.featured {
  border-color: var(--ch-rose);
  border-width: 2px;
  box-shadow:
    0 0 0 4px rgba(224, 92, 122, 0.08),
    var(--ch-shadow-card);
}

[data-theme="dark"] .tier-card.featured {
  box-shadow:
    0 0 0 4px rgba(224, 92, 122, 0.12),
    0 0 32px rgba(224, 92, 122, 0.08);
}

.tier-featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ch-rose);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px 5px 18px;
  clip-path: polygon(12px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.tier-stripe {
  height: 4px;
  width: calc(100% + 64px);
  margin: -32px -32px 24px;
  border-radius: var(--ch-radius-lg) var(--ch-radius-lg) 0 0;
}

.tier-stripe.digital {
  background: linear-gradient(90deg, #4facfe, #00f2fe);
}
.tier-stripe.both {
  background: linear-gradient(90deg, var(--ch-rose), var(--ch-rose-deep));
}

.tier-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tier-label.digital {
  color: #4facfe;
}
[data-theme="light"] .tier-label.digital {
  color: #2980ba;
}
.tier-label.both {
  color: var(--ch-rose);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ch-ink);
  margin-bottom: 4px;
  transition: color 0.3s;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.tier-price.digital {
  color: #4facfe;
}
[data-theme="light"] .tier-price.digital {
  color: #2980ba;
}
.tier-price.both {
  color: var(--ch-rose);
}

.tier-desc {
  font-size: 0.875rem;
  color: var(--ch-ink-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  transition: color 0.3s;
}

.tier-divider {
  height: 1px;
  background: var(--ch-border);
  margin: 20px 0;
}

.tier-includes {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ch-ink-faint);
  margin-bottom: 12px;
}

.tier-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.tier-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ch-ink-muted);
  transition: color 0.3s;
}

.tier-items li::before {
  content: "✓";
  color: var(--ch-teal);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--ch-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.tier-meta {
  font-size: 0.75rem;
  color: var(--ch-ink-faint);
  margin-bottom: 20px;
}

.tier-meta span {
  font-weight: 600;
  color: var(--ch-ink-muted);
}

.btn-pledge {
  width: 100%;
  padding: 13px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-pledge.digital {
  background: rgba(79, 172, 254, 0.12);
  color: #4facfe;
  border: 1px solid rgba(79, 172, 254, 0.25);
}

.btn-pledge.digital:hover {
  background: #4facfe;
  color: #000;
}

[data-theme="light"] .btn-pledge.digital {
  background: #e8f5fc;
  color: #2980ba;
  border: none;
}

[data-theme="light"] .btn-pledge.digital:hover {
  background: #2980ba;
  color: #fff;
}

.btn-pledge.both {
  background: var(--ch-rose);
  color: #fff;
  box-shadow: 0 4px 16px rgba(224, 92, 122, 0.3);
}

.btn-pledge.both:hover {
  background: var(--ch-rose-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224, 92, 122, 0.4);
}

/* ── MILESTONES ── */
.milestones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.milestones-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ch-ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.milestones-col-title-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.ms-physical-icon {
  background: var(--ch-gold-light);
}
.ms-digital-icon {
  background: rgba(79, 172, 254, 0.1);
}
[data-theme="light"] .ms-digital-icon {
  background: #e8f5fc;
}

.copy-track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--ch-ink-muted);
  margin-bottom: 6px;
}

.copy-track-header strong {
  color: var(--ch-ink);
}
.copy-track-goal {
  color: var(--ch-rose);
  font-weight: 700;
}

.copy-progress-bar {
  height: 8px;
  background: var(--ch-border);
  border-radius: 999px;
  overflow: visible;
  position: relative;
  margin-bottom: 32px;
}

.copy-progress-fill {
  height: 100%;
  border-radius: 999px;
  width: 0%;
  transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.copy-progress-fill.physical-fill {
  background: linear-gradient(90deg, var(--ch-gold), #e8c16a);
}
.copy-progress-fill.digital-fill {
  background: linear-gradient(90deg, #4facfe, #00c6fb);
}

.copy-progress-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid currentColor;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.copy-progress-fill.physical-fill::after {
  border-color: var(--ch-gold);
}
.copy-progress-fill.digital-fill::after {
  border-color: #4facfe;
}

.milestone-track {
  position: relative;
}

.milestone-track::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ch-border);
}

.milestone-item {
  position: relative;
  padding-left: 48px;
  margin-bottom: 24px;
}

.milestone-dot {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.milestone-dot.unlocked {
  background: var(--ch-rose);
  box-shadow: 0 0 0 4px rgba(224, 92, 122, 0.15);
}

.milestone-dot.locked {
  background: var(--ch-bg-card);
  border: 2px solid var(--ch-border-strong);
}

.milestone-dot svg {
  width: 10px;
  height: 10px;
}

.milestone-card {
  background: var(--ch-bg-card);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius);
  padding: 16px 18px;
  transition:
    border-color 0.2s,
    background 0.3s;
}

.milestone-card.unlocked {
  border-color: rgba(224, 92, 122, 0.25);
  background: var(--ch-rose-light);
}

.milestone-card.locked {
  opacity: 0.7;
}

.milestone-value {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.milestone-value.physical {
  color: var(--ch-gold-dark);
}
.milestone-value.digital {
  color: #4facfe;
}
[data-theme="light"] .milestone-value.digital {
  color: #2980ba;
}

.milestone-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ch-ink);
  margin-bottom: 4px;
  transition: color 0.3s;
}

.milestone-status {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
}

.milestone-status.reached {
  background: rgba(42, 122, 106, 0.15);
  color: var(--ch-teal);
}

.milestone-status.pending {
  background: var(--ch-bg-alt);
  color: var(--ch-ink-faint);
}

.milestone-shared-note {
  font-size: 0.78rem;
  color: var(--ch-ink-faint);
  background: var(--ch-bg-card);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius-sm);
  padding: 10px 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.milestone-shared-note strong {
  color: var(--ch-rose);
}

/* ── STORY ── */
.story-blocks {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-block.reverse {
  direction: rtl;
}
.story-block.reverse > * {
  direction: ltr;
}

.story-text-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ch-rose);
  margin-bottom: 10px;
}

.story-text-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ch-ink);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.story-text-body {
  font-size: 0.95rem;
  color: var(--ch-ink-muted);
  line-height: 1.75;
  transition: color 0.3s;
}

.story-panel {
  border-radius: var(--ch-radius-lg);
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--ch-rose-light) 0%,
    rgba(224, 92, 122, 0.08) 100%
  );
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ch-rose);
  border: 1px solid rgba(224, 92, 122, 0.15);
  position: relative;
  transition: background 0.3s;
}

.story-panel.story-panel-img {
  background: none;
  border: none;
  aspect-ratio: unset;
  padding: 0;
}

.story-cover-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow:
    -12px 16px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: perspective(800px) rotateY(-4deg);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
  display: block;
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--ch-border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ch-ink);
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--ch-rose);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ch-faq-icon-bg);
  border: 1px solid var(--ch-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--ch-ink-muted);
  transition: all 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--ch-rose);
  border-color: var(--ch-rose);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--ch-ink-muted);
  line-height: 1.7;
  transition: color 0.3s;
}

.faq-item.open .faq-a {
  display: block;
}

/* ── RISKS ── */
.risks-box {
  background: var(--ch-risks-bg);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius-lg);
  padding: 36px;
  max-width: 800px;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.risks-box p {
  font-size: 0.95rem;
  color: var(--ch-ink-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.risks-box p:last-child {
  margin-bottom: 0;
}
.risks-box strong {
  color: var(--ch-ink);
}

/* ── UPDATES ── */
.updates-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.update-card {
  background: var(--ch-update-bg);
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius);
  padding: 22px 24px;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.update-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.update-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ch-rose-light);
  color: var(--ch-rose);
  padding: 2px 8px;
  border-radius: 999px;
}

.update-date {
  font-size: 0.78rem;
  color: var(--ch-ink-faint);
}

.update-title {
  font-weight: 600;
  color: var(--ch-ink);
  margin-bottom: 6px;
  transition: color 0.3s;
}

.update-body {
  font-size: 0.875rem;
  color: var(--ch-ink-muted);
  line-height: 1.65;
}

/* ── PROMO BANNER ── */
.promo-banner {
  background: linear-gradient(135deg, #0d0b0a 0%, #1e1210 60%, #0d0b0a 100%);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .promo-banner {
  background: linear-gradient(135deg, #fdf0f4 0%, #fce4ed 40%, #fdf6f8 100%);
}

.promo-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.promo-banner-text .promo-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f9b4c4;
  margin-bottom: 8px;
}

[data-theme="light"] .promo-banner-text .promo-eyebrow {
  color: var(--ch-rose-deep);
}

.promo-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

[data-theme="light"] .promo-banner-text h2 {
  color: #1a1512;
}

.promo-banner-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

[data-theme="light"] .promo-banner-text p {
  color: rgba(26, 21, 18, 0.65);
}

/* ── STICKY BAR ── */
.sticky-pledge-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--ch-sticky-bg);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--ch-border);
  padding: 12px 20px;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s;
}

.sticky-bar-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ch-ink-muted);
}

.sticky-bar-stats strong {
  color: var(--ch-ink);
}

.sticky-bar-progress {
  height: 4px;
  background: var(--ch-border);
  border-radius: 999px;
  overflow: hidden;
}

.sticky-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ch-rose), var(--ch-rose-deep));
  width: 0%;
  transition: width 2s;
}

.btn-sticky-pledge {
  width: 100%;
  padding: 13px;
  background: var(--ch-rose);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-sticky-pledge:hover {
  background: var(--ch-rose-deep);
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-box {
  background: var(--ch-bg-modal);
  border: 1px solid var(--ch-border-strong);
  border-radius: var(--ch-radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.3s;
}

@keyframes slideUp {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--ch-border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ch-ink);
  transition: color 0.3s;
}

.modal-subtitle {
  font-size: 0.8rem;
  color: var(--ch-ink-muted);
  margin-top: 3px;
}

.modal-close {
  background: var(--ch-bg-alt);
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ch-ink-muted);
  transition: background 0.15s;
}

.modal-close:hover {
  background: var(--ch-border);
}

.modal-body {
  padding: 24px 28px;
}

.modal-step {
  display: none;
}
.modal-step.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

.modal-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ch-ink-muted);
  margin-bottom: 6px;
  display: block;
}

.modal-tier-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.modal-tier-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--ch-border);
  border-radius: var(--ch-radius);
  padding: 14px 16px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.modal-tier-opt:hover {
  border-color: var(--ch-rose-deep);
  background: var(--ch-rose-light);
}

.modal-tier-opt.selected {
  border-color: var(--ch-rose);
  background: var(--ch-rose-light);
}

.modal-tier-opt input[type="radio"] {
  display: none;
}

.modal-tier-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--ch-border-strong);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}

.modal-tier-opt.selected .modal-tier-radio {
  border-color: var(--ch-rose);
}

.modal-tier-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ch-rose);
  transform: scale(0);
  transition: transform 0.15s;
}

.modal-tier-opt.selected .modal-tier-radio-dot {
  transform: scale(1);
}

.modal-tier-info {
  flex: 1;
}

.modal-tier-name {
  font-weight: 600;
  color: var(--ch-ink);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.modal-tier-price {
  font-size: 0.85rem;
  color: var(--ch-rose);
  font-weight: 700;
}

.modal-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--ch-border-strong);
  border-radius: var(--ch-radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ch-ink);
  background: var(--ch-bg);
  margin-bottom: 14px;
  transition:
    border-color 0.2s,
    background 0.3s,
    color 0.3s;
}

.modal-input:focus {
  outline: none;
  border-color: var(--ch-rose);
}

.modal-input::placeholder {
  color: var(--ch-ink-faint);
}

.modal-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-payment-note {
  font-size: 0.78rem;
  color: var(--ch-ink-faint);
  background: var(--ch-bg-alt);
  border-radius: var(--ch-radius-sm);
  padding: 10px 14px;
  margin-bottom: 18px;
  line-height: 1.5;
  transition: background 0.3s;
}

.modal-payment-note strong {
  color: var(--ch-ink-muted);
}

.modal-actions {
  display: flex;
  gap: 10px;
}

.btn-modal-primary {
  flex: 1;
  padding: 12px;
  background: var(--ch-rose);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-modal-primary:hover {
  background: var(--ch-rose-deep);
}
.btn-modal-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-modal-back {
  padding: 12px 20px;
  background: var(--ch-bg-alt);
  color: var(--ch-ink-muted);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-modal-back:hover {
  background: var(--ch-border);
  color: var(--ch-ink);
}

.modal-steps-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-bottom: 24px;
}

.modal-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ch-border-strong);
  transition: all 0.3s;
}

.modal-step-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--ch-rose);
}

.modal-success {
  text-align: center;
  padding: 20px 0;
}
.modal-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.modal-success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ch-ink);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.modal-success-body {
  font-size: 0.9rem;
  color: var(--ch-ink-muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  background: #080605;
  color: rgba(255, 255, 255, 0.45);
  padding: 56px 24px 32px;
  transition:
    background 0.3s,
    color 0.3s;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-d);
  font-size: 20px;
  color: var(--ch-rose);
  margin-bottom: 14px;
}

/* Footer logo — dark default */
.footer .footer-logo .nav-logo-main {
  color: #ffffff;
  transition: color 0.3s;
}

.footer .footer-logo .nav-logo-sub {
  color: var(--ch-rose);
  transition: color 0.3s;
}

/* Footer logo — light override */
[data-theme="light"] .footer .footer-logo .nav-logo-main {
  color: #1a1512 !important;
}

[data-theme="light"] .footer .footer-logo .nav-logo-sub {
  color: var(--ch-rose) !important;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ch-rose);
  margin-bottom: 14px;
  transition: color 0.3s;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 8px;
  transition:
    border-color 0.3s,
    color 0.3s;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-socials a {
  color: var(--ch-rose);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-socials a:hover {
  color: var(--ch-rose);
}

/* ── FOOTER LIGHT MODE ── */
[data-theme="light"] .footer {
  background: #fdfaf7;
  color: var(--ch-ink-muted);
  border-top: 1px solid var(--ch-border);
}

[data-theme="light"] .footer-brand p {
  color: var(--ch-ink-muted);
}

[data-theme="light"] .footer-col h4 {
  color: var(--ch-ink-faint);
}

[data-theme="light"] .footer-col a {
  color: var(--ch-ink-muted);
}

[data-theme="light"] .footer-col a:hover {
  color: var(--ch-ink);
}

[data-theme="light"] .footer-bottom {
  border-top: 1px solid var(--ch-border);
  color: var(--ch-ink-faint);
}

[data-theme="light"] .footer-socials a {
  color: var(--ch-ink-faint);
}

[data-theme="light"] .footer-socials a:hover {
  color: var(--ch-rose);
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links li a {
    font-size: 0.78rem;
    padding: 5px 7px;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .btn-nav-ghost {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-right {
    display: block;
    margin-top: 32px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .title-switcher {
    justify-content: center;
  }
  .milestones-grid {
    grid-template-columns: 1fr;
  }
  .story-block {
    grid-template-columns: 1fr;
  }
  .story-block.reverse {
    direction: ltr;
  }
  .story-panel {
    aspect-ratio: 16/7;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .promo-banner-inner {
    flex-direction: column;
  }
  .sticky-pledge-bar {
    display: flex;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 16px;
  }
  .tiers-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .modal-input-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mobile-nav {
    width: 100%;
    right: -100%;
    border-left: none;
  }
  .mobile-nav.active {
    right: 0;
  }
  .mobile-nav a {
    font-size: 0.92rem;
    padding: 13px 10px;
  }
  .nav {
    padding: 0 16px;
  }
}

/* ── LAUNCH COUNTDOWN OVERLAY ── */
.pre-launch-bar {
  background: linear-gradient(90deg, #1a0a10 0%, #2a1018 100%);
  border-bottom: 1px solid rgba(224, 92, 122, 0.2);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}
.pre-launch-bar strong {
  color: var(--ch-rose);
}
[data-theme="light"] .pre-launch-bar {
  background: #fdf0f4;
  color: rgba(26, 21, 18, 0.55);
  border-bottom: 1px solid rgba(224, 92, 122, 0.15);
}

/* ── HERO TITLE BLOCK ── */
.hero-series-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hero-series-title em {
  font-style: italic;
  color: #f9b4c4;
}
[data-theme="light"] .hero-series-title {
  color: #1a1512;
}
[data-theme="light"] .hero-series-title em {
  color: var(--ch-rose-deep);
}

.hero-series-sub {
  font-size: 0.85rem;
  color: rgba(249, 180, 196, 0.7);
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
[data-theme="light"] .hero-series-sub {
  color: rgba(184, 64, 96, 0.65);
}

.hero-series-divider {
  width: 40px;
  height: 2px;
  background: var(--ch-rose);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── LAUNCH COUNTDOWN IN HERO ── */
.hero-launch-countdown {
  background: rgba(224, 92, 122, 0.08);
  border: 1px solid rgba(224, 92, 122, 0.2);
  border-radius: var(--ch-radius);
  padding: 18px 20px;
  margin-bottom: 28px;
  text-align: center;
}
[data-theme="light"] .hero-launch-countdown {
  background: rgba(224, 92, 122, 0.06);
}
.hero-launch-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ch-rose);
  margin-bottom: 12px;
}
.hero-launch-units {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-launch-unit {
  text-align: center;
  min-width: 60px;
}
.hero-launch-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
}
[data-theme="light"] .hero-launch-num {
  color: #1a1512;
  background: rgba(26, 21, 18, 0.04);
  border-color: rgba(26, 21, 18, 0.1);
}
.hero-launch-lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 5px;
  display: block;
}
[data-theme="light"] .hero-launch-lbl {
  color: rgba(26, 21, 18, 0.4);
}
.hero-launch-sep {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.2);
  align-self: center;
  line-height: 1;
  padding-bottom: 18px;
}
[data-theme="light"] .hero-launch-sep {
  color: rgba(26, 21, 18, 0.15);
}

/* ── MOBILE HERO CENTER ── */
@media (max-width: 900px) {
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-series-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-eyebrow {
    align-self: center;
  }
  .hero-tagline {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-progress-labels {
    text-align: left;
  }
  .hero-launch-units {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
}
