/* Satoshicoin — Retro Gold Coin Theme */

:root {
  --bg-deep: #050505;
  --bg-panel: rgba(12, 10, 6, 0.88);
  --gold-bright: #f5d76e;
  --gold-mid: #d4af37;
  --gold-dark: #8b6914;
  --gold-shadow: #4a3a0a;
  --gold-glow: rgba(212, 175, 55, 0.45);
  --text-primary: #f0e6c8;
  --text-muted: #a89870;
  --border-gold: #c5a028;
  --border-dim: rgba(197, 160, 40, 0.25);
  --scanline: rgba(0, 0, 0, 0.12);
  --font-pixel: "Press Start 2P", monospace;
  --font-space: "Orbitron", sans-serif;
  --font-mono: "Share Tech Mono", monospace;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-deep);
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 5rem 0;
}

/* Background layers */
#gold-dust {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 160, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 160, 40, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: grid-drift 40s linear infinite;
}

.bg-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 175, 55, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139, 105, 20, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 60%, rgba(197, 160, 40, 0.08), transparent 45%);
}

.bg-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    var(--scanline) 2px,
    var(--scanline) 4px
  );
  opacity: 0.35;
  animation: scanline-flicker 8s steps(2) infinite;
}

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

@keyframes grid-drift {
  to { background-position: 32px 32px; }
}

@keyframes scanline-flicker {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.28; }
}

/* Floating coins */
.floating-coins {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.coin {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold-mid) 45%, var(--gold-dark) 85%);
  border: 3px solid var(--gold-shadow);
  box-shadow: 0 0 20px var(--gold-glow), inset 0 -4px 8px rgba(0, 0, 0, 0.4);
  opacity: 0.15;
  animation: float-coin 18s ease-in-out infinite;
}

.coin::after {
  content: "S";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-space);
  font-weight: 900;
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.35);
}

.coin-1 { top: 12%; left: 8%; animation-delay: 0s; width: 36px; height: 36px; }
.coin-2 { top: 55%; left: 92%; animation-delay: -4s; width: 56px; height: 56px; }
.coin-3 { top: 78%; left: 15%; animation-delay: -8s; }
.coin-4 { top: 25%; left: 85%; animation-delay: -12s; width: 40px; height: 40px; }
.coin-5 { top: 40%; left: 3%; animation-delay: -6s; width: 32px; height: 32px; }

@keyframes float-coin {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  25% { transform: translateY(-30px) rotateY(90deg); }
  50% { transform: translateY(-10px) rotateY(180deg); }
  75% { transform: translateY(-40px) rotateY(270deg); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border-dim);
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.12);
}

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

.brand-logo {
  border-radius: 50%;
  animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50% { box-shadow: 0 0 20px 4px var(--gold-glow); }
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-family: var(--font-space);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}

.brand-ticker {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

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

.site-nav a:not(.btn) {
  font-family: var(--font-space);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-mid);
  transition: width 0.3s var(--ease-out);
}

.site-nav a:not(.btn):hover {
  color: var(--gold-bright);
  text-shadow: 0 0 12px var(--gold-glow);
}

.site-nav a:not(.btn):hover::after {
  width: 100%;
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-space);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-mid) 50%, var(--gold-dark) 100%);
  color: #1a1200;
  border-color: var(--gold-bright);
  box-shadow:
    0 4px 0 var(--gold-shadow),
    0 0 20px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-gold:hover {
  box-shadow:
    0 6px 0 var(--gold-shadow),
    0 0 35px rgba(212, 175, 55, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(197, 160, 40, 0.08);
  color: var(--gold-bright);
  border-color: var(--border-gold);
}

.btn-outline:hover {
  background: rgba(197, 160, 40, 0.18);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 0.78rem;
}

.pulse-hover:hover {
  animation: btn-pulse 1.2s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 0 var(--gold-shadow), 0 0 20px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 4px 0 var(--gold-shadow), 0 0 40px rgba(212, 175, 55, 0.6); }
}

/* Panels */
.panel {
  position: relative;
  background: var(--bg-panel);
  border: 2px solid var(--border-dim);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.panel:hover {
  border-color: rgba(197, 160, 40, 0.5);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

.panel-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--gold-mid);
  border-style: solid;
}

.panel-corner.tl { top: -1px; left: -1px; border-width: 3px 0 0 3px; }
.panel-corner.br { bottom: -1px; right: -1px; border-width: 0 3px 3px 0; }

/* Section heads */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  color: var(--gold-mid);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.section-head h2 {
  font-family: var(--font-space);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  text-shadow: 0 0 30px var(--gold-glow);
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 540px;
  margin-inline: auto;
  font-size: 0.95rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 0;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  color: var(--gold-mid);
  padding: 0.5rem 0.85rem;
  border: 2px solid var(--border-dim);
  background: rgba(197, 160, 40, 0.06);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

.hero-title {
  margin-bottom: 0.5rem;
}

.title-line {
  display: block;
  font-family: var(--font-pixel);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  color: var(--gold-bright);
  position: relative;
  text-shadow:
    3px 3px 0 var(--gold-dark),
    6px 6px 0 var(--gold-shadow);
  animation: title-glitch 6s steps(1) infinite;
}

.title-sub {
  display: block;
  font-family: var(--font-space);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

@keyframes title-glitch {
  0%, 92%, 100% { transform: translate(0); filter: none; }
  93% { transform: translate(-2px, 1px); filter: hue-rotate(20deg); }
  94% { transform: translate(2px, -1px); }
  95% { transform: translate(0); }
}

.hero-ticker {
  font-family: var(--font-space);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-mid);
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.5);
  border: 2px dashed var(--border-dim);
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.ca-label {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  color: var(--gold-mid);
  letter-spacing: 0.1em;
}

.ca-text {
  flex: 1;
  font-size: 0.72rem;
  color: var(--text-primary);
  word-break: break-all;
  min-width: 0;
}

.ca-copy {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  padding: 0.45rem 0.65rem;
  background: rgba(197, 160, 40, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  transition: background 0.2s;
}

.ca-copy:hover { background: rgba(197, 160, 40, 0.3); }
.ca-copy.is-copied { background: rgba(95, 203, 136, 0.25); border-color: #5fcb88; color: #5fcb88; }

.hero-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  border-left: 3px solid var(--gold-mid);
  padding-left: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero media / coin frame */
.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.coin-frame {
  position: relative;
  width: min(380px, 90vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.coin-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--border-gold);
}

.coin-ring-outer {
  inset: 0;
  animation: ring-spin 20s linear infinite;
  border-style: dashed;
  opacity: 0.4;
}

.coin-ring-inner {
  inset: 12%;
  animation: ring-spin 14s linear infinite reverse;
  border-color: var(--gold-dark);
  opacity: 0.6;
}

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

.video-shell {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--gold-mid);
  box-shadow:
    0 0 40px var(--gold-glow),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  animation: coin-float 4s ease-in-out infinite;
}

.video-shell video,
.video-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
  animation: glare-sweep 5s ease-in-out infinite;
}

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

@keyframes glare-sweep {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.coin-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow);
  animation: orbit 6s linear infinite;
}

.coin-orbit span:nth-child(1) { animation-delay: 0s; }
.coin-orbit span:nth-child(2) { animation-delay: -2s; }
.coin-orbit span:nth-child(3) { animation-delay: -4s; }

@keyframes orbit {
  from { transform: rotate(0deg) translateX(190px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(190px) rotate(-360deg); }
}

.hero-caption {
  font-family: var(--font-space);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Marquee */
.hero-marquee {
  margin-top: 3rem;
  padding: 0.85rem 0;
  border-block: 2px solid var(--border-dim);
  background: rgba(197, 160, 40, 0.04);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  white-space: nowrap;
}

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

/* About */
.about {
  z-index: 1;
}

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

.about-lead {
  font-size: 1.05rem;
  color: var(--gold-bright);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-main p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.about-closer {
  color: var(--gold-mid) !important;
  font-family: var(--font-space);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 0 !important;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-dim);
}

.stats-title {
  font-family: var(--font-space);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-dim);
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.stat-row dt {
  color: var(--text-muted);
  font-family: var(--font-space);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-row dd {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.stat-row dd.gold {
  color: var(--gold-bright);
  font-family: var(--font-space);
  font-weight: 800;
}

.stats-coin {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dim);
}

.spin-coin {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: spin-3d 8s linear infinite;
  filter: drop-shadow(0 0 20px var(--gold-glow));
}

@keyframes spin-3d {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

/* How to buy */
.howtobuy {
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(197, 160, 40, 0.03), transparent);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  animation: step-rise 0.6s var(--ease-out) both;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

@keyframes step-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-num {
  display: block;
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.step-icon {
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.step-icon-text {
  width: 48px;
  height: 32px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  color: var(--gold-bright);
  border: 2px solid var(--border-gold);
  background: rgba(197, 160, 40, 0.1);
}

.step h3 {
  font-family: var(--font-space);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

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

/* Chart */
.chart-section {
  z-index: 1;
}

.chart-wrap {
  padding: 0;
  overflow: hidden;
}

.chart-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid var(--border-dim);
  font-family: var(--font-space);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.chart-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fcb88;
}

.chart-dot.live {
  animation: live-blink 1.5s ease-in-out infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #5fcb88; }
  50% { opacity: 0.4; box-shadow: none; }
}

.chart-header img {
  margin-left: auto;
  filter: brightness(1.2);
}

.chart-wrap iframe {
  display: block;
  width: 100%;
  height: min(520px, 70vh);
  border: none;
  background: #0d0d0d;
}

/* Join us */
.joinus {
  z-index: 1;
  padding-bottom: 6rem;
}

.joinus-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.joinus-banner {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.joinus-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  animation: banner-shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes banner-shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.joinus-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ca-box-wide {
  margin-bottom: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid var(--border-dim);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-align: center;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-mid);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.social-card img {
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.social-label {
  font-family: var(--font-space);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.social-handle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-footer span {
  font-family: var(--font-space);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  gap: 1rem;
}

.footer-nav a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-dim);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.footer-nav a:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 0 15px var(--gold-glow);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badge,
  .hero-tagline {
    margin-inline: auto;
  }

  .hero-tagline {
    text-align: left;
    max-width: 480px;
  }

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

  .ca-box {
    justify-content: center;
  }

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

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

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

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

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 2px solid var(--border-dim);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
    pointer-events: none;
  }

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

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

  .title-line {
    font-size: 1.75rem;
  }

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