/* Bull Final Boss — Bullgamemnon
   Troy-war cinematic palette from logo/banner metals */

:root {
  --void: #07080b;
  --ink: #0e1016;
  --slate: #171b24;
  --steel: #5c6678;
  --mist: #8a93a3;
  --bone: #e8e2d6;
  --ivory: #f4efe4;
  --gold: #c9a45c;
  --gold-bright: #e4c87a;
  --gold-deep: #8a6a2f;
  --bronze: #6e5330;
  --ember: #b85a2a;
  --blood-smoke: rgba(90, 40, 20, 0.18);
  --font-display: "Cinzel Decorative", "Cinzel", serif;
  --font-title: "Cinzel", "Times New Roman", serif;
  --font-body: "Cormorant Garamond", Georgia, serif;
  --nav-h: 4.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--bone);
  background: var(--void);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

strong {
  color: var(--gold-bright);
  font-weight: 600;
}

/* Atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201, 164, 92, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 80%, var(--blood-smoke), transparent 50%),
    radial-gradient(ellipse 50% 35% at 15% 70%, rgba(61, 79, 99, 0.22), transparent 55%),
    linear-gradient(180deg, #0a0c11 0%, #10141c 45%, #0a0b0f 100%);
}

.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.fog {
  position: absolute;
  width: 140%;
  height: 55%;
  left: -20%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: fog-drift 28s ease-in-out infinite alternate;
}

.fog-a {
  bottom: -10%;
  background: radial-gradient(ellipse, rgba(90, 100, 120, 0.45), transparent 70%);
}

.fog-b {
  top: 20%;
  right: -30%;
  left: auto;
  width: 80%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(110, 83, 48, 0.25), transparent 70%);
  animation-duration: 36s;
  animation-direction: alternate-reverse;
}

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

#ash-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

@keyframes fog-drift {
  from { transform: translate3d(-4%, 0, 0) scale(1); }
  to { transform: translate3d(6%, -3%, 0) scale(1.08); }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  transition: background 0.4s var(--ease-out), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 8, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(201, 164, 92, 0.18);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.nav-logo {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.45);
  box-shadow: 0 0 18px rgba(201, 164, 92, 0.25);
}

.nav-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-name {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
}

.nav-symbol {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-x img {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  filter: invert(1) brightness(0.9);
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s;
}

.nav-x:hover img {
  opacity: 1;
  transform: scale(1.08);
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  padding: calc(var(--nav-h) + 2rem) 4vw 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 8, 11, 0.15) 35%, rgba(7, 8, 11, 0.75) 78%),
    radial-gradient(circle at 30% 45%, rgba(201, 164, 92, 0.1), transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: min(72vh, 640px);
  transition: transform 0.45s var(--ease-out);
  will-change: transform;
}

.hero-video {
  position: absolute;
  inset: 8% 10%;
  width: 80%;
  height: 84%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  filter: saturate(0.85) contrast(1.05);
  transition: opacity 0.8s;
  z-index: 0;
}

.hero-video.is-ready {
  opacity: 0.35;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(92%, 560px);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.65));
  animation: logo-rise 1.4s var(--ease-out) both, logo-breathe 7s ease-in-out 1.4s infinite;
  transform-origin: center bottom;
}

.hero-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.35) 0%, rgba(110, 83, 48, 0.12) 40%, transparent 70%);
  filter: blur(28px);
  animation: pulse-glow 5s ease-in-out infinite;
  z-index: 1;
}

.hero-ring,
.hero-ring-delay {
  position: absolute;
  width: min(78%, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.28);
  box-shadow: inset 0 0 40px rgba(201, 164, 92, 0.08);
  animation: ring-expand 5.5s ease-out infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-ring-delay {
  animation-delay: 2.2s;
  border-color: rgba(201, 164, 92, 0.15);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 34rem;
  padding-right: 1rem;
}

.hero-eyebrow {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  color: var(--ivory);
  text-shadow:
    0 0 40px rgba(201, 164, 92, 0.25),
    0 2px 0 rgba(0, 0, 0, 0.5);
  margin-bottom: 0.55rem;
}

.brand-line {
  display: inline-block;
  background: linear-gradient(180deg, #fff8e8 10%, var(--gold-bright) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-shimmer 6s linear infinite;
  background-size: 100% 200%;
}

.hero-symbol {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.1rem;
}

.hero-tag {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--bone);
  max-width: 26ch;
  margin-bottom: 1.8rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.ca-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem 0.55rem 0.9rem;
  border: 1px solid rgba(201, 164, 92, 0.35);
  background: linear-gradient(180deg, rgba(23, 27, 36, 0.9), rgba(10, 12, 16, 0.95));
  max-width: 100%;
}

.ca-label {
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.ca-value {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.78rem;
  color: var(--mist);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(42vw, 280px);
}

.ca-copy {
  font-family: var(--font-title);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  color: var(--void);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  transition: filter 0.25s, transform 0.25s;
}

.ca-copy:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 1px;
  height: 3.5rem;
  display: flex;
  justify-content: center;
}

.scroll-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes logo-rise {
  from { opacity: 0; transform: translateY(40px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logo-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.65; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes ring-expand {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

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

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 1.35rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s, background 0.3s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}

.btn:hover::before {
  transform: translateX(120%);
}

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

.btn-ico {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
}

.btn-ico-invert {
  filter: invert(1) brightness(0.95);
}

.btn-gold {
  color: var(--void);
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  box-shadow: 0 8px 28px rgba(201, 164, 92, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 12px 36px rgba(201, 164, 92, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-steel {
  color: var(--ivory);
  border: 1px solid rgba(201, 164, 92, 0.45);
  background: linear-gradient(180deg, rgba(40, 46, 58, 0.9), rgba(16, 18, 24, 0.95));
}

.btn-steel:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 164, 92, 0.15);
}

.btn-ghost {
  color: var(--mist);
  border: 1px solid rgba(138, 147, 163, 0.35);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--ivory);
  border-color: rgba(201, 164, 92, 0.5);
}

/* Meander divider */
.meander {
  position: relative;
  z-index: 2;
  height: 18px;
  margin: 0 auto;
  max-width: var(--max);
  background:
    repeating-linear-gradient(
      90deg,
      var(--gold) 0 10px,
      transparent 10px 14px,
      var(--gold) 14px 18px,
      transparent 18px 22px,
      var(--gold) 22px 32px,
      transparent 32px 40px
    );
  opacity: 0.35;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.meander-invert {
  transform: scaleY(-1);
  opacity: 0.22;
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: 6.5rem 4vw;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 0.85rem;
  position: relative;
}

.section-mark::before,
.section-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-mark::before {
  right: calc(100% + 0.75rem);
  transform: scaleX(-1);
}

.section-mark::after {
  left: calc(100% + 0.75rem);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
}

.section-lead {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--mist);
  max-width: 36ch;
  margin: 0 auto;
}

/* About */
.about {
  background: linear-gradient(180deg, transparent, rgba(23, 27, 36, 0.45) 30%, transparent);
}

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

.portrait-frame {
  position: relative;
  padding: 0.7rem;
  background:
    linear-gradient(145deg, rgba(201, 164, 92, 0.45), transparent 40%),
    linear-gradient(325deg, rgba(201, 164, 92, 0.35), transparent 45%),
    var(--ink);
  clip-path: polygon(6% 0, 94% 0, 100% 6%, 100% 94%, 94% 100%, 6% 100%, 0 94%, 0 6%);
}

.portrait-frame img {
  width: 100%;
  display: block;
  filter: contrast(1.05) saturate(0.92);
}

.portrait-shine {
  position: absolute;
  inset: 0.7rem;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12) 48%, transparent 62%);
  mix-blend-mode: soft-light;
  animation: shine-sweep 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine-sweep {
  0%, 100% { transform: translateX(-30%); opacity: 0; }
  40% { opacity: 1; }
  70% { transform: translateX(30%); opacity: 0; }
}

.about-lore p {
  margin-bottom: 1.25rem;
  font-size: 1.28rem;
  color: #d8d2c4;
}

.lore-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid rgba(201, 164, 92, 0.25);
  padding-top: 1.5rem;
}

.lore-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  align-items: baseline;
}

.lore-list span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* How to buy */
.buy-path {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 3rem;
}

.buy-path::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}

.buy-step {
  padding: 0 1.1rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--void);
  background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold-deep));
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(7, 8, 11, 0.9), 0 0 24px rgba(201, 164, 92, 0.35);
  position: relative;
  z-index: 1;
}

.buy-step h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  color: var(--ivory);
}

.buy-step p {
  font-size: 1.05rem;
  color: var(--mist);
  max-width: 22ch;
  margin: 0 auto;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Chart */
.chart-shell {
  border: 1px solid rgba(201, 164, 92, 0.28);
  background:
    linear-gradient(180deg, rgba(23, 27, 36, 0.65), rgba(7, 8, 11, 0.9));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chart-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--mist);
}

.chart-tag img {
  width: 0.95rem;
  height: 0.95rem;
}

.chart-open {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  transition: color 0.25s;
}

.chart-open img {
  width: 1rem;
  height: 1rem;
}

.chart-open:hover {
  color: var(--gold-bright);
}

.chart-frame {
  position: relative;
  width: 100%;
  height: min(70vh, 620px);
  background: #0b0e13;
}

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

.chart-frame.is-live iframe {
  display: block;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  color: var(--mist);
  font-style: italic;
  background:
    radial-gradient(circle at center, rgba(201, 164, 92, 0.08), transparent 55%),
    #0b0e13;
}

.chart-frame.is-live .chart-placeholder {
  display: none;
}

.chart-placeholder img {
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.75;
  animation: float-soft 3.5s ease-in-out infinite;
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Join Us — banner only here */
.joinus {
  padding-top: 0;
  overflow: hidden;
}

.join-banner {
  position: relative;
  width: 100%;
  max-height: min(58vh, 520px);
  overflow: hidden;
  margin-bottom: 3.5rem;
}

.join-banner-img {
  width: 100%;
  height: min(58vh, 520px);
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.04);
  animation: banner-ken 22s ease-in-out infinite alternate;
  filter: saturate(0.9) contrast(1.05);
}

.join-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 11, 0.15) 0%, rgba(7, 8, 11, 0.35) 45%, var(--void) 100%),
    linear-gradient(90deg, rgba(7, 8, 11, 0.55), transparent 35%, transparent 65%, rgba(7, 8, 11, 0.55));
  pointer-events: none;
}

.join-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

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

.join-inner {
  text-align: center;
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.join-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 10.5rem;
  justify-content: center;
  padding: 1.05rem 1.4rem;
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(201, 164, 92, 0.35);
  background: linear-gradient(180deg, rgba(30, 34, 44, 0.85), rgba(10, 12, 16, 0.95));
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.join-link img {
  width: 1.2rem;
  height: 1.2rem;
}

.join-link:first-child img {
  filter: invert(1);
}

.join-link:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 164, 92, 0.18);
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  padding: 3rem 4vw 2.5rem;
  border-top: 1px solid rgba(201, 164, 92, 0.18);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 164, 92, 0.4);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ivory);
}

.footer-brand span {
  font-size: 0.85rem;
  color: var(--gold);
}

.footer-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--steel);
  font-style: italic;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
}

.footer-socials a {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 164, 92, 0.28);
  transition: border-color 0.25s, transform 0.25s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-socials img {
  width: 1rem;
  height: 1rem;
}

.footer-socials a:first-child img {
  filter: invert(1);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.buy-step.reveal:nth-child(2) { transition-delay: 0.1s; }
.buy-step.reveal:nth-child(3) { transition-delay: 0.2s; }
.buy-step.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 1.25rem);
    gap: 1rem;
  }

  .hero::before {
    background: linear-gradient(180deg, transparent 35%, rgba(7, 8, 11, 0.85) 78%);
  }

  .hero-stage {
    min-height: min(52vh, 420px);
    order: -1;
  }

  .hero-logo {
    width: min(88%, 420px);
  }

  .hero-copy {
    margin: 0 auto;
    padding-right: 0;
  }

  .hero-tag {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-cta {
    justify-content: center;
  }

  .about-grid,
  .buy-path {
    grid-template-columns: 1fr;
  }

  .buy-path::before {
    display: none;
  }

  .buy-step {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(201, 164, 92, 0.12);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    background: rgba(7, 8, 11, 0.96);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .section {
    padding: 4.5rem 5vw;
  }

  .ca-value {
    max-width: 40vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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