/* ============================================
   GEMMA'S SIDE HUSTLE VAULT — Design Tokens
   ============================================ */

:root {
  /* 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);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Colors — Gemma's pink/gold/cream palette */
  --color-bg: #FFFBF8;
  --color-surface: #FFFFFF;
  --color-surface-2: #FFF5F0;
  --color-surface-offset: #FFF0EA;
  --color-surface-pink: #FFF0F3;
  --color-surface-gold: #FDF6EC;

  --color-text: #1a1a1a;
  --color-text-muted: #4a4a4a;
  --color-text-faint: #767676;

  --color-primary: #E8889A;
  --color-primary-hover: #D4647A;
  --color-primary-active: #C04A62;

  --color-gold: #D4A574;
  --color-gold-hover: #C4905E;
  --color-gold-light: #F5E6D3;

  --color-pink-light: #FFD4DE;
  --color-pink-medium: #FFB6C1;
  --color-pink-bg: #FFF0F3;

  --color-success: #4CAF50;
  --color-divider: #f0e6e0;
  --color-border: #e8ddd6;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(212, 165, 116, 0.08);
  --shadow-md: 0 4px 16px rgba(212, 165, 116, 0.1);
  --shadow-lg: 0 12px 40px rgba(212, 165, 116, 0.14);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-card-hover: 0 8px 30px rgba(212, 165, 116, 0.15);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 800px;
  --content-wide: 1080px;
}

/* ============================================
   LAYOUT & GLOBAL
   ============================================ */

body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
  background: linear-gradient(135deg, #E8889A 0%, #D4A574 100%);
  color: white;
  text-align: center;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.announcement-bar span {
  display: inline-block;
}

/* ============================================
   STICKY HEADER
   ============================================ */

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-3) 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sticky-header.scrolled {
  box-shadow: var(--shadow-md);
}

.sticky-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: white;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  background: linear-gradient(175deg, var(--color-bg) 0%, var(--color-surface-pink) 40%, var(--color-bg) 100%);
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 0.9fr;
    gap: var(--space-16);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface);
  border: 1px solid var(--color-pink-light);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.price-current {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
}

.price-original {
  font-size: var(--text-lg);
  color: var(--color-text-faint);
  text-decoration: line-through;
}

.price-save {
  display: inline-flex;
  align-items: center;
  background: #FEF3CD;
  color: #856404;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
}

.price-taxes {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 400;
}

.price-taxes-launch {
  padding-left: 5px;
  font-size: var(--text-sm);
  color: white;
  font-weight: 400;
}

.price-taxes-start {
  font-size: var(--text-xs);
  color: #767676;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 360px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: white;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  font-size: var(--text-base);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 136, 154, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 136, 154, 0.4);
}

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

.btn-primary .pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(232, 136, 154, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(232, 136, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 136, 154, 0); }
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.hero-guarantee svg {
  flex-shrink: 0;
  color: var(--color-success);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */

.social-proof {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-8);
}

.social-proof .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-align: left;
}

.proof-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-pink);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.proof-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.proof-text strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
}

.proof-text span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================
   WHAT'S INSIDE (Product cards)
   ============================================ */

.whats-inside {
  background: var(--color-bg);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  max-width: 560px;
  margin-inline: auto;
}

/* Product cards — varied layout */
.product-grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card--featured {
    grid-column: 1 / -1;
  }
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.product-card--featured {
  background: linear-gradient(135deg, var(--color-surface-pink) 0%, var(--color-surface) 50%, var(--color-surface-gold) 100%);
  border: 1px solid var(--color-pink-light);
}

.product-card--featured .product-card__content {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .product-card--featured .product-card__content {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}

.product-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
}

.product-card--main .product-card__number {
  background: var(--color-surface-pink);
  color: var(--color-primary);
}

.product-card--bonus .product-card__number {
  background: var(--color-surface-gold);
  color: var(--color-gold);
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.product-card__badge--new {
  background: #E8F5E9;
  color: #2E7D32;
}

.product-card__badge--popular {
  background: var(--color-surface-pink);
  color: var(--color-primary);
}

.product-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.product-card__value {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold);
}

/* ============================================
   BUNDLE MOCKUP SECTION
   ============================================ */

.bundle-visual {
  background: var(--color-surface-pink);
  position: relative;
  overflow: hidden;
}

.bundle-visual .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .bundle-visual .container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.bundle-image img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.bundle-breakdown {
  list-style: none;
  padding: 0;
}

.bundle-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: var(--text-sm);
}

.bundle-breakdown li:last-child {
  border-bottom: none;
}

.bundle-breakdown .item-name {
  color: var(--color-text);
  font-weight: 500;
}

.bundle-breakdown .item-value {
  color: var(--color-text-muted);
  font-weight: 600;
}

.bundle-total {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 2px solid var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bundle-total .total-label {
  font-weight: 700;
  font-size: var(--text-base);
}

.bundle-total .total-values {
  text-align: right;
}

.bundle-total .total-original {
  text-decoration: line-through;
  color: var(--color-text-faint);
  font-size: var(--text-sm);
}

.bundle-total .total-price {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
}

/* ============================================
   UPSELL FLOW
   ============================================ */

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

.upsell-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .upsell-flow {
    flex-direction: row;
    align-items: stretch;
    gap: var(--space-4);
  }
}

.upsell-step {
  flex: 1;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  text-align: left;
}

.upsell-step--main {
  border: 2px solid var(--color-primary);
  background: linear-gradient(180deg, var(--color-surface-pink) 0%, var(--color-surface) 40%);
}

.upsell-step--bump {
  border: 2px solid var(--color-gold);
  background: linear-gradient(180deg, var(--color-surface-gold) 0%, var(--color-surface) 40%);
}

.upsell-step--vip {
  border: 2px solid #B39DDB;
  background: linear-gradient(180deg, #F3E5F5 0%, var(--color-surface) 40%);
}

.upsell-step__step-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.upsell-step--main .upsell-step__step-label {
  background: var(--color-surface-pink);
  color: var(--color-primary);
}

.upsell-step--bump .upsell-step__step-label {
  background: var(--color-gold-light);
  color: var(--color-gold-hover);
}

.upsell-step--vip .upsell-step__step-label {
  background: #EDE7F6;
  color: #7E57C2;
}

.upsell-step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.upsell-step__price {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.upsell-step--main .upsell-step__price { color: var(--color-primary); }
.upsell-step--bump .upsell-step__price { color: var(--color-gold); }
.upsell-step--vip .upsell-step__price { color: #7E57C2; }

.upsell-step__list {
  list-style: none;
  padding: 0;
}

.upsell-step__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-block: var(--space-1);
  line-height: 1.5;
}

.upsell-step__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.upsell-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-text-faint);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .upsell-arrow {
    display: flex;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial-grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-3);
  color: #F5A623;
}

.testimonial-card__text {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-surface-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-primary);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================
   GUARANTEE
   ============================================ */

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

.guarantee-card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gold-light);
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 640px) {
  .guarantee-card {
    grid-template-columns: auto 1fr;
    gap: var(--space-8);
  }
}

.guarantee-card__image {
  width: 120px;
  height: auto;
  justify-self: center;
}

.guarantee-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.guarantee-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  background: var(--color-surface-pink);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  gap: var(--space-4);
  background: none;
  border: none;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

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

.faq-answer__inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  background: linear-gradient(175deg, var(--color-surface-pink) 0%, var(--color-bg) 100%);
  text-align: center;
}

.final-cta .section-title {
  margin-bottom: var(--space-4);
}

.final-cta .section-subtitle {
  margin-bottom: var(--space-8);
}

.final-cta__price {
  margin-bottom: var(--space-6);
}

.final-cta__price .price-current {
  font-size: var(--text-2xl);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(255, 251, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__price {
  white-space: nowrap;
}

.sticky-cta__price .price-current {
  font-size: var(--text-lg);
  font-weight: 800;
}

.sticky-cta__price .price-original {
  font-size: var(--text-sm);
}

.sticky-cta .btn-primary {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: var(--space-10) 0 var(--space-6);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand .logo-text small {
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: var(--text-sm);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
}

.footer-demo {
  color: rgba(255,255,255,0.35);
  font-size: var(--text-xs);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Countdown timer pulse */
.countdown-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   RESPONSIVE HELPERS
   ============================================ */

@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 640px) {
  .hide-desktop { display: none !important; }
}
