/* ─── America 250 — Premium 2026 American Theme ─────────────────────────────── */

:root {
  --navy: #060d1a;
  --navy-mid: #0f1f3d;
  --navy-light: #1a3055;
  --red: #8b1a1a;
  --red-bright: #e02424;
  --gold: #c9a227;
  --gold-light: #f0d060;
  --parchment: #f4ead5;
  --parchment-dark: #e8dcc0;
  --parchment-shadow: #c4b896;
  --cream: #faf6ec;
  --ink: #1a1208;
  --ink-muted: #4a3f2f;
  --white: #ffffff;

  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Libre Baskerville", Georgia, serif;
  --font-accent: "IM Fell English", Georgia, serif;

  --header-h: 76px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  --glow-gold: 0 0 40px rgba(201, 162, 39, 0.35);
  --glow-red: 0 0 50px rgba(224, 36, 36, 0.25);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(201, 162, 39, 0.22);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--navy);
  overflow-x: hidden;
  min-height: 100vh;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ── Page loader ───────────────────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--navy);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(201, 162, 39, 0.15);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  animation: pulse-text 1.5s ease-in-out infinite;
}

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

@keyframes pulse-text {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── Scroll progress ───────────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red-bright), var(--gold-light), var(--red-bright));
  background-size: 200% 100%;
  animation: shimmer-bar 3s linear infinite;
  z-index: 200;
  box-shadow: 0 0 12px rgba(240, 208, 96, 0.6);
}

@keyframes shimmer-bar {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Background layers ─────────────────────────────────────────────────────── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: var(--navy);
}

.ambient-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(224, 36, 36, 0.15);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(201, 162, 39, 0.12);
  top: 40%;
  right: -10%;
  animation-delay: -4s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(26, 48, 85, 0.4);
  bottom: 10%;
  left: 30%;
  animation-delay: -8s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.noise-overlay {
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

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

.stripes-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red-bright) 0px,
    var(--red-bright) 40px,
    var(--white) 40px,
    var(--white) 80px
  );
  z-index: 50;
  opacity: 0.9;
  box-shadow: 0 -2px 20px rgba(224, 36, 36, 0.3);
}

/* ── Section backgrounds ───────────────────────────────────────────────────── */
.has-section-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-bg {
  position: absolute;
  inset: -8%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  will-change: transform;
}

.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(6, 13, 26, 0.8);
  pointer-events: none;
}

.section-overlay-hero {
  background:
    radial-gradient(ellipse 85% 75% at 50% 40%, rgba(6, 13, 26, 0.15) 0%, rgba(6, 13, 26, 0.65) 50%, rgba(6, 13, 26, 0.92) 100%),
    linear-gradient(180deg, rgba(6, 13, 26, 0.2) 0%, rgba(6, 13, 26, 0.5) 50%, rgba(6, 13, 26, 0.88) 100%);
}

.section-overlay-stats {
  background:
    linear-gradient(90deg, rgba(107, 20, 20, 0.88) 0%, rgba(224, 36, 36, 0.82) 50%, rgba(107, 20, 20, 0.88) 100%);
}

.section-overlay-footer {
  background: rgba(6, 13, 26, 0.92);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: url("images/section-hero.png") center / cover no-repeat;
}

.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.has-section-bg > .container,
.has-section-bg > .hero-inner,
.has-section-bg > .hero-ornament,
.has-section-bg > .scroll-cue,
.has-section-bg > .stats-inner,
.has-section-bg > .stats-shimmer,
.has-section-bg > .footer-inner {
  position: relative;
  z-index: 2;
}

@media (min-width: 769px) {
  .section-bg {
    background-attachment: fixed;
  }
}

.section-bg-about { background-image: url("images/section-about-1776.png"); }
.section-bg-intro { background-image: url("images/section-about-america250.png"); }
.section-bg-stats { background-image: url("images/section-about-america250.png"); }
.section-bg-chart { background-image: url("images/section-chart.png"); }
.section-bg-buy { background-image: url("images/section-buy.png"); }
.section-bg-community { background-image: url("images/section-community.png"); }
.section-bg-footer { background-image: url("images/section-about-solana.png"); opacity: 0.35; }

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* ── Reveal animations ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

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

.reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.4s; }
.reveal[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ── Header ────────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(6, 13, 26, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s var(--ease-out),
    border-color 0.4s,
    box-shadow 0.4s;
}

.header.scrolled {
  background: rgba(6, 13, 26, 0.92);
  border-bottom-color: rgba(201, 162, 39, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  transition: transform 0.3s var(--ease-spring);
}

.logo:hover {
  transform: scale(1.03);
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.4));
  transition: filter 0.3s;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 4px 16px rgba(201, 162, 39, 0.6));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  color: rgba(250, 246, 236, 0.75);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s var(--ease-out);
  border-radius: 2px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s,
    background 0.3s;
  white-space: nowrap;
  overflow: hidden;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.btn:hover .btn-shine {
  animation: btn-shine 0.6s ease;
}

@keyframes btn-shine {
  to { left: 150%; }
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 60%, #6b1414 100%);
  color: var(--white);
  border-color: rgba(240, 208, 96, 0.5);
  box-shadow:
    0 4px 20px rgba(224, 36, 36, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 32px rgba(224, 36, 36, 0.55),
    var(--glow-red);
}

.btn-glow:hover {
  box-shadow:
    0 8px 32px rgba(224, 36, 36, 0.55),
    0 0 60px rgba(224, 36, 36, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.12);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 0.78rem;
}

.btn-icon {
  flex-shrink: 0;
}

.btn-play-intro {
  gap: 0.45rem;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1rem 5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  margin-bottom: 1.5rem;
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}

.hero-logo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.35) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

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

.hero-logo {
  position: relative;
  width: min(300px, 68vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 48px rgba(0, 0, 0, 0.7));
  animation: logo-float 5s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.4rem;
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: rgba(201, 162, 39, 0.06);
  border-radius: 100px;
  backdrop-filter: blur(12px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 10px var(--red-bright);
  animation: dot-blink 2s ease-in-out infinite;
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-title-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15em;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.title-word {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #fff8e0 0%,
    var(--gold-light) 30%,
    var(--gold) 60%,
    #a8861f 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-shimmer 4s linear infinite;
  filter: drop-shadow(0 4px 20px rgba(201, 162, 39, 0.4));
}

.title-word:nth-child(2) {
  animation-delay: -2s;
}

@keyframes title-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--red-bright);
  text-shadow:
    0 0 20px rgba(224, 36, 36, 0.6),
    0 2px 16px rgba(0, 0, 0, 0.85);
  animation: ticker-glow 2.5s ease-in-out infinite;
}

@keyframes ticker-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(224, 36, 36, 0.5), 0 2px 16px rgba(0,0,0,0.85); }
  50% { text-shadow: 0 0 40px rgba(224, 36, 36, 0.8), 0 0 80px rgba(224, 36, 36, 0.3), 0 2px 16px rgba(0,0,0,0.85); }
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: rgba(250, 246, 236, 0.9);
  max-width: 600px;
  margin-bottom: 1.25rem;
  line-height: 1.65;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero-tagline strong {
  color: var(--gold-light);
  font-style: normal;
}

.hero-tagline em {
  color: var(--gold);
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-contract {
  width: min(640px, 92vw);
}

.contract-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
}

.glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.glass:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: var(--glow-gold);
}

.contract-box code {
  flex: 1;
  font-family: "Courier New", monospace;
  font-size: 0.76rem;
  color: var(--cream);
  word-break: break-all;
  text-align: left;
}

.copy-btn {
  flex-shrink: 0;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  padding: 0.45rem;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  display: flex;
  align-items: center;
}

.copy-btn:hover {
  background: rgba(201, 162, 39, 0.28);
  transform: scale(1.08);
}

.copy-btn:active {
  transform: scale(0.95);
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0.6;
}

.ornament-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-star {
  color: var(--gold-light);
  font-size: 1.1rem;
  animation: star-spin 8s linear infinite;
}

@keyframes star-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.scroll-cue:hover {
  opacity: 0.9;
}

.scroll-cue-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(201, 162, 39, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-cue-mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ── Marquee ───────────────────────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy-mid), var(--navy-light), var(--navy-mid));
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(240, 208, 96, 0.7);
  white-space: nowrap;
  padding-right: 4rem;
}

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

/* ── Intro video player ──────────────────────────────────────────────────────── */
.intro-player {
  max-width: 900px;
  margin: 0 auto;
}

.video-player {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow), var(--glow-gold);
  background: #000;
  aspect-ratio: 16 / 9;
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(6, 13, 26, 0.2) 0%, rgba(6, 13, 26, 0.65) 100%);
  cursor: pointer;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  z-index: 3;
}

.video-player.is-playing .video-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-player.is-ended .video-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-play-btn {
  position: relative;
  width: 88px;
  height: 88px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(224, 36, 36, 0.5),
    0 0 0 4px rgba(201, 162, 39, 0.35);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.play-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(240, 208, 96, 0.4);
  border-radius: 50%;
  animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 0.2; }
}

.video-play-btn:hover {
  transform: scale(1.08);
  box-shadow:
    0 12px 40px rgba(224, 36, 36, 0.6),
    0 0 0 6px rgba(201, 162, 39, 0.5);
}

.play-icon {
  margin-left: 4px;
}

.video-play-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.video-error {
  display: none;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.video-player.has-error .video-error {
  display: block;
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
.section {
  padding: 6rem 0;
  position: relative;
}

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

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(250, 246, 236, 0.6);
  font-size: 1.05rem;
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold-light));
  margin: 1.25rem auto 0;
  border-radius: 3px;
}

/* ── Glass cards ───────────────────────────────────────────────────────────── */
.parchment {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%),
    var(--parchment);
  color: var(--ink);
  border: 1px solid var(--parchment-shadow);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.glass-card {
  border-radius: var(--radius);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(139, 26, 26, 0.15);
  pointer-events: none;
  border-radius: calc(var(--radius) - 4px);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 162, 39, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.glass-card:hover .card-glow {
  opacity: 1;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow:
    var(--shadow),
    0 20px 60px rgba(0, 0, 0, 0.3),
    var(--glow-gold);
}

/* ── About ─────────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.about-card {
  padding: 2.25rem 2rem;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

.card-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  background: rgba(139, 26, 26, 0.06);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.glass-card:hover .card-seal {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.2);
}

/* ── Stats strip ───────────────────────────────────────────────────────────── */
.stats-strip {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 2.5rem 0;
}

.stats-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  animation: stats-shine 4s ease-in-out infinite;
}

@keyframes stats-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.stats-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.stat {
  text-align: center;
  min-width: 130px;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.35rem;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.35), transparent);
}

/* ── Chart ─────────────────────────────────────────────────────────────────── */
.chart-wrapper {
  overflow: hidden;
  padding: 0;
}

#chart-embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
}

#dexscreener-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--ink-muted);
}

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

.placeholder-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: logo-float 3s ease-in-out infinite;
}

.placeholder-hint {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.placeholder-hint code {
  background: rgba(139, 26, 26, 0.1);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--red);
}

/* ── Buy section ───────────────────────────────────────────────────────────── */
.buy-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem;
}

.buy-content .section-label,
.buy-content .section-title {
  text-align: left;
}

.buy-content p {
  color: var(--ink-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.buy-visual {
  position: relative;
  display: flex;
  justify-content: center;
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}

.buy-logo-ring {
  position: absolute;
  inset: -10%;
  border: 2px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  animation: ring-spin 20s linear infinite;
}

.buy-logo-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(201, 162, 39, 0.15);
  border-radius: 50%;
}

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

.buy-logo {
  position: relative;
  width: min(260px, 75vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5));
  transition: filter 0.4s, transform 0.4s var(--ease-out);
}

.buy-visual:hover .buy-logo {
  filter: drop-shadow(0 16px 50px rgba(201, 162, 39, 0.35));
  transform: scale(1.02);
}

/* ── Community ─────────────────────────────────────────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.6rem 1.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--cream);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.social-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), var(--glow-gold);
}

.social-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease-out);
}

.social-card:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-icon.twitter {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.social-icon.telegram {
  background: rgba(0, 136, 204, 0.2);
  color: #29b6f6;
}

.social-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.social-handle {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 246, 236, 0.6);
  margin-top: 0.15rem;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  padding: 3.5rem 0 2.5rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.3));
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(250, 246, 236, 0.4);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 246, 236, 0.28);
  font-family: var(--font-accent);
  font-style: italic;
}

/* ── Toast ─────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  opacity: 0;
  transition: all 0.4s var(--ease-spring);
  z-index: 200;
  pointer-events: none;
  box-shadow: var(--glow-gold);
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Reduced motion ────────────────────────────────────────────────────────── */
@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;
  }

  #particles-canvas {
    display: none;
  }

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

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6, 13, 26, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  }

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

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .buy-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .buy-visual {
    order: -1;
  }

  .hero-logo {
    width: min(220px, 60vw);
  }

  .stat-divider {
    display: none;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  #chart-embed-container {
    padding-bottom: 85%;
  }

  .scroll-cue {
    display: none;
  }

  .section-bg {
    inset: 0;
    transform: none;
    background-attachment: scroll;
    animation: none !important;
  }

  .section {
    padding: 4.5rem 0;
  }

  .video-play-btn {
    width: 72px;
    height: 72px;
  }

  .play-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .buy-actions {
    flex-direction: column;
  }

  .buy-actions .btn {
    width: 100%;
  }

  .title-word {
    width: 100%;
    text-align: center;
  }
}
