/* ═══════════════════════════════════════════════════════════
   TIPGOLD — Landing Page Design System v2 (PREMIUM)
   Brand: 11_Brand_Colors.txt | Fonts: Playfair Display + Inter
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════
   DISCLAIMER POPUP
   ═══════════════════════════════════════════════════════════ */
.disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.disclaimer-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.disclaimer-popup {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.4s ease;
}

@keyframes popupSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.disclaimer-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D97706, #F59E0B, #D97706);
}

.disclaimer-icon {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
}

.disclaimer-popup h3 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1A1A2E;
  text-align: center;
  margin-bottom: 16px;
}

.disclaimer-popup > p {
  font-size: 0.92rem;
  color: #4B5563;
  line-height: 1.65;
  margin-bottom: 16px;
}

.disclaimer-popup ul {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclaimer-popup ul li {
  font-size: 0.85rem;
  color: #4B5563;
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.disclaimer-popup ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: #D97706;
  font-weight: 700;
}

.disclaimer-popup ul li strong {
  color: #1A1A2E;
}

.disclaimer-footer-text {
  font-size: 0.82rem;
  color: #9CA3AF;
  text-align: center;
  font-style: italic;
  margin-bottom: 20px;
}

.disclaimer-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: #D4860A;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.disclaimer-btn:hover {
  background: #B8720A;
  transform: translateY(-1px);
}

/* ── CSS Custom Properties ── */
:root {
  /* Background */
  --bg-page: #F8F7F4;
  --bg-card: #FFFFFF;
  --bg-card-border: #EDE4D3;
  --bg-nav: rgba(255, 255, 255, 0.82);
  --bg-dark: #050D1A;
  --bg-dark-lighter: #0B1628;
  --bg-dark-card: rgba(255, 255, 255, 0.04);

  /* Gold (Primary) */
  --gold-primary: #C8850D;
  --gold-accent: #F0B429;
  --gold-gradient: #FFCB57;
  --gold-tint: #FFF8EB;
  --gold-deep: #8B6914;
  --gold-glow: rgba(240, 180, 41, 0.25);

  /* Success */
  --success: #10B981;



  /* Text */
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --text-on-dark: rgba(255, 255, 255, 0.85);
  --text-on-dark-muted: rgba(255, 255, 255, 0.5);

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 120px 24px;
  --section-padding-mobile: 72px 16px;
  --container-max: 1080px;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.05), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.04);
  --shadow-gold: 0 8px 40px rgba(200, 133, 13, 0.15);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Gold gradient text */
.gold-text {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-primary) 40%, var(--gold-gradient) 80%, var(--gold-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShift 6s ease-in-out infinite;
}

@keyframes goldShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ═══════════════════════════════════════════════════════════
   STICKY NAV BAR
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  padding: 10px 24px;
  background: var(--bg-nav);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: color 0.3s var(--ease);
}

.nav.scrolled .nav-logo {
  color: var(--text-primary);
}

.nav-logo-coin {
  width: 32px;
  height: 32px;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--gold-primary);
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(200, 133, 13, 0.25);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--bg-dark);
  padding: 140px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Removed old ::before/::after orbs in favor of .hero-mesh */

/* Gold particle canvas */
#goldParticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Floating gold coin */
.hero-coin {
  width: 220px;
  height: 220px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  animation: coinFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 60px rgba(200, 133, 13, 0.5))
         drop-shadow(0 8px 20px rgba(200, 133, 13, 0.3));
  /* No border-radius or object-fit — let the PNG shape speak */
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  25% { transform: translateY(-12px) rotateY(5deg); }
  50% { transform: translateY(-6px) rotateY(0deg); }
  75% { transform: translateY(-14px) rotateY(-5deg); }
}

/* Coin glow ring */
.hero-coin-wrapper {
  position: relative;
  z-index: 1;
  display: inline-block;
}

/* Removed duplicate coin glow ring block */

.hero h1 {
  color: #FFFFFF;
  max-width: 750px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  max-width: 520px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* Hero CTA */
.hero-cta {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto 20px;
}

/* Style the Viral Loops widget inside dark hero */
.hero-cta form-widget,
.footer-cta-widget form-widget {
  display: block;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Hero bottom curve */
.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.hero-curve svg {
  display: block;
  width: 100%;
  height: 80px;
}

.hero-risk-reversal {
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s var(--ease);
}

.trust-item:hover {
  border-color: rgba(240, 180, 41, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-on-dark);
}

.trust-item .icon {
  font-size: 1rem;
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bg-card-border), transparent);
  border: none;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2: PAIN AMPLIFICATION
   ═══════════════════════════════════════════════════════════ */
.pain {
  padding: var(--section-padding);
  text-align: center;
  background: var(--bg-page);
}

.pain h2 {
  max-width: 600px;
  margin: 0 auto 56px;
}

.pain-list {
  list-style: none;
  max-width: 500px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.pain-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-item:hover {
  box-shadow: var(--shadow-md);
}

.pain-item .emoji {
  font-size: 1.3rem;
  margin-right: 12px;
}

.pain-item .amount {
  color: var(--text-primary);
  font-weight: 600;
}

.pain-item .result {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
}

.pain-item .result.gone {
  text-decoration: line-through;
  color: #DC6B09;
  font-weight: 500;
}

.pain-transition {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--gold-primary);
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.pain-transition.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3: HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--section-padding);
  background: var(--bg-card);
  position: relative;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 64px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto 72px;
}

.step {
  text-align: center;
  padding: 40px 28px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all 0.5s var(--ease);
  position: relative;
}

.step:hover {
  border-color: var(--bg-card-border);
  background: var(--bg-page);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-tint), #FFF0D4);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(200, 133, 13, 0.1);
  transition: all 0.4s var(--ease);
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(200, 133, 13, 0.2);
}

.step h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* Progress bar animation */
.progress-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 24px;
}

.progress-bar-bg {
  height: 10px;
  background: var(--gold-tint);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent), var(--gold-gradient));
  background-size: 200% 100%;
  border-radius: 100px;
  transition: width 2.5s var(--ease);
  position: relative;
  animation: progressShine 2s linear infinite;
}

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

.progress-bar-fill::after {
  content: '🪙';
  position: absolute;
  right: -8px;
  top: -12px;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(200, 133, 13, 0.3));
}

.progress-bar-fill.complete::after {
  opacity: 1;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4: FASCINATION BULLETS
   ═══════════════════════════════════════════════════════════ */
.fascination {
  padding: var(--section-padding);
  background: var(--bg-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern */
.fascination::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.fascination h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.fascination-list {
  list-style: none;
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.fascination-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 180, 41, 0.08);
  background: var(--bg-dark-card);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateX(-20px);
}

.fascination-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.fascination-item:hover {
  border-color: rgba(240, 180, 41, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(6px);
}

.fascination-bullet {
  color: var(--gold-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.fascination-item p {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5: FOUNDING MEMBER OFFER
   ═══════════════════════════════════════════════════════════ */
.founding {
  padding: var(--section-padding);
  background: var(--bg-page);
  text-align: center;
  position: relative;
}

.founding h2 {
  margin-bottom: 16px;
}

.founding-subtitle {
  color: var(--text-secondary);
  margin-bottom: 56px;
  font-size: 1.1rem;
}

.founding-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s var(--ease);
}

.founding-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.1), var(--shadow-gold);
}

.founding-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent), var(--gold-gradient), var(--gold-accent));
  background-size: 300% 100%;
  animation: goldBarShift 4s ease infinite;
}

@keyframes goldBarShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-tint);
  color: var(--gold-primary);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 36px;
  box-shadow: 0 2px 12px rgba(200, 133, 13, 0.1);
}

.founding-benefits {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.founding-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
}

.founding-benefit .check {
  color: var(--success);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.founding-benefit .label {
  color: var(--text-primary);
  font-weight: 500;
}

.founding-benefit .sublabel {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.founding-widget {
  margin-top: 8px;
}

.founding-scarcity {
  margin-top: 24px;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.founding-urgency {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6: TRUST & SECURITY
   ═══════════════════════════════════════════════════════════ */
.trust {
  padding: var(--section-padding);
  background: var(--bg-card);
}

.trust h2 {
  text-align: center;
  margin-bottom: 56px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.trust-card {
  padding: 36px 28px;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.5s var(--ease);
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

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

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 133, 13, 0.15);
}

.trust-card .trust-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.trust-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6.5: FAQ (Collapsible)
   ═══════════════════════════════════════════════════════════ */
.faq {
  padding: var(--section-padding);
  background: var(--bg-page);
}

.faq h2 {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: rgba(200, 133, 13, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: color 0.3s var(--ease);
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-tint);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-primary);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 7: FOOTER CTA
   ═══════════════════════════════════════════════════════════ */
.footer-cta {
  padding: 100px 24px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 133, 13, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta h2 {
  color: #FFFFFF;
  max-width: 520px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}

.footer-cta-widget {
  max-width: 460px;
  margin: 36px auto 0;
  position: relative;
  z-index: 1;
}

.footer-cta .hero-risk-reversal {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  padding: 36px 24px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

.footer a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.footer a:hover {
  color: var(--gold-accent);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero {
    padding: 100px 16px 80px;
    min-height: auto;
  }

  .hero-coin {
    width: 160px;
    height: 160px;
  }

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

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

  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .founding-card {
    padding: 36px 24px;
  }

  .pain, .how-it-works, .fascination, .founding, .trust, .faq {
    padding: var(--section-padding-mobile);
  }

  .nav-cta {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}

@media (max-width: 480px) {
  .hero-coin {
    width: 120px;
    height: 120px;
  }

  .pain-item {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .founding-card {
    padding: 28px 20px;
  }

  .disclaimer-popup {
    padding: 28px 20px;
    max-height: calc(100vh - 32px);
  }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS (scroll-triggered)
   ═══════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════
   UTILITY: Selection color
   ═══════════════════════════════════════════════════════════ */
::selection {
  background: var(--gold-tint);
  color: var(--gold-deep);
}

/* ═══════════════════════════════════════════════════════════
   WOW FACTOR: CINEMATIC PAGE ENTRANCE
   ═══════════════════════════════════════════════════════════ */

/* Page load overlay */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader-coin {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: loaderPulse 1s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(240, 180, 41, 0.5));
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ── Hero Entrance: Staggered Choreography ── */

/* Start hidden */
.hero-coin-wrapper {
  opacity: 0;
  transform: translateY(-60px) scale(0.7);
}

.hero h1 {
  /* Using mask text animation now */
}

.hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
}

.hero-cta {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.hero-risk-reversal {
  opacity: 0;
}

.trust-bar {
  opacity: 0;
  transform: translateY(20px);
}

/* Reveal when loaded */
body.loaded .hero-coin-wrapper {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.2s;
}

body.loaded .hero h1 {
  /* Using mask text animation now */
}

body.loaded .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.9s;
}

body.loaded .hero-cta {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 1.1s;
}

body.loaded .hero-risk-reversal {
  opacity: 1;
  transition: opacity 0.6s ease;
  transition-delay: 1.3s;
}

body.loaded .trust-bar {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 1.5s;
}

/* ── Gold Light Sweep on Headline ── */
.hero h1 {
  position: relative;
  z-index: 1;
}

.gold-text {
  position: relative;
  background: linear-gradient(135deg, #F0B429 0%, #C8850D 45%, #FFCB57 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pure gradient — no animation for premium stillness */

/* ── Coin Glow — clean radial aura ── */
.hero-coin-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 133, 13, 0.2) 0%, rgba(200, 133, 13, 0.08) 40%, transparent 70%);
  animation: coinAura 5s ease-in-out infinite;
  pointer-events: none;
}

.hero-coin-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.06) 0%, transparent 60%);
  animation: coinAura 7s ease-in-out 1s infinite;
  pointer-events: none;
}

@keyframes coinAura {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
/* ═══════════════════════════════════════════════════════════
   INTERACTIVE UX SIMULATOR
   ═══════════════════════════════════════════════════════════ */
.simulator-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.simulator-phone {
  width: 100%;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 24px;
  box-shadow: 
    0 24px 80px rgba(0, 0, 0, 0.08), 
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Target Coin Display */
.sim-target {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #FFF8EB, #FFFFFF);
  border-radius: 16px;
  border: 1px solid rgba(200, 133, 13, 0.15);
}

.sim-coin-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 4px 8px rgba(200, 133, 13, 0.3));
  pointer-events: none;
}

.sim-target-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sim-coin-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sim-coin-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
}

/* Savings Progress */
.sim-progress-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sim-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
}

.sim-progress-track {
  width: 100%;
  height: 10px;
  background: #F1F5F9;
  border-radius: 100px;
  overflow: hidden;
}

.sim-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-progress-fill.complete {
  background: linear-gradient(90deg, #10B981, #34D399);
}

/* Hint Text */
.sim-hint {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  padding: 40px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: hintPulse 2s infinite ease-in-out;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); text-shadow: 0 0 15px rgba(200, 133, 13, 0.4); }
}

/* Screen Area (Receipts) */
.sim-screen {
  flex: 1;
  background: #F8FAFC;
  border-radius: 20px;
  padding: 16px;
  min-height: 200px;
  position: relative;
  display: flex;
  flex-direction: column-reverse; /* New receipts at bottom */
  gap: 12px;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

.sim-receipt {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  animation: receiptSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  z-index: 1;
}

@keyframes receiptSlideIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.sim-receipt-header {
  display: flex;
  justify-content: space-between;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.sim-receipt-tip {
  display: flex;
  justify-content: space-between;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding-top: 8px;
  border-top: 1px dashed #E2E8F0;
  position: relative;
}

.sim-receipt-tip.glow {
  animation: textGlowPulse 1.5s ease-out;
}

@keyframes textGlowPulse {
  0% { text-shadow: 0 0 0 rgba(200, 133, 13, 0); }
  50% { text-shadow: 0 0 10px rgba(200, 133, 13, 0.5); }
  100% { text-shadow: 0 0 0 rgba(200, 133, 13, 0); }
}

/* Action Button */
.sim-btn {
  background: var(--text-primary);
  color: #FFFFFF;
  border: none;
  padding: 16px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.sim-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sim-btn:active {
  transform: translateY(0);
}

.sim-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Gold Dust Particles */
.sim-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.sim-dust {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
  opacity: 0;
}

/* Private Vault Delivery Sequence */
.sim-vault-delivery {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  border-radius: 24px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-vault-delivery.show {
  transform: translateY(0);
}

.sim-vault-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 133, 13, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.sim-vault-coin {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 12px 30px rgba(200, 133, 13, 0.6));
  animation: vaultFloat 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes vaultFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.sim-vault-text {
  text-align: center;
  z-index: 2;
}

.sim-vault-title {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.sim-vault-subtitle {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ── Gradient Mesh (Animated Blobs) ── */
.hero-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  mix-blend-mode: screen;
}

.mesh-blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 133, 13, 0.25), transparent 65%);
  top: -15%;
  right: -10%;
  animation: blobMove1 18s ease-in-out infinite;
}

.mesh-blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.18), transparent 65%);
  bottom: -10%;
  left: -12%;
  animation: blobMove2 22s ease-in-out infinite;
}

.mesh-blob-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 203, 87, 0.12), transparent 65%);
  top: 35%;
  left: 25%;
  animation: blobMove3 15s ease-in-out infinite;
}

@keyframes blobMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-60px, 40px) scale(1.15); }
  50% { transform: translate(-30px, -30px) scale(0.9); }
  75% { transform: translate(40px, -15px) scale(1.1); }
}

@keyframes blobMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(70px, -40px) scale(1.12); }
  66% { transform: translate(-40px, 30px) scale(0.88); }
}

@keyframes blobMove3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -50px) scale(1.2); }
}

/* ── Mouse Parallax perspective ── */
.hero {
  perspective: 1000px;
}

.hero-coin {
  transition: transform 0.15s ease-out;
  will-change: transform;
}

/* ── Floating badge on founding card ── */
.founding-card {
  position: relative;
}

.founding-spots-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(200, 133, 13, 0.1), rgba(240, 180, 41, 0.05));
  border: 1px solid rgba(200, 133, 13, 0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.spots-count {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ── Section entrance stagger for below-fold ── */
.section-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ═══════════════════════════════════════════════════════════
   CINEMATIC NOISE OVERLAY
   ═══════════════════════════════════════════════════════════ */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom cursor REMOVED — reverted to default for performance */

/* ═══════════════════════════════════════════════════════════
   LENIS SMOOTH SCROLL
   ═══════════════════════════════════════════════════════════ */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   FLUID TYPOGRAPHY MASKING
   ═══════════════════════════════════════════════════════════ */
.mask-text {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.mask-text span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.loaded .mask-text span {
  transform: translateY(0);
}

