/* ── BYOND coming soon — cinematic system ─────────────────────────────
   Fonts: Kiona (display) · Tall Films Expanded (credits) · Geist Mono (HUD)
   Palette: #050c0d teal-black ground · #e6f1ef ice text · #46e0cf portal accent
--------------------------------------------------------------------- */

@font-face {
  font-family: 'kiona';
  src: url('../fonts/kiona-regular-webfont.woff2') format('woff2'),
       url('../fonts/kiona-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'tall_films';
  src: url('../fonts/tall_films_expanded-webfont.woff2') format('woff2'),
       url('../fonts/tall_films_expanded-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ferrite_core';
  src: url('../fonts/ferritecore-regular-webfont.woff2') format('woff2'),
       url('../fonts/ferritecore-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root { font-size: 14px; }

body {
  margin: 0;
  /* Portal palette — the hero's teal-black space world, carried site-wide.
     Ground biased teal (not pure black) so it reads as one continuous field
     with the WebGL portal; gold kept as the sharp emphasis accent. */
  --color-bg: #050c0d;
  --color-text: #e6f1ef;
  --color-portal: #5ad9cb;
  --color-portal-deep: #0e2a2b;
  /* Emphasis accent — a brighter, lit portal teal that reads as energy
     against the ice headings. This is now the site-wide accent. */
  --color-accent: #46e0cf;
  /* Legacy accent name, unified to the teal accent so every gate / intro /
     HUD element that referenced gold now renders in the portal blue. */
  --color-gold: var(--color-accent);
  --color-muted: #6f8480;
  --f-display: 'Marcellus', 'Times New Roman', serif;
  --f-hero: 'ferrite_core', 'Michroma', sans-serif;
  --f-body: 'Jost', 'Helvetica Neue', sans-serif;
  --f-credits: 'tall_films', 'Arial Narrow', sans-serif;
  --f-mono: 'Geist Mono', 'Courier New', monospace;
  --anim-time: 3s;
  --anim-delay-first: 1s;
  --anim-delay-second: calc(var(--anim-delay-first) + var(--anim-time));
  --anim-time-total: calc(var(--anim-time) + var(--anim-delay-first)/3 + var(--anim-delay-second));
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: var(--f-mono);
  overflow: hidden;
}

canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100% !important;
  height: 100% !important;
}

.hidden {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* ── Loading ── */
.p5_loading {
  background: var(--color-bg);
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.p5_loading__inner {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gold);
  opacity: .5;
  animation: loaderAnim 0.9s cubic-bezier(0.32, 0.72, 0, 1) infinite alternate forwards;
}
@keyframes loaderAnim {
  to { opacity: 1; transform: rotate(45deg) scale(0.6); }
}

/* ── Buttons ── */
.button {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--f-mono);
}
.button:hover,
.button:focus { outline: none; color: var(--color-text); }
.button:focus-visible { outline: 1px solid var(--color-gold); outline-offset: 4px; }

.button--box {
  pointer-events: auto;
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 1rem 3.5rem;
  margin: 2rem 0 0;
  font-size: 0.86rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .4s cubic-bezier(0.32, 0.72, 0, 1),
              color .4s cubic-bezier(0.32, 0.72, 0, 1),
              letter-spacing .4s cubic-bezier(0.32, 0.72, 0, 1);
}
.button--box:hover,
.button--box:focus {
  background: var(--color-gold);
  color: var(--color-bg);
  letter-spacing: .4em;
}
.button--box:active { transform: scale(.96); }

/* Accent variant — teal to match the portal palette (waitlist + apply CTAs).
   Fills solid on hover with a soft glow so the primary action reads as lit. */
.button--accent {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.button--accent:hover,
.button--accent:focus {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 0 34px rgba(70, 224, 207, .35);
}

/* ── HUD frame ── */
.hud {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
  text-transform: uppercase;
}
.hud::before {
  content: '';
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(242, 239, 233, .12);
  pointer-events: none;
}
.hud__brand {
  position: absolute;
  top: calc(2.4rem + env(safe-area-inset-top, 0px));
  left: calc(2.6rem + env(safe-area-inset-left, 0px));
  font-family: var(--f-display);
  font-size: 1.25rem;
  letter-spacing: .24em;
  color: var(--color-text);
  text-decoration: none;
  pointer-events: auto;
}
.hud__brand span { color: var(--color-gold); }
.hud__sound {
  position: absolute;
  top: calc(2.3rem + env(safe-area-inset-top, 0px));
  right: calc(2.6rem + env(safe-area-inset-right, 0px));
  pointer-events: auto;
}
.toggle__icon {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto;
  fill: currentColor;
}
.toggle__icon--off { display: none; }
.toggle--on .toggle__icon--on { display: none; }
.toggle--on .toggle__icon--off { display: block; }
.start-anim .toggle { pointer-events: auto; }

.hud__corner {
  position: absolute;
  bottom: calc(2.4rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.72rem;
  letter-spacing: .3em;
  color: var(--color-muted);
}
.hud__corner--bl { left: calc(2.6rem + env(safe-area-inset-left, 0px)); }
.hud__corner--br { right: calc(2.6rem + env(safe-area-inset-right, 0px)); }
.hud__pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 .35em;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: .25; }
  50% { opacity: 1; }
}

/* ── Hero stage — sticky; parallaxes up and fades into the portal field ── */
.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 1000;
  will-change: transform, opacity;
}
/* The background layers (portal image + scrim) dissolve toward their bottom
   edge so the hero never meets the atmosphere with a hard line — it melts
   into the same teal-space field below it. .content (title/credits/scroll)
   is a sibling above these and stays fully opaque. */
.hero-stage canvas,
.hero-scrim {
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
}

/* ── Hero scrim — teal-black to match the atmosphere it fades into ── */
.hero-scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 1100;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(5, 12, 13, .40) 0%,
    rgba(5, 12, 13, .12) 30%,
    rgba(5, 12, 13, .34) 55%,
    rgba(5, 12, 13, .74) 80%,
    rgba(5, 12, 13, .92) 100%
  );
}

/* ── Reveal content ── */
.content {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 4rem;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: relative;
  justify-content: flex-end;
  align-items: center;
  z-index: 1200;
  cursor: default;
  text-transform: uppercase;
  pointer-events: none;
  text-align: center;
}
.content a { pointer-events: auto; }

.content__subtitle {
  font-family: var(--f-mono);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: .6em;
  text-indent: .6em;
  color: var(--color-gold);
  margin: 0 0 1.2rem;
}
.content__title {
  font-family: var(--f-hero);
  font-size: clamp(6rem, 23vw, 21rem);
  font-weight: normal;
  letter-spacing: .06em;
  text-indent: .06em;
  line-height: .95;
  margin: 0;
  color: var(--color-text);
  text-shadow: 0 0 80px rgba(194, 169, 106, .35);
}
/* Movie-poster billing block: condensed italic caps, connectors smaller */
.content__credits {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: .03em;
  line-height: 1.55;
  margin: 2.4rem 0 0;
  max-width: 48rem;
  color: var(--color-text);
  text-wrap: balance;
}
.content__credits small {
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: .05em;
  padding: 0 .15em;
}
.content__credits--tag {
  font-size: 1.15rem;
  margin-top: 1rem;
  max-width: 54rem;
  letter-spacing: .14em;
}

.billing {
  display: flex;
  gap: 3.2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}
.billing__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
}
.billing__name {
  font-family: var(--f-credits);
  font-size: 1.5rem;
  letter-spacing: .14em;
  text-indent: .14em;
  line-height: 1;
  white-space: nowrap;
}
.billing__org {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--color-gold);
}

.content__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.4rem;
}
.content__coming {
  font-size: 0.72rem;
  letter-spacing: .5em;
  text-indent: .5em;
  color: var(--color-muted);
}

/* Content rises after the intro cards complete */
.js .content > * { opacity: 0; }
.start-anim .content > * {
  animation: riseIn 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(var(--anim-time-total) + .4s);
}
.start-anim .content__title { animation-delay: calc(var(--anim-time-total) + .55s); }
.start-anim .content__credits { animation-delay: calc(var(--anim-time-total) + .75s); }
.start-anim .content__credits--tag {
  font-size: 1.15rem;
  margin-top: 1rem;
  max-width: 54rem;
  letter-spacing: .14em;
}

.billing {
  display: flex;
  gap: 3.2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}
.billing__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
}
.billing__name {
  font-family: var(--f-credits);
  font-size: 1.5rem;
  letter-spacing: .14em;
  text-indent: .14em;
  line-height: 1;
  white-space: nowrap;
}
.billing__org {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--color-gold);
}

.start-anim .content__scroll { animation-delay: calc(var(--anim-time-total) + .95s); }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ── Screens (gate + intro cards) ── */
.screen {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: var(--color-bg);
  z-index: 1600;
}
.screen--grid {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  justify-items: center;
  align-items: center;
}
.screen--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.start-anim .intro {
  animation: fadeOut 1s var(--anim-time-total) linear forwards;
}
@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }

.intro {
  text-transform: uppercase;
}
.intro__content {
  font-family: var(--f-display);
  font-size: clamp(4rem, 15vw, 15rem);
  letter-spacing: .06em;
  text-indent: .06em;
  line-height: 1.05;
  grid-area: 1 / 1 / 2 / 2;
  text-align: center;
  pointer-events: none;
  margin: 0;
  opacity: 0;
  padding: 0 8vw;
}
.intro__content-line {
  display: block;
  margin: 1.4rem 0;
}
.intro__content-line--small {
  font-family: var(--f-mono);
  font-size: clamp(0.9rem, 1.6vw, 1.5rem);
  letter-spacing: .5em;
  text-indent: .5em;
  color: var(--color-gold);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .intro__content-line--small {
    font-size: 0.78rem;
    letter-spacing: .28em;
    text-indent: .28em;
  }
}
.no-js .intro { display: none; }

.start-anim .intro__content {
  animation: fadeInOut var(--anim-time) var(--anim-delay-first) linear forwards;
}
.start-anim .intro__content:nth-child(2) {
  animation-delay: var(--anim-delay-second);
}
@keyframes fadeInOut {
  0%   { opacity: 0; transform: scale(1); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scale(1.04); pointer-events: none; }
}

/* ── Entry gate ── */
.action { z-index: 1700; text-transform: uppercase; }
/* The eyebrow line sets the lockup width; BETA's letters justify across
   the exact same width, so both lines always align edge to edge. */
.action__lockup {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.action__title {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  line-height: 1;
  margin-bottom: 1.7rem;
}
.action__eyebrow {
  font-family: var(--f-mono);
  font-size: 0.92rem;
  letter-spacing: .5em;
  margin-right: -.5em; /* cancel trailing tracking so edges are flush */
  color: var(--color-gold);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .action__eyebrow { font-size: 0.7rem; letter-spacing: .34em; margin-right: -.34em; }
}
.action .button--box { pointer-events: auto; }
.action__noscript {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}
.start-anim .action {
  transition: opacity .5s;
  opacity: 0;
  pointer-events: none;
}
.start-anim .action .button--box { pointer-events: none; }

/* ── FX overlays ── */
.fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.fx--vignette {
  z-index: 1300;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(3, 3, 3, .78) 100%);
}
.fx--grain {
  z-index: 1400;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -2%); }
  100% { transform: translate(3%, 3%); }
}

/* ── Portal atmosphere — persistent space field behind the scroll site ── */
.space-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 8%, var(--color-portal-deep) 0%, transparent 55%),
    linear-gradient(to bottom, #061214 0%, var(--color-bg) 42%, #03080a 100%);
  will-change: transform;
}
/* Two soft teal light-wells echo the portal ring; the core sits high so it
   reads as the hero's glow continuing downward. */
.space-bg__glow {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  opacity: .5;
}
.space-bg__glow--core {
  top: -18vh;
  width: 90vw;
  height: 90vh;
  background: radial-gradient(circle, rgba(90, 217, 203, .18) 0%, rgba(90, 217, 203, .05) 38%, transparent 68%);
}
.space-bg__glow--rim {
  top: 60vh;
  width: 140vw;
  height: 120vh;
  opacity: .3;
  background: radial-gradient(circle, rgba(90, 217, 203, .10) 0%, transparent 60%);
}
.space-bg__stars {
  position: absolute;
  inset: -20% 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420'%3E%3Cg fill='%23cdeee9'%3E%3Ccircle cx='30' cy='50' r='.7'/%3E%3Ccircle cx='120' cy='20' r='.5'/%3E%3Ccircle cx='210' cy='90' r='.8'/%3E%3Ccircle cx='300' cy='40' r='.5'/%3E%3Ccircle cx='380' cy='110' r='.7'/%3E%3Ccircle cx='70' cy='160' r='.6'/%3E%3Ccircle cx='260' cy='180' r='.5'/%3E%3Ccircle cx='170' cy='230' r='.8'/%3E%3Ccircle cx='350' cy='250' r='.6'/%3E%3Ccircle cx='40' cy='300' r='.7'/%3E%3Ccircle cx='140' cy='330' r='.5'/%3E%3Ccircle cx='250' cy='300' r='.6'/%3E%3Ccircle cx='390' cy='340' r='.8'/%3E%3Ccircle cx='90' cy='390' r='.6'/%3E%3Ccircle cx='300' cy='400' r='.5'/%3E%3Ccircle cx='200' cy='130' r='.4'/%3E%3Ccircle cx='20' cy='220' r='.5'/%3E%3Ccircle cx='330' cy='160' r='.5'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
  will-change: transform;
}

/* ── Scroll site ── */
body { overflow: hidden; }
body.can-scroll { overflow-y: auto; overflow-x: hidden; }
body.can-scroll::-webkit-scrollbar { width: 8px; }
body.can-scroll::-webkit-scrollbar-track { background: var(--color-bg); }
body.can-scroll::-webkit-scrollbar-thumb { background: #262319; }
body.can-scroll::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }

.content__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  margin-top: 3rem;
  font-size: 0.6rem;
  letter-spacing: .5em;
  text-indent: .5em;
  color: var(--color-muted);
  text-transform: uppercase;
}
.content__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollDrop 2s cubic-bezier(0.32, 0.72, 0, 1) infinite;
  transform-origin: top;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

.page {
  position: relative;
  z-index: 1250;
  /* Transparent so the portal atmosphere (and the parallaxing hero above it)
     reads straight through the whole scroll site. */
  background: transparent;
}

/* Sections are even-rhythm stacks; alternating variants push the column to
   one edge so the eye zig-zags down the page. */
.sect {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;               /* even, tighter spacing between every block */
}
.sect > * { margin: 0; }     /* rhythm comes from the flex gap, not margins */

.sect--center { text-align: center; align-items: center; }
.sect--left  { align-items: flex-start; text-align: left; }
.sect--right { align-items: flex-end; text-align: right; }
.gold { color: var(--color-gold); }

/* The opener holds a full viewport so the hero parallax drifts behind the
   "Bitcoin for the rest of us" statement before the numbered points stack up. */
#opener { min-height: 100vh; min-height: 100svh; justify-content: center; }

/* The waitlist closes the page — hold a full viewport and center the CTA so
   the scroll ends on it rather than trailing off into a footer. */
#waitlist { min-height: 100vh; min-height: 100svh; justify-content: center; }

.eyebrow2 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--color-portal);
  text-shadow: 0 0 18px rgba(90, 217, 203, .45);
}
.sect h2 {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: normal;
  letter-spacing: .04em;
  line-height: 1.16;
  text-transform: uppercase;
  max-width: 16ch;
  text-wrap: balance;
  color: var(--color-text);
  text-shadow: 0 0 42px rgba(90, 217, 203, .18);
}
.sect--right h2 { margin-left: auto; }
/* Content emphasis uses the lit portal teal, not gold. */
.sect h2 .gold,
.motto2 .gold { color: var(--color-accent); }
.sect h2 .gold { text-shadow: 0 0 34px rgba(70, 224, 207, .4); }

/* Line-masked heading reveals: each line clips its riser. The tiny bottom
   padding keeps descenders from shearing against the mask edge. */
.sect h2 .line {
  display: block;
  overflow: hidden;
  padding-bottom: .1em;
  margin-bottom: -.1em;
}
.sect h2 .line-inner { display: block; will-change: transform; }
.body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #b3c4c0;
  max-width: 40ch;
  text-wrap: pretty;
}
.sect--right .body { margin-left: auto; }
.body--center { margin-left: auto; margin-right: auto; }
.sect__note {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: .12em;
  line-height: 2;
  color: var(--color-muted);
  max-width: 560px;
  margin: 3.5rem 0 0;
  padding-left: 1.4rem;
  border-left: 1px solid var(--color-gold);
  text-transform: uppercase;
}

/* Hairline-grid cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(242, 239, 233, .14);
  border: 1px solid rgba(242, 239, 233, .14);
  margin-top: 4rem;
}
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #050505;
  padding: 3rem 2.4rem 3.4rem;
  transition: background .6s cubic-bezier(0.32, 0.72, 0, 1);
}
.card:hover { background: #0b0a07; }
.card--gold { background: #0d0a04; }
.card--gold:hover { background: #121006; }
.card__num {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 2rem;
}
.card__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}
.card__desc {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.18rem;
  line-height: 1.8;
  color: #a39c90;
  margin: 0;
  text-wrap: pretty;
}

.motto2 {
  align-self: stretch;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6.2vw, 5.2rem);
  letter-spacing: .1em;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: var(--color-text);
  text-shadow: 0 0 50px rgba(90, 217, 203, .22);
  text-wrap: balance;
  will-change: letter-spacing, opacity, filter;
}

/* Tagline scrub */
.scrub {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 3rem;
}
.scrub__text {
  font-family: var(--f-display);
  /* One flowing statement, wrapping naturally and balanced — so it can run
     large on desktop without a forced line break. */
  font-size: clamp(2.2rem, 5.4vw, 5rem);
  letter-spacing: .02em;
  line-height: 1.24;
  text-transform: uppercase;
  text-align: center;
  max-width: 60rem;
  margin: 0;
  text-wrap: balance;
}
.scrub__text .w { color: rgba(230, 241, 239, .14); }

/* Membership */
.chips { display: flex; flex-wrap: wrap; gap: .8rem; margin: 0 0 5rem; }
.chip {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #b6afa3;
  border: 1px solid rgba(242, 239, 233, .18);
  padding: .8rem 1.5rem;
}
.rows { border-top: 1px solid rgba(242, 239, 233, .14); }
.row {
  display: grid;
  grid-template-columns: 5rem 1fr 1.2fr;
  gap: 2.5rem;
  align-items: baseline;
  padding: 2.6rem 0;
  border-bottom: 1px solid rgba(242, 239, 233, .14);
  transition: padding-left .6s cubic-bezier(0.32, 0.72, 0, 1);
}
.row:hover { padding-left: 1.2rem; }
.row__num {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: .3em;
  color: var(--color-gold);
}
.row__title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
}
.row__desc {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.18rem;
  line-height: 1.8;
  color: #a39c90;
  margin: 0;
}

@media (max-width: 900px) {
  .content__title { font-size: clamp(3rem, 20vw, 12rem); }
  .content__credits { font-size: 0.9rem; max-width: 88vw; }
  .sect { padding: 6.5rem 1.8rem; }
  .scrub { min-height: auto; padding: 3rem 1.8rem; }
  .cards, .cards--4 { grid-template-columns: 1fr 1fr; }
  .row { grid-template-columns: 3rem 1fr; }
  .row__desc { grid-column: 2; }
}
@media (max-width: 560px) {
  .cards, .cards--4 { grid-template-columns: 1fr; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .fx--grain { animation: none; }
  .hud__pulse { animation: none; opacity: 1; }
  body {
    --anim-time: .2s;
    --anim-delay-first: .1s;
  }
  /* No hero parallax to fade the portal out, so give the sections a solid
     ground for guaranteed legibility; the atmosphere still frames the hero. */
  .page { background: var(--color-bg); }
}

/* ── Small screens ── */
@media (max-width: 700px) {
  .intro__content { font-size: 18vw; }
  .hud__brand { top: 2.2rem; left: 2.2rem; font-size: 1rem; }
  .hud__sound { top: 2.1rem; right: 2.2rem; }
  .hud__corner { font-size: 0.6rem; }
  .hud__corner--bl { left: 2.2rem; }
  .hud__corner--br { right: 2.2rem; }
  .content { padding-bottom: 4.5rem; }
  .content__subtitle { font-size: 0.72rem; margin-bottom: 0.8rem; }
  .content__title { font-size: 18vw; }
  .content__credits {
    font-size: 0.64rem;
    line-height: 1.8;
    letter-spacing: .04em;
    margin-top: 1.8rem;
    max-width: 88vw;
  }
  .content__scroll { margin-top: 2rem; }
  .button--box { padding: 0.9rem 2.4rem; }
  /* Scrub tagline: scale to the viewport and let each sentence wrap tightly. */
  .scrub__text { font-size: clamp(1.6rem, 7.4vw, 2.6rem); line-height: 1.3; }
  /* Alternating sections keep their heading offset but read body copy
     naturally at full width on narrow screens. */
  .sect h2 { max-width: 100%; }
  .sect .body { max-width: 100%; }
}
