:root {
  --bg: #0a0806;
  --bg-2: #110e0b;
  --stone: #1b1612;
  --stone-2: #241e18;
  --copper: #c47d3b;
  --copper-hi: #e8c48a;
  --copper-mid: #b87333;
  --copper-lo: #6b3a14;
  --patina: #3d8a7a;
  --patina-hi: #7ec8b8;
  --patina-lo: #1d4a42;
  --amber: #ff9a3c;
  --ink: #efe6d6;
  --muted: #a89880;
  --line: rgba(196, 125, 59, 0.28);
  --display: "Cinzel", "Copperplate Gothic", "Copperplate", serif;
  --sans: "Sora", "Segoe UI", sans-serif;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  overflow-x: hidden;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(196, 125, 59, 0.16), transparent 58%),
    radial-gradient(700px 420px at 8% 80%, rgba(61, 138, 122, 0.08), transparent 55%),
    radial-gradient(700px 420px at 92% 30%, rgba(255, 154, 60, 0.05), transparent 50%),
    linear-gradient(180deg, #0d0a08 0%, #0a0806 40%, #0c0b09 100%);
}

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

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

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

ul,
ol {
  list-style: none;
}

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

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--copper);
  color: #1a0f08;
}

.skip:focus {
  top: 12px;
}

.icon-x,
.icon-dex,
.icon-sol {
  filter: drop-shadow(0 0 8px rgba(232, 196, 138, 0.28));
}

.icon-dex {
  filter: drop-shadow(0 0 8px rgba(126, 200, 184, 0.35));
}

.btn-metal .icon-x {
  filter: brightness(0);
}

::selection {
  background: rgba(196, 125, 59, 0.35);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0c0a08;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--copper-hi), var(--copper-lo));
  border-radius: 99px;
}

/* Atmosphere */

#embers {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.atmosphere,
.grain,
.spot {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.atmosphere {
  z-index: 0;
}

.vapor {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  animation: drift 28s ease-in-out infinite;
}

.vapor-a {
  left: -8%;
  top: 18%;
  background: radial-gradient(circle, rgba(61, 138, 122, 0.55), transparent 70%);
}

.vapor-b {
  right: -10%;
  top: 8%;
  background: radial-gradient(circle, rgba(196, 125, 59, 0.45), transparent 70%);
  animation-duration: 34s;
  animation-delay: -8s;
}

.vapor-c {
  left: 30%;
  bottom: -12%;
  background: radial-gradient(circle, rgba(255, 154, 60, 0.18), transparent 70%);
  animation-duration: 40s;
  animation-delay: -16s;
}

.hearth {
  position: absolute;
  width: 38vw;
  height: 28vw;
  filter: blur(80px);
  opacity: 0.18;
}

.hearth-l {
  left: -12%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(180, 80, 20, 0.7), transparent 70%);
}

.hearth-r {
  right: -10%;
  top: 35%;
  background: radial-gradient(circle, rgba(45, 120, 108, 0.65), transparent 70%);
}

.grain {
  z-index: 40;
  opacity: 0.07;
  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;
}

.spot {
  z-index: 1;
  background: radial-gradient(420px 420px at var(--sx, 50%) var(--sy, 30%), rgba(232, 196, 138, 0.08), transparent 55%);
  transition: background 80ms linear;
}

@keyframes drift {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, -30px, 0) scale(1.12); }
}

/* Nav */

.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  padding-inline: 20px;
}

.nav-shell {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 8px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(36, 28, 20, 0.78), rgba(14, 11, 9, 0.72));
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(232, 196, 138, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled .nav-shell {
  border-color: rgba(196, 125, 59, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(232, 196, 138, 0.18),
    0 18px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(61, 138, 122, 0.12);
}

.brand,
.brand-foot {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-bezel {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 2px;
  background:
    conic-gradient(from 140deg, var(--copper-lo), var(--copper-hi), var(--patina), var(--copper-mid), var(--copper-lo));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.brand-bezel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #1a1410;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(196, 125, 59, 0.1);
}

.nav-x {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0 !important;
}

.nav-x img {
  width: 14px;
  height: 14px;
}

.nav-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  padding: 8px 14px !important;
  color: #1a0f08 !important;
  background: linear-gradient(180deg, var(--copper-hi), var(--copper-mid) 55%, var(--copper-lo));
  box-shadow: inset 0 1px 0 rgba(255, 236, 200, 0.45);
}

.nav-buy img {
  width: 16px;
  height: 16px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-btn i {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--copper-hi);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 20px 80px;
}

.hero-orbit,
.hero-orbit-slow {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(620px, 88vw);
  height: min(620px, 88vw);
  transform: translate(-50%, -54%);
  border-radius: 50%;
  border: 1px dashed rgba(196, 125, 59, 0.22);
  animation: orbitspin 48s linear infinite;
  pointer-events: none;
}

.hero-orbit-slow {
  width: min(740px, 96vw);
  height: min(740px, 96vw);
  border-style: dotted;
  border-color: rgba(61, 138, 122, 0.2);
  animation-duration: 80s;
  animation-direction: reverse;
}

.hero-stage {
  position: relative;
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--patina-hi);
  margin-bottom: 22px;
}

.medallion {
  position: relative;
  width: min(320px, 68vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.12s ease-out;
}

.medallion-ring,
.medallion-ring-2 {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(196, 125, 59, 0.35);
  box-shadow:
    0 0 40px rgba(196, 125, 59, 0.12),
    inset 0 0 30px rgba(61, 138, 122, 0.08);
  animation: spin 26s linear infinite;
}

.medallion-ring-2 {
  inset: -28px;
  border-style: dashed;
  animation-duration: 40s;
  animation-direction: reverse;
  opacity: 0.7;
}

.medallion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #16110d;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 0 6px rgba(26, 18, 12, 0.9),
    0 0 0 7px rgba(196, 125, 59, 0.45);
  animation: breathe 6.5s ease-in-out infinite;
}

.medallion-gleam {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

.medallion-gleam::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 236, 200, 0.22) 50%, transparent 60%);
  transform: translateX(-80%);
  animation: gleam 7s ease-in-out infinite;
}

.plinth {
  margin-top: 36px;
  width: min(560px, 100%);
  padding: 22px 22px 18px;
  border-radius: 6px 6px 14px 14px;
  background:
    linear-gradient(180deg, #3a322a 0%, #221c17 38%, #16120f 100%);
  border: 1px solid rgba(196, 125, 59, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, 0.16),
    inset 0 -28px 40px rgba(45, 107, 95, 0.16),
    0 28px 50px rgba(0, 0, 0, 0.45);
  position: relative;
}

.plinth-lip {
  display: block;
  height: 7px;
  margin: -22px -22px 16px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #5a4632, #2c231b);
  box-shadow: inset 0 1px 0 rgba(232, 196, 138, 0.25);
}

.plinth h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 7vw, 64px);
  letter-spacing: 0.18em;
  line-height: 1;
  background: linear-gradient(180deg, #f3d7a4 0%, #c47d3b 42%, #5a2f10 78%, #d4a05a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 rgba(61, 138, 122, 0.35));
  animation: metalshift 8s ease-in-out infinite;
  background-size: 100% 200%;
}

.plinth-symbol {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  letter-spacing: 0.28em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--patina-hi);
}

.tagline {
  margin-top: 28px;
  max-width: 28ch;
  font-family: var(--display);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-metal {
  color: #1a0f08;
  border-color: rgba(232, 196, 138, 0.45);
  background: linear-gradient(180deg, #f0d5a0, #c47d3b 52%, #7a4218);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 220, 0.55),
    0 10px 24px rgba(196, 125, 59, 0.22);
}

.btn-metal::after,
.btn-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-120%);
}

.btn-metal:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-metal:hover::after,
.btn-ghost:hover::after {
  animation: sheen 0.7s ease;
}

.btn-ghost {
  background: rgba(18, 14, 11, 0.55);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(126, 200, 184, 0.45);
  box-shadow: 0 0 24px rgba(61, 138, 122, 0.18);
}

.ca-plate {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  background: rgba(18, 14, 11, 0.7);
  border: 1px solid var(--line);
}

.ca-plate span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.ca-plate code {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--copper-hi);
  max-width: min(48vw, 360px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-plate button {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(196, 125, 59, 0.16);
  color: var(--copper-hi);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ca-plate button.is-copied {
  color: var(--patina-hi);
}

/* Sections */

.about,
.howtobuy,
.chart {
  position: relative;
  z-index: 2;
  padding: 110px 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}

.idx {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--patina-hi);
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f3d7a4, #c47d3b 60%, #8a4e1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  max-width: 42ch;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 300;
}

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

.bust-frame {
  position: relative;
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(196, 125, 59, 0.28), rgba(18, 14, 11, 0.9) 40%, rgba(61, 138, 122, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(232, 196, 138, 0.2),
    0 30px 60px rgba(0, 0, 0, 0.35);
}

.bust-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 24px;
  border: 1px solid rgba(196, 125, 59, 0.2);
  pointer-events: none;
}

.bust-frame img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 1;
  background: #16110d;
}

.about-bust figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.lede {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  margin-bottom: 18px;
}

.about-copy p + p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 300;
}

.oxide-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.oxide-row li {
  padding: 16px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(36, 28, 20, 0.8), rgba(14, 11, 9, 0.8));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 110px;
  position: relative;
  overflow: hidden;
}

.oxide-row li::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper-lo), var(--patina), var(--copper-hi));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.oxide-row li:hover::after {
  transform: scaleX(1);
}

.oxide-row img {
  height: 16px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  margin-bottom: 4px;
}

.oxide-row strong {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.oxide-row span {
  font-family: var(--display);
  font-size: 15px;
}

/* How to buy */

.howtobuy {
  background:
    linear-gradient(180deg, transparent, rgba(18, 14, 11, 0.55) 20%, rgba(18, 14, 11, 0.55) 80%, transparent);
}

.ritual {
  display: grid;
  gap: 0;
}

.ritual-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px 20px;
  position: relative;
  padding-bottom: 28px;
}

.ritual-step:last-child {
  padding-bottom: 0;
}

.node {
  grid-column: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--copper-hi);
  background: radial-gradient(circle at 35% 30%, #3a2a1c, #14100c);
  border: 1px solid rgba(196, 125, 59, 0.45);
  box-shadow:
    0 0 0 6px rgba(10, 8, 6, 0.85),
    0 0 22px rgba(196, 125, 59, 0.2);
  position: relative;
  z-index: 1;
}

.filament {
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--copper), var(--patina), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s ease;
}

.ritual-step.is-on .filament,
.ritual-step.reveal.is-in .filament {
  transform: scaleY(1);
}

.ritual-step:last-child .filament {
  display: none;
}

.ritual-card {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(36, 28, 20, 0.75), rgba(12, 10, 8, 0.72));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(232, 196, 138, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ritual-card:hover {
  transform: translateX(6px);
  border-color: rgba(126, 200, 184, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(232, 196, 138, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.25);
}

.ritual-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 12px;
}

.ritual-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.ritual-icon-sol img {
  width: 34px;
  height: auto;
}

.ritual-card h3 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.ritual-card p {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-hi);
  border-bottom: 1px solid rgba(196, 125, 59, 0.35);
  padding-bottom: 2px;
}

.text-link:hover {
  color: var(--patina-hi);
  border-color: var(--patina-hi);
}

/* Chart */

.chart-window {
  position: relative;
  border-radius: 22px;
  padding: 14px;
  background:
    linear-gradient(180deg, #2c241c, #14110e);
  border: 1px solid rgba(196, 125, 59, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(232, 196, 138, 0.16),
    0 30px 70px rgba(0, 0, 0, 0.4);
}

.chart-window iframe {
  width: 100%;
  height: min(640px, 78vh);
  border: 0;
  border-radius: 14px;
  background: #0d1114;
}

.rivets {
  position: absolute;
  inset: 8px;
  pointer-events: none;
}

.rivets i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e8c48a, #8a4e1c);
  box-shadow: inset 0 -1px 1px #3d2414, 0 1px 2px rgba(0, 0, 0, 0.4);
}

.rivets i:nth-child(1) { top: 0; left: 0; }
.rivets i:nth-child(2) { top: 0; right: 0; }
.rivets i:nth-child(3) { bottom: 0; left: 0; }
.rivets i:nth-child(4) { bottom: 0; right: 0; }

.chart-open {
  margin: 22px auto 0;
  width: fit-content;
}

/* Join us — banner only here */

.joinus {
  position: relative;
  z-index: 2;
  padding: 0 0 0;
}

.join-stage {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.join-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: ken 28s ease-in-out infinite alternate;
}

.join-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.35) 0%, rgba(10, 8, 6, 0.15) 35%, rgba(10, 8, 6, 0.72) 72%, rgba(10, 8, 6, 0.92) 100%),
    radial-gradient(circle at 50% 40%, transparent 20%, rgba(10, 8, 6, 0.35) 100%);
}

.join-body {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 40px));
  padding: 80px 0 90px;
  text-align: center;
}

.join-body .section-head {
  justify-content: center;
}

.join-line {
  font-family: var(--display);
  font-size: clamp(22px, 3.4vw, 34px);
  margin: 8px 0 12px;
}

.join-sub {
  color: var(--muted);
  max-width: 38ch;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-weight: 300;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Footer */

.foot {
  position: relative;
  z-index: 2;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  background: #090706;
}

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

.foot-inner p {
  color: var(--muted);
  font-size: 13px;
}

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

.foot-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.foot-links a:hover {
  transform: translateY(-2px);
  border-color: var(--copper);
}

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

/* Reveals */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s ease forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

.ritual-step.reveal:nth-child(2) { animation-delay: 0.08s; }
.ritual-step.reveal:nth-child(3) { animation-delay: 0.16s; }
.ritual-step.reveal:nth-child(4) { animation-delay: 0.24s; }
.oxide-row li.reveal:nth-child(2) { animation-delay: 0.08s; }
.oxide-row li.reveal:nth-child(3) { animation-delay: 0.16s; }

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

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

@keyframes orbitspin {
  to { transform: translate(-50%, -54%) rotate(360deg); }
}

@keyframes gleam {
  0%,
  55% { transform: translateX(-80%); }
  75%,
  100% { transform: translateX(80%); }
}

@keyframes sheen {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@keyframes breathe {
  0%,
  100% { box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(26, 18, 12, 0.9), 0 0 0 7px rgba(196, 125, 59, 0.45), 0 0 30px rgba(196, 125, 59, 0.12); }
  50% { box-shadow: 0 34px 80px rgba(0, 0, 0, 0.6), 0 0 0 6px rgba(26, 18, 12, 0.9), 0 0 0 7px rgba(126, 200, 184, 0.4), 0 0 46px rgba(61, 138, 122, 0.2); }
}

@keyframes metalshift {
  0%,
  100% { background-position: 0 0; }
  50% { background-position: 0 100%; }
}

@keyframes ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(0, -2%, 0); }
}

/* Mobile */

@media (max-width: 880px) {
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    background: rgba(14, 11, 9, 0.96);
    border: 1px solid var(--line);
  }

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

  .nav-buy {
    justify-content: center;
    margin-left: 0;
  }

  .about-grid,
  .oxide-row,
  .foot-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .foot-inner {
    text-align: center;
    justify-items: center;
  }

  .ritual-step {
    grid-template-columns: 48px 1fr;
  }

  .node {
    width: 44px;
    height: 44px;
  }

  .filament {
    left: 21px;
  }
}

@media (max-width: 560px) {
  .oxide-row {
    grid-template-columns: 1fr;
  }

  .ca-plate {
    max-width: 100%;
  }

  .plinth {
    padding-inline: 12px;
  }

  .plinth h1 {
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .vapor,
  .medallion-ring,
  .medallion-ring-2,
  .hero-orbit,
  .hero-orbit-slow,
  .medallion img,
  .medallion-gleam::after,
  .plinth h1,
  .join-banner,
  .reveal {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
