:root {
  --pride-red: #e40303;
  --pride-orange: #ff8c00;
  --pride-yellow: #ffed00;
  --pride-green: #008026;
  --pride-blue: #004dff;
  --pride-purple: #732982;
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --navy: #0a0a1a;
  --navy-light: #12122a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --text: #f8f4ff;
  --text-muted: #b8b0c8;
  --rainbow: linear-gradient(
    90deg,
    var(--pride-red),
    var(--pride-orange),
    var(--pride-yellow),
    var(--pride-green),
    var(--pride-blue),
    var(--pride-purple)
  );
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 16px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Animated Background Scene ── */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-drift 18s ease-in-out infinite;
}

.bg-orb--1 {
  width: 55vw;
  height: 55vw;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(115, 41, 130, 0.7), transparent 70%);
  animation-duration: 22s;
}

.bg-orb--2 {
  width: 45vw;
  height: 45vw;
  top: 40%;
  right: -15%;
  background: radial-gradient(circle, rgba(228, 3, 3, 0.45), transparent 70%);
  animation-duration: 19s;
  animation-delay: -4s;
}

.bg-orb--3 {
  width: 40vw;
  height: 40vw;
  bottom: -10%;
  left: 20%;
  background: radial-gradient(circle, rgba(0, 77, 255, 0.5), transparent 70%);
  animation-duration: 24s;
  animation-delay: -8s;
}

.bg-orb--4 {
  width: 30vw;
  height: 30vw;
  top: 20%;
  left: 45%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.35), transparent 70%);
  animation-duration: 16s;
  animation-delay: -2s;
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, -3%) scale(1.06);
  }
  66% {
    transform: translate(-3%, 4%) scale(0.94);
  }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  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");
}

.bg-shimmer {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(228, 3, 3, 0.04) 40deg,
    rgba(255, 140, 0, 0.04) 80deg,
    rgba(255, 237, 0, 0.03) 120deg,
    rgba(0, 128, 38, 0.03) 160deg,
    rgba(0, 77, 255, 0.04) 200deg,
    rgba(115, 41, 130, 0.05) 240deg,
    transparent 300deg
  );
  animation: shimmer-rotate 30s linear infinite;
}

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

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), rgba(115, 41, 130, 0.05) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: screen;
}

body:hover .cursor-glow {
  opacity: 1;
}

.pride-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--rainbow);
  background-size: 200% 100%;
  animation: pride-flow 4s linear infinite;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(228, 3, 3, 0.5), 0 0 40px rgba(115, 41, 130, 0.3);
}

@keyframes pride-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

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

/* ── Nav ── */
.nav {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 0;
  background: rgba(10, 10, 26, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.3s, background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 10, 26, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(212, 175, 55, 0.15);
}

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

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

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background: var(--rainbow) border-box;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

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

.btn-primary {
  background: var(--rainbow);
  background-size: 200% 100%;
  animation: pride-flow 3s linear infinite;
  color: #fff;
  box-shadow: 0 8px 28px rgba(228, 3, 3, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(115, 41, 130, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-social {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.icon-btn:hover {
  background: var(--surface-hover);
  transform: scale(1.08);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.25rem;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* ── Sections ── */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-title .gold {
  color: var(--gold-light);
  -webkit-text-fill-color: var(--gold-light);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-rays {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(115, 41, 130, 0.06) 30deg, transparent 60deg, rgba(228, 3, 3, 0.05) 120deg, transparent 150deg, rgba(0, 77, 255, 0.05) 210deg, transparent 240deg, rgba(255, 140, 0, 0.04) 300deg, transparent 330deg);
  animation: shimmer-rotate 60s linear infinite;
  pointer-events: none;
}

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

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

.hero-logo-wrap {
  position: relative;
  width: min(380px, 90vw);
  aspect-ratio: 1;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--pride-red),
    var(--pride-orange),
    var(--pride-yellow),
    var(--pride-green),
    var(--pride-blue),
    var(--pride-purple),
    var(--pride-red)
  );
  animation: spin 8s linear infinite;
  opacity: 0.9;
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--pride-red),
    var(--pride-orange),
    var(--pride-yellow),
    var(--pride-green),
    var(--pride-blue),
    var(--pride-purple),
    var(--pride-red)
  );
  opacity: 0.2;
  filter: blur(32px);
  animation: spin 12s linear infinite reverse, pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
}

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

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--navy);
}

.hero-sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
}

.hero-sparkle:nth-child(2) {
  top: 5%;
  right: 10%;
  animation-delay: 0.5s;
}

.hero-sparkle:nth-child(3) {
  bottom: 15%;
  left: 5%;
  animation-delay: 1s;
}

.hero-sparkle:nth-child(4) {
  top: 40%;
  right: -5%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-12px) rotate(15deg);
    opacity: 1;
  }
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.rainbow-text {
  background: linear-gradient(
    90deg,
    var(--pride-red),
    var(--pride-orange),
    var(--pride-yellow),
    var(--pride-green),
    var(--pride-blue),
    var(--pride-purple),
    var(--pride-red)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow-shift 4s linear infinite;
  filter: drop-shadow(0 0 24px rgba(115, 41, 130, 0.4));
}

@keyframes rainbow-shift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-symbol {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
  }
  50% {
    box-shadow: 0 0 36px rgba(212, 175, 55, 0.35);
  }
}

.hero-bio {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

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

.hero-social {
  display: flex;
  gap: 0.65rem;
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  max-width: 520px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contract-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.contract-address {
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
  flex-shrink: 0;
}

.copy-btn:hover {
  color: var(--gold-light);
}

.copy-btn svg {
  width: 18px;
  height: 18px;
}

/* ── About ── */
.about {
  background: linear-gradient(180deg, transparent, rgba(115, 41, 130, 0.06), transparent);
}

.about-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.03), transparent, rgba(115, 41, 130, 0.04), transparent);
  animation: shimmer-rotate 20s linear infinite;
  pointer-events: none;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rainbow);
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 820px;
}

.about-text p + p {
  margin-top: 1.25rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 40px rgba(115, 41, 130, 0.2);
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── How to Buy ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rainbow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 24px rgba(115, 41, 130, 0.15);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rainbow);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.howtobuy-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Chart ── */
.chart-wrap {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(0, 77, 255, 0.08);
  min-height: 520px;
  position: relative;
}

.chart-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--rainbow);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}

.chart-wrap iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.chart-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 520px;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}

.chart-placeholder span {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ── Join Us ── */
.joinus {
  background: linear-gradient(180deg, transparent, rgba(0, 77, 255, 0.05), transparent);
}

.joinus-banner {
  width: 100%;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow), 0 0 80px rgba(228, 3, 3, 0.12);
  border: 2px solid transparent;
  background:
    linear-gradient(var(--navy), var(--navy)) padding-box,
    var(--rainbow) border-box;
  position: relative;
}

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

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

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

.joinus-content {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.joinus-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

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

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 26, 0.97);
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 1rem;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-wrap {
    width: min(260px, 70vw);
  }

  .hero-bio {
    margin-inline: auto;
  }

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

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

  .contract-box {
    margin-inline: auto;
  }

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

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

@media (max-width: 520px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  .bg-orb {
    opacity: 0.3;
  }
}

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

  .cursor-glow {
    display: none;
  }
}
