:root {
  --crema: #faf8f5;
  --crema-2: #f0eeeb;
  --dark: #0e0e0e;
  --dark-2: #1a1a1a;
  --coral: #ff4a3d;
  --coral-deep: #c83a2f;
  --yellow: #f5d547;
  --lilac: #b8a9f0;
  --rule: #d9d6d0;
  --muted: #666;
  --font-display: "Anton", sans-serif;
  --font-serif: "Instrument Serif", serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  background: var(--crema);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 14, 14, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 14, 14, .045) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: .28;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

::selection {
  background: var(--coral);
  color: var(--crema);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--crema);
  border: 2px solid var(--dark);
  color: var(--dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.build-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(14, 14, 14, .94);
  color: var(--crema);
  border-bottom: 1px solid rgba(250, 248, 245, .16);
  backdrop-filter: blur(18px);
}

.nav-mark {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: .88;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.nav-mark span {
  color: var(--coral);
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2.2vw, 30px);
  align-items: center;
}

.nav-links a,
.nav-action {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(250, 248, 245, .74);
  transition: color .18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--coral);
}

.nav-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--coral);
  background: var(--coral);
  color: var(--crema);
  transition: background-color .18s ease, color .18s ease;
}

.nav-action:hover {
  background: transparent;
  color: var(--coral);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(250, 248, 245, .24);
  background: transparent;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--crema);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 64px) clamp(18px, 4vw, 48px) 0;
  background: var(--crema);
  border-bottom: 1px solid var(--dark);
  isolation: isolate;
  overflow: clip;
}

.hero::before {
  content: "PODCAST";
  position: absolute;
  right: -4vw;
  top: 11vh;
  z-index: -1;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: clamp(84px, 18vw, 272px);
  line-height: .8;
  letter-spacing: -.045em;
  opacity: .09;
  transform: rotate(-4deg);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(45vw, 620px);
  height: 58%;
  background: var(--coral);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -2;
}

.hero-grid {
  min-height: calc(100svh - var(--nav-h) - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 960px;
}

.eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--coral);
}

.hero h1,
.intro h2,
.podcast-copy h2,
.hub-intro h2,
.instagram-copy h2,
.sequence-sticky h2,
.method-content h2,
.archive-copy h2,
.dispatch h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .9;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(82px, 15vw, 240px);
}

.hero-lede {
  max-width: 670px;
  margin: 30px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(25px, 3vw, 46px);
  font-style: italic;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid currentColor;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--crema);
}

.btn.primary:hover {
  border-color: var(--dark);
  background: var(--dark);
}

.hero-stage {
  position: relative;
  min-height: min(66svh, 720px);
  display: grid;
  align-items: end;
  perspective: 1200px;
}

.stage-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(360px, 52vw, 690px);
  border: 2px solid var(--dark);
  background: var(--yellow);
  overflow: clip;
  transform: rotate(1.5deg);
  transform-style: preserve-3d;
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(14, 14, 14, .28);
}

.stage-frame img {
  width: min(75%, 640px);
  opacity: .96;
  transform: translateZ(58px);
}

.stage-kicker {
  position: absolute;
  left: 26px;
  bottom: 24px;
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 44px);
  font-style: italic;
}

.stage-note {
  position: absolute;
  border: 1px solid var(--dark);
  background: var(--crema);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 var(--dark);
}

.note-one {
  top: 7%;
  left: -4%;
  transform: rotate(-5deg);
}

.note-two {
  top: 44%;
  right: -3%;
  background: var(--dark);
  color: var(--crema);
  transform: rotate(4deg);
}

.note-three {
  right: 14%;
  bottom: 9%;
  background: var(--coral);
  color: var(--crema);
  transform: rotate(-2deg);
}

.hero-marquee {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  border-top: 1px solid var(--dark);
  overflow: hidden;
  background: var(--dark);
  color: var(--crema);
}

.hero-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 74s linear infinite;
}

.hero-marquee span {
  padding: 15px 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.split,
.podcast-panel,
.episode-hub,
.instagram-panel,
.sequence,
.method-band,
.archive-strip,
.dispatch {
  position: relative;
  border-bottom: 1px solid var(--dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: clamp(24px, 7vw, 132px);
  align-items: start;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(96px, 14vw, 184px) clamp(18px, 4vw, 48px);
}

.section-meta {
  position: sticky;
  top: calc(var(--nav-h) + 26px);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
}

.intro h2 {
  max-width: 12ch;
  font-size: clamp(58px, 9vw, 148px);
}

.intro p {
  max-width: 820px;
  margin: 34px 0 0;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.32;
}

.podcast-panel {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  padding: clamp(96px, 13vw, 172px) clamp(18px, 4vw, 48px);
  background: var(--dark);
  color: var(--crema);
  overflow: clip;
}

.podcast-panel::before {
  content: "02";
  position: absolute;
  left: -2vw;
  bottom: -3vw;
  color: rgba(250, 248, 245, .05);
  font-family: var(--font-display);
  font-size: clamp(180px, 36vw, 540px);
  line-height: .75;
}

.podcast-copy,
.spotify-shell {
  position: relative;
  z-index: 1;
}

.podcast-copy {
  max-width: 640px;
}

.podcast-copy h2,
.hub-intro h2,
.instagram-copy h2,
.sequence-sticky h2,
.method-content h2,
.archive-copy h2,
.dispatch h2 {
  font-size: clamp(58px, 9vw, 138px);
}

.podcast-copy p {
  margin: 26px 0 0;
  max-width: 620px;
  color: rgba(250, 248, 245, .78);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.36;
}

.podcast-list {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(250, 248, 245, .18);
}

.podcast-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(250, 248, 245, .18);
  color: rgba(250, 248, 245, .84);
}

.podcast-list span,
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--coral);
}

.spotify-shell {
  min-height: 440px;
  padding: clamp(18px, 2.4vw, 34px);
  border: 1px solid rgba(250, 248, 245, .2);
  background: var(--dark-2);
  transform: rotate(-1deg);
}

.spotify-shell::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid var(--coral);
  transform: rotate(2deg);
}

.spotify-embed,
.spotify-placeholder {
  min-height: 352px;
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 0;
}

.spotify-placeholder {
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(250, 248, 245, .22);
  background: var(--coral);
  color: var(--crema);
}

.spotify-placeholder .placeholder-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.spotify-placeholder h3 {
  max-width: 8ch;
  margin: 70px 0 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 128px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .9;
  text-transform: uppercase;
}

.spotify-placeholder p {
  max-width: 390px;
  margin: 24px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-style: italic;
  line-height: 1.05;
}

.episode-hub {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 7vw, 120px);
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(96px, 13vw, 176px) clamp(18px, 4vw, 48px);
  background: var(--crema);
  overflow: clip;
  isolation: isolate;
}

.episode-hub::before {
  content: "HUB";
  position: absolute;
  left: -4vw;
  bottom: -4vw;
  z-index: -1;
  color: rgba(255, 74, 61, .1);
  font-family: var(--font-display);
  font-size: clamp(160px, 34vw, 520px);
  line-height: .8;
  letter-spacing: -.045em;
}

.hub-intro {
  position: sticky;
  top: calc(var(--nav-h) + 44px);
  align-self: start;
}

.hub-intro h2 {
  max-width: 9ch;
}

.hub-intro p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(14, 14, 14, .72);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--dark);
  border: 1px solid var(--dark);
}

.hub-grid article {
  min-height: 244px;
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 3vw, 38px);
  background: var(--crema);
}

.hub-grid article:nth-child(2),
.hub-grid article:nth-child(5) {
  background: var(--crema-2);
}

.hub-grid article:nth-child(3) {
  background: var(--yellow);
}

.hub-grid article:nth-child(4) {
  background: var(--dark);
  color: var(--crema);
}

.hub-grid span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
}

.hub-grid h3 {
  margin: 44px 0 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .88;
  text-transform: uppercase;
}

.hub-grid p {
  max-width: 360px;
  margin: 20px 0 0;
  color: inherit;
}

.instagram-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 7vw, 116px);
  align-items: center;
  padding: clamp(96px, 13vw, 176px) clamp(18px, 4vw, 48px);
  background: var(--dark);
  color: var(--crema);
  overflow: clip;
  isolation: isolate;
}

.instagram-panel::before {
  content: "IG";
  position: absolute;
  right: -6vw;
  top: -2vw;
  z-index: -1;
  color: rgba(250, 248, 245, .08);
  font-family: var(--font-display);
  font-size: clamp(220px, 42vw, 650px);
  line-height: .8;
  letter-spacing: -.05em;
}

.instagram-copy {
  max-width: 700px;
}

.instagram-copy h2 {
  max-width: 10ch;
}

.instagram-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(250, 248, 245, .78);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
}

.ig-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.btn.light {
  color: var(--crema);
}

.instagram-stack {
  position: relative;
  min-height: clamp(480px, 62vw, 740px);
  perspective: 1200px;
}

.ig-card {
  position: absolute;
  display: block;
  width: min(58%, 410px);
  border: 2px solid var(--crema);
  background: var(--crema);
  overflow: clip;
  box-shadow: 18px 18px 0 var(--coral);
  will-change: transform;
}

.ig-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ig-card-a {
  left: 4%;
  top: 8%;
  transform: rotate(-6deg);
}

.ig-card-b {
  right: 2%;
  bottom: 6%;
  transform: rotate(5deg);
  box-shadow: -18px 18px 0 var(--yellow);
}

.ig-handle {
  position: absolute;
  left: 50%;
  top: 48%;
  padding: 16px 18px;
  background: var(--coral);
  color: var(--crema);
  border: 1px solid var(--crema);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.sequence {
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr);
  gap: clamp(34px, 7vw, 116px);
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(96px, 12vw, 164px) clamp(18px, 4vw, 48px);
  background: var(--crema);
  overflow: visible;
}

.sequence-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 44px);
  align-self: start;
  min-height: 55svh;
}

.sequence-sticky p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
}

.sequence-track {
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  padding-top: 10vh;
}

.step-card {
  min-height: clamp(260px, 36vh, 420px);
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--dark);
  background: var(--crema);
  transform-origin: center;
  will-change: transform;
}

.step-card h3 {
  margin: 48px 0 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .86;
  text-transform: uppercase;
}

.step-card p {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.32;
}

.accent-coral {
  background: var(--coral);
  color: var(--crema);
}

.accent-coral .step-num,
.accent-dark .step-num {
  color: var(--yellow);
}

.accent-dark {
  background: var(--dark);
  color: var(--crema);
}

.accent-yellow {
  background: var(--yellow);
}

.method-band {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(96px, 14vw, 190px) clamp(18px, 4vw, 48px);
  background: var(--coral);
  color: var(--crema);
  overflow: clip;
}

.method-bg {
  position: absolute;
  inset: auto -5vw -6vw auto;
  font-family: var(--font-display);
  font-size: clamp(190px, 41vw, 680px);
  line-height: .75;
  letter-spacing: -.05em;
  color: rgba(250, 248, 245, .13);
  pointer-events: none;
}

.method-content {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}

.method-content .eyebrow {
  color: var(--dark);
}

.method-content h2 {
  max-width: 11ch;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 8vw, 96px);
  border: 1px solid rgba(250, 248, 245, .42);
  background: rgba(250, 248, 245, .42);
}

.method-grid article {
  min-height: 280px;
  padding: clamp(22px, 2.4vw, 34px);
  background: var(--coral);
}

.method-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .9;
  text-transform: uppercase;
}

.method-grid p {
  margin: 80px 0 0;
  color: rgba(250, 248, 245, .84);
  line-height: 1.4;
}

.archive-strip {
  display: grid;
  grid-template-columns: minmax(180px, .48fr) minmax(180px, .48fr) minmax(320px, 1fr);
  gap: 1px;
  background: var(--dark);
  color: var(--crema);
}

.archive-item {
  position: relative;
  min-height: 620px;
  overflow: clip;
  background: var(--dark-2);
}

.archive-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: transform .6s ease, opacity .3s ease;
}

.archive-item:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.archive-item span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(250, 248, 245, .44);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.archive-copy {
  display: grid;
  align-content: center;
  padding: clamp(40px, 7vw, 96px);
  background: var(--dark);
}

.archive-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(250, 248, 245, .78);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
}

.dispatch {
  min-height: 86svh;
  display: grid;
  align-items: center;
  padding: clamp(96px, 14vw, 176px) clamp(18px, 4vw, 48px) 0;
  background: var(--crema);
  overflow: clip;
}

.dispatch-inner {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}

.dispatch h2 {
  max-width: 9ch;
}

.dispatch-form {
  max-width: 860px;
  margin-top: clamp(38px, 7vw, 80px);
}

.dispatch-form label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.dispatch-form input {
  min-height: 58px;
  width: 100%;
  border: 2px solid var(--dark);
  border-radius: 0;
  background: transparent;
  color: var(--dark);
  padding: 0 18px;
  font-size: 18px;
}

.dispatch-form input::placeholder {
  color: rgba(14, 14, 14, .42);
}

.form-msg {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
}

.closing-ticker {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: clamp(72px, 10vw, 132px) 0 0 -50vw;
  overflow: hidden;
  border-top: 1px solid var(--dark);
  background: var(--coral);
  color: var(--crema);
}

.closing-ticker span {
  display: block;
  width: max-content;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 104px);
  line-height: .85;
  letter-spacing: -.035em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: closing-marquee 28s linear infinite;
}

.build-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px clamp(18px, 4vw, 48px);
  background: var(--dark);
  color: var(--crema);
}

.footer-links {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a,
.build-footer p {
  margin: 0;
  color: rgba(250, 248, 245, .7);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--coral);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes closing-marquee {
  from { transform: translateX(-16%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: scroll()) {
    .hero h1 {
      animation: hero-breathe linear both;
      animation-timeline: scroll(root);
      animation-range: 0 360px;
    }

    .stage-frame {
      animation: hero-card-float linear both;
      animation-timeline: scroll(root);
      animation-range: 0 620px;
    }

    .stage-note {
      animation: note-drift linear both;
      animation-timeline: scroll(root);
      animation-range: 0 720px;
    }
  }

  @supports (animation-timeline: view()) {
    .podcast-panel::before {
      animation: depth-number linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    .episode-hub::before,
    .instagram-panel::before {
      animation: bg-slide linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    .hub-grid article {
      animation: hub-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 62%;
    }

    .ig-card-a {
      animation: ig-float-a linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    .ig-card-b {
      animation: ig-float-b linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    .spotify-shell {
      animation: shell-settle linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 56%;
    }

    .step-card {
      animation: card-depth linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 70%;
    }

    .method-bg {
      animation: bg-slide linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    .archive-item img {
      animation: image-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    .closing-ticker span {
      animation: closing-parallax linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
  }
}

@keyframes hero-breathe {
  from {
    letter-spacing: -.065em;
    transform: translateY(0);
  }
  to {
    letter-spacing: -.025em;
    transform: translateY(-18px);
  }
}

@keyframes hero-card-float {
  from { transform: rotate(1.5deg) translateY(0) translateZ(0); }
  to { transform: rotate(-1deg) translateY(-72px) translateZ(0); }
}

@keyframes note-drift {
  from { translate: 0 0; }
  to { translate: 0 -110px; }
}

@keyframes depth-number {
  from { transform: translateY(100px) scale(1.08); opacity: .02; }
  45% { opacity: .07; }
  to { transform: translateY(-90px) scale(.92); opacity: .035; }
}

@keyframes shell-settle {
  from {
    transform: rotate(-3deg) translateY(58px);
  }
  to {
    transform: rotate(-1deg) translateY(0);
  }
}

@keyframes card-depth {
  from {
    transform: translateY(90px) rotateX(8deg);
  }
  55% {
    transform: translateY(0) rotateX(0);
  }
  to {
    transform: translateY(-22px) rotateX(-2deg);
  }
}

@keyframes bg-slide {
  from { transform: translateX(10vw); }
  to { transform: translateX(-8vw); }
}

@keyframes image-drift {
  from { transform: scale(1.08) translateY(42px); }
  to { transform: scale(1.08) translateY(-42px); }
}

@keyframes hub-rise {
  from { transform: translateY(70px); }
  to { transform: translateY(-18px); }
}

@keyframes ig-float-a {
  from { transform: rotate(-8deg) translateY(92px); }
  to { transform: rotate(-3deg) translateY(-72px); }
}

@keyframes ig-float-b {
  from { transform: rotate(8deg) translateY(-54px); }
  to { transform: rotate(3deg) translateY(82px); }
}

@keyframes closing-parallax {
  from { transform: translateX(-24%); }
  to { transform: translateX(8%); }
}

@media (max-width: 1020px) {
  .build-nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    display: grid;
    gap: 0;
    padding: 20px clamp(18px, 4vw, 48px) 28px;
    background: var(--dark);
    border-bottom: 1px solid rgba(250, 248, 245, .16);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .24s ease, opacity .2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(250, 248, 245, .14);
    font-size: 14px;
  }

  .nav-action {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .podcast-panel,
  .episode-hub,
  .instagram-panel,
  .sequence,
  .archive-strip {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .stage-frame {
    min-height: 420px;
  }

  .podcast-copy {
    max-width: 860px;
  }

  .sequence-sticky {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .hub-intro {
    position: relative;
    top: auto;
  }

  .sequence-track {
    padding-top: 0;
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-item {
    min-height: 520px;
  }

  .archive-copy {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  :root {
    --nav-h: 64px;
  }

  .build-nav {
    gap: 12px;
    padding: 12px 16px;
  }

  .nav-mark {
    font-size: 34px;
  }

  .nav-action {
    min-height: 36px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: .12em;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 50px) 16px 0;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(68px, 20vw, 118px);
  }

  .hero-lede {
    font-size: 27px;
  }

  .hero-actions,
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .stage-frame {
    min-height: 340px;
  }

  .stage-note {
    box-shadow: 5px 5px 0 var(--dark);
  }

  .note-one {
    left: 0;
  }

  .note-two {
    right: 0;
  }

  .split {
    grid-template-columns: 1fr;
    padding: 82px 16px;
  }

  .section-meta {
    position: relative;
    top: auto;
  }

  .intro h2,
  .podcast-copy h2,
  .hub-intro h2,
  .instagram-copy h2,
  .sequence-sticky h2,
  .method-content h2,
  .archive-copy h2,
  .dispatch h2 {
    font-size: clamp(54px, 17vw, 88px);
  }

  .podcast-panel,
  .episode-hub,
  .instagram-panel,
  .sequence,
  .method-band,
  .dispatch {
    padding-right: 16px;
    padding-left: 16px;
  }

  .spotify-shell {
    min-height: 0;
    padding: 12px;
    transform: none;
  }

  .spotify-shell::before {
    inset: -8px;
  }

  .spotify-embed,
  .spotify-placeholder {
    min-height: 300px;
  }

  .spotify-placeholder h3 {
    margin-top: 42px;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .hub-grid article {
    min-height: 220px;
  }

  .instagram-stack {
    min-height: 520px;
  }

  .ig-card {
    width: 68%;
  }

  .ig-card-a {
    left: 0;
  }

  .ig-card-b {
    right: 0;
  }

  .step-card {
    min-height: 300px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article {
    min-height: 230px;
  }

  .method-grid p {
    margin-top: 46px;
  }

  .archive-item,
  .archive-copy {
    min-height: 420px;
  }

  .build-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
