/* ────────────────────────────────────────────────────────────
   ✺ about page -- /about
   uses ../style.css for shared tokens, nav, footer, grain, etc.
   this file only adds about-specific layout and type
   ──────────────────────────────────────────────────────────── */

/* ── hero with Unicorn Studio WebGL ── */

.about-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

/* Unicorn Studio native embed -- the script fills this div with its own canvas,
   living in the page DOM, so cursor events are native. Explicit pixel dimensions
   are set via inline style + JS (per Unicorn Studio docs). */
.about-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* text layer lets cursor pass through so the flashlight effect works */
.about-hero__content {
  position: relative;
  z-index: 3;
  pointer-events: none;
  min-height: 100svh;
  padding: clamp(140px, 18vh, 200px) clamp(24px, 5vw, 72px) 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}
/* subtle vignette behind the hero copy -- pseudo-element so it doesn't block events */
.about-hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 70% at 20% 100%, oklch(0.07 0.01 270 / 0.55) 0%, transparent 60%),
    linear-gradient(180deg, transparent 55%, oklch(0.07 0.01 270 / 0.45) 100%);
  z-index: -1;
}
.about-hero__content a,
.about-hero__content button {
  pointer-events: auto;
}

.about-hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(64px, 13vw, 200px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  text-wrap: balance;
  text-align: left;
  margin: 0 0 -0.15em -0.06em;
  padding: 14px 0 0.45em 0;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.about-hero__title .line {
  display: block;
}
.about-hero__title em {
  display: inline-block;
  font-style: italic;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.8px var(--text);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  padding-right: 0.08em;
}

.about-hero__lede {
  margin-top: 28px;
  max-width: 52ch;
  color: var(--text);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  text-wrap: pretty;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* scroll cue pinned to bottom of hero (outside the flex content) */
.hero__scroll--about {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: auto;
}

/* extra breathing room between TLDR and longer-version eyebrow */
.about-story__eyebrow {
  display: block;
  margin-top: 48px;
}

/* ── shared section helpers ── */

.section-title--sm {
  font-size: clamp(36px, 5.6vw, 84px);
  line-height: 0.94;
  margin-top: 10px;
  max-width: none;
}

/* ── story ── */

.about-story {
  position: relative;
  padding: clamp(120px, 18vh, 180px) clamp(24px, 5vw, 72px);
  z-index: 1;
}
.about-story__inner {
  max-width: 860px;
  margin: 0 auto;
}
.about-story__body {
  font-size: clamp(19px, 1.7vw, 28px);
  line-height: 1.48;
  color: var(--text);
  margin-top: 28px;
  text-wrap: pretty;
}
.about-story__body em {
  font-style: normal;
  color: var(--text-dim);
}
.about-story__body--dim {
  color: var(--text-dim);
  font-size: clamp(17px, 1.5vw, 24px);
}

/* ── currently building ── */

.about-currently {
  position: relative;
  padding: clamp(100px, 14vh, 160px) clamp(24px, 5vw, 72px);
  z-index: 1;
}
.about-currently__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-currently__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.about-currently__list li {
  padding: 28px 30px 32px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: linear-gradient(180deg, #0f0f16 0%, #07070b 100%);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.about-currently__list li:hover {
  border-color: oklch(1 0 0 / 0.18);
  transform: translateY(-2px);
  box-shadow:
    -14px 0 50px -14px oklch(0.62 0.24 264 / 0.35),
     14px 0 50px -14px oklch(0.65 0.28 340 / 0.35);
}
.about-currently__list h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.about-currently__list p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.about-currently__list a {
  color: var(--pink-hex);
  text-decoration: none;
  white-space: nowrap;
}
.about-currently__list a:hover { text-decoration: underline; }

/* ── away from the screen ── */

.about-away {
  position: relative;
  padding: clamp(100px, 14vh, 160px) clamp(24px, 5vw, 72px);
  z-index: 1;
}
.about-away__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-away__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.about-away__card {
  padding: 28px 28px 32px;
  border-top: 1px solid var(--rule);
}
.about-away__card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.about-away__card p {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}
.about-away__card em {
  font-style: italic;
  color: var(--pink-hex);
}

/* ── events ── */

.about-events {
  position: relative;
  padding: clamp(100px, 14vh, 160px) clamp(24px, 5vw, 72px);
  z-index: 1;
}
.about-events__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-events__sub {
  max-width: 60ch;
  color: var(--text-dim);
  margin-top: 14px;
  font-size: 16px;
}
.about-events__two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  margin-top: 48px;
}
.about-events__col h3 {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  margin-bottom: 20px;
}
.about-events__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.about-events__col li {
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-size: 16px;
  color: var(--text);
}
.about-events__col li:last-child {
  border-bottom: 1px solid var(--rule);
}
.about-events__col .ev-name {
  font-family: var(--f-body);
  font-weight: 500;
}
.about-events__col .ev-place {
  color: var(--text-mute);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: right;
  white-space: nowrap;
}

/* ── daily stack ── */

.about-stack {
  position: relative;
  padding: clamp(100px, 14vh, 160px) clamp(24px, 5vw, 72px) clamp(120px, 18vh, 200px);
  z-index: 1;
}
.about-stack__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-stack__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.about-stack__list li {
  padding: 12px 22px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  background: color-mix(in oklch, var(--void) 70%, transparent);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.about-stack__list li:hover {
  border-color: var(--pink-hex);
  box-shadow: 0 0 20px -4px oklch(0.65 0.28 340 / 0.4);
}

/* ── responsive ── */

@media (max-width: 640px) {
  .about-events__col li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .about-events__col .ev-place {
    text-align: left;
  }
}
