/* === VARIABLES === */
:root {
  --bg: #0f0e0b;
  --surface: #1a1814;
  --surface-2: #242119;
  --fg: #f0ebe0;
  --fg-2: #b8b0a0;
  --fg-3: #7a7468;
  --accent: #c0392b;
  --accent-warm: #e05050;
  --accent-muted: rgba(192, 57, 43, 0.12);
  --cream: #f5f0e8;
  --ink: #1a1a2e;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  background: linear-gradient(to bottom, var(--bg) 60%, transparent);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(192, 57, 43, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(192, 57, 43, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 32px;
}

.hero-headline {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.05;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-warm);
}

.hero-lede {
  font-size: 20px;
  color: var(--fg-2);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-quote-block {
  max-width: 500px;
  margin: 0 auto;
  padding: 28px 40px;
  border-left: 3px solid var(--accent);
  background: var(--accent-muted);
  text-align: left;
}

.hero-quote-block blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 12px;
}

.hero-quote-block cite {
  font-size: 14px;
  color: var(--fg-3);
  font-style: normal;
}

/* Hero ornament */
.hero-ornament {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.15;
  pointer-events: none;
}

.ornament-ring {
  position: absolute;
  border: 1px solid var(--accent-warm);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 200px; height: 200px; }
.ring-2 { width: 340px; height: 340px; }
.ring-3 { width: 480px; height: 480px; }

.ornament-star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  color: var(--accent);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--surface);
  padding: 100px 40px;
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px 48px;
  align-items: start;
}

.manifesto-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.manifesto-label-right { text-align: right; }

.manifesto-content p {
  color: var(--fg-2);
  margin-bottom: 16px;
  font-size: 17px;
}

.manifesto-content p:last-child { margin-bottom: 0; }

.manifesto-content strong { color: var(--cream); font-weight: 600; }

.manifesto-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  align-self: stretch;
  margin-top: 8px;
}

.manifesto-content-right p { color: var(--cream); }

/* === FORMATS === */
.formats {
  background: var(--bg);
  padding: 120px 40px;
  position: relative;
}

.formats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(192, 57, 43, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.formats-header {
  text-align: center;
  margin-bottom: 72px;
}

.formats-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cream);
}

.format-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.format-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.format-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.format-card:hover::after { transform: scaleX(1); }

.format-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}

.format-card h3 {
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 12px;
}

.format-card p {
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.6;
}

.format-novel:hover  { background: #1e1414; }
.format-graphic:hover { background: #18191a; }
.format-audio:hover   { background: #1a181c; }
.format-script:hover  { background: #1a1714; }
.format-soundtrack:hover { background: #1a1518; }

/* === OUTCOMES === */
.outcomes {
  background: var(--surface);
  padding: 120px 40px;
}

.outcomes-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.outcomes-headline {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--cream);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.2;
}

.outcomes-headline em {
  font-style: italic;
  color: var(--fg-2);
  display: block;
}

.outcomes-body {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}

.outcomes-body p {
  color: var(--fg-2);
  font-size: 18px;
  margin-bottom: 16px;
}

.outcomes-body p:last-child { margin-bottom: 0; }

.outcome-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--surface-2);
  border: 1px solid var(--surface-2);
}

.stat {
  background: var(--surface);
  padding: 40px 32px;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-warm);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.4;
}

/* === CLOSING === */
.closing {
  background: var(--bg);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(192, 57, 43, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.closing-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--cream);
  line-height: 1.4;
  font-style: italic;
}

.closing-quote strong {
  color: var(--accent-warm);
  font-style: normal;
}

/* === EMAIL FORM === */
.email-form-wrapper {
  margin: 48px auto 0;
  max-width: 520px;
}

.email-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 0;
  align-items: stretch;
}

#email-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-right: none;
  color: var(--fg);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  padding: 14px 20px;
  outline: none;
  border-radius: 2px 0 0 2px;
  transition: border-color 0.2s;
  min-width: 0;
}

#email-input:focus {
  border-color: var(--accent);
}

#email-input::placeholder {
  color: var(--fg-3);
}

#submit-btn {
  background: var(--accent);
  color: var(--cream);
  border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
  position: relative;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#submit-btn:hover:not(:disabled) {
  background: var(--accent-warm);
}

#submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#submit-btn .btn-loading {
  display: none;
}

#submit-btn.loading .btn-text {
  display: none;
}

#submit-btn.loading .btn-loading {
  display: block;
}

.spinner {
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-error {
  font-size: 14px;
  color: #e05050;
  margin-top: 10px;
  text-align: left;
  min-height: 20px;
}

.thank-you {
  display: flex;
   flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 24px;
  border: 1px solid rgba(192, 57, 43, 0.25);
  background: var(--accent-muted);
}

.check-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-warm);
}

.thank-you p {
  font-size: 18px;
  color: var(--cream);
  font-family: 'Playfair Display', Georgia, serif;
}

.signup-note {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 16px;
}

/* === FOOTER === */
.site-footer {
  background: var(--surface);
  padding: 48px 40px;
  border-top: 1px solid var(--surface-2);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand .wordmark {
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--fg-3);
}

.footer-meta {
  font-size: 14px;
  color: var(--fg-3);
}

.footer-meta a {
  color: var(--fg-2);
  text-decoration: none;
}

.footer-meta a:hover { color: var(--accent-warm); }

/* === HERO BANNER (triptych image) === */
.hero {
  padding: 0;
  min-height: 70vh;
  display: block;
}

.hero-image-wrap {
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  display: block;
}

/* === RESILIENT REBELS LOGO CYCLE === */
.resilient-rebels {
  background: var(--surface);
  padding: 80px 40px;
}

.rr-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.rr-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 40px;
}

.rr-logo-cycle {
  position: relative;
  width: 400px;
  max-width: 100%;
  height: 200px;
  margin: 0 auto 32px;
}

.rr-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Each logo variant: extract one third of the stacked image via clip-path */
.rr-logo--1 { clip-path: inset(0 0 66.67% 0); }
.rr-logo--2 { clip-path: inset(33.33% 0 33.33% 0); }
.rr-logo--3 { clip-path: inset(66.67% 0 0 0); }

/* Cycling animation — each logo shows for 3s, then crossfades */
@keyframes rr-cycle {
  0%, 20%  { opacity: 1; }
  25%, 95% { opacity: 0; }
  100%     { opacity: 0; }
}

.rr-logo--1 { animation: rr-cycle 9s ease-in-out infinite; }
.rr-logo--2 { animation: rr-cycle 9s ease-in-out infinite 3s; }
.rr-logo--3 { animation: rr-cycle 9s ease-in-out infinite 6s; }

.rr-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.rr-sub {
  font-size: 14px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === BOOK PREVIEW COVER === */
.book-preview-wrap {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.book-preview-cover {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.book-preview-label {
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.05em;
}

/* === KICKSTARER REWARDS === */
.rewards {
  background: var(--bg);
  padding: 120px 40px;
  position: relative;
}

.rewards::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(192, 57, 43, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.rewards-header {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.rewards-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.rewards-header h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--cream);
  margin-bottom: 20px;
}

.rewards-sub {
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.6;
}

/* === REWARD GRID === */
.rewards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
  position: relative;
  z-index: 2;
}

/* Card base */
.reward-card {
  background: var(--surface);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
}

.reward-card:hover {
  background: var(--surface-2);
}

/* Tier badge */
.reward-tier-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
  border: 1px solid var(--surface-2);
  padding: 4px 10px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 20px;
}

.reward-tier-badge--accent {
  background: var(--accent-muted);
  border-color: rgba(192, 57, 43, 0.3);
  color: var(--accent-warm);
}

.reward-tier-badge--gold {
  background: rgba(240, 200, 80, 0.08);
  border-color: rgba(240, 200, 80, 0.3);
  color: #f0c850;
}

/* Price */
.reward-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 4px;
  line-height: 1;
}

/* Name */
.reward-name {
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
}

/* Tagline */
.reward-tagline {
  font-size: 15px;
  color: var(--fg-3);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.4;
}

/* Perks list */
.reward-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 28px;
}

.reward-perks li {
  font-size: 15px;
  color: var(--fg-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.perk-check {
  color: var(--accent-warm);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Unlock note — what previous tiers get */
.reward-perk--unlock {
  font-size: 13px;
  color: var(--fg-3) !important;
  border-top: 1px solid var(--surface-2);
  padding-top: 10px;
  margin-top: 4px;
}

/* Stretch teaser (digital tiers) */
.stretch-teaser {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.2);
  padding: 14px 18px;
  margin-bottom: 24px;
}

.stretch-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 6px;
}

.stretch-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.4;
}

/* Stretch goals (founder tier) */
.stretch-goals {
  background: rgba(240, 200, 80, 0.06);
  border: 1px solid rgba(240, 200, 80, 0.18);
  padding: 20px;
  margin-bottom: 24px;
}

.stretch-goals-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0c850;
  margin-bottom: 12px;
}

.stretch-goal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-2);
  padding: 6px 0;
  border-bottom: 1px solid rgba(240, 200, 80, 0.1);
}

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

.sg-marker {
  font-size: 11px;
  font-weight: 700;
  background: rgba(240, 200, 80, 0.15);
  color: #f0c850;
  padding: 2px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Estimated delivery */
.reward-est {
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 20px;
}

.reward-est strong { color: var(--fg-2); }

/* CTA buttons */
.reward-cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  text-align: center;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  align-self: flex-start;
}

.reward-cta--outline {
  background: transparent;
  border: 1.5px solid var(--surface-2);
  color: var(--fg-2);
}

.reward-cta--outline:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.reward-cta--filled {
  background: var(--accent);
  border: 1.5px solid var(--accent);
  color: var(--cream);
}

.reward-cta--filled:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
}

.reward-cta--gold {
  background: linear-gradient(135deg, #c8a840 0%, #f0c850 50%, #c8a840 100%);
  border: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.reward-cta--gold:hover {
  opacity: 0.9;
}

/* Card backgrounds by type */
.reward-card--digital { }
.reward-card--physical { }
.reward-card--bundle { }
.reward-card--founder {
  background: #1c1610;
  border: 1px solid rgba(240, 200, 80, 0.15);
}

/* Spanning the bottom row: tier 3, 4, 5 — already handled by grid */
.rewards-grid > .reward-card:nth-child(3) { grid-column: 1; }
.rewards-grid > .reward-card:nth-child(4) { grid-column: 2; }
.rewards-grid > .reward-card:nth-child(5) { grid-column: 3; }

/* === TIMELINE LEGEND === */
.rewards-legend {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 28px 36px;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  position: relative;
  z-index: 2;
}

.rewards-legend h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 20px;
}

.legend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot--digital  { background: var(--fg-3); }
.legend-dot--print   { background: #8b6914; }
.legend-dot--graphic { background: #5a9e6f; }
.legend-dot--collectors { background: #f0c850; }

/* === UNLOCK NARRATIVE === */
.rewards-narrative {
  max-width: 1200px;
  margin: 20px auto 0;
  font-size: 14px;
  color: var(--fg-3);
  text-align: center;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

.rewards-narrative strong { color: var(--fg-2); }

/* === REWARDS HERO === */
.rewards-hero {
  background: var(--bg);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.rewards-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(192, 57, 43, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.rewards-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.rewards-hero-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.rewards-hero-headline {
  font-size: clamp(44px, 6vw, 80px);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.1;
}

.rewards-hero-headline em {
  font-style: italic;
  color: var(--accent-warm);
}

.rewards-hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === CTA STRIP === */
.rewards-cta-strip {
  background: var(--surface);
  padding: 60px 40px;
  border-top: 1px solid var(--surface-2);
  text-align: center;
}

.cta-strip-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-strip-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: var(--cream);
}

.cta-strip-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--cream);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.cta-strip-btn:hover {
  background: var(--accent-warm);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  /* Hero banner stays edge-to-edge on mobile */
  .hero { min-height: unset; }
  .hero-image-wrap { max-height: 60vh; }
  .hero-banner { max-height: 60vh; }

  .resilient-rebels { padding: 60px 24px; }
  .rr-logo-cycle { width: 280px; height: 140px; }
  .rr-tagline { font-size: 16px; }

  .book-preview-cover { max-width: 240px; }
  .book-preview-label { font-size: 12px; }

  .header-inner { padding: 0 24px; }

  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 42px; }
  .hero-lede { font-size: 17px; }
  .hero-ornament { display: none; }

  .manifesto { padding: 80px 24px; }
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .manifesto-divider { display: none; }
  .manifesto-label-right { text-align: left; }

  .formats { padding: 80px 24px; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .format-card { padding: 36px 28px; }

  .form-row {
    flex-direction: column;
    gap: 8px;
  }

  #email-input {
    border-right: 1px solid var(--surface-2);
    border-radius: 2px;
  }

  #submit-btn {
    border-radius: 2px;
    padding: 14px;
    min-width: unset;
    width: 100%;
  }

  .outcomes { padding: 80px 24px; }
  .outcome-stats { grid-template-columns: 1fr; }

  .closing { padding: 80px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  /* Rewards section */
  .rewards { padding: 80px 24px; }
  .rewards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rewards-grid > .reward-card:nth-child(3),
  .rewards-grid > .reward-card:nth-child(4),
  .rewards-grid > .reward-card:nth-child(5) {
    grid-column: 1;
  }
  .rewards-legend { padding: 20px 24px; }
  .legend-grid { grid-template-columns: 1fr; gap: 12px; }
  .reward-card { padding: 32px 28px; }
  .reward-price { font-size: 36px; }
  .reward-cta { align-self: stretch; text-align: center; }

  /* Rewards hero + CTA strip */
  .rewards-hero { padding: 120px 24px 60px; }
  .rewards-hero-headline { font-size: 38px; }
  .rewards-hero-sub { font-size: 16px; }
  .rewards-cta-strip { padding: 48px 24px; }
  .cta-strip-text { font-size: 22px; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }