:root {
  --ink: #0a0a0f;
  --ink-raised: #11111a;
  --paper: #f5f4ef;
  --paper-soft: rgba(245, 244, 239, 0.7);
  --paper-dim: rgba(245, 244, 239, 0.42);
  --signal: #1d2dff;
  --signal-deep: #0a14b8;
  --lavender: #afa9ec;
  --line: rgba(245, 244, 239, 0.14);
  --text-ink: rgba(10, 10, 15, 0.74);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
}

body::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23grain)'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  position: fixed;
  z-index: 20;
}

a {
  color: inherit;
}

.wrap {
  margin-inline: auto;
  max-width: 1180px;
  padding-inline: 64px;
}

.narrow {
  max-width: 900px;
}

.sale-rail {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 15, 0.86);
  border-bottom: 1px solid var(--line);
  bottom: 0;
  display: flex;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 60px;
  position: fixed;
  text-transform: uppercase;
  width: 100%;
  z-index: 15;
}

.sale-rail a {
  background: var(--signal);
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0;
  margin-left: 22px;
  min-height: 42px;
  min-width: 138px;
  padding: 11px 18px;
  text-decoration: none;
  text-transform: none;
}

.chapter,
.brand,
.story-nav,
.session-cue,
.system-story span,
.system-story small,
.countdown > span,
.countdown small {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chapter {
  color: var(--signal);
  font-size: 11px;
  margin: 0 0 28px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

em {
  color: var(--lavender);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.button {
  align-items: center;
  background: var(--signal);
  border: 1px solid rgba(245, 244, 239, 0.24);
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  justify-content: center;
  min-height: 60px;
  min-width: 196px;
  padding: 0 25px;
  text-decoration: none;
  transition: background 180ms cubic-bezier(0.25, 1, 0.5, 1), color 180ms cubic-bezier(0.25, 1, 0.5, 1), transform 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.button:hover,
.button:focus-visible,
.sale-rail a:hover,
.sale-rail a:focus-visible {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.opening {
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: 40px 0 72px;
  position: relative;
}

.opening::after {
  background:
    linear-gradient(90deg, rgba(10, 10, 15, 0.98), rgba(10, 10, 15, 0.64) 54%, rgba(10, 10, 15, 0.94)),
    linear-gradient(180deg, transparent 32%, var(--ink));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.opening-field {
  background:
    repeating-linear-gradient(90deg, rgba(245, 244, 239, 0.025) 0 1px, transparent 1px 110px),
    linear-gradient(120deg, rgba(29, 45, 255, 0.1), transparent 42%);
  inset: 0;
  position: absolute;
  z-index: -2;
}

.opening-field canvas {
  display: block;
  height: 100%;
  width: 100%;
}

.story-nav {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  padding-bottom: 28px;
  position: relative;
  z-index: 2;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
}

.brand i {
  background: var(--signal);
  box-shadow: 0 0 28px rgba(29, 45, 255, 0.9);
  display: block;
  height: 9px;
  width: 9px;
}

.thesis {
  max-width: 760px;
  padding-top: clamp(72px, 10vh, 120px);
  position: relative;
  z-index: 1;
}

.thesis p {
  color: rgba(245, 244, 239, 0.58);
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.15rem, 4.2vw, 4.2rem);
  line-height: 1.03;
  margin: 0;
  text-wrap: balance;
}

.thesis p + p {
  margin-top: 38px;
}

.thesis strong {
  color: var(--paper);
  font-weight: 400;
}

.thesis em {
  color: var(--paper);
}

.session-cue {
  align-items: end;
  border-block: 1px solid rgba(10, 10, 15, 0.16);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(150px, 0.8fr) minmax(250px, 1.25fr) minmax(180px, 0.85fr) auto;
  margin-top: clamp(68px, 9vw, 108px);
  padding-block: 25px;
}

.session-cue span,
.session-cue small {
  color: var(--text-ink);
  font-size: 11px;
}

.session-cue strong,
.session-cue b {
  color: var(--ink);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
}

.session-cue strong {
  font-size: clamp(1.65rem, 3vw, 3.1rem);
}

.session-cue b {
  color: var(--signal);
  font-size: clamp(1.35rem, 2.2vw, 2.3rem);
}

.itch {
  background: var(--paper);
  color: var(--ink);
  padding: 132px 0;
}

.itch h1 {
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 700;
  line-height: 0.96;
  max-width: 980px;
}

.confessions {
  border-top: 1px solid rgba(10, 10, 15, 0.16);
  margin-top: 80px;
}

.confessions p {
  border-bottom: 1px solid rgba(10, 10, 15, 0.16);
  color: var(--text-ink);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2.65rem);
  font-weight: 600;
  line-height: 1.16;
  margin: 0;
  padding: 25px 0;
}

.confessions p:nth-child(2) {
  color: var(--signal);
  padding-left: clamp(0px, 6vw, 82px);
}

.confessions p:nth-child(3) {
  padding-left: clamp(0px, 12vw, 164px);
}

.bridge {
  color: var(--text-ink);
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 72px 0 0;
  max-width: 760px;
  text-wrap: balance;
}

.turn {
  background:
    linear-gradient(180deg, rgba(29, 45, 255, 0.08), transparent 26rem),
    var(--ink);
  padding: 132px 0;
}

.turn-grid,
.workshop-grid,
.offer-grid {
  display: grid;
  gap: 68px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
}

.turn-copy h2,
.section-head h2,
.workshop h2,
.fit h2,
.offer h2 {
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  font-weight: 700;
  line-height: 0.98;
}

.turn-copy > p:not(.chapter),
.workshop-lead,
.offer p {
  color: var(--paper-soft);
  font-size: 18px;
  margin: 28px 0 0;
  max-width: 620px;
}

.session-note {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 7px;
  margin-top: 32px;
  max-width: 420px;
  padding-block: 19px;
}

.session-note strong {
  color: var(--paper);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1;
}

.session-note span {
  color: var(--lavender);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-photo {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.story-photo::after {
  border: 1px solid rgba(245, 244, 239, 0.22);
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
}

.story-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.story-photo figcaption {
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 15, 0.74);
  bottom: 0;
  color: var(--paper-soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  left: 0;
  letter-spacing: 0.18em;
  max-width: calc(100% - 28px);
  padding: 13px 16px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.turn-copy strong,
.offer strong {
  color: var(--paper);
}

.turn-media {
  display: grid;
  gap: 24px;
}

.turn-photo {
  aspect-ratio: 1 / 1.02;
  justify-self: end;
  max-width: 440px;
  width: 100%;
}

.turn-photo img {
  object-position: center 28%;
}

.manifesto {
  align-self: center;
  border: 1px solid var(--line);
  border-left: 4px solid var(--signal);
  min-height: 520px;
  padding: 38px;
  position: relative;
}

.manifesto::before {
  background: linear-gradient(180deg, rgba(29, 45, 255, 0.2), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.manifesto span {
  color: var(--paper-dim);
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 110px;
  position: relative;
  text-transform: uppercase;
}

.manifesto p {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1.03;
  margin: 0;
  position: relative;
  text-wrap: balance;
}

.reveal {
  background: var(--signal);
  color: var(--paper);
  overflow: hidden;
  padding: 118px 0;
  position: relative;
}

.reveal::before {
  border: 1px solid rgba(245, 244, 239, 0.2);
  content: "";
  inset: 30px;
  pointer-events: none;
  position: absolute;
}

.reveal-inner > p {
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  margin: 0 0 8px;
}

.reveal h2 {
  font-size: clamp(4.8rem, 12vw, 13rem);
  font-weight: 700;
  line-height: 0.84;
  margin-bottom: 48px;
}

.reveal h2 strong {
  color: rgba(245, 244, 239, 0.48);
  font-weight: 700;
}

.reveal-copy {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}

.reveal-copy p {
  border-top: 1px solid rgba(245, 244, 239, 0.28);
  font-size: 19px;
  margin: 0;
  padding-top: 18px;
}

.reveal-photo {
  aspect-ratio: 16 / 8.2;
  margin-top: 62px;
}

.reveal-photo img {
  object-position: center;
}

.system {
  background: var(--paper);
  color: var(--ink);
  padding: 132px 0;
}

.system .session-cue {
  margin: 0 0 clamp(76px, 9vw, 108px);
}

.section-head {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  margin-bottom: 88px;
}

.system .section-head h2,
.takeaway .section-head h2 {
  color: var(--ink);
}

.system-story {
  counter-reset: story;
}

.system-story article {
  border-top: 1px solid rgba(10, 10, 15, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: 160px minmax(260px, 0.72fr) minmax(250px, 0.8fr) 180px;
  padding: 34px 0;
}

.system-story span,
.system-story small {
  color: rgba(10, 10, 15, 0.42);
  font-size: 10px;
}

.system-story h3 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1.02;
}

.system-story p {
  color: var(--text-ink);
  font-size: 17px;
  margin: 0;
}

.system-story small {
  align-self: start;
  border: 1px solid rgba(10, 10, 15, 0.16);
  color: var(--signal);
  justify-self: end;
  padding: 11px 12px;
}

.moment {
  background:
    linear-gradient(90deg, rgba(29, 45, 255, 0.28), transparent 48%),
    var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.moment-inner {
  padding-block: 136px;
}

.moment h2 {
  font-size: clamp(3.15rem, 6.6vw, 8rem);
  font-weight: 700;
  line-height: 0.94;
  max-width: 1050px;
}

.workshop {
  background: var(--ink-raised);
  padding: 132px 0;
}

.workshop .button {
  margin-top: 38px;
}

.live-photo {
  aspect-ratio: 0.92 / 1;
  margin-top: 62px;
  max-width: 500px;
}

.live-photo img {
  object-position: center 22%;
}

.timeline {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 82px minmax(0, 1fr);
  padding: 22px 0;
}

.timeline b {
  color: var(--lavender);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.timeline span {
  color: var(--paper-soft);
  font-size: 17px;
}

.takeaway {
  background: var(--paper);
  color: var(--ink);
  padding: 132px 0;
}

.deliverables {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(10, 10, 15, 0.16);
  border: 1px solid rgba(10, 10, 15, 0.16);
}

.deliverables article {
  background: rgba(255, 255, 255, 0.72);
  min-height: 310px;
  padding: 30px 26px;
}

.deliverables h3 {
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.08;
  margin-bottom: 20px;
}

.deliverables p {
  color: var(--text-ink);
  font-size: 16px;
  margin: 0;
}

.host {
  background:
    linear-gradient(120deg, rgba(29, 45, 255, 0.2), transparent 44%),
    var(--ink-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 132px 0;
}

.host-grid {
  align-items: center;
  display: grid;
  gap: clamp(38px, 6vw, 90px);
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.host-photo {
  aspect-ratio: 1 / 1.12;
  max-width: 520px;
}

.host-photo img {
  object-position: center top;
}

.host-copy h2 {
  font-size: clamp(2.5rem, 4.8vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
  margin-bottom: 30px;
}

.host-copy p:not(.chapter) {
  color: var(--paper-soft);
  font-size: 18px;
  margin: 0;
  max-width: 620px;
}

.host-copy p:not(.chapter) + p {
  margin-top: 20px;
}

.fit {
  background: var(--ink);
  padding: 132px 0;
}

.fit-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
}

.fit-lists {
  border-top: 1px solid var(--line);
}

.fit ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fit li {
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
  display: grid;
  font-size: 17px;
  gap: 18px;
  grid-template-columns: 16px minmax(0, 1fr);
  padding: 18px 0;
}

.fit li::before {
  color: var(--signal);
  content: "+";
  font-family: "JetBrains Mono", monospace;
}

.fit .not {
  margin-top: 32px;
}

.fit .not li::before {
  color: var(--paper-dim);
  content: "x";
}

.offer {
  background: var(--paper);
  border-top: 8px solid var(--signal);
  color: var(--ink);
  padding: 132px 0 170px;
}

.offer .chapter {
  color: var(--signal);
}

.offer h2,
.offer strong {
  color: var(--ink);
}

.offer p {
  color: var(--text-ink);
  margin-bottom: 36px;
}

.countdown {
  align-content: space-between;
  background:
    linear-gradient(145deg, rgba(29, 45, 255, 0.96), rgba(10, 20, 184, 0.98)),
    var(--signal);
  color: var(--paper);
  display: grid;
  min-height: 480px;
  padding: 42px;
  position: relative;
}

.countdown::before {
  border: 1px solid rgba(245, 244, 239, 0.3);
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
}

.countdown > * {
  position: relative;
}

.countdown > span,
.countdown small {
  font-size: 11px;
}

.countdown small {
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: none;
}

.countdown > div {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.countdown p {
  border-top: 1px solid rgba(245, 244, 239, 0.36);
  color: rgba(245, 244, 239, 0.8);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  margin: 0;
  padding-top: 15px;
  text-transform: uppercase;
}

.countdown b {
  color: var(--paper);
  display: block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .wrap {
    padding-inline: 24px;
  }

  .turn-grid,
  .workshop-grid,
  .offer-grid,
  .fit-grid,
  .host-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
  }

  .manifesto {
    min-height: 380px;
  }

  .turn-photo,
  .live-photo,
  .host-photo {
    justify-self: start;
    max-width: 560px;
  }

  .manifesto span {
    margin-bottom: 72px;
  }

  .system-story article {
    grid-template-columns: 1fr;
  }

  .system-story small {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .sale-rail {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    min-height: 68px;
    padding: 12px 14px;
    text-align: left;
  }

  .sale-rail a {
    flex: 0 0 auto;
    margin: 0;
    min-width: 126px;
  }

  .opening {
    min-height: auto;
    padding-top: 24px;
  }

  .story-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .session-cue {
    align-items: start;
    gap: 12px;
    grid-template-columns: 1fr;
    padding-block: 22px;
  }

  .session-cue strong {
    font-size: 2.15rem;
  }

  .session-cue b {
    font-size: 1.55rem;
  }

  .thesis {
    padding-top: 70px;
  }

  .thesis p {
    font-size: 2.2rem;
  }

  .itch,
  .turn,
  .system,
  .workshop,
  .takeaway,
  .host,
  .fit,
  .offer {
    padding-block: 88px;
  }

  .itch h1,
  .turn-copy h2,
  .section-head h2,
  .workshop h2,
  .fit h2,
  .offer h2,
  .moment h2 {
    font-size: 2.55rem;
    line-height: 0.98;
  }

  .confessions {
    margin-top: 52px;
  }

  .bridge {
    margin-top: 46px;
  }

  .confessions p:nth-child(n) {
    padding-left: 0;
  }

  .manifesto,
  .countdown {
    min-height: 360px;
    padding: 28px;
  }

  .story-photo::after {
    inset: 10px;
  }

  .story-photo figcaption {
    max-width: calc(100% - 20px);
  }

  .reveal {
    padding-block: 84px;
  }

  .reveal::before {
    inset: 16px;
  }

  .reveal h2 {
    font-size: 4rem;
    margin-bottom: 34px;
  }

  .reveal-photo {
    aspect-ratio: 1 / 0.92;
    margin-top: 42px;
  }

  .reveal-photo img {
    object-position: 64% center;
  }

  .host-copy h2 {
    font-size: 2.55rem;
  }

  .reveal-copy,
  .deliverables {
    grid-template-columns: 1fr;
  }

  .deliverables article {
    min-height: auto;
  }

  .moment-inner {
    padding-block: 92px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .button {
    min-width: 0;
    text-align: center;
    width: 100%;
  }

  .offer {
    padding-bottom: 190px;
  }
}
