/* Pondering Deer — foggy bridge aesthetic */

:root {
  --void: #080b10;
  --deep: #0f141c;
  --slate: #1a2330;
  --mist-blue: #2a3544;
  --fog: rgba(196, 212, 228, 0.08);
  --silver: #b8c4d4;
  --silver-bright: #e4ebf4;
  --chrome: linear-gradient(
    135deg,
    #6b7a8f 0%,
    #e8edf5 35%,
    #9aa8ba 55%,
    #f5f8fc 70%,
    #7a889c 100%
  );
  --glass: rgba(18, 26, 36, 0.72);
  --glass-border: rgba(184, 196, 212, 0.14);
  --glow: rgba(160, 185, 210, 0.35);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--silver);
  background: var(--void);
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: var(--silver-bright);
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

a:hover {
  color: #fff;
}

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

/* Atmospheric layers */
#fog-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

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

.mist-layer--1 {
  background: radial-gradient(
      ellipse 80% 50% at 50% 100%,
      rgba(42, 58, 78, 0.45),
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 40% at 20% 30%,
      rgba(100, 130, 160, 0.06),
      transparent 60%
    );
  animation: mistDrift 28s ease-in-out infinite alternate;
}

.mist-layer--2 {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 20, 28, 0.4) 55%,
    rgba(8, 11, 16, 0.85) 100%
  );
}

@keyframes mistDrift {
  from {
    transform: translateX(-2%) scale(1);
    opacity: 0.9;
  }
  to {
    transform: translateX(2%) scale(1.03);
    opacity: 1;
  }
}

.film-grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
}

.bridge-rail {
  position: fixed;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 196, 212, 0.25) 20%,
    rgba(228, 235, 244, 0.4) 50%,
    rgba(184, 196, 212, 0.25) 80%,
    transparent
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bridge-rail--top {
  top: var(--header-h);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(8, 11, 16, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--glass-border);
}

.nav-bar {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--silver-bright);
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 20px var(--glow);
}

.nav-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--silver);
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}

.nav-links a:hover {
  background: var(--fog);
  color: var(--silver-bright);
}

.nav-buy {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  background: rgba(95, 203, 136, 0.12) !important;
  border: 1px solid rgba(95, 203, 136, 0.35) !important;
  color: #a8ebc4 !important;
}

.nav-buy:hover {
  background: rgba(95, 203, 136, 0.22) !important;
  color: #d4f5e3 !important;
}

.nav-buy-icon {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--silver-bright);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Main layout */
main {
  position: relative;
  z-index: 3;
}

.section {
  padding: 5rem 1.25rem;
}

.section-shell {
  max-width: 1100px;
  margin: 0 auto;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.section-lead {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(184, 196, 212, 0.75);
  font-size: 1.05rem;
}

.shimmer-text {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s ease-in-out infinite;
  background-size: 200% auto;
}

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

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

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

.hero-video.hidden {
  display: none;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 70% 55% at 50% 45%,
      rgba(45, 58, 72, 0.5),
      transparent 65%
    ),
    linear-gradient(180deg, var(--deep) 0%, var(--void) 100%);
  transition: opacity 0.8s;
}

.hero-video-fallback.hidden {
  opacity: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 80% at 50% 50%,
    transparent 30%,
    rgba(8, 11, 16, 0.75) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-orbit {
  position: relative;
  width: min(320px, 75vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatLogo 6s ease-in-out infinite;
}

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

.logo-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}

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

.logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(184, 196, 212, 0.2);
  animation: spinRing 24s linear infinite;
}

.logo-ring::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--silver-bright);
  box-shadow: 0 0 12px var(--glow);
}

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

.hero-logo {
  width: 78%;
  height: 78%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(228, 235, 244, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.antler-accent {
  position: absolute;
  width: 60px;
  color: rgba(184, 196, 212, 0.2);
  animation: antlerSway 7s ease-in-out infinite;
}

.antler-accent--left {
  left: 0;
  top: 15%;
  transform: scaleX(-1);
}

.antler-accent--right {
  right: 0;
  top: 15%;
  animation-delay: -3.5s;
}

@keyframes antlerSway {
  0%,
  100% {
    transform: rotate(-3deg);
    opacity: 0.15;
  }
  50% {
    transform: rotate(3deg);
    opacity: 0.35;
  }
}

.antler-accent--left {
  animation-name: antlerSwayLeft;
}

@keyframes antlerSwayLeft {
  0%,
  100% {
    transform: scaleX(-1) rotate(-3deg);
    opacity: 0.15;
  }
  50% {
    transform: scaleX(-1) rotate(3deg);
    opacity: 0.35;
  }
}

.hero-content {
  text-align: left;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

.hero-line {
  display: block;
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  letter-spacing: 0.04em;
  color: var(--silver-bright);
}

.hero-line--accent {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: rgba(184, 196, 212, 0.65);
  margin-bottom: 1.25rem;
}

.hero-bio {
  font-size: 1.1rem;
  color: rgba(196, 208, 222, 0.85);
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

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

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--primary {
  background: linear-gradient(135deg, rgba(95, 203, 136, 0.25), rgba(29, 57, 52, 0.6));
  border: 1px solid rgba(95, 203, 136, 0.45);
  color: #c8f0d8;
  box-shadow: 0 8px 32px rgba(95, 203, 136, 0.15);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(95, 203, 136, 0.25);
  color: #fff;
}

.btn--ghost {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--silver-bright);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(30, 40, 54, 0.85);
  border-color: rgba(184, 196, 212, 0.28);
}

.btn--sm {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

.pulse-glow {
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(95, 203, 136, 0.15);
  }
  50% {
    box-shadow: 0 8px 48px rgba(95, 203, 136, 0.35);
  }
}

/* Contract strip */
.ca-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  max-width: 100%;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.ca-strip:hover {
  border-color: rgba(184, 196, 212, 0.28);
}

.ca-strip.copied-flash {
  border-color: rgba(95, 203, 136, 0.5);
  box-shadow: 0 0 24px rgba(95, 203, 136, 0.2);
}

.ca-strip__chain {
  width: 22px;
  height: 22px;
}

.ca-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

.ca-strip code {
  flex: 1;
  min-width: 0;
  font-size: 0.78rem;
  word-break: break-all;
  color: var(--silver-bright);
}

.ca-copy-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(184, 196, 212, 0.1);
  color: var(--silver-bright);
  transition: background 0.2s;
}

.ca-copy-btn:hover:not(:disabled) {
  background: rgba(184, 196, 212, 0.2);
}

.ca-copy-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ca-copy-btn.copied {
  background: rgba(95, 203, 136, 0.25);
  color: #a8ebc4;
}

/* Marquee */
.ponder-marquee {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--glass-border);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ponder-marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(184, 196, 212, 0.45);
}

.ponder-marquee__track .dot {
  opacity: 0.35;
}

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

/* Origin tweet narrative */
.narrative {
  background: radial-gradient(
    ellipse 70% 45% at 50% 0%,
    rgba(55, 72, 92, 0.2),
    transparent 65%
  );
}

.narrative-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.narrative-copy {
  padding: 0 0.5rem;
}

.narrative-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--silver-bright);
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(184, 196, 212, 0.35);
}

.narrative-caption {
  font-size: 0.98rem;
  color: rgba(196, 208, 222, 0.78);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.narrative-caption a {
  color: var(--silver-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.narrative-link .btn-icon {
  filter: invert(1);
}

.tweet-narrative {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #000;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  min-height: 420px;
}

.tweet-narrative__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(160, 185, 210, 0.12),
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
}

.tweet-embed {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  background: transparent;
}

/* About */
.about {
  background: linear-gradient(180deg, transparent, rgba(15, 20, 28, 0.6) 30%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.about-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.about-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(160, 185, 210, 0.08) 50%,
    transparent 100%
  );
  animation: scanLine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanLine {
  0%,
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateY(100%);
    opacity: 1;
  }
}

.about-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.about-tags li {
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 999px;
  background: var(--fog);
  border: 1px solid var(--glass-border);
  color: rgba(196, 208, 222, 0.8);
}

.about-text {
  font-size: 1.05rem;
  color: rgba(196, 208, 222, 0.88);
  margin-bottom: 2rem;
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-meta dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.25rem;
}

.about-meta dd {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--silver-bright);
}

/* Steps */
.howtobuy {
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(42, 58, 78, 0.25),
    transparent 60%
  );
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 196, 212, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.step-card--highlight {
  border-color: rgba(95, 203, 136, 0.3);
  background: linear-gradient(
    160deg,
    rgba(95, 203, 136, 0.08),
    rgba(18, 26, 36, 0.85)
  );
}

.step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0.35;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-icon--check svg {
  width: 48px;
  height: 48px;
  color: var(--silver);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--silver-bright);
  margin-bottom: 0.65rem;
}

.step-card p {
  font-size: 0.92rem;
  color: rgba(184, 196, 212, 0.78);
  margin-bottom: 1rem;
}

.step-card .btn {
  margin-top: 0.25rem;
}

/* Chart */
.chart-panel {
  max-width: 900px;
  margin: 0 auto;
}

.chart-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--slate);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

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

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(160deg, var(--slate), var(--deep));
  text-align: center;
  padding: 2rem;
}

.chart-placeholder.hidden {
  display: none;
}

.chart-placeholder-icon {
  width: 56px;
  height: auto;
  opacity: 0.7;
}

.chart-placeholder p {
  color: rgba(184, 196, 212, 0.65);
  font-size: 0.95rem;
}

/* Join Us */
.joinus {
  padding-bottom: 4rem;
}

.joinus-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.joinus-banner-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  margin-bottom: -3rem;
}

.joinus-banner {
  width: 100%;
  height: auto;
  display: block;
  animation: bannerReveal 1.2s var(--ease) both;
}

@keyframes bannerReveal {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.joinus-banner-mist {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(8, 11, 16, 0.5) 75%,
    rgba(8, 11, 16, 0.92) 100%
  );
  pointer-events: none;
}

.joinus-panel {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.joinus-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.joinus-text {
  color: rgba(196, 208, 222, 0.82);
  margin-bottom: 1.75rem;
  font-size: 1.02rem;
}

.joinus-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--silver-bright);
  font-size: 0.88rem;
  font-weight: 500;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.social-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(184, 196, 212, 0.3);
  color: #fff;
}

.social-chip img {
  width: 22px;
  height: 22px;
}

.social-chip--buy {
  border-color: rgba(95, 203, 136, 0.35);
  background: rgba(95, 203, 136, 0.1);
}

.social-chip--buy:hover {
  background: rgba(95, 203, 136, 0.2);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 3;
  padding: 3rem 1.25rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  opacity: 0.85;
  border: 1px solid var(--glass-border);
}

.site-footer p {
  font-size: 0.88rem;
  color: rgba(184, 196, 212, 0.6);
  margin-bottom: 0.35rem;
}

.footer-disclaimer {
  font-size: 0.78rem !important;
  opacity: 0.5;
  margin-top: 0.75rem !important;
}

.footer-top {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(184, 196, 212, 0.5);
}

.footer-top:hover {
  color: var(--silver-bright);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .narrative-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .narrative-quote {
    padding-left: 0;
    border-left: none;
    padding-top: 0.5rem;
    border-top: 2px solid rgba(184, 196, 212, 0.2);
  }

  .narrative-link {
    margin-bottom: 0.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-bio,
  .ca-strip {
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-meta {
    text-align: left;
  }

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

  .antler-accent {
    display: none;
  }
}

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

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem;
    background: rgba(8, 11, 16, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }

  .section {
    padding: 4rem 1rem;
  }

  .joinus-panel {
    padding: 2rem 1.25rem;
  }

  .about-meta {
    grid-template-columns: 1fr;
  }
}

@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;
  }
}
