:root {
  --ink: #120e12;
  --dusk: #1a1418;
  --bay: #2a3138;
  --fog: #b8b4ae;
  --cream: #f4e6d4;
  --cream-soft: #e8d4bc;
  --peach: #e8b48a;
  --apricot: #d98962;
  --rose: #c47b78;
  --bridge: #c24a36;
  --gold: #d4a574;
  --gold-deep: #b8864e;
  --line: rgba(244, 230, 212, 0.16);
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --body: "Cormorant Garamond", "Georgia", serif;
  --script: "Great Vibes", cursive;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1.2rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

/* Atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 88% 8%, rgba(216, 137, 98, 0.22), transparent 58%),
    radial-gradient(ellipse 60% 50% at 8% 92%, rgba(42, 49, 56, 0.55), transparent 62%),
    radial-gradient(ellipse 50% 40% at 50% 40%, rgba(196, 123, 120, 0.08), transparent 70%),
    linear-gradient(180deg, #1a1418 0%, #120e12 48%, #161318 100%);
}

.atmosphere__dusk {
  position: absolute;
  width: 70vw;
  height: 70vw;
  right: -18vw;
  top: -22vw;
  background: radial-gradient(circle, rgba(232, 180, 138, 0.18), rgba(194, 74, 54, 0.05) 46%, transparent 70%);
  animation: pulse-glow 12s ease-in-out infinite;
}

.atmosphere__bay {
  position: absolute;
  width: 55vw;
  height: 40vw;
  left: -10vw;
  bottom: -8vw;
  background: radial-gradient(circle, rgba(106, 122, 136, 0.16), transparent 70%);
  animation: pulse-glow 16s ease-in-out infinite reverse;
}

.atmosphere__bridge {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background:
    repeating-linear-gradient(
      105deg,
      transparent 0 86px,
      rgba(194, 74, 54, 0.35) 86px 87px
    );
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 70%, transparent);
  animation: cables 28s linear infinite;
}

.atmosphere__fog {
  position: absolute;
  height: 38%;
  width: 140%;
  left: -20%;
  background: radial-gradient(ellipse at center, rgba(196, 192, 184, 0.12), transparent 70%);
  filter: blur(28px);
}

.fog-a {
  top: 18%;
  animation: fog-drift 32s ease-in-out infinite;
}

.fog-b {
  bottom: 8%;
  animation: fog-drift 40s ease-in-out infinite reverse;
}

.atmosphere__rays {
  position: absolute;
  right: 4%;
  top: -10%;
  width: 48vw;
  height: 48vw;
  background: conic-gradient(from 210deg, transparent 0 8%, rgba(232, 180, 138, 0.07) 10%, transparent 14%, rgba(244, 230, 212, 0.04) 18%, transparent 22%);
  mix-blend-mode: screen;
  animation: rays 26s linear infinite;
  transform-origin: 70% 30%;
}

#dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atmosphere__grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.45s steps(2) infinite;
}

.atmosphere__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(12, 8, 10, 0.72) 100%);
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.72; }
}

@keyframes cables {
  from { background-position: 0 0; }
  to { background-position: 180px 0; }
}

@keyframes fog-drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6%); }
}

@keyframes rays {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes grain {
  0% { transform: translate(0); }
  20% { transform: translate(-2%, 1%); }
  40% { transform: translate(1%, -2%); }
  60% { transform: translate(-1%, 2%); }
  80% { transform: translate(2%, -1%); }
  100% { transform: translate(0); }
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 138, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.is-fine .cursor-glow {
  opacity: 1;
}

/* Type */
.kicker {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.script {
  display: block;
  font-family: var(--script);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cream);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
}

.flourish {
  width: min(240px, 70%);
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.1;
  margin: 0.8rem 0 1.4rem;
}

.flourish path:first-child {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: draw-line 2.4s ease forwards 0.4s;
}

.flourish__heart {
  fill: rgba(196, 123, 120, 0.85);
  stroke: none;
  transform-origin: 124px 12px;
  animation: heart-soft 3.6s ease-in-out infinite;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes heart-soft {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.16); opacity: 1; }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.6rem;
}

.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.section-head .flourish {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(212, 165, 116, 0.45);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn--gold {
  background: linear-gradient(180deg, #e8c49a, #c48a52);
  color: #2a1a12;
  box-shadow: 0 10px 30px rgba(196, 138, 82, 0.22);
}

.btn--gold img[src*="x.svg"] {
  filter: brightness(0);
}

.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.4) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 4.5s ease-in-out infinite;
}

.btn--ghost {
  background: rgba(244, 230, 212, 0.04);
  color: var(--cream);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(196, 138, 82, 0.28);
}

@keyframes shimmer {
  0%, 70% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 4.5vw;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}

.nav.is-stuck {
  background: rgba(18, 14, 18, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.55);
  box-shadow: 0 0 0 3px rgba(18, 14, 18, 0.4), 0 0 18px rgba(212, 165, 116, 0.2);
  animation: mark-breathe 5s ease-in-out infinite;
}

.nav__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

@keyframes mark-breathe {
  0%, 100% { box-shadow: 0 0 0 3px rgba(18, 14, 18, 0.4), 0 0 14px rgba(212, 165, 116, 0.16); }
  50% { box-shadow: 0 0 0 3px rgba(18, 14, 18, 0.4), 0 0 26px rgba(232, 180, 138, 0.38); }
}

.nav__word {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__word em {
  display: block;
  font-family: var(--script);
  font-style: normal;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--peach);
  line-height: 1;
}

.nav__links {
  display: flex;
  gap: 1.8rem;
}

.nav__links a {
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-soft);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(244, 230, 212, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.icon-link img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(1.15);
}

.icon-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.nav__toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s ease, top 0.3s ease;
}

.nav__toggle span:first-child { top: 16px; }
.nav__toggle span:last-child { top: 24px; }

.nav.is-open .nav__toggle span:first-child { top: 20px; transform: rotate(35deg); }
.nav.is-open .nav__toggle span:last-child { top: 20px; transform: rotate(-35deg); }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 8.5rem 5vw 6rem;
  display: flex;
  align-items: center;
}

.hero__film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.7) brightness(0.45);
  transition: opacity 1s ease;
}

.hero__film.is-on {
  opacity: 0.28;
}

.hero__spine {
  position: absolute;
  left: 1.4vw;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: rgba(244, 230, 212, 0.38);
  white-space: nowrap;
}

.hero__grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4vw;
  align-items: center;
}

.hero__copy h1 .script {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.92;
  text-shadow: 0 8px 40px rgba(18, 10, 12, 0.45);
}

.hero__copy h1 .symbol {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.08em;
  color: var(--peach);
}

.lede {
  max-width: 34rem;
  font-size: 1.28rem;
  color: rgba(244, 230, 212, 0.82);
  font-style: italic;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 1.6rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__meta img {
  width: 16px;
  height: 16px;
}

.ca-chip {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 230, 212, 0.05);
  color: var(--cream-soft);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.ca-chip:hover,
.ca-chip.is-copied {
  border-color: var(--gold);
  background: rgba(212, 165, 116, 0.1);
}

.ca-chip em {
  font-family: var(--serif);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.ca-chip span {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 16rem;
}

.ca-chip i {
  font-style: normal;
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--peach);
}

.locket {
  position: relative;
  width: min(460px, 100%);
  margin: 0 auto;
}

.locket__orbit,
.locket__orbit--slow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 165, 116, 0.28);
  animation: orbit 22s linear infinite;
}

.locket__orbit--slow {
  inset: -36px;
  border-style: dotted;
  animation-duration: 36s;
  animation-direction: reverse;
}

.locket__orbit::before,
.locket__orbit--slow::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 12px var(--peach);
  top: 12%;
  left: 18%;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.locket__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 46% 46%;
  overflow: hidden;
  border: 1px solid rgba(232, 180, 138, 0.7);
  box-shadow:
    0 0 0 10px rgba(18, 14, 18, 0.55),
    0 0 0 11px rgba(212, 165, 116, 0.35),
    0 30px 70px rgba(0, 0, 0, 0.45);
  animation: kenburns-wrap 18s ease-in-out infinite;
}

.locket__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  animation: kenburns 18s ease-in-out infinite;
  filter: saturate(0.92) contrast(1.05);
}

.locket__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 32%, transparent 60%, rgba(232, 180, 138, 0.12));
  mix-blend-mode: screen;
  pointer-events: none;
  animation: shine-sweep 7s ease-in-out infinite;
}

.locket__caption {
  text-align: center;
  margin-top: 1.3rem;
  font-family: var(--script);
  font-size: 1.7rem;
  color: var(--gold);
}

@keyframes kenburns {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.08) translateY(-2%); }
}

@keyframes kenburns-wrap {
  0%, 100% { box-shadow: 0 0 0 10px rgba(18, 14, 18, 0.55), 0 0 0 11px rgba(212, 165, 116, 0.35), 0 30px 70px rgba(0, 0, 0, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(18, 14, 18, 0.55), 0 0 0 11px rgba(232, 180, 138, 0.55), 0 30px 80px rgba(194, 74, 54, 0.18); }
}

@keyframes shine-sweep {
  0%, 100% { opacity: 0.35; transform: translateX(-6%); }
  50% { opacity: 0.7; transform: translateX(6%); }
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fog);
}

.scroll-cue i {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: drop 1.8s ease-in-out infinite;
}

@keyframes drop {
  0% { transform: scaleY(0.4); opacity: 0; transform-origin: top; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: top; }
}

/* Shared section */
.about,
.howto,
.chart {
  position: relative;
  z-index: 1;
  padding: 7.5rem 5vw;
}

/* About */
.about__layout {
  width: min(1080px, 100%);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.about__quote {
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--cream);
}

.about__quote footer {
  margin-top: 1.4rem;
  font-family: var(--script);
  font-size: 1.8rem;
  font-style: normal;
  color: var(--peach);
}

.about__prose p + p {
  margin-top: 1.1rem;
}

.about__prose p {
  color: rgba(244, 230, 212, 0.78);
}

.about__pillars {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.pillar {
  padding: 1.8rem 1.5rem 1.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 230, 212, 0.04), rgba(244, 230, 212, 0.015));
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: line-run 5s linear infinite;
}

.pillar span {
  font-family: var(--serif);
  letter-spacing: 0.2em;
  color: var(--bridge);
  font-size: 0.8rem;
}

.pillar h3 {
  margin: 0.7rem 0 0.6rem;
  font-size: 1.7rem;
}

.pillar p {
  color: rgba(244, 230, 212, 0.7);
  font-size: 1.08rem;
}

@keyframes line-run {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* How to buy */
.chapters {
  list-style: none;
  width: min(860px, 100%);
  margin: 0 auto;
  position: relative;
}

.chapters::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--rose), transparent);
}

.chapter {
  display: grid;
  grid-template-columns: 56px 86px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem 0;
  position: relative;
}

.chapter__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  text-align: center;
}

.chapter__seal {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(18, 14, 18, 0.7);
  border: 1px solid rgba(212, 165, 116, 0.35);
  box-shadow: 0 0 0 8px rgba(18, 14, 18, 0.35);
}

.chapter__seal img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.chapter__body h3 {
  font-size: 1.7rem;
  margin-bottom: 0.25rem;
}

.chapter__body p {
  color: rgba(244, 230, 212, 0.72);
}

.chapter__body a {
  display: inline-block;
  margin-top: 0.55rem;
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--peach);
  border-bottom: 1px solid rgba(232, 180, 138, 0.35);
}

/* Chart */
.chart__out {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.chart__out img {
  width: 16px;
  height: 16px;
}

.chart__window {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.chart__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.4);
  box-shadow:
    0 0 0 12px rgba(18, 14, 18, 0.45),
    0 30px 80px rgba(0, 0, 0, 0.35);
  background: #0b0b0f;
}

.chart__frame::before,
.chart__frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.chart__frame::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.chart__frame::after {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

.chart__frame iframe {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
}

/* Join us */
.join {
  position: relative;
  z-index: 1;
  padding: 2rem 5vw 7rem;
}

.join__still {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(232, 180, 138, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.join__still > img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.05) contrast(1.04);
  animation: still-drift 22s ease-in-out infinite;
}

@keyframes still-drift {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

.join__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(12, 8, 10, 0.72) 100%);
  pointer-events: none;
}

.join__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: none;
  padding: 2.2rem 6% 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.join__panel .script {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.join__panel p:not(.kicker) {
  margin-bottom: 1.1rem;
  max-width: 26rem;
  color: rgba(244, 230, 212, 0.88);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 2.4rem 5vw 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  border-top: 1px solid var(--line);
  background: rgba(12, 8, 10, 0.35);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer__brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  border: 1px solid rgba(212, 165, 116, 0.4);
}

.footer__brand strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
}

.footer__brand span {
  color: var(--gold);
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3rem;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-soft);
}

.footer__links img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.footer__note {
  font-size: 0.95rem;
  color: var(--fog);
  text-align: right;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.hero .reveal,
.reveal.in-view {
  animation: rise 1s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid,
  .about__layout,
  .about__pillars,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7.2rem;
  }

  .hero__spine {
    display: none;
  }

  .nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    top: 72px;
    display: none;
    flex-direction: column;
    padding: 1.4rem 6vw 1.8rem;
    background: rgba(18, 14, 18, 0.94);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .nav__actions .btn {
    display: none;
  }

  .chapter {
    grid-template-columns: 40px 70px 1fr;
  }

  .chapters::before {
    left: 20px;
  }

  .join__panel {
    align-items: flex-start;
    text-align: left;
  }

  .footer__note {
    text-align: left;
  }

  .chart__frame iframe {
    height: 480px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1.08rem;
  }

  .icon-link:nth-child(2) {
    display: none;
  }

  .chapter {
    grid-template-columns: 64px 1fr;
  }

  .chapter__num {
    display: none;
  }

  .chapters::before {
    left: 32px;
  }

  .hero__copy h1 .script {
    font-size: 3rem;
  }

  .join__still > img {
    height: 78vh;
  }
}
