/* ============================================
   KICKSTARTER.NURSNOOK.COM
   "Step Wide. The Founding Collection."
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Midnight — the deep end */
  --bg-primary: #0a0a16;
  --bg-secondary: #0e0e1c;
  --bg-card: #131324;
  --bg-card-hover: #1a1a30;
  --text-primary: #f0ede8;
  --text-secondary: #a8a4b8;
  --text-muted: #5c5872;
  --accent: #c8c8d0;
  --border: #1c1c34;
  --border-light: #2a2a46;

  /* Wine — the bruise, the velvet, the weight */
  --wine: #8b2258;
  --wine-light: #a83270;
  --wine-deep: #6a1a44;
  --wine-glow: rgba(139, 34, 88, 0.25);

  /* Bluefruit — the luminescent crown, lavender frost */
  --bluefruit: #b8a8d8;
  --bluefruit-light: #cdbde8;
  --bluefruit-deep: #9a8bbe;
  --bluefruit-glow: rgba(184, 168, 216, 0.18);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 22, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 34, 88, 0.15);
  transition: transform 0.3s ease;
}
.nav.hidden { transform: translateY(-100%); }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
}
.nav-logo span { color: var(--text-muted); font-weight: 400; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--bluefruit);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--bluefruit-glow);
}
.nav-cta:hover {
  background: var(--bluefruit-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 30px rgba(184, 168, 216, 0.35);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139, 34, 88, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(184, 168, 216, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(139, 34, 88, 0.08) 0%, transparent 40%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}
.hero-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--wine-light), var(--bluefruit));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--bluefruit);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* ---- SECTIONS ---- */
section {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wine-light);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.85;
}
.section-body p + p { margin-top: 1.25rem; }

/* ---- THE RECEIPTS ---- */
.receipts {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(139, 34, 88, 0.2);
  border-bottom: 1px solid rgba(139, 34, 88, 0.2);
  position: relative;
}
.receipts::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(139, 34, 88, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.receipts-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.receipts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.receipt-card {
  background: var(--bg-card);
  border: 1px solid rgba(139, 34, 88, 0.25);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.receipt-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--wine), var(--wine-deep));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.receipt-card:hover {
  border-color: rgba(139, 34, 88, 0.3);
  box-shadow: 0 0 30px rgba(139, 34, 88, 0.1);
}
.receipt-card:hover::after { opacity: 1; }
.receipt-card-platform {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.receipt-card-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.receipt-card-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.receipt-card-stat {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.receipt-card-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wine-light);
}
.receipt-card-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.receipt-verdict {
  margin-top: 3rem;
  padding: 2rem;
  border-left: 3px solid var(--wine);
  background: rgba(139, 34, 88, 0.04);
}
.receipt-verdict p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---- FULL-WIDTH QUOTE ---- */
.quote-break {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}
.quote-break::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--wine), var(--bluefruit));
  border-radius: 1px;
}
.quote-break blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--bluefruit) 70%, var(--wine-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- FOUNDING COLLECTION ---- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(184, 168, 216, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
}
.product-card:hover {
  border-color: rgba(184, 168, 216, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(184, 168, 216, 0.1);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-body { padding: 1.5rem; }
.product-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--bluefruit);
}
.product-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- TIERS ---- */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid rgba(184, 168, 216, 0.18);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.tier-card:hover {
  border-color: rgba(139, 34, 88, 0.45);
  box-shadow: 0 0 30px var(--wine-glow);
}
.tier-card.featured {
  border-color: var(--wine-light);
  box-shadow:
    0 0 40px var(--wine-glow),
    0 0 80px rgba(184, 168, 216, 0.08);
  background: linear-gradient(170deg, var(--bg-card) 0%, rgba(139, 34, 88, 0.1) 100%);
}
.tier-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; right: 2rem;
  background: linear-gradient(135deg, var(--wine), var(--bluefruit));
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--bluefruit);
}
.tier-name {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.tier-perks {
  list-style: none;
  flex: 1;
}
.tier-perks li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.tier-perks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--wine-light);
}
.tier-limit {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.tier-cta {
  display: block;
  margin-top: 1.25rem;
  padding: 0.75rem;
  text-align: center;
  background: var(--bluefruit);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tier-cta:hover {
  background: var(--bluefruit-light);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--bluefruit-glow);
}

/* ---- TIMELINE ---- */
.timeline {
  margin-top: 3rem;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--wine), var(--bluefruit-deep), var(--border));
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 9px;
  height: 9px;
  background: var(--wine-deep);
  border-radius: 50%;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}
.timeline-item.active::before {
  background: var(--bluefruit);
  box-shadow: 0 0 12px var(--bluefruit-glow);
}
.timeline-date {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* ---- FOUNDER ---- */
.founder-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(139, 34, 88, 0.25);
  box-shadow: 0 0 30px rgba(139, 34, 88, 0.1);
  flex-shrink: 0;
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.founder-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.founder-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-top: 2rem;
}
.founder-bio p + p { margin-top: 1rem; }

/* ---- FINAL CTA ---- */
.final-cta {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--wine), var(--bluefruit));
  border-radius: 1px;
}
.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 20%, var(--bluefruit) 50%, var(--wine-light) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta-body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--bluefruit), var(--bluefruit-light));
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px var(--bluefruit-glow);
}
.final-cta-btn:hover {
  background: linear-gradient(135deg, var(--bluefruit-light), var(--bluefruit));
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(184, 168, 216, 0.35);
}

/* ---- FOOTER ---- */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(139, 34, 88, 0.15);
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--bluefruit); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- HERO TAG ACCENT ---- */
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--wine);
  border-radius: 50%;
  margin-right: 0.6rem;
  vertical-align: middle;
  animation: tagPulse 2.5s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 34, 88, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(139, 34, 88, 0); }
}

/* ---- SECTION HEADLINE ACCENT ---- */
.section-headline strong,
.section-body strong {
  color: var(--bluefruit);
  font-weight: 700;
}

/* ---- SOCIAL BAR (ICON-ONLY, MIDNIGHT BLUEFRUIT) ---- */
.social-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--bluefruit);
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-bar a svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.social-bar a:hover {
  color: var(--text-primary);
  border-color: var(--wine);
  background: var(--wine-deep);
  box-shadow: 0 0 18px var(--wine-glow);
}
.social-bar a:hover svg {
  transform: scale(1.12);
}
.social-bar-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
/* ---- DISABLED BUTTONS (PRE-LAUNCH) ---- */
.nav-cta[data-disabled],
.tier-cta[data-disabled],
.final-cta-btn[data-disabled] {
  pointer-events: auto;
  cursor: default;
  position: relative;
}
.nav-cta[data-disabled]:active,
.tier-cta[data-disabled]:active,
.final-cta-btn[data-disabled]:active {
  transform: none;
}
[data-disabled][data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--wine);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  z-index: 200;
  pointer-events: none;
}
[data-disabled][data-tooltip]:hover::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--wine);
  z-index: 200;
  pointer-events: none;
}

/* ---- SAVE CAMPAIGN FORM ---- */
.save-campaign {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.save-campaign-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.save-campaign-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  width: 100%;
}
.save-campaign-form input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.save-campaign-form input[type="email"]::placeholder {
  color: var(--text-muted);
}
.save-campaign-form input[type="email"]:focus {
  border-color: var(--wine);
}
.save-campaign-form button {
  padding: 0.7rem 1.25rem;
  background: var(--wine);
  color: var(--text-primary);
  border: 1px solid var(--wine);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.save-campaign-form button:hover {
  background: var(--wine-light);
  border-color: var(--wine-light);
}
.save-campaign-success {
  font-size: 0.85rem;
  color: var(--bluefruit);
  display: none;
}
.save-campaign.submitted .save-campaign-form { display: none; }
.save-campaign.submitted .save-campaign-success { display: block; }

/* ---- IMAGE PLACEHOLDER ---- */
.product-card-img-placeholder {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav { padding: 0.75rem 1.25rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .receipts { padding: 4rem 1.5rem; }
  .receipts-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .founder-header { flex-wrap: wrap; }
  .save-campaign-form { flex-direction: column; }
  .save-campaign-form input[type="email"] { border-right: 1px solid var(--border); border-bottom: none; }
  [data-disabled][data-tooltip]:hover::after { font-size: 0.6rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.8rem; }
  .section-headline { font-size: 1.5rem; }
  .tier-price { font-size: 1.5rem; }
}
