/* STILLPOINT — ultra minimal */

/* ─── Entry gate ─── */
.gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #050505;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s ease;
}
.gate.fade { opacity: 0; pointer-events: none; }
.gate-mark {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.65em;
  text-transform: lowercase;
  color: #f4f4f2;
}
.gate-tag {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 36px);
  color: rgba(244, 244, 242, 0.6);
}
.gate-cta {
  margin-top: 14px;
  background: transparent;
  border: 1px solid rgba(244,244,242,0.4);
  color: #f4f4f2;
  padding: 18px 56px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: lowercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.gate-cta:hover { background: #f4f4f2; color: #050505; border-color: #f4f4f2; }
.gate-fine {
  margin-top: 22px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(244, 244, 242, 0.32);
  text-transform: lowercase;
}

:root {
  --bg: #050505;
  --ink: #f4f4f2;
  --ink-mute: rgba(244, 244, 242, 0.55);
  --ink-faint: rgba(244, 244, 242, 0.18);
  --serif: "Inter Tight", "Inter", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Inter Tight", "Inter", sans-serif;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { overflow-x: hidden; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
}
.brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.9;
}
.sound-toggle {
  background: transparent;
  border: 1px solid rgba(244,244,242,0.18);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.95;
  padding: 8px 14px;
  transition: opacity 0.2s, border-color 0.3s, background 0.3s;
  animation: soundPulse 2.4s ease-in-out infinite;
}
.sound-toggle:hover { background: rgba(244,244,242,0.06); border-color: rgba(244,244,242,0.5); }
body.audio-started .sound-toggle { animation: none; border-color: transparent; padding: 0; }
.sound-toggle.muted { opacity: 0.4; }
.sound-toggle.muted::before { content: "no "; }
@keyframes soundPulse {
  0%, 100% { border-color: rgba(244,244,242,0.18); }
  50%      { border-color: rgba(244,244,242,0.55); }
}

/* ─── Hero (sticky 100vh; stage fills it, bay slides up from below) ─── */
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}
canvas#frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 18%, transparent 70%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.4) 100%);
}

/* Depth indicator: subtle, bottom-right */
.depth {
  position: absolute;
  bottom: 28px;
  right: 32px;
  z-index: 5;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}

/* ─── Beats — positioned in negative space ─── */
.beats {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.beat {
  position: absolute;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.beat.active { opacity: 1; transform: translateY(0); }

/* All beats live in the left negative-space column of the stage (62vh tall) */
.beat.tl { top: 14%; left: 7vw; max-width: 32vw; }
.beat.tr { top: 14%; right: 7vw; text-align: right; max-width: 32vw; }
.beat.ml { top: 50%; left: 7vw; transform: translateY(-50%) translateY(6px); max-width: 32vw; }
.beat.ml.active { transform: translateY(-50%); }
.beat.bl { bottom: 14%; left: 7vw; max-width: 32vw; }

/* Typography — brutalist, sized for 62vh stage */
.beat p {
  font-family: var(--display);
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(24px, 3.8vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
  max-width: 14ch;
}

/* End card — brutalist, left-anchored, asymmetric to honor lotus subject */
.end-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  pointer-events: auto;
  text-align: left;
}
.end-mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 4.6vw, 68px);
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--ink);
  text-transform: uppercase;
}
.end-pillars {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(11px, 1.05vw, 14px);
  letter-spacing: 0.36em;
  color: var(--ink);
  text-transform: uppercase;
  margin-top: 2px;
}
.end-pillars .dot { opacity: 0.4; font-weight: 400; }
.end-tag {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.end-cta {
  margin-top: 14px;
  background: var(--ink);
  border: 0;
  color: var(--bg);
  padding: 14px 36px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
}
.end-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.end-cta.big { padding: 18px 44px; font-size: 12px; }

/* Hint */
.hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--ink-mute);
  text-transform: lowercase;
  transition: opacity 0.4s;
}
.hint.fade { opacity: 0; }

/* Spacer drives scroll length. Larger = slower, more contemplative descent. */
.scroll-spacer { height: 1020vh; }

/* ─── Bay: slides up from bottom as scroll progresses ─── */
.bay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34vh;
  background: #050505;
  border-top: 1px solid rgba(244,244,242,0.10);
  display: flex;
  flex-direction: column;
  padding: 22px 32px 28px;
  gap: 16px;
  transform: translateY(100%);
  will-change: transform, height;
  z-index: 8;
  transition: height 0.55s cubic-bezier(0.65,0,0.35,1), padding 0.4s ease;
}

/* Expanded state: bay fills viewport when a session is selected */
body.session-open .bay {
  height: 100vh;
  padding: 28px 32px 40px;
  border-top: 0;
}
body.session-open .hero { z-index: 1; }
body.session-open .nav { opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.bay-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: baseline;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}
.bay-mark {
  font-size: 9px;
  letter-spacing: 0.6em;
  color: var(--ink);
  text-align: left;
}
.bay-back {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: right;
  opacity: 0.85;
  padding: 0;
  display: none;
}
.bay-back:hover { opacity: 1; }
body.session-open .bay-back { display: inline-block; }
body.session-open .bay-spec { display: none; }
.bay-h {
  font-size: 11px;
  letter-spacing: 0.42em;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
}
.bay-spec {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--ink-mute);
  text-align: right;
}
.choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  flex: 1;
  min-height: 0;
}
.choice {
  background: transparent;
  border: 1px solid rgba(244,244,242,0.14);
  color: var(--ink);
  padding: 12px 14px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, padding 0.4s ease, color 0.3s;
}

/* Expanded state — choices become a compact horizontal strip at the top */
body.session-open .choices {
  flex: 0 0 auto;
}
body.session-open .choice {
  padding: 10px 14px;
  flex-direction: row;
  gap: 10px;
}
body.session-open .choice-num {
  margin-right: 4px;
}
body.session-open .choice-when { display: none; }
body.session-open .choice-name { font-size: 14px; letter-spacing: 0.04em; }
.choice.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.choice.active .choice-num,
.choice.active .choice-when { color: rgba(5,5,5,0.55); }
.choice:hover {
  background: rgba(244,244,242,0.05);
  border-color: rgba(244,244,242,0.5);
  transform: translateY(-2px);
}
.choice-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.42em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.choice-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--ink);
  text-transform: uppercase;
}
.choice-when {
  font-family: var(--display);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.42em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ─── Session panel (lives inside the bay; appears when a choice is selected) ─── */
.session-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 4vh 4vw 0;
}
.session-panel[hidden] { display: none !important; }
.session-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.session-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.6em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.session-panel .session-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(80px, 12vw, 200px);
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--ink);
}
.session-blurb {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 48ch;
}
.session-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.session-timer {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.01em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.session-play {
  background: var(--ink);
  border: 0;
  color: var(--bg);
  padding: 18px 56px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
}
.session-play:hover { opacity: 0.9; transform: translateY(-1px); }
.session-back {
  position: absolute;
  top: 24px;
  left: 32px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.85;
}
.session-back:hover { opacity: 1; }
.session-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.session-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.6em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.session-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(64px, 9vw, 140px);
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--ink);
  text-transform: uppercase;
}
.session-when {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--ink);
  text-transform: uppercase;
}
.session-timer {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.01em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
  margin-top: 14px;
}
.session-play {
  margin-top: 18px;
  background: var(--ink);
  border: 0;
  color: var(--bg);
  padding: 16px 44px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
}
.session-play:hover { opacity: 0.9; transform: translateY(-1px); }

@media (max-width: 720px) {
  /* ─── Nav ─── */
  .nav { padding: 14px 18px; }
  .brand, .sound-toggle { font-size: 10px; letter-spacing: 0.32em; }

  /* ─── Beats live in the top black band (above the video letterbox) ─── */
  .beat {
    left: 0 !important;
    right: 0 !important;
    top: 11vh !important;
    bottom: auto !important;
    transform: translateY(6px) !important;
    max-width: none !important;
    width: 100%;
    padding: 0 6vw;
    text-align: center;
  }
  .beat.active { transform: translateY(0) !important; }
  .beat p {
    font-size: clamp(15px, 4.6vw, 22px);
    max-width: 100%;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 auto;
  }
  .beat.tr { text-align: center; }

  .hint { font-size: 9px; bottom: 18px; letter-spacing: 0.42em; }
  .depth { bottom: 18px; right: 18px; font-size: 9px; letter-spacing: 0.32em; }

  .vignette {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 14%, transparent 72%, rgba(0,0,0,0.92) 100%),
      radial-gradient(ellipse at center, transparent 38%, rgba(0,0,0,0.5) 100%);
  }

  /* ─── Bay (mobile) ─── vertical stack of 3 horizontal cards ─── */
  .bay {
    height: 42vh;
    padding: 14px 16px 18px;
    gap: 12px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .bay-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .bay-mark { font-size: 9px; letter-spacing: 0.42em; }
  .bay-h { font-size: 9px; letter-spacing: 0.32em; }
  .bay-spec { display: none; }
  .bay-back { font-size: 9px; letter-spacing: 0.32em; }

  /* Single-column vertical stack — each card is a full-width row */
  .choices {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 8px;
    flex: 1;
    min-height: 0;
  }
  .choice {
    flex: 1;
    min-height: 0;
    padding: 0 18px;
    border: 1px solid rgba(244,244,242,0.18);
    background: transparent;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: background 0.2s, border-color 0.2s;
  }
  .choice:active {
    background: rgba(244,244,242,0.06);
    border-color: rgba(244,244,242,0.4);
  }
  .choice-num {
    display: inline-block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.42em;
    color: var(--ink-mute);
    grid-column: 1;
  }
  .choice-name {
    font-size: clamp(20px, 5.6vw, 26px);
    letter-spacing: -0.01em;
    line-height: 1;
    grid-column: 2;
    margin: 0;
  }
  .choice-when {
    font-size: 9px;
    letter-spacing: 0.32em;
    grid-column: 3;
    margin: 0;
    color: var(--ink-mute);
    text-align: right;
  }

  /* ─── Session expanded (mobile) ─── compact strip at top, room below */
  body.session-open .bay { padding: 16px 14px 22px; height: 100vh; }
  body.session-open .choices {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 6px;
  }
  body.session-open .choice {
    flex: 1;
    padding: 10px 6px;
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
  }
  body.session-open .choice-num,
  body.session-open .choice-when { display: none; }
  body.session-open .choice-name {
    font-size: 13px;
    letter-spacing: 0.04em;
    grid-column: 1;
    text-align: center;
  }

  .session-panel { gap: 18px; padding: 3vh 5vw 0; }
  .session-panel .session-name { font-size: clamp(56px, 16vw, 96px); }
  .session-blurb { font-size: 13px; max-width: 32ch; line-height: 1.5; }
  .session-tag { font-size: 9px; letter-spacing: 0.42em; }
  .session-timer { font-size: clamp(30px, 9vw, 44px); }
  .session-play { padding: 14px 32px; font-size: 11px; letter-spacing: 0.32em; }
  .session-cta { gap: 16px; }
}

/* ─── Choose screen — symmetric three-column picker ─── */
.choose {
  position: relative;
  z-index: 2;
  background: #050505;
  min-height: 100vh;
  padding: 12vh 32px 8vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-inner {
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.choose-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.65em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.85;
}
.choose-h {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 80px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ink);
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
/* Legacy choose-screen rules — scoped to .choose-inner so they don't fight
   the bay's .choices/.choice selectors. The current HTML doesn't render
   .choose-inner, so these are effectively dormant; kept in case the legacy
   layout is ever revived. */
.choose-inner .choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.choose-inner .choice {
  background: transparent;
  border: 1px solid rgba(244,244,242,0.16);
  color: var(--ink);
  padding: 36px 28px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.choose-inner .choice:hover {
  background: rgba(244,244,242,0.04);
  border-color: rgba(244,244,242,0.4);
  transform: translateY(-2px);
}
.choose-inner .choice-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.choose-inner .choice-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}
.choose-inner .choice-when {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--ink);
  text-transform: uppercase;
  margin-top: 2px;
}
.choose-inner .choice-time {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.choose-inner .choice-d {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin-top: 14px;
}
.choose-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.choose-spec {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  text-align: center;
}
.choose-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--ink);
  text-transform: uppercase;
  margin-top: 2px;
}
/* legacy manifesto kept */
.manifesto {
  position: relative;
  z-index: 2;
  background: #0a0a0a;
  padding: 22vh 32px 24vh;
}
.man-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.lead {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.lead em { font-style: normal; color: var(--ink-mute); }
.body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mute);
  font-weight: 300;
  max-width: 56ch;
}
.body.strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  line-height: 1.5;
  color: var(--ink);
  text-transform: uppercase;
}

/* Three-pillar grid */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 12px 0 8px;
  border-top: 1px solid rgba(244,244,242,0.16);
  border-bottom: 1px solid rgba(244,244,242,0.16);
  padding: 32px 0;
}
.pillar { display: flex; flex-direction: column; gap: 10px; }
.pillar-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink);
  text-transform: uppercase;
}
.pillar-h {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.pillar-d {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
}
@media (max-width: 720px) {
  .pillars { grid-template-columns: 1fr; gap: 22px; padding: 24px 0; }
}

@media (max-width: 720px) {
  .nav { padding: 18px 20px; }
  .beat.tl, .beat.tr, .beat.ml, .beat.bl { max-width: 80vw; left: 8vw; right: 8vw; }
  .beat.tr { text-align: left; }
  .depth { bottom: 18px; right: 20px; }
}
