/* ============================================================
   rock different, babe 🤘 — core styles (V2)
   Black. Pink. Orange. No playbook.
   ============================================================ */

:root {
  --black: #000000;
  --near-black: #0A0A0A;
  --surface: #0E0E0E;
  --pink: #FF1E8E;
  --orange: #FF6B00;
  --white: #FFFFFF;
  --green: #00FF41;
  --purple: #4A0E6B;
  --grey: #A6A6A6;
  --grey-dim: #6E6E6E;
  --line: rgba(255, 255, 255, 0.12);

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --container: 1160px;
  --pad: 1.5rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* ---------- Focus & skip link ---------- */
:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--pink); color: var(--black);
  padding: 0.6rem 1rem; font-family: var(--font-mono); font-size: 0.85rem;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- Utilities ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 2.5rem;
  text-transform: lowercase;
}
.is-dim { color: var(--grey); }
.is-grey { color: var(--grey); font-size: 0.9rem; }
.is-bright { color: var(--pink); }
.is-emphasis { font-size: 1.35rem; line-height: 1.5; }

.tape-label {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  transform: rotate(-1.5deg);
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.08);
}

.bip-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 0.35rem 0.75rem;
  align-self: center;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s ease;
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav.is-flash { background: var(--pink); }
.nav-logo {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--white);
}
.nav-logo .emoji { display: inline-block; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--grey);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a[aria-current="page"] { color: var(--white); border-bottom: 2px solid var(--pink); padding-bottom: 2px; }
.nav-cta {
  color: var(--black) !important;
  background: var(--pink);
  padding: 0.5rem 1rem;
}
.nav-cta:hover { background: var(--orange); color: var(--black) !important; }
.nav-toggle { display: none; font-size: 1.4rem; color: var(--white); padding: 0.25rem 0.5rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative;
  padding: 5rem 0 4rem;
}
.hero-content { position: relative; z-index: 2; }
.hero-terminal {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 2.5rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  position: relative;
  min-height: 6.4em;
}
.hero-terminal span { opacity: 0; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  display: flex; flex-direction: column;
}
.hero h1 .word-rock { color: var(--white); }
.hero h1 .word-different { color: var(--pink); }
.hero h1 .word-babe { color: var(--orange); }
.emoji-hero { display: inline-block; font-size: 0.7em; }
.hero-subtitle {
  max-width: 560px;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--grey);
}
.hero-cta-row {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.btn-primary, .btn-secondary {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.5rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--pink); color: var(--black); }
.btn-primary:hover { background: var(--orange); transform: translateY(-2px); }
.btn-secondary { border: 1px solid var(--white); color: var(--white); }
.btn-secondary:hover { border-color: var(--pink); color: var(--pink); }

/* ---------- Manifesto ---------- */
.manifesto { padding: 6rem 0; border-top: 1px solid var(--line); }
.manifesto-content { max-width: 720px; }
.manifesto-label {
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--orange); margin-bottom: 2rem; letter-spacing: 0.12em;
}
.manifesto-negation { margin: 2.5rem 0; padding-left: 1.5rem; border-left: 3px solid var(--pink); }
.manifesto-negation p { color: var(--grey); font-size: 1.05rem; }
.manifesto-negation p:last-child { color: var(--white); margin-top: 0.5rem; }
.manifesto-question p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--pink);
  line-height: 1.1;
  margin-top: 1rem;
}

/* ---------- Featured story ---------- */
.featured { padding: 5rem 0; }
.featured-card {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  border: 1px solid var(--line);
  transition: border-color 0.3s ease;
  overflow: hidden;
}
.featured-card:hover { border-color: var(--pink); }
.featured-image {
  position: relative;
  background: var(--near-black);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.featured-image-placeholder {
  font-family: var(--font-display);
  font-size: 7rem;
  color: rgba(255, 30, 142, 0.25);
  position: relative; z-index: 1;
}
.featured-ep {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--pink); border: 1px solid var(--pink);
  padding: 0.25rem 0.6rem;
  z-index: 2;
}
.featured-body { padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.featured-tag {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.1em; color: var(--pink);
  text-transform: uppercase;
}
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}
.featured-excerpt { color: var(--grey); font-size: 0.98rem; }
.featured-meta { display: flex; gap: 1.5rem; margin-top: auto; flex-wrap: wrap; }
.featured-meta-item { font-family: var(--font-mono); font-size: 0.78rem; color: var(--grey-dim); }

/* ---------- Explore pillars ---------- */
.explore { padding: 5rem 0; }
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.explore-card {
  position: relative;
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.explore-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  height: 3px; width: 3rem;
  background: var(--pink);
  transition: width 0.3s ease;
}
.explore-card:hover::before { width: 100%; }
.explore-card:hover { border-color: rgba(255, 255, 255, 0.3); transform: translateY(-3px); }
.explore-card-icon { font-size: 1.6rem; }
.explore-card-title { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.02em; }
.explore-card-desc { color: var(--grey); font-size: 0.9rem; flex-grow: 1; }
.explore-card-count { font-family: var(--font-mono); font-size: 0.72rem; color: var(--grey-dim); }
.explore-card-arrow { color: var(--pink); font-size: 1.2rem; }

/* ---------- Editorial lens ---------- */
.lens { padding: 5rem 0; border-top: 1px solid var(--line); }
.lens-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.lens-step-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.lens-step-q { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.4rem; }
.lens-step-sub { color: var(--grey-dim); font-size: 0.82rem; }

/* ---------- Pull quote ---------- */
.pullquote { padding: 7rem 0; background: var(--near-black); text-align: center; }
.pullquote-text {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto;
  user-select: text;
}
.pullquote-text .highlight { color: var(--pink); }
.pullquote-text.is-swapped { color: var(--orange); }
.pullquote-attr { font-family: var(--font-mono); font-size: 0.85rem; color: var(--grey-dim); margin-top: 1.5rem; }

/* ---------- Story cards / Latest ---------- */
.latest { padding: 5rem 0; }
.latest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.story-card {
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  position: relative;
  background: var(--black);
  transition: border-color 0.3s ease;
}
.story-card.is-tilted { transform: rotate(-1deg); }
.story-card-pillar {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  align-self: flex-start;
  padding: 0.25rem 0.6rem;
  transition: transform 0.3s ease;
}
.story-card:hover .story-card-pillar { transform: translateX(4px); }
.story-card-pillar.is-brands { color: var(--pink); border: 1px solid var(--pink); }
.story-card-pillar.is-people { color: var(--orange); border: 1px solid var(--orange); }
.story-card-pillar.is-ideas { color: var(--white); border: 1px solid var(--white); }
.story-card-pillar.is-build { color: var(--green); border: 1px solid var(--green); }
.story-card-title { font-family: var(--font-display); font-size: 1.6rem; line-height: 1.05; }
.story-card-excerpt { color: var(--grey); font-size: 0.9rem; flex-grow: 1; }
.story-card-footer {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--grey-dim);
  border-top: 1px solid var(--line); padding-top: 0.9rem;
}
.story-card-formats { font-size: 0.85rem; letter-spacing: 0.3em; }

/* ---------- Collections (V2) ---------- */
.collections { padding: 4rem 0; overflow: hidden; }
.collections-row {
  display: flex; gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0.25rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) transparent;
}
.collections-row::-webkit-scrollbar { height: 4px; }
.collections-row::-webkit-scrollbar-thumb { background: var(--pink); }
.collection-tag { flex-shrink: 0; white-space: nowrap; }
.collection-tag:nth-child(even) { transform: rotate(1.2deg); }
.collection-tag:hover { background: var(--pink); }

/* ---------- The Energy statement (V2) ---------- */
.energy { padding: 7rem 0; border-top: 1px solid var(--line); }
.energy-stack {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 0.95;
  display: flex; flex-direction: column;
}
.energy-stack .e-punk { color: var(--pink); }
.energy-stack .e-smart { color: var(--white); }
.energy-stack .e-unfiltered { color: var(--orange); }
.energy-sub { color: var(--grey); font-size: 1.05rem; max-width: 520px; margin-top: 2rem; }
.energy-sign { font-family: var(--font-mono); font-size: 0.85rem; color: var(--grey-dim); margin-top: 2rem; }

/* ---------- About page voice/philosophy ---------- */
.about { padding: 5rem 0; border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.about-voice-title { font-family: var(--font-display); font-size: 2.4rem; margin-bottom: 1.5rem; }
.about-voice-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.about-voice-list li {
  font-family: var(--font-mono); font-size: 0.78rem;
  border: 1px solid var(--line);
  padding: 0.4rem 0.9rem;
  color: var(--grey);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.about-voice-list li:hover { border-color: var(--pink); color: var(--white); }
.about-philosophy p { font-size: 1.15rem; margin-bottom: 0.4rem; }

/* ---------- About page (about.html) ---------- */
.page-hero { padding: 7rem 0 4rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
}
.page-hero h1 .accent { color: var(--pink); }
.page-hero-sub { color: var(--grey); max-width: 560px; margin-top: 1.5rem; font-size: 1.1rem; }

.about-section { padding: 4.5rem 0; }
.about-section + .about-section { border-top: 1px solid var(--line); }
.about-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 2rem;
  line-height: 1;
}
.about-section .prose { max-width: 700px; }
.about-section .prose p { margin-bottom: 1.25rem; font-size: 1.05rem; color: var(--grey); }
.about-section .prose p strong { color: var(--white); font-weight: 600; }
.about-section .prose .lead { color: var(--white); font-size: 1.3rem; line-height: 1.5; }
.about-section.has-paper {
  background-color: var(--near-black);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.pull-pink {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--pink);
  line-height: 1.1;
  margin: 3rem 0;
  max-width: 800px;
}
.dna-row {
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
  margin-top: 2rem;
  font-family: var(--font-mono); font-size: 0.9rem;
}
.dna-chip { border: 1px solid var(--line); padding: 0.8rem 1.2rem; }
.dna-chip .c-orange { color: var(--orange); }
.dna-chip .c-pink { color: var(--pink); }
.dna-equals { color: var(--grey-dim); font-size: 1.2rem; }

/* ---------- Explore page ---------- */
.filter-bar {
  display: flex; gap: 1rem; flex-wrap: wrap;
  padding: 2rem 0 3rem;
}
.filter-toggle {
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  transform: rotate(-1.5deg);
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.filter-toggle:nth-child(even) { transform: rotate(1deg); }
.filter-toggle:hover { opacity: 0.85; }
.filter-toggle[aria-pressed="true"] { opacity: 1; transform: rotate(0deg) scale(1.05); }
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 5rem;
}
.masonry .story-card:nth-child(3n+1) { min-height: 300px; }
.masonry .story-card:nth-child(3n+2) { min-height: 250px; }
.masonry .story-card:nth-child(5n) { transform: rotate(-0.8deg); }
.story-card.is-hidden { display: none; }
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 1rem;
  font-family: var(--font-mono);
  color: var(--grey);
  display: none;
}
.empty-state.is-visible { display: block; }
.cursor-blink { color: var(--green); }

/* ---------- Story template ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--pink); z-index: 200;
}
.story-header { padding: 6rem 0 3rem; }
.story-meta-row {
  display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--grey-dim);
  margin-bottom: 1.5rem;
}
.story-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.98;
  max-width: 900px;
}
.author-line { display: flex; align-items: center; gap: 0.8rem; margin-top: 2rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: var(--black); font-size: 1.1rem;
}
.author-name { font-family: var(--font-mono); font-size: 0.85rem; color: var(--grey); }
.story-body { max-width: 680px; margin: 0 auto; padding: 3rem var(--pad) 4rem; }
.story-body p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; color: rgba(255, 255, 255, 0.88); }
.story-body h2 { font-family: var(--font-display); font-size: 2.2rem; margin: 3rem 0 1.25rem; }
.story-pullquote {
  background: var(--black);
  padding: 3rem 0;
  margin: 3rem 0;
  transform: rotate(-0.5deg);
}
.story-pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--pink);
  line-height: 1.1;
  margin: 0;
}
.share-row {
  display: flex; gap: 2rem; margin: 3rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.share-link { font-family: var(--font-mono); font-size: 0.8rem; color: var(--grey); }
.share-link:hover { color: var(--pink); }
.mini-player {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 0.8rem var(--pad);
  display: flex; align-items: center; gap: 1rem;
  z-index: 90;
}
.mini-player-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--pink); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.mini-player-label { font-family: var(--font-mono); font-size: 0.78rem; color: var(--grey); }
.mini-player-track {
  flex-grow: 1; height: 3px; background: var(--line); position: relative;
}
.mini-player-track::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 18%; background: var(--pink);
}
.related { padding: 4rem 0 8rem; border-top: 1px solid var(--line); }

/* ---------- Case study template ---------- */
.cs-hero { padding: 7rem 0 4rem; }
.cs-industry {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--pink); border: 1px solid var(--pink);
  padding: 0.3rem 0.8rem; display: inline-block; margin-bottom: 1.5rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.cs-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 11rem);
  line-height: 0.9;
}
.cs-oneliner { color: var(--grey); font-size: 1.2rem; max-width: 620px; margin-top: 1.5rem; }
.cs-layout { display: grid; grid-template-columns: 180px 1fr; gap: 3rem; align-items: start; }
.cs-sidenav {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.72rem;
}
.cs-sidenav a { color: var(--grey-dim); padding: 0.3rem 0; border-left: 2px solid transparent; padding-left: 0.8rem; transition: color 0.2s, border-color 0.2s; }
.cs-sidenav a:hover { color: var(--white); }
.cs-sidenav a.is-active { color: var(--pink); border-left-color: var(--pink); }
.cs-section { padding: 3.5rem 0; border-bottom: 1px solid var(--line); }
.cs-section h2 { font-family: var(--font-display); font-size: 2.6rem; margin-bottom: 1.5rem; line-height: 1; }
.cs-section .prose p { color: var(--grey); font-size: 1.05rem; margin-bottom: 1.25rem; max-width: 680px; }

.playbook-toggle-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.playbook-switch {
  position: relative; width: 64px; height: 30px;
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}
.playbook-switch::before {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: var(--grey);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.playbook-switch[aria-checked="true"]::before { transform: translateX(34px); background: var(--pink); }
.playbook-switch-label { font-family: var(--font-mono); font-size: 0.78rem; color: var(--grey); }
.playbook-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.playbook-col { border: 1px solid var(--line); padding: 2rem; transition: opacity 0.3s ease, border-color 0.3s ease; }
.playbook-col h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1rem; }
.playbook-col ul li { padding: 0.6rem 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.playbook-col.is-norm { color: var(--grey-dim); }
.playbook-col.is-norm h3 { color: var(--grey); }
.playbook-col.is-reality { border-color: var(--pink); }
.playbook-col.is-reality h3 { color: var(--pink); }
.playbook-cols[data-view="norm"] .is-reality { opacity: 0.25; }
.playbook-cols[data-view="reality"] .is-norm { opacity: 0.25; }

.timeline-wrap { overflow-x: auto; cursor: grab; padding: 2rem 0 1rem; scrollbar-width: thin; scrollbar-color: var(--pink) transparent; }
.timeline-wrap.is-dragging { cursor: grabbing; user-select: none; }
.timeline-track {
  display: flex; gap: 4.5rem;
  position: relative;
  padding: 1.5rem 1rem 0.5rem;
  min-width: max-content;
}
.timeline-track::before {
  content: ""; position: absolute; top: 2rem; left: 0; right: 0;
  height: 1px; background: var(--line);
}
.timeline-dot {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  min-width: 130px;
  padding-top: 1.6rem;
}
.timeline-dot::before {
  content: ""; position: absolute; top: 0.62rem; left: 0;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--pink);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.timeline-dot:hover::before, .timeline-dot[aria-expanded="true"]::before { background: var(--pink); transform: scale(1.25); }
.timeline-dot-date { font-family: var(--font-mono); font-size: 0.72rem; color: var(--pink); }
.timeline-dot-title { font-size: 0.9rem; font-weight: 600; text-align: left; margin-top: 0.3rem; }
.timeline-detail {
  border: 1px solid var(--pink);
  padding: 2rem;
  margin-top: 1.5rem;
  display: none;
}
.timeline-detail.is-open { display: block; }
.timeline-detail h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.5rem; }
.timeline-detail .td-date { font-family: var(--font-mono); font-size: 0.75rem; color: var(--pink); margin-bottom: 1rem; display: block; }
.timeline-detail p { color: var(--grey); max-width: 640px; }
.timeline-detail blockquote {
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem; margin-top: 1.25rem;
  font-style: italic; color: var(--white);
}

.turning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.turning-card { border: 1px solid var(--line); padding: 2rem 1.5rem; }
.turning-card:nth-child(2) { transform: rotate(0.7deg); }
.turning-num { font-family: var(--font-display); font-size: 3rem; color: var(--orange); line-height: 1; margin-bottom: 1rem; }
.turning-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.turning-card p { color: var(--grey); font-size: 0.9rem; }

.cs-quote { padding: 5rem 0; text-align: center; }
.cs-quote p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05; max-width: 860px; margin: 0 auto;
}
.cs-quote .highlight { color: var(--pink); }
.cs-quote-attr { font-family: var(--font-mono); font-size: 0.82rem; color: var(--grey-dim); margin-top: 1.5rem; }

/* ---------- Podcast page ---------- */
.podcast-hero { padding: 7rem 0 3rem; }
.podcast-tagline { font-family: var(--font-mono); color: var(--green); font-size: 0.9rem; margin-top: 1.5rem; }
.listen-row { display: flex; gap: 1.5rem; flex-wrap: wrap; padding: 2rem 0 4rem; }
.listen-link {
  font-family: var(--font-mono); font-size: 0.82rem;
  border: 1px solid var(--line); padding: 0.7rem 1.4rem;
  color: var(--grey);
  transition: border-color 0.2s, color 0.2s;
}
.listen-link:hover { border-color: var(--pink); color: var(--white); }
.episode-grid { display: flex; flex-direction: column; gap: 1.25rem; padding-bottom: 6rem; }
.episode-card { border: 1px solid var(--line); transition: border-color 0.3s ease; }
.episode-card:hover { border-color: var(--pink); }
.episode-card:nth-child(3) { transform: rotate(-0.5deg); }
.episode-head {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 2rem; align-items: center;
  padding: 1.75rem 2rem;
  width: 100%; text-align: left;
}
.episode-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--pink); line-height: 1; }
.episode-info h3 { font-family: var(--font-display); font-size: 1.6rem; line-height: 1.05; }
.episode-guest { font-family: var(--font-mono); font-size: 0.75rem; color: var(--orange); margin-top: 0.3rem; }
.episode-desc { color: var(--grey); font-size: 0.9rem; margin-top: 0.5rem; }
.episode-side { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.episode-duration { font-family: var(--font-mono); font-size: 0.75rem; color: var(--grey-dim); }
.waveform { width: 120px; height: 32px; }
.waveform rect { fill: var(--pink); transform-origin: center; }
.episode-body {
  display: none;
  padding: 0 2rem 2rem;
  border-top: 1px dashed var(--line);
}
.episode-card.is-open .episode-body { display: block; padding-top: 1.5rem; }
.episode-body p { color: var(--grey); font-size: 0.95rem; margin-bottom: 1rem; max-width: 680px; }
.episode-links { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; }
.episode-links a { font-family: var(--font-mono); font-size: 0.78rem; color: var(--pink); }

/* ---------- 404 ---------- */
.page-404 {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
}
.emoji-404 { font-size: clamp(5rem, 15vw, 9rem); display: inline-block; }
.headline-404 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.95;
  margin-top: 1rem;
}
.sub-404 { color: var(--grey); max-width: 480px; margin-top: 1.5rem; }
.cta-404 { margin-top: 2.5rem; }
.secret-404 {
  font-family: var(--font-mono);
  color: var(--green);
  margin-top: 2.5rem;
  opacity: 0;
  transition: opacity 0.6s ease;
  min-height: 1.5em;
}
.secret-404.is-visible { opacity: 1; }

/* ---------- Newsletter ---------- */
.newsletter { padding: 6rem 0; background: var(--near-black); }
.newsletter-inner { max-width: 620px; }
.newsletter-label { font-family: var(--font-mono); font-size: 0.8rem; color: var(--orange); margin-bottom: 1.25rem; letter-spacing: 0.12em; }
.newsletter-headline { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1; }
.newsletter-sub { color: var(--grey); margin: 1.25rem 0 2rem; }
.newsletter-form { display: flex; gap: 0; max-width: 460px; }
.newsletter-input {
  flex-grow: 1;
  background: var(--black);
  border: 1px solid var(--line);
  border-right: none;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 0.9rem 1.1rem;
}
.newsletter-input:focus { outline: none; border-color: var(--pink); }
.newsletter-btn {
  background: var(--pink); color: var(--black);
  font-family: var(--font-mono); font-size: 0.85rem;
  padding: 0.9rem 1.5rem;
  transition: background-color 0.2s;
}
.newsletter-btn:hover { background: var(--orange); }

/* ---------- Footer ---------- */
.footer { padding: 3rem 0 5rem; border-top: 1px solid var(--line); }
.footer .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.footer-logo { font-family: var(--font-mono); font-size: 0.9rem; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-mono); font-size: 0.78rem; color: var(--grey-dim); }
.footer-links a:hover { color: var(--pink); }
.footer-credit { font-family: var(--font-mono); font-size: 0.72rem; color: var(--grey-dim); }
.footer-credit a { color: var(--orange); }
.footer-year {
  width: 100%;
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--grey-dim);
  margin-top: 0.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .lens-grid { grid-template-columns: repeat(3, 1fr); row-gap: 2.5rem; }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .cs-layout { grid-template-columns: 1fr; }
  .cs-sidenav { position: static; flex-direction: row; flex-wrap: wrap; gap: 1rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
  .cs-sidenav a { border-left: none; padding-left: 0; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    padding: 1.5rem var(--pad); gap: 1.25rem;
  }
  .nav-links.is-open { display: flex; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { min-height: 220px; }
  .latest-grid { grid-template-columns: 1fr; }
  .lens-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .playbook-cols { grid-template-columns: 1fr; }
  .turning-grid { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: 1fr; }
  .episode-head { grid-template-columns: auto 1fr; }
  .episode-side { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (max-width: 480px) {
  :root { --pad: 1.1rem; }
  .hero { min-height: 78vh; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .lens-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--line); }
  .footer .container { flex-direction: column; align-items: flex-start; }
}
