/* Moon Doge Coin — Gold Lunar Theme (matched to logo + banner) */
:root {
  --void: #000000;
  --space: #07060a;
  --ink: #100e08;
  --panel: rgba(18, 14, 6, 0.78);
  --line: rgba(232, 185, 35, 0.28);
  --line-strong: rgba(255, 215, 100, 0.55);
  --text: #f6efd8;
  --muted: #b6a57a;
  --cream: #fff4d2;
  --gold: #ffd700;
  --gold-hot: #ffe566;
  --gold-deep: #c9971a;
  --amber: #e0a91a;
  --bronze: #8a6a1e;
  --glow: 0 0 28px rgba(255, 215, 0, 0.4);
  --glow-soft: 0 0 55px rgba(255, 200, 40, 0.18);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-tech: "Orbitron", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 18px;
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gold-grad: linear-gradient(135deg, #fff4c2 0%, #ffd700 28%, #e0a91a 62%, #ffe566 100%);
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--void);
  overflow-x: hidden;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

/* ===== Cosmos ===== */
.cosmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 12% 8%, rgba(255, 190, 40, 0.16), transparent 60%),
    radial-gradient(900px 700px at 88% 20%, rgba(180, 110, 20, 0.14), transparent 55%),
    radial-gradient(800px 500px at 50% 100%, rgba(120, 80, 10, 0.22), transparent 50%),
    linear-gradient(180deg, #000 0%, #08070b 50%, #050403 100%);
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gold-haze {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: hazeDrift 20s ease-in-out infinite alternate;
}

.haze-a {
  width: 48vw;
  height: 48vw;
  left: -12%;
  top: 5%;
  background: radial-gradient(circle, rgba(255, 200, 50, 0.28), transparent 70%);
}

.haze-b {
  width: 36vw;
  height: 36vw;
  right: -8%;
  top: 28%;
  background: radial-gradient(circle, rgba(200, 130, 20, 0.22), transparent 70%);
  animation-delay: -8s;
}

.haze-c {
  width: 55vw;
  height: 28vw;
  left: 20%;
  bottom: -8%;
  background: radial-gradient(circle, rgba(255, 180, 40, 0.14), transparent 70%);
  animation-delay: -14s;
}

.lunar-rim {
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 55vh;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 210, 80, 0.18), transparent 55%),
    linear-gradient(to top, rgba(40, 28, 8, 0.55), transparent);
  box-shadow: 0 -40px 120px rgba(255, 180, 40, 0.08);
}

.dust-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dust-particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: rgba(255, 220, 120, 0.55);
  box-shadow: 0 0 6px rgba(255, 200, 60, 0.45);
  animation: dustRise linear infinite;
}

@keyframes hazeDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(30px, -24px, 0) scale(1.08); }
}

@keyframes dustRise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  15% { opacity: 0.7; }
  100% { transform: translateY(-100vh) scale(0.4); opacity: 0; }
}

/* ===== Ticker ===== */
.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.ticker-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 0.55rem 0;
  animation: tickerMove 34s linear infinite;
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.ticker-track span { white-space: nowrap; opacity: 0.9; }
.ticker-track span::after {
  content: " / ";
  margin-left: 2.4rem;
  color: var(--cream);
  opacity: 0.4;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.nav-shell {
  max-width: 1180px;
  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.75rem;
}

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 215, 0, 0.55);
  box-shadow: var(--glow);
  background: #1a1408;
}

.nav-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-ticker {
  font-family: var(--font-tech);
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
}

.site-nav a:hover {
  color: var(--cream);
  background: rgba(255, 215, 0, 0.08);
}

.nav-cta {
  color: #1a1200 !important;
  background: var(--gold-grad) !important;
  box-shadow: var(--glow);
  font-weight: 700 !important;
}

.nav-cta:hover { filter: brightness(1.08); }

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

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

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Shared ===== */
main { position: relative; z-index: 1; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.5rem 1.25rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-kicker {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.85rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 200, 40, 0.35));
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, filter 0.25s, background 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.btn-ico { width: 20px; height: 20px; object-fit: contain; }

.btn-gold {
  color: #1a1200;
  background: var(--gold-grad);
  box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.55);
}

.btn-ghost {
  color: var(--cream);
  background: rgba(20, 16, 6, 0.7);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: var(--glow-soft);
}

.btn-icon {
  width: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(20, 16, 6, 0.7);
}

.btn-icon img { width: 18px; height: 18px; }
.btn-icon:hover { box-shadow: var(--glow); }

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

.reveal[data-reveal="left"] { transform: translateX(-36px); }
.reveal[data-reveal="right"] { transform: translateX(36px); }
.reveal[data-reveal="up"] { transform: translateY(40px); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 36px);
  display: flex;
  align-items: center;
  padding: 2rem 1.25rem 4.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.2rem;
  align-items: center;
}

.coin-stage {
  position: relative;
  width: min(440px, 88vw);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 3;
  border: 3px solid rgba(255, 215, 0, 0.65);
  box-shadow:
    0 0 0 10px rgba(255, 200, 40, 0.08),
    0 0 60px rgba(255, 200, 40, 0.45),
    0 24px 60px rgba(0, 0, 0, 0.65);
  animation: floatCoin 5.5s ease-in-out infinite;
  background: #1a1408;
}

@keyframes floatCoin {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.coin-ring {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.ring-outer {
  inset: 0;
  border: 1px solid rgba(255, 215, 0, 0.28);
  animation: spinSlow 22s linear infinite;
  box-shadow: inset 0 0 40px rgba(255, 200, 40, 0.08);
}

.ring-outer::before,
.ring-outer::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.ring-outer::before { top: 8%; left: 48%; }
.ring-outer::after { bottom: 14%; right: 10%; background: var(--cream); box-shadow: 0 0 12px var(--cream); }

.ring-inner {
  inset: 9%;
  border: 1px dashed rgba(255, 215, 0, 0.35);
  animation: spinSlow 14s linear infinite reverse;
}

.coin-flare {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 80, 0.4), transparent 68%);
  filter: blur(20px);
  z-index: 1;
  animation: flarePulse 4s ease-in-out infinite;
}

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

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

.coin-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 14px var(--gold);
  z-index: 4;
  animation: sparkTwinkle 2.4s ease-in-out infinite;
}

.s1 { top: 12%; right: 18%; }
.s2 { bottom: 22%; left: 12%; animation-delay: 0.7s; }
.s3 { top: 40%; right: 6%; animation-delay: 1.3s; width: 4px; height: 4px; }

@keyframes sparkTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.3); }
}

.mission-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(20, 16, 6, 0.75);
  font-family: var(--font-tech);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.chip-ico { width: 14px; height: 14px; }

.hero-title {
  font-family: var(--font-display);
  line-height: 0.88;
  margin-bottom: 0.45rem;
}

.title-main {
  display: block;
  font-size: clamp(3.4rem, 10vw, 6.4rem);
  letter-spacing: 0.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(255, 200, 40, 0.45));
  animation: goldShimmer 4s ease-in-out infinite;
}

.title-sub {
  display: block;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: 0.18em;
  color: var(--cream);
  text-shadow: 0 0 24px rgba(255, 215, 0, 0.35);
}

@keyframes goldShimmer {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(255, 200, 40, 0.4)); }
  50% { filter: drop-shadow(0 0 34px rgba(255, 230, 100, 0.7)); }
}

.hero-symbol {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255, 200, 40, 0.45);
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 28ch;
  margin-bottom: 1.5rem;
}

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

.ca-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(28, 22, 8, 0.9), rgba(8, 6, 2, 0.92));
  padding: 0.95rem 1rem;
  box-shadow: var(--glow-soft);
  backdrop-filter: blur(10px);
  max-width: 520px;
}

.ca-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ca-chain { color: var(--gold); }

.ca-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.ca-addr {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.86rem;
  color: var(--cream);
}

.ca-copy {
  flex-shrink: 0;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 215, 0, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 0.25s, box-shadow 0.25s;
}

.ca-copy:hover,
.ca-copy.copied {
  background: rgba(255, 215, 0, 0.28);
  box-shadow: var(--glow);
}

.hero-scroll {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-tech);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.4rem;
}

.about-panel {
  position: relative;
  padding: 1.5rem 1.3rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(32, 24, 8, 0.72), rgba(8, 6, 2, 0.85));
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 215, 0, 0.08), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.about-panel:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--glow-soft);
}

.about-panel:hover::before { transform: translateX(120%); }

.panel-coin {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--glow-soft);
}

.panel-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-index {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.about-panel h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.55rem;
  color: var(--cream);
}

.about-panel p { color: var(--muted); font-size: 0.95rem; }

.about-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background: rgba(8, 6, 2, 0.75);
  box-shadow: var(--glow-soft);
}

.feature-crew {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  min-height: 320px;
}

.feature-crew-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line);
  transition: transform 1.1s var(--ease);
}

.feature-crew:hover .feature-crew-img { transform: scale(1.04); }

.feature-logo-float {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 215, 0, 0.7);
  box-shadow: var(--glow);
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  animation: floatCoin 5.5s ease-in-out infinite;
  background: #1a1408;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0.5rem 1rem 0.25rem;
}

.feature-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-copy > p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 48ch;
}

.feature-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stat {
  min-width: 96px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(24, 18, 6, 0.8);
  text-align: center;
}

.stat-val {
  display: block;
  font-family: var(--font-tech);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== Signals ===== */
.signals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.signal-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: rgba(10, 8, 2, 0.85);
  overflow: hidden;
  box-shadow: var(--glow-soft);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.signal-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--glow);
}

.signal-frame {
  position: relative;
  overflow: hidden;
  background: #0a0804;
  height: 340px;
  flex-shrink: 0;
}

.signal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 1s var(--ease);
}

.signal-card:hover .signal-img { transform: scale(1.03); }

.signal-card figcaption {
  padding: 1.1rem 1.2rem 1.25rem;
  border-top: 1px solid var(--line);
  flex: 1;
}

.signal-tag {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.signal-card figcaption p {
  color: var(--muted);
  font-size: 0.95rem;
}

.crew-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(8, 6, 2, 0.9);
  box-shadow: var(--glow-soft);
}

.crew-strip-visual {
  position: relative;
  min-height: 280px;
}

.crew-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.crew-strip-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 35%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 45%);
  pointer-events: none;
}

.crew-strip-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.75rem;
}

.crew-strip-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: 0.04em;
  margin: 0.35rem 0 0.7rem;
  color: var(--cream);
}

.crew-strip-copy > p:last-child { color: var(--muted); }

/* ===== How to buy ===== */
.howtobuy { position: relative; overflow: hidden; }

.howto-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  z-index: 0;
}

.howto-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) sepia(0.35) blur(2px);
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.howtobuy > *:not(.howto-bg) { position: relative; z-index: 1; }

.buy-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.buy-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(36, 28, 8, 0.72), rgba(8, 6, 2, 0.65));
  overflow: hidden;
}

.buy-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-grad);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 200, 40, 0.35));
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.step-body p { color: var(--muted); }

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

/* ===== Chart ===== */
.chart-frame {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.92);
  box-shadow: var(--glow-soft), 0 30px 80px rgba(0, 0, 0, 0.5);
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 12, 4, 0.95);
}

.chrome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4a3a18;
}

.chrome-dot:nth-child(1) { background: #d4a017; }
.chrome-dot:nth-child(2) { background: #ffe566; }
.chrome-dot:nth-child(3) { background: #8a6a1e; }

.chrome-label {
  margin-left: 0.65rem;
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.chrome-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

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

.chart-embed {
  position: relative;
  width: 100%;
  height: min(640px, 78vh);
  background: #050403;
}

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

/* ===== Join Us ===== */
.join-banner {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  margin-bottom: 1.75rem;
  box-shadow: var(--glow), 0 28px 70px rgba(0, 0, 0, 0.5);
  background: #000;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
  transition: transform 1.2s var(--ease);
}

.join-banner:hover .banner-img { transform: scale(1.04); }

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 230, 140, 0.16) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shinePass 6.5s ease-in-out infinite;
  pointer-events: none;
}

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

.join-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(14, 10, 2, 0.8);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--glow-soft);
}

.social-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.social-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
  color: var(--cream);
}

.social-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.9);
  padding: 2rem 1.25rem 2.5rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: var(--glow-soft);
}

.footer-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-socials { display: flex; gap: 0.65rem; }

.footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(18, 14, 4, 0.8);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.footer-socials a:hover {
  border-color: var(--line-strong);
  box-shadow: var(--glow);
}

.footer-socials img { width: 16px; height: 16px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner,
  .about-feature,
  .signals-grid,
  .crew-strip {
    grid-template-columns: 1fr;
  }

  .crew-strip-glow {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 55%);
  }

  .hero-copy { text-align: center; }
  .hero-tagline { margin-inline: auto; }
  .hero-actions,
  .ca-panel {
    justify-content: center;
    margin-inline: auto;
  }

  .about-grid,
  .join-links { grid-template-columns: 1fr 1fr; }

  .feature-crew-img { min-height: 260px; }
  .signal-frame { height: 280px; }
}

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

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + 34px);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a { padding: 0.85rem 1rem; }

  .about-grid,
  .join-links { grid-template-columns: 1fr; }

  .hero {
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 5rem;
  }

  .chart-embed { height: 520px; }
  .signal-frame { height: 240px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

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