:root {
  --void: #06070c;
  --ink: #0a0c12;
  --panel: #12151d;
  --panel-2: #181c27;
  --line: rgba(243, 245, 250, 0.08);
  --line-hot: rgba(243, 245, 250, 0.16);
  --purple: #9945ff;
  --purple-hot: #c084fc;
  --teal: #14f195;
  --teal-hot: #7dffc8;
  --cyan: #22d3ee;
  --metal: #c5c9d4;
  --text: #f3f5fa;
  --muted: #8d95a8;
  --display: "Bebas Neue", "Oswald", sans-serif;
  --head: "Oswald", "Barlow Condensed", sans-serif;
  --cond: "Barlow Condensed", "Oswald", sans-serif;
  --body: "Sora", system-ui, sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  overflow-x: hidden;
}

@media (pointer: fine) {
  body,
  a,
  button {
    cursor: none;
  }
}

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

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

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

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

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

/* Atmosphere */

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.aurora {
  position: absolute;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.34;
  animation: auroraDrift 18s ease-in-out infinite;
}

.aurora-violet {
  top: -12vw;
  left: -10vw;
  background: radial-gradient(circle, var(--purple) 0%, transparent 68%);
}

.aurora-teal {
  right: -12vw;
  bottom: -8vw;
  background: radial-gradient(circle, var(--teal) 0%, transparent 68%);
  animation-delay: -7s;
}

.mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(153, 69, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 20%, rgba(20, 241, 149, 0.08), transparent 50%),
    linear-gradient(180deg, #07080d 0%, #080910 40%, #06070c 100%);
}

.streaks i {
  position: absolute;
  left: -20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(153, 69, 255, 0.55), rgba(20, 241, 149, 0.7), transparent);
  opacity: 0.22;
  animation: streakRush 9s linear infinite;
}

.streaks i:nth-child(1) { top: 18%; width: 38%; animation-duration: 11s; }
.streaks i:nth-child(2) { top: 36%; width: 26%; animation-duration: 8s; animation-delay: -3s; }
.streaks i:nth-child(3) { top: 58%; width: 44%; animation-duration: 13s; animation-delay: -6s; }
.streaks i:nth-child(4) { top: 72%; width: 22%; animation-duration: 7s; animation-delay: -2s; }
.streaks i:nth-child(5) { top: 84%; width: 30%; animation-duration: 10s; animation-delay: -5s; }

.dotgrid {
  position: absolute;
  width: 140px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(20, 241, 149, 0.45) 1px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: 0.35;
}

.dotgrid-tr { top: 88px; right: 36px; }
.dotgrid-bl {
  bottom: 48px;
  left: 28px;
  background-image: radial-gradient(circle, rgba(153, 69, 255, 0.5) 1px, transparent 1.4px);
}

.motes {
  position: absolute;
  inset: 0;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  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");
  mix-blend-mode: overlay;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
}

.pour-meter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 80;
  pointer-events: none;
}

.pour-meter-track {
  display: block;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
}

.pour-meter-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  box-shadow: 0 0 18px rgba(20, 241, 149, 0.45);
}

/* Cursor */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 200;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.cursor-ring,
.cursor-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.cursor-ring {
  border: 1px solid rgba(243, 245, 250, 0.7);
  transform: scale(2.4);
  transition: transform 0.25s ease;
}

.cursor-dot {
  background: #fff;
}

body.is-hover .cursor-ring {
  transform: scale(3.4);
}

@media (pointer: coarse) {
  .cursor { display: none; }
}

/* Nav */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  background: linear-gradient(180deg, rgba(6, 7, 12, 0.82), rgba(6, 7, 12, 0.35) 70%, transparent);
  backdrop-filter: blur(10px);
}

.nav.is-scrolled {
  background: rgba(6, 7, 12, 0.78);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.08em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    -6px 0 16px rgba(153, 69, 255, 0.35),
    6px 0 16px rgba(20, 241, 149, 0.3);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--cond);
  font-size: 17px;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

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

.icon-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-hot);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.icon-link img {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--cond);
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn-lg {
  min-height: 54px;
  padding: 0 24px;
  font-size: 18px;
}

.btn-pour {
  color: #06110c;
  background: linear-gradient(110deg, var(--purple) 0%, var(--teal) 100%);
  box-shadow: 0 0 24px rgba(20, 241, 149, 0.18);
}

.btn-pour:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(153, 69, 255, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line-hot);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 241, 149, 0.4);
}

/* Hero */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 120px 28px 80px;
  display: grid;
  align-items: center;
}

.watermark {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(90px, 18vw, 260px);
  letter-spacing: 0.18em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  pointer-events: none;
  user-select: none;
}

.hero-layout {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.preline,
.afterline {
  font-family: var(--head);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
}

.preline {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 4px;
}

.wordmark {
  display: flex;
  font-family: var(--display);
  font-size: clamp(84px, 14vw, 168px);
  line-height: 0.82;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 10px 24px rgba(153, 69, 255, 0.18));
}

.wordmark span {
  display: inline-block;
  background: linear-gradient(180deg, var(--teal-hot) 8%, var(--cyan) 42%, var(--purple-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(28px);
  opacity: 0;
  animation: letterUp 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.12s; }
.wordmark span:nth-child(3) { animation-delay: 0.19s; }
.wordmark span:nth-child(4) { animation-delay: 0.26s; }
.wordmark span:nth-child(5) { animation-delay: 0.33s; }
.wordmark span:nth-child(6) { animation-delay: 0.4s; }

.wordmark .comma {
  background: none;
  color: var(--metal);
  -webkit-text-fill-color: var(--metal);
}

.word-rule {
  display: block;
  width: min(420px, 80%);
  height: 2px;
  margin: 8px 0 6px;
  background: linear-gradient(90deg, var(--purple), var(--teal), transparent);
  box-shadow: 0 0 16px rgba(20, 241, 149, 0.35);
}

.afterline {
  font-size: clamp(26px, 4vw, 42px);
  margin: 10px 0 22px;
}

.afterline em {
  font-style: italic;
  background: linear-gradient(90deg, var(--purple-hot), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.symbol-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid var(--line-hot);
  border-radius: 999px;
  font-family: var(--cond);
  font-style: italic;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.symbol-chip img {
  width: 16px;
  height: 16px;
}

.lede {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.ca-plate {
  margin: 28px 0 22px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  max-width: 560px;
  border-radius: 16px;
  border: 1px solid var(--line-hot);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 7px);
  cursor: pointer;
}

.ca-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.ca-top img {
  width: 14px;
  height: 14px;
}

.ca-plate code {
  grid-column: 1;
  color: var(--metal);
  font-size: 13px;
  word-break: break-all;
}

.ca-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-hot);
  font-family: var(--cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

/* Kiln / mug stage */

.kiln {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.kiln-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  animation: pulseGlow 5.5s ease-in-out infinite;
}

.kiln-glow-violet {
  left: 8%;
  background: var(--purple);
}

.kiln-glow-teal {
  right: 8%;
  background: var(--teal);
  animation-delay: -2.4s;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.orbit-a {
  width: 420px;
  height: 420px;
  animation: spin 22s linear infinite;
  box-shadow: inset 0 0 40px rgba(153, 69, 255, 0.08);
}

.orbit-b {
  width: 520px;
  height: 340px;
  transform: rotate(-18deg);
  animation: spin 34s linear infinite reverse;
  border-color: rgba(20, 241, 149, 0.16);
}

.sol-bars {
  position: absolute;
  top: 18%;
  right: 8%;
  display: grid;
  gap: 6px;
  opacity: 0.55;
}

.sol-bars i {
  display: block;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transform: skewX(-28deg);
  animation: barPulse 3.2s ease-in-out infinite;
}

.sol-bars i:nth-child(1) { width: 54px; }
.sol-bars i:nth-child(2) { width: 44px; animation-delay: 0.2s; }
.sol-bars i:nth-child(3) { width: 34px; animation-delay: 0.4s; }

.steam i {
  position: absolute;
  bottom: 58%;
  width: 18px;
  height: 90px;
  border-radius: 40px;
  background: linear-gradient(180deg, transparent, rgba(196, 181, 253, 0.28), transparent);
  filter: blur(8px);
  animation: steamRise 4.8s ease-in-out infinite;
}

.steam i:nth-child(1) { left: 38%; animation-delay: 0s; }
.steam i:nth-child(2) { left: 46%; height: 110px; animation-delay: 0.8s; }
.steam i:nth-child(3) { left: 54%; animation-delay: 1.4s; }
.steam i:nth-child(4) { left: 61%; height: 80px; animation-delay: 2s; }

.vessel-tilt {
  position: relative;
  width: min(420px, 86%);
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

.vessel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
  animation: mugFloat 6.5s ease-in-out infinite;
  box-shadow:
    -28px 10px 60px rgba(153, 69, 255, 0.28),
    28px 10px 60px rgba(20, 241, 149, 0.22),
    0 30px 50px rgba(0, 0, 0, 0.45);
}

.vessel-video,
.vessel-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vessel-video {
  z-index: 1;
  opacity: 1;
  background: #06070c;
}

.vessel-logo {
  z-index: 0;
}

.vessel.has-video .vessel-logo {
  opacity: 0;
}

.plinth {
  position: absolute;
  bottom: 8%;
  width: 58%;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(20, 241, 149, 0.18), transparent 70%);
  filter: blur(8px);
  animation: plinthPulse 6.5s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--muted);
}

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

/* Ticker */

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.ticker-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 14px 0;
  font-family: var(--cond);
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--metal);
  animation: ticker 28s linear infinite;
}

.ticker-track span + span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 42px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transform: skewX(-28deg);
  vertical-align: middle;
}

/* Sections */

.about,
.howto,
.chart {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

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

.kicker {
  font-family: var(--cond);
  font-style: italic;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-head h2,
.join-copy h2 {
  font-family: var(--head);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.section-sub {
  margin-top: 14px;
  color: var(--muted);
  max-width: 480px;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.manifesto {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(153, 69, 255, 0.08), transparent 40%, rgba(20, 241, 149, 0.06)),
    var(--panel);
}

.manifesto p {
  color: #c8cdd8;
  line-height: 1.8;
}

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

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

.bar-card {
  padding: 22px 22px 22px 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
  overflow: hidden;
}

.bar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.04), transparent 70%);
  transform: translateX(-120%);
  animation: sheen 7s ease-in-out infinite;
}

.bar-mark {
  display: block;
  width: 42px;
  height: 6px;
  margin-bottom: 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transform: skewX(-28deg);
}

.bar-card h3 {
  font-family: var(--head);
  font-style: italic;
  font-size: 26px;
  margin-bottom: 8px;
}

.bar-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

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

.specs li {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.specs span {
  display: block;
  font-family: var(--cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.specs strong {
  font-family: var(--head);
  font-style: italic;
  font-size: 22px;
}

/* How to buy */

.howto {
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(153, 69, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 60%, rgba(20, 241, 149, 0.07), transparent 60%);
}

.pours {
  list-style: none;
  display: grid;
  gap: 16px;
  position: relative;
}

.pours::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--teal));
  opacity: 0.45;
}

.pour {
  display: grid;
  grid-template-columns: 96px 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(18, 21, 29, 0.86);
  backdrop-filter: blur(8px);
}

.pour-num {
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, var(--teal), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pour-ico {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid var(--line-hot);
  background: #0d1016;
}

.pour-ico img {
  width: 32px;
  height: 32px;
}

.pour-body h3 {
  font-family: var(--head);
  font-style: italic;
  font-size: 28px;
  margin-bottom: 6px;
}

.pour-body p {
  color: var(--muted);
  line-height: 1.6;
}

.pour-body a {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--cond);
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Chart */

.chart-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--cond);
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.chart-open img {
  width: 16px;
  height: 16px;
}

.chart-bezel {
  position: relative;
  padding: 14px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line-hot);
  box-shadow:
    -20px 0 50px rgba(153, 69, 255, 0.08),
    20px 0 50px rgba(20, 241, 149, 0.08);
}

.bezel-light {
  position: absolute;
  top: 0;
  width: 42%;
  height: 2px;
}

.bezel-violet {
  left: 0;
  background: linear-gradient(90deg, var(--purple), transparent);
}

.bezel-teal {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--teal));
}

.chart-frame {
  height: min(680px, 72vh);
  border-radius: 18px;
  overflow: hidden;
  background: #0b0e14;
}

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

/* Join - banner only here */

.join {
  position: relative;
  z-index: 1;
  padding: 0 20px 20px;
}

.join-stage {
  position: relative;
  min-height: 720px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.join-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 7, 12, 0.78) 0%, rgba(6, 7, 12, 0.42) 55%, rgba(6, 7, 12, 0.2) 100%),
    linear-gradient(180deg, rgba(6, 7, 12, 0.15), rgba(6, 7, 12, 0.55));
}

.join-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 80px 56px;
}

.join-copy p:not(.kicker) {
  margin: 16px 0 28px;
  color: #d5d8e2;
  line-height: 1.7;
}

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

.join-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.join-socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-hot);
  background: rgba(6, 7, 12, 0.45);
}

.join-socials img {
  width: 18px;
  height: 18px;
}

/* Footer */

.foot {
  position: relative;
  z-index: 1;
  padding: 36px 0 28px;
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.foot-row p {
  color: var(--muted);
  font-family: var(--head);
  font-style: italic;
}

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

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

.foot-links img {
  width: 16px;
  height: 16px;
}

.legal {
  width: min(var(--max), calc(100% - 40px));
  margin: 16px auto 0;
  color: #6c7384;
  font-size: 12px;
}

/* Toast + reveal */

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  padding: 10px 16px;
  border-radius: 999px;
  background: #11141c;
  border: 1px solid var(--line-hot);
  font-family: var(--cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: 0.3s ease;
}

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

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

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

/* Motion */

@keyframes auroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 8%) scale(1.12); }
}

@keyframes streakRush {
  0% { transform: translateX(-10%); opacity: 0; }
  15% { opacity: 0.28; }
  100% { transform: translateX(140%); opacity: 0; }
}

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

@keyframes mugFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes plinthPulse {
  0%, 100% { opacity: 0.45; transform: scaleX(1); }
  50% { opacity: 0.8; transform: scaleX(1.08); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

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

@keyframes steamRise {
  0% { transform: translateY(10px) scaleY(0.7); opacity: 0; }
  30% { opacity: 0.7; }
  100% { transform: translateY(-70px) scaleY(1.2); opacity: 0; }
}

@keyframes barPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

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

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

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

@media (max-width: 980px) {
  .hero-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .kiln {
    min-height: 440px;
    order: -1;
  }

  .specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .pours::before {
    display: none;
  }

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

  .pour-num {
    grid-row: 1 / span 2;
  }

  .join-copy {
    padding: 48px 24px;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    padding: 18px;
    flex-direction: column;
    gap: 14px;
    border-radius: 16px;
    background: rgba(10, 12, 18, 0.96);
    border: 1px solid var(--line);
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 108px 18px 72px;
  }

  .wordmark {
    font-size: 86px;
  }

  .join-stage {
    min-height: 640px;
  }
}
