/* ============================================
   FRENSPAW — Premium Web3 NFT Design System
   Inspired directly by landing_main.jpg reference
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Dark backdrop colors */
  --bg-main: #0c0d12;
  --bg-section-dark: #0f1117;
  --bg-section-darker: #090a0e;
  --bg-card: rgba(23, 26, 35, 0.65);
  --bg-card-hover: rgba(30, 35, 48, 0.85);

  /* Neon & Accent Colors */
  --neon-lime: #d4f738;
  --neon-lime-hover: #e2fc52;
  --neon-lime-glow: rgba(212, 247, 56, 0.35);
  --neon-cyan: #00e5ff;
  --neon-pink: #ff2e93;
  --neon-blue: #0084ff;
  --neon-emerald: #00ffaa;
  --neon-yellow: #ffc800;

  /* Typography & Neutral Colors */
  --text-white: #ffffff;
  --text-primary: #f0f2f5;
  --text-secondary: #9aa1b2;
  --text-muted: #646c80;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-glass: rgba(255, 255, 255, 0.14);
  --border-hover: rgba(255, 255, 255, 0.28);

  /* Font Families */
  --font-display: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --trans-fast: 0.2s var(--ease-smooth);
  --trans-normal: 0.35s var(--ease-smooth);
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-main);
  color: var(--text-primary);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Sharp Pixel Art Rendering for NFT Assets */
.showcase-card__inner img,
.fren-avatar-card img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--trans-fast);
}

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

/* --- Container & Utilities --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 860px;
}

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

.hide-mobile {
  display: block;
}
@media (max-width: 768px) {
  .hide-mobile { display: none; }
}

/* --- Ambient Glows & Background Wireframe --- */
.ambient-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.45;
}

.ambient-glow--right {
  top: 15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 247, 56, 0.12) 0%, rgba(212, 168, 67, 0.08) 40%, transparent 70%);
}

.ambient-glow--bottom {
  bottom: 10%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.07) 0%, rgba(255, 46, 147, 0.05) 50%, transparent 75%);
}

.orbit-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 1400px;
  height: 900px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
  overflow: hidden;
}

.orbit-bg svg {
  width: 100%;
  height: 100%;
}

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-main);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: opacity 0.5s var(--ease-smooth), visibility 0.5s;
}

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

.page-loader__spinner {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--neon-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 1s linear infinite;
}

.page-loader__paw {
  font-size: 1.75rem;
  animation: pulse 1.2s ease-in-out infinite alternate;
}

.page-loader__text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

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

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* ============================================
   NAVIGATION (Floating Pill matching landing_main.jpg)
   ============================================ */
.header-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
  pointer-events: none;
}

.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  height: 58px;
  padding: 0 1.5rem;
  background: rgba(18, 20, 26, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: all var(--trans-normal);
}

.nav-pill.scrolled {
  background: rgba(14, 16, 21, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-pill__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-pill__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--trans-fast);
  position: relative;
}

.nav-pill__link:hover,
.nav-pill__link.active {
  color: var(--text-white);
}

.nav-pill__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--trans-fast);
}

.nav-social-btn:hover {
  color: var(--neon-lime);
  background: rgba(212, 247, 56, 0.1);
  border-color: rgba(212, 247, 56, 0.3);
  transform: translateY(-2px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all var(--trans-fast);
}

/* ============================================
   HERO SECTION (Matching landing_main.jpg)
   ============================================ */
.hero-showcase {
  position: relative;
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  overflow: hidden;
}

/* Sparkles Decoration */
.hero-sparkle-top {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  opacity: 0.9;
  animation: floatSparkle 4s ease-in-out infinite alternate;
}

.sparkle-svg {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.sparkle-svg--lg {
  animation: pulseGlow 2.5s ease-in-out infinite alternate;
}

.sparkle-svg--sm {
  opacity: 0.85;
}

@keyframes floatSparkle {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(5deg); }
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 16px rgba(212, 247, 56, 0.9)); }
}

/* Hero Content */
.hero-showcase__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.hero-showcase__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
}

/* Lime CTA Button */
.hero-showcase__cta {
  margin-bottom: 3.5rem;
}

.btn-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neon-lime);
  color: #0b0c10;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 24px var(--neon-lime-glow), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all var(--trans-normal);
}

.btn-lime:hover {
  background-color: var(--neon-lime-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(212, 247, 56, 0.55), 0 8px 20px rgba(0, 0, 0, 0.5);
  color: #000;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  transition: all var(--trans-normal);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* ============================================
   HERO CARDS SHOWCASE (Matching landing_main.jpg)
   ============================================ */
.hero-cards-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2.5rem 0 2rem 0;
  display: flex;
  justify-content: flex-start;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.hero-cards-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 0.75rem;
  width: max-content;
  animation: heroAutoscroll 32s linear infinite;
  will-change: transform;
}

.hero-cards-wrapper:hover .hero-cards-track {
  animation-play-state: paused;
}

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

.showcase-card {
  border-radius: 28px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  position: relative;
}

.showcase-card:hover {
  transform: translateY(-12px) scale(1.04);
  z-index: 10;
}

.showcase-card__inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-card__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Varied Card Heights & Widths (Matching rhythm in landing_main.jpg) */
.showcase-card--small {
  width: 180px;
  height: 240px;
}

.showcase-card--medium {
  width: 210px;
  height: 280px;
}

.showcase-card--large {
  width: 250px;
  height: 330px;
}

.showcase-card--tall {
  width: 260px;
  height: 350px;
}

/* Neon Borders & Card Themes */
.showcase-card--cyan {
  background: linear-gradient(135deg, #00e5ff 0%, #00b4d8 100%);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.25);
}
.showcase-card--cyan:hover {
  box-shadow: 0 18px 45px rgba(0, 229, 255, 0.45);
}

.showcase-card--pink {
  background: linear-gradient(135deg, #ff2e93 0%, #ff70a6 100%);
  box-shadow: 0 12px 30px rgba(255, 46, 147, 0.25);
}
.showcase-card--pink:hover {
  box-shadow: 0 18px 45px rgba(255, 46, 147, 0.45);
}

.showcase-card--blue {
  background: linear-gradient(135deg, #0084ff 0%, #38b6ff 100%);
  box-shadow: 0 12px 30px rgba(0, 132, 255, 0.25);
}
.showcase-card--blue:hover {
  box-shadow: 0 18px 45px rgba(0, 132, 255, 0.45);
}

.showcase-card--emerald {
  background: linear-gradient(135deg, #00f5a0 0%, #00d9f5 100%);
  box-shadow: 0 12px 30px rgba(0, 245, 160, 0.25);
}
.showcase-card--emerald:hover {
  box-shadow: 0 18px 45px rgba(0, 245, 160, 0.45);
}

.showcase-card--yellow {
  background: linear-gradient(135deg, #ffd600 0%, #ff9100 100%);
  box-shadow: 0 12px 30px rgba(255, 214, 0, 0.25);
}
.showcase-card--yellow:hover {
  box-shadow: 0 18px 45px rgba(255, 214, 0, 0.45);
}

/* ============================================
   ABOUT THE PROJECT / WHERE IT ALL BEGAN
   (Matching landing_main.jpg bottom split)
   ============================================ */
.section {
  position: relative;
  padding: 6.5rem 0;
  z-index: 1;
}

.section--dark {
  background-color: var(--bg-section-dark);
}

.section--darker {
  background-color: var(--bg-section-darker);
}

.section-about {
  padding: 7rem 0 6rem 0;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4.5rem;
}

.about-pill-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-lime);
  margin-bottom: 1.25rem;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  max-width: 540px;
}

/* Circle Arrow Story Link Button */
.story-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--trans-fast);
}

.story-link-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all var(--trans-normal);
}

.story-link-btn:hover .story-link-btn__icon {
  border-color: var(--neon-lime);
  background: var(--neon-lime);
  color: #0b0c10;
  transform: translateX(6px);
}

.story-link-btn:hover .story-link-btn__text {
  color: var(--neon-lime);
}

/* Giant Stat + Watermark Box */
.stat-highlight-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 0;
}

.stat-watermark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 15vw, 12rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.05);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.stat-number-wrapper {
  position: relative;
  display: flex;
  align-items: baseline;
  z-index: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1;
}

.stat-sparkle {
  position: absolute;
  top: -15px;
  right: -45px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

.sparkle-mini {
  margin-bottom: 12px;
}

.stat-caption {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

/* ============================================
   WHY FRENSPAW / THREE CORE PILLARS
   ============================================ */
.section-header-center {
  max-width: 780px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.section-heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.section-heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.section-subtext-center {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--trans-normal);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pillar-card__icon-wrap {
  font-size: 2.25rem;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
}

.pillar-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   INTERNATIONAL DOG DAY STORY
   ============================================ */
.story-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.story-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.story-highlight-quote {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neon-lime);
  padding-left: 1.25rem;
  border-left: 3px solid var(--neon-lime);
  margin-top: 0.5rem;
}

.story-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  transition: transform var(--trans-normal);
}

.story-img-frame:hover {
  transform: scale(1.02);
}

/* ============================================
   THE FRENS GALLERY
   ============================================ */
.highlight-lime {
  color: var(--neon-lime);
  font-weight: 600;
}

.frens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
}

.fren-avatar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fren-avatar-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  padding: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: all var(--trans-normal);
  cursor: pointer;
}

.fren-avatar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}

.fren-avatar-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.fren-card--gold { background: linear-gradient(135deg, #ffd600, #ff9100); }
.fren-card--blue { background: linear-gradient(135deg, #0084ff, #00e5ff); }
.fren-card--pink { background: linear-gradient(135deg, #ff2e93, #ff70a6); }
.fren-card--lime { background: linear-gradient(135deg, #d4f738, #00f5a0); }
.fren-card--emerald { background: linear-gradient(135deg, #00f5a0, #00b4d8); }
.fren-card--yellow { background: linear-gradient(135deg, #ffb703, #fb8500); }

.fren-avatar-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.fren-avatar-trait {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   COLLECTION SPECS & STATS
   ============================================ */
.stats-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2.5rem 0;
}

.stat-glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all var(--trans-fast);
}

.stat-glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 247, 56, 0.4);
  transform: translateY(-4px);
}

.stat-glass__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.stat-glass__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
}

.collection-quote-box {
  margin-top: 2rem;
}

.collection-quote__p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.collection-quote__highlight {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--neon-lime);
  margin-top: 0.25rem;
}

/* ============================================
   ROADMAP TIMELINE
   ============================================ */
.roadmap-timeline-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.roadmap-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all var(--trans-normal);
}

.roadmap-card-v2:hover {
  border-color: var(--neon-lime);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
}

.roadmap-step-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-lime);
  background: rgba(212, 247, 56, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.roadmap-card-v2__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.roadmap-card-v2__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.roadmap-card-v2__list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  position: relative;
  padding-left: 1.25rem;
}

.roadmap-card-v2__list li::before {
  content: "•";
  color: var(--neon-lime);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ============================================
   THE PACK
   ============================================ */
.pack-banner-frame {
  margin: 3.5rem auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  max-width: 1040px;
}

.pack-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.pack-mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all var(--trans-fast);
}

.pack-mini-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.pack-mini-card__icon {
  font-size: 2rem;
}

.pack-mini-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.pack-mini-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   COLLABORATE
   ============================================ */
.collab-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  max-width: 820px;
  margin: 2.5rem auto;
}

.collab-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--trans-fast);
  cursor: default;
}

.collab-pill:hover {
  background: rgba(212, 247, 56, 0.1);
  border-color: var(--neon-lime);
  color: var(--neon-lime);
  transform: translateY(-2px);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion-v2 {
  max-width: 760px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--trans-fast);
}

.faq-item-v2.open {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.faq-q-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
}

.faq-icon-cross {
  font-size: 1.4rem;
  color: var(--neon-lime);
  transition: transform var(--trans-fast);
}

.faq-item-v2.open .faq-icon-cross {
  transform: rotate(45deg);
}

.faq-a-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-smooth), padding 0.35s var(--ease-smooth);
  padding: 0 1.5rem;
}

.faq-item-v2.open .faq-a-pane {
  max-height: 200px;
  padding-bottom: 1.35rem;
}

.faq-a-pane p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   FINAL CTA
   ============================================ */
.section-final {
  padding: 7rem 0 8rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 247, 56, 0.05) 0%, transparent 60%);
}

.final-quote-box {
  margin-bottom: 3.5rem;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.final-quote-bold {
  font-weight: 700;
  color: var(--text-white);
  margin-top: 0.5rem;
}

.final-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.final-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.final-buttons-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.final-footer-motto p {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border-glass);
  padding: 3rem 0;
  background-color: var(--bg-section-darker);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-white);
}

.footer-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.site-footer__nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--neon-lime);
}

.site-footer__copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

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

/* ============================================
   RESPONSIVENESS
   ============================================ */
@media (max-width: 992px) {
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .about-description {
    margin-left: auto;
    margin-right: auto;
  }
  .stat-highlight-box {
    align-items: center;
  }
  .stat-watermark {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .story-split-grid {
    grid-template-columns: 1fr;
  }
  .roadmap-timeline-v2 {
    grid-template-columns: 1fr 1fr;
  }
  .stats-glass-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-pill__links {
    position: fixed;
    top: 5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(18, 20, 26, 0.96);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--trans-normal);
  }
  .nav-pill__links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__toggle {
    display: flex;
  }
  .nav-pill {
    padding: 0 1rem;
  }
  .roadmap-timeline-v2 {
    grid-template-columns: 1fr;
  }
  .stats-glass-grid {
    grid-template-columns: 1fr;
  }
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__nav {
    justify-content: center;
  }
}

/* Waitlist Modal Styling */
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-normal), visibility var(--trans-normal);
}

.waitlist-modal.open {
  opacity: 1;
  visibility: visible;
}

.waitlist-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(8px);
}

.waitlist-modal__content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 90%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  z-index: 10;
  transform: scale(0.92);
  transition: transform var(--trans-normal);
}

.waitlist-modal.open .waitlist-modal__content {
  transform: scale(1);
}

.waitlist-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2rem;
  color: var(--text-secondary);
  line-height: 1;
  transition: color var(--trans-fast);
}

.waitlist-modal__close:hover {
  color: var(--neon-lime);
}

.waitlist-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.waitlist-tasks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.waitlist-tasks li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.waitlist-task-link {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--trans-fast);
}

.waitlist-task-link:hover {
  color: var(--neon-lime);
}

.waitlist-info-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.waitlist-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 5px;
  border-radius: var(--radius-sm);
  transition: border-color var(--trans-fast);
}

.waitlist-form:focus-within {
  border-color: var(--neon-lime);
}

.waitlist-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.65rem 0.85rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.waitlist-input::placeholder {
  color: var(--text-muted);
}

.btn-waitlist-submit {
  white-space: nowrap;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: calc(var(--radius-sm) - 4px);
  box-shadow: none;
}

.waitlist-message {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  min-height: 1.25rem;
  text-align: center;
}

.waitlist-message.success {
  color: var(--neon-emerald);
}

.waitlist-message.error {
  color: var(--neon-pink);
}

@media (max-width: 480px) {
  .waitlist-modal__content {
    padding: 2rem 1.25rem 1.25rem 1.25rem;
  }
  .waitlist-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
  }
  .waitlist-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
  }
  .btn-waitlist-submit {
    width: 100%;
  }
}

