:root {
  --paper: #f3eee4;
  --ink: #111;
  --red: #ff4b3e;
  --blue: #1d46f0;
  --pink: #ffc7dc;
  --line: rgba(17, 17, 17, .18);
  --muted: #625e56;
}

* { box-sizing: border-box; }
html, body { width: 100%; max-width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
a, button { color: inherit; font: inherit; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
a { text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
a:active, button:active { transform: scale(.97); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.nav {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 238, 228, .94);
  backdrop-filter: blur(16px);
}
.nav-inner {
  min-height: 72px;
  max-width: 1440px;
  margin: auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  font-size: 13px;
}
.wordmark { min-height: 44px; display: inline-flex; align-items: center; justify-self: start; font-size: 18px; font-weight: 800; letter-spacing: -.055em; }
.desktop-nav { display: flex; gap: 32px; }
.desktop-nav a, .mobile-nav a { min-height: 44px; display: inline-flex; align-items: center; }
.desktop-nav a:hover, .mobile-nav a:hover { color: var(--blue); }
.edition-label {
  justify-self: end;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.menu-button { min-width: 44px; min-height: 44px; display: none; padding: 0; border: 0; background: transparent; }
.mobile-nav { padding: 12px 20px 20px; border-top: 1px solid var(--line); background: var(--paper); }
.mobile-nav a { display: flex; }

.signal-bar {
  min-height: 34px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}
.hero { min-height: 760px; display: grid; grid-template-columns: minmax(0, 57fr) minmax(0, 43fr); border-bottom: 1px solid var(--line); }
.hero-copy {
  padding: clamp(60px, 9vw, 132px) clamp(32px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
h1 { max-width: 850px; margin-bottom: 0; font-size: clamp(54px, 7vw, 104px); letter-spacing: -.065em; line-height: .91; }
.lead { max-width: 670px; margin: 34px 0 0; color: #49463f; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; }
.actions { margin-top: 42px; display: flex; align-items: center; gap: 26px; }
.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { border-color: var(--blue); background: var(--blue); }
.text-link, .source-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}
.hero-mark {
  min-height: 760px;
  display: grid;
  position: relative;
  overflow: hidden;
  place-items: center;
  background: var(--red);
}
.hero-mark:before, .hero-mark:after { position: absolute; border: 2px solid var(--ink); border-radius: 50%; content: ""; }
.hero-mark:before { width: 68%; aspect-ratio: 1; }
.hero-mark:after { width: 44%; aspect-ratio: 1; background: var(--pink); }
.hero-mark span {
  z-index: 2;
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(74px, 12vw, 180px);
  font-style: italic;
  letter-spacing: -.14em;
}
.hero-mark span:last-child { transform: translate(.42em, .35em); color: #fff; }

.scroll-story {
  min-height: 320vh;
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  position: relative;
  border-bottom: 1px solid var(--line);
  background: #151515;
  color: #fff;
}
.story-copy { min-height: 100vh; padding: 120px clamp(32px, 7vw, 104px); position: sticky; top: 72px; align-self: start; }
.story-copy h2 { max-width: 720px; margin-bottom: 30px; font-size: clamp(42px, 5vw, 72px); letter-spacing: -.055em; line-height: 1; }
.story-copy > p { max-width: 570px; color: rgba(255, 255, 255, .68); font-size: 17px; line-height: 1.65; }
.beats { margin: 68px 0 0; padding: 0; display: grid; list-style: none; }
.beats li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .44);
  font-size: 14px;
  transition: color .18s;
}
.beats li.active { color: #fff; }
.sticky-stage {
  height: calc(100vh - 72px);
  position: sticky;
  top: 72px;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  background: var(--pink);
}
.chat-card {
  width: min(74%, 560px);
  min-height: 650px;
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--ink);
  border-radius: 34px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 54px rgba(17, 17, 17, .2);
  transform: rotate(-2deg);
}
.chat-head { padding: 12px 14px 20px; display: grid; gap: 5px; border-bottom: 1px solid var(--line); text-align: center; }
.chat-head span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.chat-head b { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; }
.messages { padding: 34px 10px 10px; display: flex; flex-direction: column; gap: 13px; }
.messages p {
  width: fit-content;
  max-width: 84%;
  margin: 0;
  padding: 13px 16px;
  border-radius: 21px;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .32s ease, transform .32s ease;
}
.messages p.visible { opacity: 1; transform: translateY(0); }
.incoming { align-self: flex-start; border-bottom-left-radius: 5px !important; background: #fff; }
.outgoing { align-self: flex-end; border-bottom-right-radius: 5px !important; background: var(--blue); color: #fff; }
.final-message { background: var(--red); color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 19px !important; }
.stage-caption {
  margin: 0;
  position: absolute;
  right: 26px;
  bottom: 22px;
  color: rgba(17, 17, 17, .64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.source-section { padding: 130px max(32px, calc((100vw - 1376px) / 2)); border-bottom: 1px solid var(--line); background: #fffaf1; }
.source-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 72px; }
.source-heading h2, .section-heading h2, .method h2 { margin-bottom: 0; font-size: clamp(40px, 5vw, 68px); letter-spacing: -.055em; line-height: 1; }
.source-heading p, .section-heading p { max-width: 620px; margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.source-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.source-grid article { min-height: 220px; padding: 28px 26px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }
.source-grid article:last-child { border-right: 0; }
.source-grid strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(36px, 4vw, 58px); font-weight: 400; letter-spacing: -.05em; }
.source-grid span { max-width: 290px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.source-links { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 30px; }

.section { max-width: 1440px; margin: auto; padding: 128px 32px 140px; }
.section-heading { margin-bottom: 56px; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 72px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { display: flex; flex-direction: column; border: 1px solid var(--line); background: rgba(255, 255, 255, .28); }
.product-art { min-height: 460px; padding: 34px; display: flex; position: relative; overflow: hidden; flex-direction: column; justify-content: space-between; }
.product-red .product-art { background: var(--red); }
.product-black .product-art { background: var(--ink); color: #fff; }
.product-blue .product-art { background: var(--blue); color: #fff; }
.poster-art span { font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 3.6vw, 54px); letter-spacing: -.055em; line-height: .96; }
.poster-art small, .pack-art small { align-self: flex-end; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.deck-art span, .pack-art span { font-size: 84px; font-weight: 800; letter-spacing: -.08em; }
.deck-art strong, .pack-art strong { font-size: 34px; line-height: .9; }
.product-meta { min-height: 98px; padding: 20px; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); font-size: 13px; }
.product-meta div { display: grid; gap: 8px; }
.product-meta div span { color: var(--muted); font-size: 11px; }
.product-action {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-action:hover { background: var(--ink); color: #fff; }
.truth-note { max-width: 780px; margin: 28px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.method {
  padding: 128px max(32px, calc((100vw - 1376px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  gap: 70px;
  border-top: 1px solid var(--line);
  background: var(--pink);
}
.method-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.method-grid article { padding: 24px 20px 10px; border-right: 1px solid rgba(17, 17, 17, .25); }
.method-grid article:last-child { border-right: 0; }
.method-grid span { font-size: 11px; font-weight: 700; }
.method-grid h3 { margin: 74px 0 18px; font-size: 25px; }
.method-grid p { color: #514d46; font-size: 13px; line-height: 1.6; }

footer {
  padding: 80px max(32px, calc((100vw - 1376px) / 2));
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 70px;
  background: var(--ink);
  color: #fff;
}
footer > div { display: grid; align-content: start; gap: 8px; font-size: 12px; }
footer > div > span:first-child { color: rgba(255, 255, 255, .52); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
footer p { max-width: 480px; color: rgba(255, 255, 255, .62); line-height: 1.6; }
footer a { min-height: 44px; display: inline-flex; align-items: center; }
.wordmark-light { color: #fff; }

.interest-page { min-height: 100vh; display: grid; padding: 32px; place-items: center; background: var(--pink); }
.interest-card { width: min(760px, 100%); padding: clamp(42px, 8vw, 92px); border: 1px solid var(--ink); background: var(--paper); }
.interest-card h1 { font-size: clamp(48px, 8vw, 84px); }
.interest-card p { max-width: 560px; margin: 30px 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.recorded-object { padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink) !important; font-weight: 700; }

@media (max-width: 900px) {
  .nav-inner { min-height: 64px; padding: 0 20px; }
  .menu-button { display: flex; align-items: center; }
  .desktop-nav { display: none; }
  .wordmark { justify-self: center; }
  .edition-label { font-size: 0; }
  .edition-label:after { font-size: 10px; content: "001"; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; padding: 76px 24px; }
  .hero-mark { min-height: 520px; }
  .scroll-story { min-height: 300vh; display: block; }
  .story-copy { min-height: auto; padding: 90px 24px 44px; position: relative; top: auto; }
  .beats { margin-top: 42px; }
  .sticky-stage { height: calc(100vh - 64px); top: 64px; }
  .chat-card { width: min(86%, 520px); min-height: 600px; }
  .source-section { padding: 92px 20px; }
  .source-heading, .section-heading { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .source-grid { grid-template-columns: 1fr; }
  .source-grid article { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 92px 20px 100px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-art { min-height: 410px; }
  .method { padding: 92px 20px; grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { border-right: 0; border-bottom: 1px solid rgba(17, 17, 17, .25); }
  .method-grid h3 { margin-top: 34px; }
  footer { padding: 70px 24px; grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 420px) {
  .actions, .source-links { align-items: flex-start; flex-direction: column; gap: 14px; }
  .chat-card { width: 90%; min-height: 560px; padding: 12px; border-radius: 26px; }
  .messages { padding: 25px 4px 8px; }
  .messages p { font-size: 14px; }
  .stage-caption { right: 16px; bottom: 14px; }
}

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