:root {
  --bg: #0F0F0F;
  --fg: #F0EDE8;
  --accent: #E85D04;
  --accent-dim: rgba(232, 93, 4, 0.15);
  --muted: #8A8580;
  --surface: #1A1A1A;
  --surface-2: #242424;
  --border: rgba(240, 237, 232, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--fg);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-link:hover { opacity: 0.7; }
.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  font-weight: 300;
}

/* Badge showcase */
.hero-badge-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.badge-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(232, 93, 4, 0.25), inset 0 0 40px rgba(232, 93, 4, 0.05);
}
.badge-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(232, 93, 4, 0.3);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.2; }
}
.badge-icon svg { width: 80px; height: 80px; }
.badge-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--accent);
}
.badge-sub {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-top: 5rem;
  opacity: 0.4;
}

/* MANIFESTO */
.manifesto {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.manifesto-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--fg);
  font-weight: 300;
}
.manifesto-text strong { color: var(--accent); font-weight: 500; }
.manifesto-second { color: var(--muted); }

/* JOURNEY */
.journey {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  font-weight: 600;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.journey-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
}
.card-year {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}
.card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* BADGES */
.badges-section {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.badges-section .section-label { max-width: 1200px; margin: 0 auto 2rem; }
.badges-intro {
  max-width: 600px;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  font-weight: 300;
}
.badges-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
.badge-card {
  background: var(--surface-2);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.badge-swatch {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--ring);
  box-shadow: 0 0 20px color-mix(in srgb, var(--ring) 40%, transparent);
}
.badge-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.badge-desc {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.5;
}

/* JOIN THE JOURNEY — email capture */
.join-journey {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.jj-inner {
  max-width: 580px;
  margin: 0 auto;
}
.jj-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.jj-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.jj-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
}
.jj-field-row {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.jj-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid rgba(240, 237, 232, 0.15);
  border-right: none;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.9rem 1.25rem;
  outline: none;
  transition: border-color 0.15s;
  min-width: 0;
}
.jj-input::placeholder { color: var(--muted); opacity: 0.6; }
.jj-input:focus { border-color: rgba(232, 93, 4, 0.5); }
.jj-btn {
  background: var(--accent);
  color: var(--fg);
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.jj-btn:hover:not(:disabled) { opacity: 0.85; }
.jj-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.jj-error {
  font-size: 0.8rem;
  color: #E85D04;
  margin-top: 0.75rem;
  text-align: center;
}
.jj-success { padding-top: 0.5rem; }
.jj-success-headline {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.jj-success-body {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .jj-field-row { flex-direction: column; }
  .jj-input { border-right: 1px solid rgba(240, 237, 232, 0.15); border-bottom: none; }
  .jj-btn { width: 100%; }
}

/* CLOSING */
.closing {
  padding: 7rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.closing-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-badge-showcase { order: -1; }
  .badge-circle { width: 160px; height: 160px; }
  .badge-ring { width: 160px; height: 160px; }
  .badge-icon svg { width: 60px; height: 60px; }
  .journey-grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.5rem 3rem; }
  .badges-grid { grid-template-columns: 1fr 1fr; }
  .manifesto, .journey, .badges-section, .closing { padding: 4rem 1.5rem; }
}

/* ============================================================
   BADGES PAGE (/badges)
   ============================================================ */

.badges-page {
  min-height: 100vh;
}

/* Page header */
.bp-header {
  padding: 5rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}
.bp-header-inner {
  max-width: 860px;
  margin: 0 auto;
}
.bp-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.bp-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 680px;
}

/* Tier legend */
.bp-tier-legend {
  padding: 1.5rem 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.bp-tier-legend-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.tier-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tier-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tier-bronze { color: #CD7F32; }
.tier-bronze .tier-dot { background: #CD7F32; }
.tier-silver { color: #A8A9AD; }
.tier-silver .tier-dot { background: #A8A9AD; }
.tier-gold { color: #FFD700; }
.tier-gold .tier-dot { background: #FFD700; }

/* Badge grid */
.bp-grid-section {
  padding: 4rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.bp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

/* Badge card */
.bp-card {
  background: var(--surface);
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s;
  position: relative;
}
.bp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.tier-bronze-card::before { background: #CD7F32; }
.tier-silver-card::before { background: #A8A9AD; }
.tier-gold-card::before { background: #FFD700; }
.tier-capstone-card::before { background: linear-gradient(90deg, var(--accent), #FFD700); }

.bp-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.bp-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tier-bronze-icon { background: rgba(205, 127, 50, 0.1); color: #CD7F32; }
.tier-silver-icon { background: rgba(168, 169, 173, 0.1); color: #A8A9AD; }
.tier-gold-icon { background: rgba(255, 215, 0, 0.1); color: #FFD700; }
.tier-capstone-icon { background: rgba(232, 93, 4, 0.12); color: var(--accent); }

.bp-svg { width: 28px; height: 28px; }

.bp-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.bp-tier-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.tier-bronze-label { color: #CD7F32; }
.tier-silver-label { color: #A8A9AD; }
.tier-gold-label { color: #FFD700; }
.tier-capstone-label { color: var(--accent); }

.bp-badge-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.bp-criteria {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.bp-story {
  font-size: 0.8rem;
  color: rgba(240, 237, 232, 0.45);
  font-style: italic;
  line-height: 1.6;
  border-left: 2px solid var(--border);
  padding-left: 0.75rem;
  margin-top: auto;
}

/* Capstone card special treatment */
.tier-capstone-card {
  background: var(--surface-2);
}
.tier-capstone-card .bp-badge-name { color: var(--accent); }
.tier-capstone-card .bp-story {
  border-left-color: rgba(232, 93, 4, 0.3);
  color: rgba(232, 93, 4, 0.55);
}

/* CTA section */
.bp-cta {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.bp-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.bp-cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.bp-cta-body {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.bp-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.bp-cta-btn:hover { opacity: 0.85; }

/* BADGES PAGE RESPONSIVE */
@media (max-width: 900px) {
  .bp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bp-grid { grid-template-columns: 1fr; }
  .bp-header { padding: 3rem 1.5rem 2rem; }
  .bp-grid-section { padding: 2rem 1.5rem 3rem; }
  .bp-cta { padding: 4rem 1.5rem; }
  .bp-tier-legend-inner { gap: 1rem; }
}

/* ============================================================
   SEASON 1 PAGE (/season-1)
   ============================================================ */

.s1-page {
  min-height: 100vh;
}

/* Hero */
.s1-hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.s1-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}
.s1-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.s1-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.s1-linelogline {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
  font-style: italic;
}
.s1-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.8rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.s1-badge-count { color: var(--accent); }
.s1-dot { color: var(--muted); }
.s1-badge-tier { color: var(--fg); }
.s1-year-label { color: var(--muted); }
.s1-cta-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 300;
}
.s1-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.s1-cta-btn:hover { opacity: 0.85; }

/* Episode list */
.s1-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

/* Single episode */
.s1-ep {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.s1-ep:first-child { border-top: 1px solid var(--border); }

/* Episode number column */
.s1-ep-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.s1-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.s1-num--muted { color: var(--muted); opacity: 0.5; }
.s1-num-rule {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: var(--accent);
  opacity: 0.4;
}
.s1-num-rule--muted { background: var(--muted); opacity: 0.2; }

/* Episode body */
.s1-ep-body { display: flex; flex-direction: column; gap: 1.25rem; }
.s1-ep-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.s1-ep-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.s1-ep-title--locked { color: var(--muted); opacity: 0.7; }

/* Status badges */
.s1-status {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  flex-shrink: 0;
}
.s1-status--soon {
  background: rgba(232, 93, 4, 0.15);
  color: var(--accent);
  border: 1px solid rgba(232, 93, 4, 0.3);
}
.s1-status--locked {
  background: rgba(138, 133, 128, 0.12);
  color: var(--muted);
  border: 1px solid rgba(138, 133, 128, 0.2);
}

/* Featured episode synopsis */
.s1-ep-synopsis {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.s1-ep-synopsis p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* Hooks list */
.s1-ep-hooks { display: flex; flex-direction: column; gap: 0.75rem; }
.s1-hooks-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.s1-hooks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.s1-hooks-list li {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
}
.s1-hooks-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.6;
  font-weight: 400;
}

/* Badge tease */
.s1-ep-badge-tease { margin-top: 0.5rem; }
.s1-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
}
.s1-badge-chip strong { color: var(--accent); font-weight: 600; }

/* Season divider */
.s1-season-divider {
  text-align: center;
  padding: 2.5rem 0 1rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}

/* Locked episode tease */
.s1-ep-tease {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Featured episode special treatment */
.s1-ep--featured {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.s1-ep--featured::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 4px 4px 0 0;
}
.s1-ep--featured { position: relative; }

/* Bottom CTA */
.s1-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
}
.s1-cta-inner { max-width: 480px; margin: 0 auto; }
.s1-cta-tagline {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.s1-cta-btn--large {
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
}

/* S1 Responsive */
@media (max-width: 600px) {
  .s1-hero { padding: 3rem 1.5rem 2.5rem; }
  .s1-title { font-size: 3.5rem; }
  .s1-list { padding: 2rem 1.5rem 3rem; }
  .s1-ep { grid-template-columns: 40px 1fr; gap: 1rem; }
  .s1-ep--featured { padding: 1.5rem; }
  .s1-cta { padding: 4rem 1.5rem; }
  .s1-meta-row { flex-wrap: wrap; gap: 0.4rem; }
}

/* ============================================================
   FOR PARENTS PAGE (/for-parents)
   ============================================================ */

.fp-page { min-height: 100vh; }

/* Hero */
.fp-hero {
  padding: 5rem 2rem 5rem;
  border-bottom: 1px solid var(--border);
}
.fp-hero-inner { max-width: 760px; margin: 0 auto; }
.fp-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.fp-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 2rem;
}
.fp-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
  max-width: 640px;
}

/* Shared section pattern */
.fp-section-inner { max-width: 1200px; margin: 0 auto; }
.fp-section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  font-weight: 600;
  padding: 0 2rem;
}

/* What you'll see */
.fp-see-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.fp-see-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.fp-see-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fp-see-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-see-icon svg { width: 24px; height: 24px; }
.fp-see-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}
.fp-see-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* What you won't see */
.fp-wont-section {
  padding: 5rem 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.fp-wont-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.fp-wont-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.fp-wont-item:first-child { padding-top: 0; }
.fp-wont-rule {
  width: 1px;
  background: var(--accent);
  opacity: 0.4;
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.fp-wont-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.fp-wont-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}
.fp-wont-block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  align-items: center;
}
.fp-wont-quote {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* Badges section */
.fp-badge-section {
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
}
.fp-badge-inner { max-width: 760px; margin: 0 auto; }
.fp-badge-text { display: flex; flex-direction: column; gap: 0; }
.fp-badge-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
  margin-top: 0.75rem;
}
.fp-badge-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.fp-badge-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.fp-text-link {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s;
}
.fp-text-link:hover { opacity: 0.75; }

/* Email signup — parent-framed */
.fp-signup-section {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.fp-signup-inner { max-width: 580px; margin: 0 auto; }
.fp-signup-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.fp-signup-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.fp-signup-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* FOR PARENTS RESPONSIVE */
@media (max-width: 900px) {
  .fp-wont-layout { grid-template-columns: 1fr; gap: 2rem; }
  .fp-wont-block { padding: 2rem; }
}
@media (max-width: 640px) {
  .fp-see-grid { grid-template-columns: 1fr; }
  .fp-hero { padding: 3rem 1.5rem 4rem; }
  .fp-see-section { padding: 3.5rem 1.5rem; }
  .fp-wont-section { padding: 3.5rem 1.5rem; }
  .fp-badge-section { padding: 4rem 1.5rem; }
  .fp-signup-section { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .fp-see-card { padding: 2rem 1.5rem; }
}
/* =============================================
   JOURNAL / FIELD NOTES
   ============================================= */

/* Landing page callout — above join-journey */
.fn-landing-callout {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  padding: 0.75rem 0 0;
}
.fn-landing-callout a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.fn-landing-callout a:hover { opacity: 0.75; }

/* JOURNAL INDEX — views/journal.ejs */
.fn-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fn-header {
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}
.fn-header-inner {
  max-width: 680px;
  margin: 0 auto;
}
.fn-series-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.fn-page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
}

.fn-main {
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  padding: 3rem 2rem 5rem;
}

.fn-list {
  display: flex;
  flex-direction: column;
}

.fn-entry {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: opacity 0.15s;
}
.fn-entry:hover { opacity: 0.65; }

.fn-entry-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding-top: 0.2rem;
}
.fn-entry-body { padding-top: 0.1rem; }
.fn-entry-meta {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.fn-entry-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.fn-entry-pull {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
}

.fn-more-cta {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  font-weight: 300;
}

/* JOURNAL ENTRY — views/journal-field-notes-1.ejs */
.fn1-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fn1-header {
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}
.fn1-header-inner {
  max-width: 680px;
  margin: 0 auto;
}
.fn1-date {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 400;
}
.fn1-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
}

.fn1-main {
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  padding: 3.5rem 2rem 4rem;
}

.fn1-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--fg);
  font-weight: 300;
}
.fn1-body p { margin-bottom: 1.5em; }
.fn1-body p:last-child { margin-bottom: 0; }

/* Field note CTA section */
.fn1-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
}
.fn1-cta-inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.fn1-cta-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* JOURNAL RESPONSIVE */
@media (max-width: 640px) {
  .fn-header, .fn1-header { padding: 3rem 1.5rem 2.5rem; }
  .fn-main, .fn1-main { padding: 2.5rem 1.5rem 4rem; }
  .fn-entry { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
}
