/* ============================================================
   THE SALTWATER SERIES — Styles
   ============================================================ */

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

:root {
  --ocean-deep:    #0a1628;
  --ocean-mid:     #0d2545;
  --ocean-bright:  #1a4a7a;
  --teal:          #2a9d8f;
  --teal-light:    #3bbfaf;
  --teal-pale:     #e8f5f3;
  --sand:          #f5f0e8;
  --sand-dark:     #e8dfc8;
  --cream:         #faf8f4;
  --white:         #ffffff;
  --text-dark:     #1a1a2e;
  --text-mid:      #3d3d5c;
  --text-light:    #7a7a9a;
  --gold:          #c9a84c;
  --gold-light:    #e8c96a;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;

  --max-width:     1160px;
  --section-pad:   100px;
  --section-pad-m: 60px;

  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg:     0 12px 48px rgba(10,22,40,0.18);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary     { background: var(--teal); color: white; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-1px); }
.btn-ghost       { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-outline     { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; }
.btn-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-primary-light { background: white; color: var(--ocean-deep); border-color: white; }
.btn-primary-light:hover { background: var(--sand); }
.btn-large { padding: 18px 48px; font-size: 1rem; }
.btn-small { padding: 10px 22px; font-size: 0.8rem; }
.btn-submit {
  width: 100%; padding: 18px; background: var(--teal);
  color: white; border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer; transition: all 0.25s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--teal-light); transform: translateY(-1px); }

/* ── SECTION BASES ───────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }

.section-dark    { background: var(--ocean-deep); color: white; }
.section-light   { background: var(--cream); }
.section-sand    { background: var(--sand); }
.section-midnight { background: #060e1d; color: white; }
.section-ocean   { background: linear-gradient(160deg, var(--ocean-mid) 0%, var(--ocean-bright) 100%); color: white; }
.section-ocean-deep { background: linear-gradient(160deg, #060e1d 0%, var(--ocean-mid) 100%); color: white; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-dark .section-label,
.section-ocean .section-label { color: var(--teal-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.section-dark .section-title,
.section-midnight .section-title { color: white; }
.section-sand .section-title { color: var(--text-dark); }

.section-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 700px;
  margin-bottom: 56px;
}
.section-dark .section-lead,
.section-ocean .section-lead { color: rgba(255,255,255,0.75); }

.subsection-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 56px 0 32px;
  color: var(--text-dark);
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: white;
  font-style: italic;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 9px 22px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--teal-light) !important; }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ocean-deep);
}
.hero-ocean {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(42,157,143,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(13,37,69,0.8) 0%, transparent 60%),
    linear-gradient(180deg, #0a1628 0%, #0d2545 50%, #0a1a35 100%);
}
.hero-ocean::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(42,157,143,0.08)' d='M0,192L60,202.7C120,213,240,235,360,229.3C480,224,600,192,720,186.7C840,181,960,203,1080,208C1200,213,1320,203,1380,197.3L1440,192L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom/cover;
}
.hero-ocean::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(26,74,122,0.15)' d='M0,256L48,261.3C96,267,192,277,288,261.3C384,245,480,203,576,197.3C672,192,768,224,864,229.3C960,235,1056,213,1152,202.7C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom/cover;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 80px 24px 60px;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── STATS GRID ──────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}
.stat-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.09); }
.stat-icon { font-size: 1.8rem; margin-bottom: 12px; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 8px; font-weight: 600; }
.stat-value { font-family: var(--font-serif); font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.4; }

/* ── SERIES DNA ──────────────────────────────────────────── */
.series-dna { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 48px; }
.series-dna h3 { font-family: var(--font-serif); font-size: 1.4rem; color: rgba(255,255,255,0.7); margin-bottom: 24px; font-weight: 300; }
.dna-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.dna-tags span {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(42,157,143,0.4);
  font-size: 0.82rem;
  color: var(--teal-light);
  background: rgba(42,157,143,0.08);
  letter-spacing: 0.04em;
}

/* ── BOOK 1 ──────────────────────────────────────────────── */
.book-cover-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(42,157,143,0.15);
  display: block;
}

.book1-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px;
  align-items: start; margin-bottom: 72px;
}
.book-cover-mock {
  aspect-ratio: 2/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(42,157,143,0.15);
  background: linear-gradient(145deg, var(--ocean-deep) 0%, #0f2a50 50%, #0a1628 100%);
  position: relative;
}
.cover-inner {
  position: absolute; inset: 0; padding: 36px 28px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.cover-series { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-light); margin-bottom: auto; font-weight: 600; }
.cover-title {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: white; font-weight: 300; line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5); margin-bottom: 16px;
}
.cover-wave {
  height: 80px; margin: 16px -28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80'%3E%3Cpath fill='rgba(42,157,143,0.25)' d='M0,40 C80,20 160,60 240,40 C320,20 360,50 400,40 L400,80 L0,80Z'/%3E%3Cpath fill='rgba(42,157,143,0.15)' d='M0,55 C60,35 140,65 220,50 C300,35 360,60 400,50 L400,80 L0,80Z'/%3E%3C/svg%3E") no-repeat center/cover;
}
.cover-author { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; }
.book-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin-bottom: 20px; }
.book-hook { font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; color: var(--teal); border-left: 3px solid var(--teal); padding-left: 20px; margin-bottom: 24px; line-height: 1.5; }
.book-desc { color: var(--text-mid); margin-bottom: 32px; line-height: 1.75; font-size: 1.05rem; }
.book-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
.spec { display: flex; flex-direction: column; padding: 14px 18px; background: var(--teal-pale); border-radius: var(--radius); }
.spec-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.spec-value { font-weight: 500; color: var(--text-dark); font-size: 0.95rem; }
.book1-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── THREE STORIES ───────────────────────────────────────── */
.stories-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.stories-grid-single { grid-template-columns: minmax(280px, 480px); }
.story-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); border-top: 3px solid var(--teal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-couple { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; margin-bottom: 12px; color: var(--text-dark); }
.story-hook { font-style: italic; color: var(--teal); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.5; }
.story-card p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.7; margin-bottom: 20px; }
.story-theme { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; color: var(--teal); text-transform: uppercase; }

/* ── THEMES ──────────────────────────────────────────────── */
.themes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.theme-item {
  padding: 14px 20px; background: var(--teal-pale); border-radius: var(--radius);
  font-size: 0.92rem; color: var(--text-dark); font-weight: 500;
}

/* ── CHAPTER PREVIEW ─────────────────────────────────────── */
.chapter-preview {
  max-width: 720px; margin: 0 auto;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.chapter-header {
  padding: 36px 48px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.chapter-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 10px; }
.chapter-title { font-family: var(--font-serif); font-size: 1.6rem; color: white; font-style: italic; margin-bottom: 8px; }
.chapter-pov { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.chapter-text {
  padding: 40px 48px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
}
.chapter-text p { margin-bottom: 20px; }
.drop-cap::first-letter {
  font-size: 4em; float: left; line-height: 0.75;
  margin: 0.05em 0.12em 0 0; color: var(--teal-light);
}
.preview-fade {
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.preview-cta {
  padding: 32px 48px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
}
.preview-cta p { color: rgba(255,255,255,0.65); margin-bottom: 20px; font-size: 0.95rem; }

/* ── CHARACTERS ──────────────────────────────────────────── */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.char-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border-bottom: 3px solid var(--teal);
}
.char-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.char-coming-soon { opacity: 0.75; border-bottom-color: var(--text-light); }
.char-coming-soon .char-initial { background: var(--text-light); }
.char-book-tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
}
.book2-tag { color: var(--text-light); }
.char-initial {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--ocean-bright));
  color: white; font-family: var(--font-serif); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-weight: 300;
}
.char-name { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 8px; }
.char-tagline { font-style: italic; color: var(--teal); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.4; }
.char-bio { color: var(--text-mid); font-size: 0.88rem; line-height: 1.65; margin-bottom: 16px; }
.char-arc { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }

/* ── BOOK 2 ──────────────────────────────────────────────── */
.coming-soon-badge {
  display: inline-block;
  padding: 6px 20px; border-radius: 50px;
  border: 1px solid rgba(42,157,143,0.5);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 24px;
  background: rgba(42,157,143,0.08);
}
.book2-card {
  max-width: 600px; margin: 0 auto;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 48px;
  text-align: center;
}
.book2-title { font-family: var(--font-serif); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
.book2-couple { font-family: var(--font-serif); font-size: 2.2rem; color: white; font-weight: 300; margin-bottom: 32px; }
.book2-promise p { color: rgba(255,255,255,0.75); margin-bottom: 14px; line-height: 1.7; font-size: 0.95rem; }
.book2-promise p:first-child { font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; color: white; }
.book2-promise { margin-bottom: 36px; }

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline { position: relative; max-width: 680px; }
.timeline::before {
  content: ''; position: absolute; left: 16px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(180deg, var(--teal), transparent);
}
.timeline-item {
  display: flex; gap: 36px; padding-bottom: 48px; position: relative;
}
.timeline-dot {
  width: 33px; height: 33px; border-radius: 50%;
  border: 2px solid var(--teal); background: var(--cream);
  flex-shrink: 0; position: relative; z-index: 1;
  transition: background 0.2s;
}
.timeline-item.active .timeline-dot { background: var(--teal); }
.timeline-content { padding-top: 4px; }
.timeline-date { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.timeline-book { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 8px; }
.timeline-status {
  display: inline-block; padding: 3px 14px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
}
.status-ready   { background: rgba(42,157,143,0.12); color: var(--teal); }
.status-progress { background: rgba(201,168,76,0.12); color: var(--gold); }
.status-future  { background: rgba(122,122,154,0.12); color: var(--text-light); }
.timeline-content p { color: var(--text-mid); font-size: 0.92rem; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-bottom: 32px;
}
.testimonial {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial blockquote {
  font-family: var(--font-serif); font-size: 1.1rem; font-style: italic;
  color: var(--text-dark); line-height: 1.65; margin-bottom: 16px;
}
.testimonial cite { font-size: 0.8rem; color: var(--text-light); font-style: normal; }
.testimonials-note { color: var(--text-light); font-size: 0.88rem; text-align: center; margin-top: 8px; }

/* ── PITCH BUILDER ───────────────────────────────────────── */
.pitch-builder {
  display: grid; grid-template-columns: 300px 1fr; gap: 40px;
  align-items: start;
}
.pitch-controls {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 32px; position: sticky; top: 88px;
}
.pitch-controls h3 { font-family: var(--font-serif); font-size: 1.3rem; color: white; margin-bottom: 24px; }
.pitch-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pitch-check {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 0.88rem; cursor: pointer;
}
.pitch-check input { accent-color: var(--teal); width: 16px; height: 16px; }
.pitch-tone { margin-bottom: 28px; }
.pitch-tone label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; margin-bottom: 10px; }
.tone-options { display: flex; gap: 8px; }
.tone-btn {
  padding: 7px 14px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: rgba(255,255,255,0.7); font-size: 0.78rem;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-sans);
}
.tone-btn.active { background: var(--teal); border-color: var(--teal); color: white; }
.pitch-actions { display: flex; flex-direction: column; gap: 10px; }

.pitch-preview {
  background: rgba(255,255,255,0.96); border-radius: var(--radius-lg);
  padding: 52px 56px; color: var(--text-dark);
  min-height: 400px; box-shadow: var(--shadow-lg);
  font-family: var(--font-sans);
}
.pitch-preview h2 { font-family: var(--font-serif); font-size: 1.9rem; margin-bottom: 6px; }
.pitch-preview h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--teal); margin: 28px 0 10px; border-bottom: 1px solid var(--teal-pale); padding-bottom: 6px; }
.pitch-preview p { font-size: 0.95rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 14px; }
.pitch-preview .pitch-header { text-align: center; border-bottom: 2px solid var(--teal-pale); padding-bottom: 28px; margin-bottom: 32px; }
.pitch-preview .pitch-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.pitch-preview ul { padding-left: 20px; margin-bottom: 14px; }
.pitch-preview li { font-size: 0.93rem; line-height: 1.65; color: var(--text-mid); margin-bottom: 6px; }
.pitch-preview strong { color: var(--text-dark); }

/* ── SIGNUP FORM ─────────────────────────────────────────── */
.signup-title { color: white; }
.signup-lead { color: rgba(255,255,255,0.75); max-width: 640px; }

.signup-incentives {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 52px;
}
.incentive {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 12px 20px;
}
.incentive-icon { font-size: 1.1rem; }
.incentive-text { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 500; }

.signup-form { max-width: 680px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 8px;
}
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.7; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); color: white;
  font-family: var(--font-sans); font-size: 0.95rem;
  outline: none; transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--teal-light);
  background: rgba(255,255,255,0.1);
}
.form-group select option { background: var(--ocean-deep); color: white; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-inline { flex-direction: row; flex-wrap: wrap; gap: 10px; }
.check-option {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 0.9rem; cursor: pointer;
}
.check-option input { accent-color: var(--teal); width: 16px; height: 16px; flex-shrink: 0; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 14px; }

/* ── SIGNUP SUCCESS ──────────────────────────────────────── */
.signup-success {
  max-width: 560px; text-align: center; padding: 56px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
}
.success-icon { font-size: 3rem; margin-bottom: 20px; }
.signup-success h3 { font-family: var(--font-serif); font-size: 2rem; color: white; margin-bottom: 16px; }
.signup-success p { color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.success-share { margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.success-share p { font-size: 0.88rem; margin-bottom: 16px; }
.share-buttons { display: flex; gap: 12px; justify-content: center; }
.share-btn {
  padding: 10px 24px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.25);
  background: transparent; color: white; font-family: var(--font-sans);
  font-size: 0.82rem; cursor: pointer; transition: all 0.2s;
}
.share-btn:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta h2 {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 300;
  max-width: 760px; margin: 0 auto 24px; line-height: 1.5;
  color: var(--text-dark);
}
.final-sub { color: var(--text-mid); max-width: 560px; margin: 0 auto 40px; }

/* ── STICKY CTA ──────────────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  display: flex; align-items: center; gap: 14px;
  background: var(--ocean-deep); color: white;
  padding: 14px 14px 14px 22px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  font-size: 0.85rem; opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--ocean-deep); color: rgba(255,255,255,0.7); padding: 60px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; color: white; font-style: italic; margin-bottom: 10px; }
.footer-tagline { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact { font-size: 0.85rem; line-height: 1.9; }
.footer-contact a { color: var(--teal-light); }
.footer-social { display: flex; gap: 16px; margin-top: 8px; }
.footer-social a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-social a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: var(--section-pad-m); }

  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(10,22,40,0.98); padding: 20px 24px 28px; gap: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }

  .book1-layout { grid-template-columns: 1fr; gap: 40px; }
  .book-cover-mock { max-width: 280px; margin: 0 auto; }

  .pitch-builder { grid-template-columns: 1fr; }
  .pitch-controls { position: static; }
  .pitch-preview { padding: 32px 28px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .form-row { grid-template-columns: 1fr; }

  .chapter-text { padding: 28px 28px; }
  .chapter-header { padding: 28px 28px 20px; }
  .preview-cta { padding: 24px 28px; }
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .book2-card { padding: 32px 24px; }
  .signup-incentives { gap: 10px; }
  .timeline::before { left: 14px; }
  .timeline-item { gap: 20px; }
  .timeline-dot { width: 29px; height: 29px; }
  .pitch-preview { padding: 28px 20px; }
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
