/* ============================================================
   PIKAX LABS — GLOBAL DESIGN SYSTEM
   © 2026 PIKAX Labs. All rights reserved.
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap");

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Colors */
  --gold: #fcd116;
  --gold-dim: #d4a800;
  --gold-glow: rgba(252, 209, 22, 0.35);
  --gold-glow-soft: rgba(252, 209, 22, 0.12);
  --navy: #0a0a1a;
  --navy-mid: #0d0d20;
  --deep-purple: #12102a;
  --mid-purple: #1e1a3e;
  --glow-purple: #6c63ff;
  --glow-purple-dim: rgba(108, 99, 255, 0.2);
  --white: #ffffff;
  --white-muted: #a0a0c0;
  --white-faint: #4a4a6a;
  --green: #00e676;
  --green-dim: rgba(0, 230, 118, 0.15);
  --warning: #ffb300;

  /* Glass surfaces */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-gold: rgba(252, 209, 22, 0.25);
  --glass-blur: blur(16px);

  /* Typography */
  --font-display: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing (4px base) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm: 0.375rem;
  --r-md: 0.5rem;
  --r-lg: 0.75rem;
  --r-xl: 1rem;
  --r-2xl: 1.5rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold:
    0 0 30px rgba(252, 209, 22, 0.4), 0 0 60px rgba(252, 209, 22, 0.15);
  --shadow-purple: 0 0 30px rgba(108, 99, 255, 0.3);

  /* Transitions */
  --t-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-base: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --nav-height: 72px;
}

/* ── Base Reset ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + var(--sp-4));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--white);
  background-color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
ul,
ol {
  list-style: none;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  line-height: 1.2;
  font-family: var(--font-display);
}
p {
  text-wrap: pretty;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

::selection {
  background: var(--gold-glow-soft);
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Canvas Particle Background ───────────────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Page wrapper ─────────────────────────────────────────── */
.page-wrapper {
  position: relative;
  z-index: 1;
}

/* Page fade-in on load */
.page-wrapper {
  opacity: 0;
  transition: opacity 400ms ease;
}
.page-wrapper.loaded {
  opacity: 1;
}

/* ── Announcement Banner ──────────────────────────────────── */
.announcement-banner {
  background: linear-gradient(
    90deg,
    var(--deep-purple),
    var(--mid-purple),
    var(--deep-purple)
  );
  border-bottom: 1px solid var(--glass-border);
  padding: var(--sp-2) var(--sp-4);
  text-align: center;
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--white-muted);
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.announcement-banner .live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: var(--sp-2);
  vertical-align: middle;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-green 2s ease infinite;
}

.announcement-banner .gold {
  color: var(--gold);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 99;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition:
    background var(--t-base),
    border-color var(--t-base);
}

.nav.scrolled {
  background: rgba(10, 10, 26, 0.95);
  border-bottom-color: rgba(252, 209, 22, 0.1);
}

.nav-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-lg);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}

.nav-links a {
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white-muted);
  border-radius: var(--r-md);
  transition:
    color var(--t-fast),
    background var(--t-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--glass-bg);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--r-full);
  transition:
    transform var(--t-base),
    opacity var(--t-base);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(10, 10, 26, 0.97);
  backdrop-filter: var(--glass-blur);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-overlay a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white-muted);
  transition: color var(--t-fast);
  text-align: center;
}

.nav-mobile-overlay a:hover {
  color: var(--gold);
}
.nav-mobile-overlay .btn-primary {
  margin-top: var(--sp-4);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    box-shadow var(--t-base),
    transform var(--t-spring);
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.btn-primary:hover {
  background: #ffd93d;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: var(--glass-bg);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--glass-bg);
  color: var(--white-muted);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: var(--glass-bg-hover);
  color: var(--white);
}

.btn-lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--text-base);
}

.btn-sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
}

/* ── Layout Containers ────────────────────────────────────── */
.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  width: 100%;
}

.container-narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  width: 100%;
}

.container-default {
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  width: 100%;
}

/* ── Section Base ─────────────────────────────────────────── */
.section {
  padding: clamp(var(--sp-16), 8vw, var(--sp-32)) 0;
  position: relative;
}

.section-sm {
  padding: clamp(var(--sp-10), 5vw, var(--sp-20)) 0;
}

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ── Section Headings ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.section-title .gold {
  color: var(--gold);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--white-muted);
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

/* ── Gradient Text ────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #ff8c00 50%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

/* ── Glassmorphism Cards ──────────────────────────────────── */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--sp-6);
  transition:
    background var(--t-base),
    border-color var(--t-base),
    box-shadow var(--t-base),
    transform var(--t-base);
}

.card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(252, 209, 22, 0.2);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(252, 209, 22, 0.08);
  transform: translateY(-2px);
}

.card-gold {
  border-color: var(--glass-border-gold);
  background: linear-gradient(
    135deg,
    rgba(252, 209, 22, 0.06),
    rgba(255, 140, 0, 0.04)
  );
}

.card-purple {
  background: rgba(108, 99, 255, 0.08);
  border-color: rgba(108, 99, 255, 0.2);
}

.card-dark {
  background: var(--deep-purple);
  border-color: var(--glass-border);
}

/* ── Stat Cards ───────────────────────────────────────────── */
.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--white-muted);
  margin-top: var(--sp-2);
}

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(252, 209, 22, 0.15);
  color: var(--gold);
  border: 1px solid rgba(252, 209, 22, 0.3);
}

.badge-green {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.badge-purple {
  background: rgba(108, 99, 255, 0.15);
  color: #a8a3ff;
  border: 1px solid rgba(108, 99, 255, 0.3);
}

.badge-muted {
  background: var(--glass-bg);
  color: var(--white-muted);
  border: 1px solid var(--glass-border);
}

/* ── Live Indicator ───────────────────────────────────────── */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse-green 2s ease infinite;
  flex-shrink: 0;
}

/* ── Progress Bar ─────────────────────────────────────────── */
.progress-container {
  width: 100%;
  margin: var(--sp-4) 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--white-muted);
  margin-bottom: var(--sp-2);
  font-family: var(--font-mono);
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--gold), #ff8c00);
  box-shadow: 0 0 12px rgba(252, 209, 22, 0.5);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer-progress 2s ease infinite;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  color: var(--white);
  font-size: var(--text-sm);
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast),
    background var(--t-fast);
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--white-faint);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(252, 209, 22, 0.12);
  background: rgba(252, 209, 22, 0.04);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-select option {
  background: var(--deep-purple);
  color: var(--white);
}

.form-inline {
  display: flex;
  gap: var(--sp-2);
}

.form-inline .form-input {
  flex: 1;
}

/* ── Modals ───────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--deep-purple);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform var(--t-spring);
  text-align: center;
  overflow: hidden;
}

.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
}

.modal-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(252, 209, 22, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  color: var(--white-muted);
  font-size: 1.25rem;
  padding: var(--sp-2);
  border-radius: var(--r-md);
  transition:
    color var(--t-fast),
    background var(--t-fast);
}

.modal-close:hover {
  color: var(--white);
  background: var(--glass-bg);
}

.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(252, 209, 22, 0.1);
  border: 1px solid rgba(252, 209, 22, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  font-size: 2rem;
  animation: float-icon 3s ease infinite;
}

.modal-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--sp-3);
}

.modal-subtitle {
  color: var(--white-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

/* Countdown in modal */
.modal-countdown {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  margin: var(--sp-6) 0;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

.countdown-digit {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
  background: rgba(252, 209, 22, 0.08);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  min-width: 64px;
  text-align: center;
  text-shadow: 0 0 20px rgba(252, 209, 22, 0.4);
  line-height: 1;
}

.countdown-label {
  font-size: var(--text-xs);
  color: var(--white-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

/* ── Toast Notifications ──────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  pointer-events: none;
}

.toast {
  background: var(--mid-purple);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  max-width: 320px;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--shadow-lg);
  transform: translateX(calc(100% + var(--sp-8)));
  transition: transform var(--t-spring);
  pointer-events: all;
}

.toast.show {
  transform: translateX(0);
}
.toast.hide {
  transform: translateX(calc(100% + var(--sp-8)));
}

.toast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.toast-text {
  color: var(--white-muted);
}
.toast-text strong {
  color: var(--white);
  display: block;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--sp-16)) 0 var(--sp-16);
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(252, 209, 22, 0.06) 0%,
    rgba(108, 99, 255, 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: hero-glow-pulse 6s ease infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(252, 209, 22, 0.08);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--sp-6);
  color: var(--white);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--white-muted);
  max-width: 55ch;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--white-faint);
  font-size: var(--text-xs);
  animation: bounce-arrow 2s ease infinite;
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
}

/* ── PKX Coin ─────────────────────────────────────────────── */
.pkx-coin {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #ffe566,
    var(--gold) 60%,
    #a07800
  );
  box-shadow:
    var(--shadow-gold),
    inset -8px -8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  animation: coin-float 4s ease-in-out infinite;
  position: relative;
  flex-shrink: 0;
  cursor: default;
  user-select: none;
}

.pkx-coin::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 60%,
    rgba(252, 209, 22, 0.4) 100%
  );
  animation: coin-spin 3s linear infinite;
  pointer-events: none;
}

.pkx-coin-sm {
  width: 60px;
  height: 60px;
  font-size: 0.875rem;
}

.pkx-coin-lg {
  width: 180px;
  height: 180px;
  font-size: 2rem;
}

/* ── Stats Grid ───────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.stat-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
}

.stat-card .stat-value {
  font-size: var(--text-2xl);
}

/* ── Steps (How It Works) ─────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(16.67% + var(--sp-4));
  right: calc(16.67% + var(--sp-4));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-glow),
    var(--gold),
    var(--gold-glow),
    transparent
  );
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--white);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--white-muted);
  line-height: 1.7;
}

/* ── Waitlist Section ─────────────────────────────────────── */
.waitlist-section {
  background: linear-gradient(135deg, var(--deep-purple), var(--mid-purple));
  border: 1px solid var(--glass-border-gold);
  border-radius: var(--r-2xl);
  padding: var(--sp-16) var(--sp-8);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.waitlist-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(252, 209, 22, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.waitlist-urgency-counter {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--white-muted);
  margin-bottom: var(--sp-6);
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 10px #ff4444;
  animation: pulse-red 1.5s ease infinite;
}

.waitlist-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  text-align: left;
}

.perk-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
}

.perk-icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
}

.perk-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.perk-desc {
  font-size: var(--text-xs);
  color: var(--white-muted);
  line-height: 1.6;
}

/* ── Social Cards ─────────────────────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6);
  text-align: center;
  text-decoration: none;
  transition:
    transform var(--t-base),
    box-shadow var(--t-base);
}

.social-card:hover {
  transform: translateY(-4px);
}

.social-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: box-shadow var(--t-base);
}

.social-card:hover .social-icon-wrap {
  box-shadow: 0 0 20px currentColor;
}

.social-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
}

.social-count {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--white-muted);
}

/* ── Phone Mockup (CSS Only) ──────────────────────────────── */
.phone-mockup {
  position: relative;
  width: 260px;
  height: 520px;
  margin: 0 auto;
}

.phone-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #2a2845, #1a1830);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.phone-notch {
  width: 80px;
  height: 22px;
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  padding: 0 var(--sp-4) var(--sp-4);
  height: calc(100% - 22px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-2) 0;
}

.phone-balance-card {
  background: linear-gradient(135deg, #1e1a3e, #2a2250);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.phone-balance-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.phone-balance-label {
  font-size: 0.65rem;
  color: var(--white-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-pkx-badge {
  position: absolute;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  white-space: nowrap;
  animation: badge-float 3s ease-in-out infinite;
  box-shadow: var(--shadow-gold);
}

/* ── Roadmap Timeline ─────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: var(--sp-8);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--gold) 0%,
    var(--glow-purple) 50%,
    var(--glass-border) 100%
  );
}

.timeline-item {
  position: relative;
  padding-bottom: var(--sp-10);
}

.timeline-dot {
  position: absolute;
  left: calc(-1 * var(--sp-8) + 12px);
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  box-shadow: 0 0 12px var(--gold-glow);
  z-index: 2;
}

.timeline-dot.completed {
  background: var(--gold);
}
.timeline-dot.in-progress {
  background: var(--glow-purple);
  box-shadow: 0 0 12px var(--glow-purple-dim);
  animation: pulse-purple 2s ease infinite;
}
.timeline-dot.upcoming {
  background: var(--white-faint);
  box-shadow: none;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gold);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.08em;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--white);
}

.timeline-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.timeline-items-list li {
  font-size: var(--text-sm);
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.timeline-items-list li.done {
  color: var(--white);
}
.timeline-items-list li.done::before {
  content: "✅";
  font-size: 0.75rem;
}
.timeline-items-list li.progress::before {
  content: "🔄";
  font-size: 0.75rem;
}
.timeline-items-list li.upcoming-item::before {
  content: "🔒";
  font-size: 0.75rem;
}

/* ── Download Buttons ─────────────────────────────────────── */
.download-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  cursor: pointer;
  transition:
    background var(--t-base),
    border-color var(--t-base),
    transform var(--t-spring),
    box-shadow var(--t-base);
  text-align: left;
  width: 100%;
  max-width: 320px;
}

.download-btn:hover {
  background: var(--glass-bg-hover);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.download-btn-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.download-btn-text {
  display: flex;
  flex-direction: column;
}

.download-btn-small {
  font-size: var(--text-xs);
  color: var(--white-muted);
  line-height: 1;
  margin-bottom: 2px;
}

.download-btn-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.blog-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.blog-card-thumb {
  height: 180px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: linear-gradient(135deg, var(--deep-purple), var(--mid-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.blog-card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(252, 209, 22, 0.05));
}

.blog-card-body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  border-radius: 0 0 var(--r-2xl) var(--r-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: none;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--white-faint);
  font-family: var(--font-mono);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  flex: 1;
  transition: color var(--t-fast);
}

.blog-card:hover .blog-card-title {
  color: var(--gold);
}

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--white-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  transition: gap var(--t-fast);
}

.blog-card:hover .blog-card-link {
  gap: var(--sp-2);
}

/* Category filter tabs */
.filter-tabs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.filter-tab {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--r-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white-muted);
  cursor: pointer;
  transition: all var(--t-fast);
}

.filter-tab:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}
.filter-tab.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: border-color var(--t-fast);
}

.contact-info-item:hover {
  border-color: rgba(252, 209, 22, 0.3);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: rgba(252, 209, 22, 0.1);
  border: 1px solid rgba(252, 209, 22, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-label {
  font-size: var(--text-xs);
  color: var(--white-faint);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
}

/* ── Whitepaper Page ──────────────────────────────────────── */
.wp-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.wp-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-6));
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
}

.wp-toc-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wp-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.wp-toc-list a {
  display: block;
  font-size: var(--text-xs);
  color: var(--white-muted);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition:
    color var(--t-fast),
    background var(--t-fast);
  line-height: 1.4;
}

.wp-toc-list a:hover,
.wp-toc-list a.active {
  color: var(--gold);
  background: rgba(252, 209, 22, 0.06);
}

.wp-content {
  max-width: none;
}

.wp-section {
  margin-bottom: var(--sp-12);
  scroll-margin-top: calc(var(--nav-height) + var(--sp-8));
}

.wp-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.wp-section h2 .wp-num {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--gold);
  background: rgba(252, 209, 22, 0.08);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: var(--r-md);
  padding: 2px 8px;
}

.wp-section h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin: var(--sp-6) 0 var(--sp-3);
}

.wp-section p {
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
  font-size: var(--text-base);
}

.wp-section ul {
  list-style: none;
  margin: var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.wp-section ul li {
  color: var(--white-muted);
  font-size: var(--text-sm);
  padding-left: var(--sp-6);
  position: relative;
  line-height: 1.6;
}

.wp-section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.wp-highlight-box {
  background: rgba(252, 209, 22, 0.05);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  margin: var(--sp-6) 0;
}

.tokenomics-bars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}

.tokenomics-row {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-sm);
}

.tokenomics-label {
  color: var(--white-muted);
}

.tokenomics-bar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-full);
  overflow: hidden;
}

.tokenomics-bar-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--gold), #ff8c00);
}

.tokenomics-pct {
  font-family: var(--font-mono);
  color: var(--gold);
  text-align: right;
  font-size: var(--text-xs);
}

/* ── Ecosystem Page Cards ─────────────────────────────────── */
.locked-card {
  position: relative;
  overflow: hidden;
}

.locked-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 26, 0.75);
  backdrop-filter: blur(4px);
  border-radius: var(--r-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  z-index: 2;
}

.lock-icon {
  font-size: 1.5rem;
  opacity: 0.6;
}

/* ── Page Header (inner pages) ────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + var(--sp-16)) 0 var(--sp-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(252, 209, 22, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(10, 10, 26, 0.8);
  padding: var(--sp-16) 0 var(--sp-8);
  margin-top: var(--sp-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: var(--white-muted);
  margin: var(--sp-4) 0;
  line-height: 1.7;
  max-width: 28ch;
}

.footer-social-row {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast);
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(252, 209, 22, 0.3);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.03em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--white-muted);
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--glass-border);
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: var(--text-xs);
  color: var(--white-faint);
  line-height: 1.6;
}

.footer-bottom-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}
.reveal-delay-2 {
  transition-delay: 200ms;
}
.reveal-delay-3 {
  transition-delay: 300ms;
}
.reveal-delay-4 {
  transition-delay: 400ms;
}
.reveal-delay-5 {
  transition-delay: 500ms;
}

/* ── Dividers ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--glass-border);
  margin: var(--sp-16) 0;
}

.divider-gold {
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-glow),
    transparent
  );
}

/* ── Utility ──────────────────────────────────────────────── */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-gold {
  color: var(--gold);
}
.text-muted {
  color: var(--white-muted);
}
.text-mono {
  font-family: var(--font-mono);
}
.text-display {
  font-family: var(--font-display);
}
.fw-bold {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.mt-4 {
  margin-top: var(--sp-4);
}
.mt-6 {
  margin-top: var(--sp-6);
}
.mt-8 {
  margin-top: var(--sp-8);
}
.mb-4 {
  margin-bottom: var(--sp-4);
}
.mb-6 {
  margin-bottom: var(--sp-6);
}
.mb-8 {
  margin-bottom: var(--sp-8);
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-4 {
  gap: var(--sp-4);
}
.gap-6 {
  gap: var(--sp-6);
}
.gap-8 {
  gap: var(--sp-8);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wp-layout {
    grid-template-columns: 240px 1fr;
  }
  .waitlist-perks {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-mobile-overlay {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .wp-layout {
    grid-template-columns: 1fr;
  }
  .wp-sidebar {
    position: static;
  }
  .waitlist-perks {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .modal {
    padding: var(--sp-6);
  }
  .modal-countdown {
    gap: var(--sp-2);
  }
  .countdown-digit {
    min-width: 50px;
    font-size: var(--text-lg);
    padding: var(--sp-2) var(--sp-3);
  }

  .container,
  .container-narrow,
  .container-default {
    padding: 0 var(--sp-4);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .tokenomics-row {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
  }

  .download-btn {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: clamp(2rem, 14vw, 4rem);
  }
  .modal-countdown {
    flex-wrap: wrap;
  }
  .announcement-banner {
    font-size: 0.65rem;
  }
}

/* ── Keyframe Animations (inline in style.css) ───────────── */
@keyframes gradient-shift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes coin-float {
  0%,
  100% {
    transform: translateY(0px) rotate(-2deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes coin-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-icon {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes bounce-arrow {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes pulse-green {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px #00e676;
  }
  50% {
    opacity: 0.6;
    box-shadow:
      0 0 14px #00e676,
      0 0 28px #00e676;
  }
}

@keyframes pulse-red {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px #ff4444;
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 14px #ff4444;
  }
}

@keyframes pulse-purple {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(108, 99, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.8);
  }
}

@keyframes hero-glow-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes shimmer-progress {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes badge-float {
  0% {
    transform: translateY(0px) translateX(0px) rotate(-2deg);
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  60%,
  100% {
    transform: translateY(-40px) translateX(10px) rotate(4deg);
    opacity: 0;
  }
}

@keyframes timeline-dot-travel {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@keyframes shimmer-card {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(140px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(140px) rotate(-360deg);
  }
}

@keyframes glow-border {
  0%,
  100% {
    border-color: rgba(252, 209, 22, 0.2);
    box-shadow: 0 0 10px rgba(252, 209, 22, 0.1);
  }
  50% {
    border-color: rgba(252, 209, 22, 0.5);
    box-shadow: 0 0 25px rgba(252, 209, 22, 0.3);
  }
}
/* ── MOBILE RESPONSIVENESS FIX ─────────────────────────── */
* {
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Nav mobile */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 1rem;
    gap: 0.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-mobile-overlay {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 100px 1rem 3rem;
    min-height: auto;
  }
  .hero-content {
    padding: 0 0.5rem;
  }
  .hero-title {
    font-size: clamp(2.2rem, 11vw, 4rem);
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-ctas a,
  .hero-ctas button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-social-proof {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .pkx-coin-wrap {
    width: 140px;
    height: 140px;
    margin: 2rem auto 0;
  }
  .pkx-coin {
    width: 100px;
    height: 100px;
    font-size: 1.25rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem;
    padding: 0 1rem;
  }
  .stat-card {
    padding: 1.5rem 1rem;
  }
  .stat-value {
    font-size: clamp(1.5rem, 7vw, 2.5rem) !important;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .steps-grid::before {
    display: none !important;
  }
  .step-card {
    text-align: left;
    padding: 1.5rem;
  }
  .step-number {
    margin: 0 0 1rem 0;
  }

  /* App section */
  .app-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 0 1rem;
  }
  .app-text-col {
    text-align: center;
  }
  .app-phone-wrap {
    margin: 0 auto;
  }

  /* Waitlist section */
  .waitlist-section {
    padding: 3rem 1rem;
    margin: 0 1rem;
  }
  .waitlist-perks {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem;
  }

  /* Social grid */
  .social-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem;
    padding: 0 1rem;
  }

  /* Comparison table */
  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table table {
    min-width: 600px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .footer-inner {
    padding: 2rem 1rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* Section padding */
  .section,
  [class*="-section"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .container,
  .container-narrow,
  .container-default {
    padding: 0 1rem !important;
  }

  /* Blog grid */
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  /* Whitepaper layout */
  .wp-layout {
    grid-template-columns: 1fr !important;
  }
  .wp-sidebar {
    display: none;
  }

  /* Ecosystem */
  .ecosystem-features-grid {
    grid-template-columns: 1fr !important;
  }
  .tokenomics-row {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.9rem, 12vw, 3rem);
  }
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  .waitlist-perks {
    grid-template-columns: 1fr !important;
  }
  .social-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .pkx-coin {
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }
  .section-title {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }
  .modal {
    padding: 1.5rem 1rem;
  }
  .modal-countdown {
    gap: 0.5rem;
  }
  .countdown-digit {
    min-width: 44px;
    font-size: 1.2rem;
    padding: 0.5rem;
  }
  .btn,
  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Fix overflow from any fixed-width elements */
img,
video,
iframe,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scroll */
section,
div,
article {
  max-width: 100%;
}
