:root {
  --void: #060706;
  --ink: #0a0c0a;
  --char: #101410;
  --slate: #1a201a;
  --moss: #2a3328;
  --ash: #8d9788;
  --foam: #e7f3e2;
  --acid: #57ff24;
  --acid-hot: #8cff4d;
  --acid-deep: #2fb30e;
  --glow: rgba(87, 255, 36, 0.48);
  --glow-soft: rgba(87, 255, 36, 0.14);
  --line: rgba(87, 255, 36, 0.22);
  --glass: rgba(8, 12, 8, 0.62);
  --word: "Cinzel Decorative", "Cinzel", serif;
  --display: "Cinzel", "Times New Roman", serif;
  --blackletter: "UnifrakturCook", "Cinzel Decorative", serif;
  --sans: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--void);
  color: var(--foam);
  font-family: var(--sans);
  min-height: 100%;
}

body {
  overflow-x: hidden;
  cursor: none;
}

body.touch {
  cursor: auto;
}

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

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

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

body.touch button {
  cursor: pointer;
}

code {
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Consolas, monospace;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ico {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ---------- overlays ---------- */
.grain,
.vignette,
.ember-canvas {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
}

.grain {
  opacity: 0.16;
  z-index: 8;
  mix-blend-mode: overlay;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  z-index: 7;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.ember-canvas {
  z-index: 2;
}

/* ---------- custom cursor ---------- */
.cursor,
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  pointer-events: none;
  mix-blend-mode: screen;
}

.cursor {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  transition: transform 0.18s ease;
}

.cursor.is-down {
  transform: scale(0.72);
}

.cursor.is-link .cursor-ring {
  border-color: var(--acid-hot);
  box-shadow: 0 0 18px var(--glow);
}

.cursor-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--glow-soft);
}

.cursor-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}

.cursor-trail {
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--acid);
  opacity: 0.35;
  filter: blur(2px);
}

body.touch .cursor,
body.touch .cursor-trail {
  display: none;
}

/* ---------- mug scroll fill ---------- */
.mug-progress {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 40;
  transform: translateY(-50%);
}

.mug-progress-bowl {
  position: relative;
  width: 18px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 0 0 11px 11px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 18px rgba(87, 255, 36, 0.12);
}

.mug-progress::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 26px;
  height: 8px;
  margin-left: -13px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mug-progress::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 28px;
  width: 12px;
  height: 28px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 10px 10px 0;
}

.mug-progress-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(180deg, var(--acid-hot), var(--acid-deep));
  box-shadow: 0 0 16px var(--glow);
  transition: height 0.12s linear;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.nav.scrolled {
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--word);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.nav-mark img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 16px var(--glow);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: var(--ash);
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--foam);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-x {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.nav-x img {
  width: 15px;
}

.nav-x:hover {
  background: var(--glow-soft);
  box-shadow: 0 0 16px var(--glow);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--foam);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle.open span:nth-child(1) { top: 20px; transform: rotate(40deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 20px; transform: rotate(-40deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-lg {
  min-height: 52px;
  padding: 0 22px;
}

.btn-acid {
  background: linear-gradient(180deg, var(--acid-hot), var(--acid));
  color: #071007;
  box-shadow: 0 0 22px var(--glow);
}

.btn-acid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px var(--glow);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(8, 12, 8, 0.45);
  color: var(--foam);
}

.btn-ghost:hover {
  border-color: var(--acid);
  box-shadow: 0 0 20px var(--glow-soft);
  transform: translateY(-2px);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}

.sunburst,
.haze {
  position: absolute;
  inset: 0;
}

.sunburst {
  z-index: 0;
  background:
    repeating-conic-gradient(from 0deg at 50% 48%,
      rgba(255, 255, 255, 0.03) 0deg 8deg,
      transparent 8deg 16deg),
    radial-gradient(circle at 50% 48%, #1a2218 0%, var(--void) 62%);
  animation: spinBurst 80s linear infinite;
}

.haze {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(109, 255, 44, 0.16), transparent 36%),
    radial-gradient(circle at 70% 60%, rgba(61, 180, 20, 0.08), transparent 30%);
  animation: hazeBreath 7s ease-in-out infinite;
}

.hero-stage {
  position: relative;
  z-index: 3;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.rim {
  position: relative;
  width: min(460px, 88vw);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.rim-orbit,
.rim-ticks {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.rim-orbit {
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 14px rgba(109, 255, 44, 0.04),
    0 0 60px rgba(109, 255, 44, 0.12),
    inset 0 0 40px rgba(109, 255, 44, 0.06);
  animation: rimPulse 4.4s ease-in-out infinite;
}

.rim-ticks {
  inset: -18px;
  background: repeating-conic-gradient(
    from 0deg,
    var(--acid) 0deg 0.6deg,
    transparent 0.6deg 18deg
  );
  mask: radial-gradient(circle, transparent 67%, #000 68%, #000 70%, transparent 71%);
  animation: spinBurst 36s linear infinite;
  opacity: 0.7;
}

.steam {
  position: absolute;
  inset: 8% 18% auto;
  height: 28%;
  pointer-events: none;
}

.steam i {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(157, 255, 90, 0.35);
  filter: blur(4px);
  animation: steamRise 4.6s ease-in infinite;
}

.steam i:nth-child(1) { left: 18%; animation-delay: 0s; }
.steam i:nth-child(2) { left: 34%; animation-delay: 0.7s; }
.steam i:nth-child(3) { left: 50%; animation-delay: 1.3s; }
.steam i:nth-child(4) { left: 64%; animation-delay: 0.4s; }
.steam i:nth-child(5) { left: 78%; animation-delay: 1.8s; }

.vessel {
  position: relative;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  transform-style: preserve-3d;
  background: #050705;
  box-shadow: 0 0 50px rgba(87, 255, 36, 0.28);
}

.vessel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
}

.hero-copy {
  position: relative;
}

.kicker {
  font-family: var(--blackletter);
  color: var(--acid);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px var(--glow);
}

.wordmark {
  margin: 8px 0 10px;
  font-family: var(--word);
  font-weight: 900;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #f4fff0;
  text-shadow:
    0 0 18px rgba(109, 255, 44, 0.55),
    0 0 42px rgba(109, 255, 44, 0.25),
    0 2px 0 #0a1208;
}

.wordmark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotateX(40deg);
  animation: letterIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.wordmark span:nth-child(1) { animation-delay: 0.05s; }
.wordmark span:nth-child(2) { animation-delay: 0.14s; }
.wordmark span:nth-child(3) { animation-delay: 0.23s; }
.wordmark span:nth-child(4) { animation-delay: 0.32s; }
.wordmark span:nth-child(5) { animation-delay: 0.41s; }
.wordmark span:nth-child(6) { animation-delay: 0.5s; }

.symbol-line {
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ash);
  margin-bottom: 16px;
}

.lede {
  max-width: 34ch;
  color: #c7d4c0;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 22px;
}

.ca-plate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 22, 14, 0.85), rgba(8, 10, 8, 0.85));
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: inset 0 0 24px rgba(109, 255, 44, 0.05);
}

.ca-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  grid-column: 1;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
}

.ca-meta .ico {
  width: 14px;
  height: 14px;
}

.ca-plate code {
  grid-column: 1;
  font-size: 0.78rem;
  color: var(--acid-hot);
  word-break: break-all;
}

.ca-copy {
  grid-row: 1 / span 2;
  grid-column: 2;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--foam);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ca-copy:hover,
.ca-plate:hover .ca-copy {
  background: var(--glow-soft);
  box-shadow: 0 0 12px var(--glow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}

.scroll-cue b {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--acid), transparent);
  animation: drip 1.8s ease-in-out infinite;
}

/* ---------- ticker ---------- */
.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #080a08;
}

.ticker-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 14px 0;
  font-family: var(--word);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--acid);
  animation: ticker 28s linear infinite;
}

.ticker-track span + span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 42px;
  border: 1px solid var(--acid);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--glow);
}

/* ---------- about ---------- */
.about,
.howto,
.chart {
  position: relative;
  z-index: 3;
  padding: 110px 0;
}

.about {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(109, 255, 44, 0.07), transparent 36%),
    linear-gradient(180deg, #070907, #0b0e0b 50%, #070907);
}

.section-head {
  margin-bottom: 42px;
}

.section-head h2 {
  margin-top: 8px;
  font-family: var(--word);
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.section-sub {
  margin-top: 12px;
  color: var(--ash);
  max-width: 42ch;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.about-story {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 8, 0.55);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.about-story p + p {
  margin-top: 16px;
}

.about-story p {
  color: #c5d2be;
  line-height: 1.75;
  font-weight: 300;
}

.facet-cards {
  display: grid;
  gap: 14px;
}

.facet {
  padding: 20px 22px;
  border: 1px solid rgba(109, 255, 44, 0.14);
  background: linear-gradient(135deg, rgba(16, 22, 14, 0.9), rgba(7, 9, 7, 0.9));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.facet:nth-child(2) {
  margin-left: 28px;
}

.facet:hover {
  transform: translateY(-4px);
  border-color: var(--acid);
  box-shadow: 0 10px 30px rgba(109, 255, 44, 0.1);
}

.facet-icon {
  width: 42px;
  height: 42px;
  color: var(--acid);
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px var(--glow));
}

.facet h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.facet p {
  color: var(--ash);
  line-height: 1.6;
  font-size: 0.95rem;
}

.facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.facts li {
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.facts li::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.facts li:hover::after {
  transform: scaleX(1);
}

.facts span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 6px;
}

.facts strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
}

/* ---------- howto ---------- */
.howto {
  background:
    radial-gradient(circle at 50% 40%, rgba(109, 255, 44, 0.08), transparent 42%),
    #080a08;
}

.pour-ring {
  position: relative;
  padding-top: 8px;
}

.pour-core {
  width: 168px;
  margin: 0 auto 36px;
  text-align: center;
}

.pour-core img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 40px var(--glow);
  animation: vesselGlow 3.6s ease-in-out infinite;
}

.pour-core span {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  letter-spacing: 0.2em;
  color: var(--acid);
}

.stations {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.station {
  position: relative;
  padding: 24px 24px 24px 28px;
  border: 1px solid rgba(109, 255, 44, 0.16);
  background: rgba(10, 14, 10, 0.72);
  overflow: hidden;
}

.station::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--acid-hot), var(--acid-deep));
  box-shadow: 0 0 12px var(--glow);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}

.station.in::before,
.station:hover::before {
  transform: scaleY(1);
}

.station-num {
  font-family: var(--word);
  color: var(--acid);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.station-ico {
  width: 48px;
  height: 48px;
  margin: 12px 0;
  display: grid;
  place-items: center;
  background: #0d120d;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.station-ico img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.station h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.station p {
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: 14px;
}

.station a {
  color: var(--acid);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.station a:hover {
  text-shadow: 0 0 10px var(--glow);
}

/* ---------- chart ---------- */
.chart {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(109, 255, 44, 0.08), transparent 40%),
    linear-gradient(180deg, #070807, #0a0d0a);
}

.chart .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.chart-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--acid);
  font-weight: 600;
}

.chart-well {
  padding: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(109, 255, 44, 0.08);
}

.chart-frame {
  position: relative;
  height: min(680px, 78vh);
  overflow: hidden;
  background: #0b0f0b;
}

.chart-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(109, 255, 44, 0.06);
  z-index: 1;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- join / banner only here ---------- */
.join {
  position: relative;
  z-index: 3;
  padding: 0 0 10px;
}

.join-banner {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.join-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: ken 22s ease-in-out infinite alternate;
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 6, 0.2), rgba(6, 7, 6, 0.72) 55%, rgba(6, 7, 6, 0.88)),
    radial-gradient(circle at 70% 40%, rgba(109, 255, 44, 0.12), transparent 36%);
}

.join-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  text-align: center;
  padding: 48px 20px;
}

.join-copy h2 {
  font-family: var(--word);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.06em;
  text-shadow: 0 0 24px var(--glow);
  margin: 6px 0 16px;
}

.join-copy p:not(.kicker) {
  color: #d5e2cf;
  line-height: 1.7;
  margin-bottom: 26px;
}

.join-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.join-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.join-socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.join-socials a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.join-socials a:hover {
  transform: translateY(-3px);
  border-color: var(--acid);
  box-shadow: 0 0 18px var(--glow);
}

/* ---------- footer ---------- */
.foot {
  position: relative;
  z-index: 3;
  padding: 36px 0 24px;
  border-top: 1px solid var(--line);
  background: #060706;
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.foot-row p {
  color: var(--ash);
}

.foot-links {
  display: flex;
  gap: 12px;
}

.foot-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.foot-links img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.legal {
  margin-top: 22px;
  text-align: center;
  color: #5d6658;
  font-size: 0.78rem;
}

/* ---------- toast / reveal ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 70;
  transform: translate(-50%, 16px);
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 8, 0.92);
  color: var(--foam);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- motion ---------- */
@keyframes spinBurst {
  to { transform: rotate(360deg); }
}

@keyframes hazeBreath {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes rimPulse {
  0%, 100% { box-shadow: 0 0 0 14px rgba(109, 255, 44, 0.04), 0 0 50px rgba(109, 255, 44, 0.12), inset 0 0 40px rgba(109, 255, 44, 0.06); }
  50% { box-shadow: 0 0 0 18px rgba(109, 255, 44, 0.07), 0 0 80px rgba(109, 255, 44, 0.22), inset 0 0 50px rgba(109, 255, 44, 0.1); }
}

@keyframes steamRise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  20% { opacity: 0.7; }
  100% { transform: translateY(-90px) scale(1.6); opacity: 0; }
}

@keyframes vesselGlow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(109, 255, 44, 0.35)); }
  50% { filter: drop-shadow(0 0 28px rgba(109, 255, 44, 0.7)); }
}

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

@keyframes drip {
  0% { transform: scaleY(0.3); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes ken {
  to { transform: scale(1.16) translate(-1.5%, -1%); }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-trail,
  .mug-progress {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    background: rgba(8, 10, 8, 0.94);
    border: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lede {
    margin-inline: auto;
  }

  .hero-actions,
  .ca-plate {
    justify-content: center;
  }

  .ca-plate {
    text-align: left;
  }

  .about-grid,
  .stations,
  .facts,
  .foot-row {
    grid-template-columns: 1fr;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
  }

  .facet:nth-child(2) {
    margin-left: 0;
  }

  .foot-row {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 14px 14px;
  }

  .nav-mark span,
  .btn.nav-end,
  .nav .btn-acid span {
    display: none;
  }

  .nav .btn-acid {
    padding: 0 12px;
    min-height: 40px;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .wordmark span {
    opacity: 1;
    transform: none;
  }

  .vessel-video {
    display: none;
  }

  .vessel {
    background: #050705;
  }
}
