@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Nunito:wght@400;600;700;800&family=Caveat:wght@600;700&display=swap');

:root {
  --orange: #FF6B2B;
  --orange-light: #FF8C5A;
  --orange-pale: #FFF0E8;
  --orange-dark: #D94F10;
  --cream: #FFF8F2;
  --navy: #1A1A2E;
  --pink: #FF4D8D;
  --pink-pale: #FFE0EE;
  --yellow: #FFD166;
  --yellow-pale: #FFF8D6;
  --green: #06D6A0;
  --green-pale: #DAFAF3;
  --blue: #4EA8DE;
  --blue-pale: #D6EEFF;
  --purple: #9B6DFF;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CURSOR ===== */
.cursor {
  width: 26px; height: 26px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, width 0.2s, height 0.2s;
  mix-blend-mode: multiply;
  border: 3px solid var(--orange-dark);
}
.cursor.big { width: 52px; height: 52px; }

/* ===== FLOATING ENVELOPES ===== */
#envelopes { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.env-float {
  position: absolute; font-size: 28px;
  animation: envFloat linear infinite;
  opacity: 0; user-select: none;
}
@keyframes envFloat {
  0%   { transform: translateY(110vh) rotate(-15deg); opacity: 0; }
  5%   { opacity: 0.6; }
  95%  { opacity: 0.6; }
  100% { transform: translateY(-120px) rotate(15deg); opacity: 0; }
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: rgba(255,248,242,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 4px solid var(--orange);
  padding: 12px 40px;
  display: flex; justify-content: space-between; align-items: center;
  border-radius: 0 0 20px 20px;
}
.nav-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 22px; font-weight: 800;
  color: var(--orange);
  display: flex; align-items: center; gap: 10px;
}
.nav-psf-logo { height: 38px; width: auto; border-radius: 8px; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a {
  color: var(--navy); text-decoration: none;
  font-size: 14px; font-weight: 800; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-buy {
  background: var(--orange); color: white;
  font-family: 'Baloo 2', cursive; font-size: 15px; font-weight: 800;
  padding: 10px 24px; border-radius: 50px; text-decoration: none;
  border: 3px solid var(--orange-dark);
  box-shadow: 4px 4px 0 var(--orange-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-buy:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--orange-dark); color: white; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 3px solid var(--orange);
  border-radius: 10px; cursor: pointer; padding: 8px 10px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--orange-pale); }
.hamburger span {
  width: 22px; height: 3px;
  background: var(--orange); border-radius: 3px;
  display: block; transition: all 0.3s;
}

/* ===== MOBILE NAV DRAWER ===== */
.mobile-nav {
  position: fixed; top: 0; right: -320px;
  width: 290px; height: 100vh;
  background: white;
  border-left: 5px solid var(--orange);
  border-radius: 20px 0 0 20px;
  z-index: 300;
  transition: right 0.35s cubic-bezier(0.34,1.56,0.64,1);
  display: flex; flex-direction: column;
  padding: 80px 28px 40px;
  gap: 8px;
  box-shadow: -8px 0 40px rgba(255,107,43,0.2);
}
.mobile-nav.open { right: 0; }
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(26,26,46,0.55);
  z-index: 299;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--orange-pale); border: 3px solid var(--orange);
  border-radius: 50%; width: 40px; height: 40px;
  font-size: 18px; font-weight: 800; color: var(--orange);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.mobile-nav-close:hover { background: var(--orange); color: white; transform: rotate(90deg); }
.mobile-nav-logo {
  font-family: 'Baloo 2', cursive; font-size: 22px; font-weight: 800;
  color: var(--orange); margin-bottom: 16px; text-align: center;
}
.mobile-nav-link {
  color: var(--navy); text-decoration: none;
  font-family: 'Baloo 2', cursive; font-size: 18px; font-weight: 800;
  padding: 14px 18px; border-radius: 14px;
  border: 3px solid transparent;
  transition: all 0.2s; display: block;
}
.mobile-nav-link:hover {
  background: var(--orange-pale); border-color: var(--orange); color: var(--orange);
}
.mobile-nav-buy {
  background: var(--orange); color: white;
  font-family: 'Baloo 2', cursive; font-size: 17px; font-weight: 800;
  padding: 16px 20px; border-radius: 50px; text-decoration: none;
  border: 4px solid var(--orange-dark);
  box-shadow: 4px 4px 0 var(--orange-dark);
  text-align: center; margin-top: 16px;
  transition: transform 0.15s, box-shadow 0.15s;
  display: block;
}
.mobile-nav-buy:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--orange-dark); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FF8C5A 0%, var(--orange) 35%, #E84F00 70%, #FF6B2B 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 110px 40px 90px;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 2px);
  background-size: 36px 36px;
}
.hero-cloud { position: absolute; pointer-events: none; }
.hero-cloud-1 { top: 10%; left: -40px; width: 280px; animation: cloudDrift 18s ease-in-out infinite; }
.hero-cloud-2 { bottom: 22%; right: -30px; width: 220px; animation: cloudDrift 22s ease-in-out infinite reverse; }
@keyframes cloudDrift { 0%,100%{transform:translateX(0)} 50%{transform:translateX(24px)} }

.hero-deco-star {
  position: absolute; font-size: 26px; pointer-events: none;
  animation: starBob 2.5s ease-in-out infinite;
}
@keyframes starBob {
  0%,100%{transform:translateY(0) rotate(-5deg) scale(1)}
  50%{transform:translateY(-10px) rotate(5deg) scale(1.15)}
}
.hero-squiggle { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; width: 100%;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.28);
  border: 3px solid rgba(255,255,255,0.55);
  color: white; font-size: 13px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 20px;
}
.live-dot { width:9px; height:9px; background:#fff; border-radius:50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(40px, 5.2vw, 68px);
  color: white; line-height: 1.05;
  font-weight: 800; margin-bottom: 22px;
}
.hero h1 span { color: var(--yellow); text-shadow: 3px 3px 0 rgba(0,0,0,0.15); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.92); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-white {
  background: white; color: var(--orange);
  font-family: 'Baloo 2', cursive; font-size: 18px; font-weight: 800;
  padding: 14px 34px; border-radius: 50px; text-decoration: none;
  border: 4px solid var(--orange-dark);
  box-shadow: 5px 5px 0 var(--orange-dark);
  transition: transform 0.15s, box-shadow 0.15s; display: inline-block;
  animation: btnPulse 2.5s ease-in-out infinite;
}
@keyframes btnPulse { 0%,100%{box-shadow:5px 5px 0 var(--orange-dark)} 50%{box-shadow:5px 5px 0 var(--orange-dark),0 0 20px rgba(255,255,255,0.4)} }
.btn-white:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--orange-dark); animation: none; }
.btn-outline {
  background: transparent; color: white;
  font-family: 'Baloo 2', cursive; font-size: 18px; font-weight: 800;
  padding: 14px 34px; border-radius: 50px; text-decoration: none;
  border: 4px solid white; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.2); }

/* ===== HERO VISUAL ===== */
.hero-visual-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 420px;
}
.vis-star {
  position: absolute; font-size: 28px; pointer-events: none;
  animation: starBob 2.5s ease-in-out infinite;
}
.vs1 { top: 5%; left: 2%; animation-delay: 0s; }
.vs2 { top: 5%; right: 5%; animation-delay: 0.6s; }
.vs3 { bottom: 8%; right: 2%; animation-delay: 1.2s; }

.mitchell-polaroid {
  background: #FF9800;
  border-radius: 20px;
  padding: 16px 16px 48px;
  border: 5px solid #E65100;
  box-shadow: 8px 10px 0 rgba(0,0,0,0.25), 0 0 0 3px rgba(255,255,255,0.3);
  transform: rotate(-3deg);
  animation: noteBob 3.5s ease-in-out infinite;
  position: relative; z-index: 2;
  max-width: 300px; width: 100%;
}
@keyframes noteBob {
  0%,100%{transform:rotate(-3deg) translateY(0)}
  50%{transform:rotate(-1deg) translateY(-14px)}
}
.polaroid-img {
  width: 100%; border-radius: 12px;
  display: block; border: 3px solid rgba(255,255,255,0.5);
}
.polaroid-fallback {
  width: 100%; height: 190px;
  background: #FFA726; border-radius: 12px;
  border: 3px solid rgba(255,255,255,0.5);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.pf-xoxo { font-family:'Caveat',cursive; font-size:28px; font-weight:700; color:rgba(0,0,0,0.7); }
.pf-sig  { font-family:'Caveat',cursive; font-size:40px; font-weight:700; color:rgba(0,0,0,0.75); }
.polaroid-caption {
  position: absolute; bottom: 10px; left: 0; right: 0;
  text-align: center;
  font-family: 'Caveat', cursive; font-size: 17px; font-weight: 700;
  color: rgba(255,255,255,0.92);
}
.env-badge {
  position: absolute; bottom: 20px; left: -10px;
  background: white; border-radius: 50px;
  border: 4px solid var(--orange-dark);
  box-shadow: 4px 4px 0 var(--orange-dark);
  padding: 8px 18px;
  display: flex; align-items: center; gap: 8px;
  animation: badgeBob 2.8s ease-in-out infinite; z-index: 3;
}
@keyframes badgeBob { 0%,100%{transform:rotate(2deg) translateY(0)} 50%{transform:rotate(-2deg) translateY(-6px)} }
.env-badge-icon { font-size: 22px; }
.env-badge-sig { font-family:'Caveat',cursive; font-size:18px; font-weight:700; color:var(--orange-dark); }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--navy); overflow: hidden;
  padding: 14px 0;
  border-top: 4px solid var(--orange); border-bottom: 4px solid var(--orange);
}
.ticker { display: flex; width: max-content; animation: tickScroll 22s linear infinite; }
.ticker span { color: var(--orange); font-family:'Baloo 2',cursive; font-size:15px; font-weight:700; padding:0 28px; white-space:nowrap; }
.ticker span.sep { color: var(--yellow); }
@keyframes tickScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SPARKLE ROW ===== */
.sparkle-row {
  text-align: center; font-size: 24px; margin-bottom: 30px; letter-spacing: 14px;
  animation: sparkleFloat 3s ease-in-out infinite;
}
@keyframes sparkleFloat { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:0.7;transform:translateY(-5px)} }

/* ===== TRACKER ===== */
.tracker-section {
  padding: 80px 40px 100px;
  background: linear-gradient(160deg, var(--cream) 0%, #FFF0E8 60%, #FFEEDD 100%);
  position: relative;
}
.tracker-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.section-tag {
  font-size: 12px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px; display: block;
}
.tracker-info h2 {
  font-family: 'Baloo 2', cursive; font-size: 44px;
  font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.1;
}
.tracker-info p { font-size: 16px; color: #666; line-height: 1.8; margin-bottom: 32px; }

/* Envelope stack */
.envelope-tracker { display: flex; align-items: center; justify-content: center; }
.env-stack-wrap { width: 280px; height: 340px; position: relative; }
.env-card {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 160px;
  border-radius: 20px; border: 4px solid;
}
.env-card.e1 { background:#FFE0CC; border-color:var(--orange); transform:translateX(-50%) rotate(-6deg); }
.env-card.e2 { background:#FFD0B0; border-color:var(--orange-dark); bottom:8px; transform:translateX(-50%) rotate(3deg); }
.env-card.e3 { background:#FFC090; border-color:var(--orange-dark); bottom:16px; transform:translateX(-50%) rotate(-2deg); }
.env-main {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 260px; height: 180px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 20px; border: 5px solid var(--orange-dark);
  box-shadow: 7px 7px 0 var(--orange-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 10; animation: envPulse 2s ease-in-out infinite; cursor: pointer;
}
@keyframes envPulse { 0%,100%{transform:translateX(-50%) scale(1)} 50%{transform:translateX(-50%) scale(1.05)} }
.env-main svg { width: 80px; height: 80px; }
.env-main .xoxo { font-family:'Caveat',cursive; font-size:20px; font-weight:700; color:white; margin-top:8px; }

/* Progress bar */
.progress-wrap { width: 100%; margin-bottom: 8px; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 10px; }
.progress-label span { font-family:'Baloo 2',cursive; font-size:14px; font-weight:700; color:var(--navy); }
.progress-bar-bg {
  width: 100%; height: 30px;
  background: #FFE0CC; border-radius: 50px;
  border: 4px solid var(--orange); overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF6B2B, #FF9F00, #FFD166, #FF6B2B);
  background-size: 200% 100%;
  animation: rainbowBar 3s linear infinite;
  border-radius: 50px;
  transition: width 2s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 8px;
}
@keyframes rainbowBar { 0%{background-position:0% 0%} 100%{background-position:200% 0%} }
.progress-bar-fill::after { content:'🤙'; font-size:16px; animation: wiggle 1s ease-in-out infinite; }
@keyframes wiggle { 0%,100%{transform:rotate(-10deg)} 50%{transform:rotate(10deg)} }

/* Goal rows */
.goal-rows { margin-top: 28px; display: flex; flex-direction: column; }
.goal-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 3px dashed #FFD0B0;
}
.goal-row:last-child { border-bottom: none; }
.goal-row .lbl { font-size: 13px; color: #999; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.goal-row .val { font-family:'Baloo 2',cursive; font-size:20px; font-weight:800; color:var(--orange); }

/* ===== STORY ===== */
.story-section {
  padding: 100px 40px;
  background: linear-gradient(160deg, #1A1A2E 0%, #2D1B4E 50%, #1A1A2E 100%);
  position: relative; overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,43,0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(155,109,255,0.1) 0%, transparent 40%);
}
.story-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.story-visuals {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px; position: relative;
}
.psf-logo-card {
  background: white; border-radius: 24px;
  border: 5px solid var(--orange);
  box-shadow: 6px 6px 0 var(--orange-dark);
  padding: 20px 28px; text-align: center;
  width: 100%; max-width: 300px;
  animation: envBob 4s ease-in-out infinite;
}
@keyframes envBob { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-12px) rotate(1deg)} }
.psf-logo-img { max-width: 200px; width: 100%; height: auto; display: block; margin: 0 auto; }
.psf-logo-fallback {
  width: 180px; height: 80px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.psf-card-caption {
  font-family:'Baloo 2',cursive; font-size:14px; font-weight:800;
  color:#003F7F; margin-top:12px; letter-spacing:1px; text-transform:uppercase;
}
.note-image-card {
  background: #FFA726; border-radius: 20px;
  border: 5px solid #E65100;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
  padding: 14px 14px 44px;
  width: 100%; max-width: 300px;
  position: relative; transform: rotate(2deg);
  animation: noteBob2 3.8s ease-in-out infinite;
}
@keyframes noteBob2 { 0%,100%{transform:rotate(2deg) translateY(0)} 50%{transform:rotate(0.5deg) translateY(-10px)} }
.note-image-img { width:100%; border-radius:10px; display:block; border:3px solid rgba(255,255,255,0.4); }
.note-image-fallback {
  width:100%; min-height:140px; background:#FFB74D; border-radius:10px;
  border:3px solid rgba(255,255,255,0.4);
  flex-direction:column; align-items:flex-start; justify-content:center;
  padding:20px; gap:6px;
}
.ni-xoxo { font-family:'Caveat',cursive; font-size:22px; font-weight:600; color:rgba(0,0,0,0.65); }
.ni-sig  { font-family:'Caveat',cursive; font-size:36px; font-weight:700; color:rgba(0,0,0,0.72); }
.note-image-label {
  position:absolute; bottom:10px; left:0; right:0;
  text-align:center; font-family:'Caveat',cursive;
  font-size:16px; font-weight:700; color:rgba(255,255,255,0.9);
}
.story-deco-star { position:absolute; font-size:24px; animation:starBob 2.8s ease-in-out infinite; }
.sds1 { top:-10px; right:10px; animation-delay:0s; }
.sds2 { bottom:20px; right:-5px; animation-delay:0.8s; }
.sds3 { top:40%; left:-10px; animation-delay:0.4s; }

.story-text .section-tag { color: var(--orange); }
.story-text h2 {
  font-family:'Baloo 2',cursive; font-size:44px;
  font-weight:800; color:white; margin-bottom:24px; line-height:1.1;
}
.story-text p { font-size:16px; color:rgba(255,255,255,0.78); line-height:1.9; margin-bottom:18px; }
.story-text strong { color: var(--orange); }
.mitch-sig { font-family:'Caveat',cursive; font-size:20px; font-weight:700; color:var(--yellow); }

.speech-bubble {
  background: rgba(255,255,255,0.08);
  border: 3px solid rgba(255,209,102,0.5);
  border-radius: 20px 20px 20px 4px;
  padding: 14px 18px;
  margin: 18px 0; display: flex; gap: 12px; align-items: flex-start;
}
.speech-icon { font-size: 24px; flex-shrink: 0; }
.speech-bubble p {
  font-family:'Caveat',cursive; font-size:20px; font-weight:600;
  color:var(--yellow); line-height:1.5; margin:0; font-style:italic;
}
.story-pills { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.story-pill {
  background: rgba(255,107,43,0.18);
  border: 3px solid rgba(255,107,43,0.5);
  color: var(--orange); font-family:'Baloo 2',cursive; font-size:15px; font-weight:700;
  padding: 8px 18px; border-radius: 50px;
}

/* ===== STATS ===== */
.stats-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--yellow-pale) 0%, var(--pink-pale) 50%, var(--blue-pale) 100%);
}
.stats-inner { max-width: 1100px; margin: 0 auto; }
.stats-section h2 {
  font-family:'Baloo 2',cursive; font-size:42px; font-weight:800;
  text-align:center; margin-bottom:50px;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat-card {
  border-radius: 24px; border: 5px solid;
  padding: 30px 20px; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover { transform: translate(-4px,-4px) rotate(-1deg); }
.stat-card .icon { font-size: 44px; margin-bottom: 12px; }
.stat-card .val  { font-family:'Baloo 2',cursive; font-size:32px; font-weight:800; }
.stat-card .lbl  { font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:1px; margin-top:6px; }

.sc-orange { background:white; border-color:var(--orange); box-shadow:6px 6px 0 var(--orange); }
.sc-orange .val { color:var(--orange); }
.sc-orange .lbl { color:var(--orange-dark); }
.sc-orange:hover { box-shadow:8px 8px 0 var(--orange); }

.sc-pink { background:var(--pink-pale); border-color:var(--pink); box-shadow:6px 6px 0 var(--pink); }
.sc-pink .val { color:var(--pink); }
.sc-pink .lbl { color:#C41269; }
.sc-pink:hover { box-shadow:8px 8px 0 var(--pink); }

.sc-blue { background:var(--blue-pale); border-color:var(--blue); box-shadow:6px 6px 0 var(--blue); }
.sc-blue .val { color:var(--blue); }
.sc-blue .lbl { color:#1F6FA0; }
.sc-blue:hover { box-shadow:8px 8px 0 var(--blue); }

.sc-green { background:var(--green-pale); border-color:var(--green); box-shadow:6px 6px 0 var(--green); }
.sc-green .val { color:#058C6A; }
.sc-green .lbl { color:#036A50; }
.sc-green:hover { box-shadow:8px 8px 0 var(--green); }

/* ===== ROADMAP ===== */
.roadmap-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, #F5F0FF 100%);
}
.roadmap-inner { max-width: 860px; margin: 0 auto; }
.roadmap-section h2 {
  font-family:'Baloo 2',cursive; font-size:46px; font-weight:800;
  color:var(--navy); text-align:center; margin-bottom:12px;
}
.roadmap-section .sub { text-align:center; color:#999; font-size:16px; margin-bottom:60px; font-weight:700; }

.rm-track { position: relative; }
.rm-track::before {
  content:''; position:absolute; left:40px; top:0; bottom:0; width:5px;
  background: linear-gradient(to bottom, var(--orange), var(--pink), var(--purple));
  border-radius: 10px;
}
.rm-item { display:flex; gap:28px; margin-bottom:40px; }
.rm-icon {
  width:82px; height:82px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:30px; border:5px solid; z-index:1; transition:transform 0.3s;
}
.rm-icon.done   { background:var(--orange); border-color:var(--orange-dark); box-shadow:5px 5px 0 var(--orange-dark); }
.rm-icon.active { background:var(--yellow); border-color:#E6A800; box-shadow:5px 5px 0 #E6A800; animation:bouncePop 1.5s ease-in-out infinite; }
.rm-icon.locked { background:#eee; border-color:#ccc; box-shadow:4px 4px 0 #ccc; }
@keyframes bouncePop { 0%,100%{transform:scale(1)} 50%{transform:scale(1.14)} }
.rm-item:hover .rm-icon { transform:scale(1.12) rotate(6deg); }
.rm-content {
  background:white; border-radius:24px;
  border:4px solid #FFD0B0; box-shadow:5px 5px 0 #FFD0B0;
  padding:20px 26px; flex:1; transition:all 0.2s;
}
.rm-item:hover .rm-content { border-color:var(--orange); box-shadow:5px 5px 0 var(--orange); }
.rm-tag {
  display:inline-block; font-size:11px; font-weight:800;
  letter-spacing:2px; text-transform:uppercase;
  padding:5px 14px; border-radius:50px; margin-bottom:8px;
}
.tag-done   { background:#dcfce7; color:#166534; border:2px solid #86efac; }
.tag-active { background:#FFF3CD; color:#856404; border:2px solid #fde68a; }
.tag-soon   { background:#e0e7ff; color:#3730a3; border:2px solid #a5b4fc; }
.tag-future { background:#f3f4f6; color:#6b7280; border:2px solid #d1d5db; }
.rm-content h3 { font-family:'Baloo 2',cursive; font-size:20px; font-weight:800; color:var(--navy); margin-bottom:6px; }
.rm-content p  { font-size:14px; color:#777; line-height:1.7; }

/* ===== PROMISE SECTION ===== */
.promise-section {
  padding: 80px 40px 100px;
  background: linear-gradient(135deg, #FF8C5A 0%, var(--orange) 40%, #E84F00 80%, #FF6B2B 100%);
  text-align: center; position: relative; overflow: hidden;
}
.promise-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 2px, transparent 2px);
  background-size: 28px 28px;
}
.promise-star-row {
  font-size: 26px; letter-spacing: 14px; margin-bottom: 16px;
  position: relative; z-index: 1;
  animation: sparkleFloat 2.5s ease-in-out infinite;
}
.promise-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.promise-inner h2 { font-family:'Baloo 2',cursive; font-size:52px; font-weight:800; color:white; margin-bottom:16px; }
.promise-inner p  { font-size:18px; color:rgba(255,255,255,0.92); margin-bottom:32px; line-height:1.7; }
.pinky-emoji { font-size:88px; animation:envBob 2s ease-in-out infinite; display:block; margin-bottom:20px; }
.promise-partner-badge {
  display:inline-flex; align-items:center; gap:12px;
  background:rgba(255,255,255,0.22); border:3px solid rgba(255,255,255,0.5);
  border-radius:50px; padding:8px 24px; margin-bottom:28px;
  font-family:'Baloo 2',cursive; font-size:14px; font-weight:800;
  color:white; letter-spacing:1px;
}
.promise-psf-logo { height:32px; width:auto; border-radius:6px; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #1A1A2E 0%, #12122A 100%);
  padding: 48px 40px;
  border-top: 5px solid var(--orange);
  text-align: center;
}
.footer-logo-wrap {
  display:flex; align-items:center; justify-content:center; gap:14px;
  margin-bottom:14px; flex-wrap:wrap;
}
.footer-psf-logo { height:44px; width:auto; border-radius:8px; }
.footer-logo { font-family:'Baloo 2',cursive; font-size:26px; font-weight:800; color:var(--orange); }
footer p { font-size:13px; color:rgba(255,255,255,0.4); line-height:1.8; max-width:600px; margin:0 auto; }

/* ===== REVEAL ===== */
.reveal { opacity:0; transform:translateY(40px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }


/* ================================================================
   MOBILE RESPONSIVE
   ================================================================ */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
  nav { padding: 12px 24px; }
  .nav-links a:not(.nav-buy) { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 80px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px; text-align: center;
  }
  .hero p { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-visual-wrap { height: 360px; }
  .mitchell-polaroid { max-width: 260px; }

  .tracker-inner { grid-template-columns: 1fr; gap: 48px; }
  .tracker-info h2 { font-size: 36px; }

  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-visuals { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .psf-logo-card, .note-image-card { max-width: 260px; }
  .story-text h2 { font-size: 36px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .roadmap-section { padding: 70px 24px; }
  .rm-icon { width: 66px; height: 66px; font-size: 26px; }
  .rm-track::before { left: 33px; }

  .promise-inner h2 { font-size: 40px; }
  .pinky-emoji { font-size: 72px; }

  footer { padding: 40px 24px; }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  nav { padding: 10px 16px; border-radius: 0 0 14px 14px; }
  .nav-logo { font-size: 18px; }
  .nav-psf-logo { height: 30px; }

  .hero { padding: 86px 16px 70px; }
  .hero-grid { gap: 36px; }
  .hero h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero p { font-size: 15px; }
  .hero-tag { font-size: 11px; padding: 5px 14px; }
  .btn-white, .btn-outline { font-size: 15px; padding: 12px 26px; }

  .hero-visual-wrap { height: 300px; }
  .mitchell-polaroid { max-width: 210px; padding: 12px 12px 42px; }
  .env-badge { left: 50%; transform: translateX(-60%); bottom: 8px; }
  .vis-star { font-size: 20px; }

  .tracker-section { padding: 60px 16px 80px; }
  .tracker-info h2 { font-size: 30px; }
  .tracker-info p { font-size: 15px; }
  .sparkle-row { font-size: 18px; letter-spacing: 8px; }

  .env-stack-wrap { width: 220px; height: 270px; }
  .env-card { width: 180px; height: 124px; }
  .env-main { width: 200px; height: 145px; }

  .story-section { padding: 60px 16px; }
  .story-visuals { flex-direction: column; align-items: center; }
  .psf-logo-card, .note-image-card { max-width: 90%; }
  .story-text h2 { font-size: 30px; }
  .story-text p { font-size: 15px; }
  .speech-bubble p { font-size: 17px; }
  .story-deco-star { display: none; }

  .stats-section { padding: 60px 16px; }
  .stats-section h2 { font-size: 28px; margin-bottom: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 22px 12px; border-width: 4px; }
  .stat-card .icon { font-size: 34px; margin-bottom: 8px; }
  .stat-card .val  { font-size: 26px; }
  .stat-card .lbl  { font-size: 11px; }

  .roadmap-section { padding: 60px 16px; }
  .roadmap-section h2 { font-size: 30px; }
  .roadmap-section .sub { font-size: 14px; margin-bottom: 40px; }
  .rm-item { gap: 14px; margin-bottom: 28px; }
  .rm-icon { width: 52px; height: 52px; font-size: 20px; border-width: 4px; }
  .rm-track::before { left: 26px; width: 4px; }
  .rm-content { padding: 14px 16px; border-radius: 18px; }
  .rm-content h3 { font-size: 17px; }
  .rm-content p  { font-size: 13px; }

  .promise-section { padding: 60px 16px 80px; }
  .promise-inner h2 { font-size: 30px; }
  .promise-inner p  { font-size: 15px; }
  .pinky-emoji { font-size: 60px; }
  .promise-star-row { font-size: 18px; letter-spacing: 8px; }
  .promise-partner-badge { padding: 6px 16px; font-size: 12px; }
  .btn-white[style] { font-size: 16px !important; padding: 14px 28px !important; }

  footer { padding: 36px 16px; }
  .footer-logo { font-size: 20px; }
  .footer-psf-logo { height: 36px; }
}

/* Very small phones (≤ 380px) */
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card .val { font-size: 22px; }
  .rm-icon { width: 44px; height: 44px; font-size: 18px; }
  .rm-track::before { left: 22px; }
}

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none; }
}

/* ================================================================
   STORY REEL — Animated Scene Cards
   ================================================================ */

.story-reel {
  padding: 80px 40px 90px;
  background: linear-gradient(160deg, #FFF8F2 0%, #FFF0FF 50%, #FFF0E8 100%);
  overflow: hidden;
}
.reel-inner { max-width: 1240px; margin: 0 auto; }
.reel-header { text-align: center; margin-bottom: 52px; }
.reel-header h2 {
  font-family: 'Baloo 2', cursive; font-size: 40px; font-weight: 800;
  color: var(--navy); margin-top: 8px; margin-bottom: 8px;
}
.reel-sub { color: #999; font-size: 16px; font-weight: 700; }

.reel-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reel-card {
  background: var(--cc, white);
  border: 4px solid var(--cb, var(--orange));
  border-radius: 24px; overflow: hidden;
  box-shadow: 5px 5px 0 var(--cb, var(--orange));
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
  display: flex; flex-direction: column;
}
.reel-card:hover {
  transform: translate(-4px,-4px) rotate(-1deg);
  box-shadow: 8px 8px 0 var(--cb, var(--orange));
}
.reel-card-main {
  border-width: 5px;
  box-shadow: 6px 6px 0 var(--cb, var(--orange));
}

.scene-svg { width: 100%; display: block; flex-shrink: 0; }

.reel-caption {
  padding: 14px 16px 20px;
  display: flex; gap: 10px; align-items: flex-start;
  flex: 1;
}
.reel-num {
  font-family: 'Baloo 2', cursive; font-size: 30px; font-weight: 800;
  flex-shrink: 0; line-height: 1.1;
}
.reel-caption p {
  font-size: 13px; color: var(--navy); line-height: 1.65; font-weight: 700; margin: 0;
}

/* ── Scene 1 animations ─────────────────────────── */
.twinkle { animation: twinkleAnim 2s ease-in-out infinite; }
.tw1 { animation-delay: 0s; }
.tw2 { animation-delay: 0.7s; }
.tw3 { animation-delay: 1.3s; }
@keyframes twinkleAnim {
  0%,100% { opacity: 0.9; transform: scale(1); }
  50%      { opacity: 0.2; transform: scale(0.5); }
}

.sw { opacity: 0; animation: soundWave 2.6s ease-in-out infinite; }
.sw1 { animation-delay: 0.0s; }
.sw2 { animation-delay: 0.35s; }
.sw3 { animation-delay: 0.7s; }
@keyframes soundWave {
  0%,15%  { opacity: 0; }
  40%     { opacity: 0.95; }
  65%,100%{ opacity: 0; }
}

.tear { animation: tearFall 2.8s ease-in infinite; }
.td1  { animation-delay: 0.4s; }
.td2  { animation-delay: 1.1s; }
@keyframes tearFall {
  0%     { opacity: 0;   transform: translateY(0); }
  15%    { opacity: 1; }
  75%    { opacity: 0.8; transform: translateY(14px); }
  100%   { opacity: 0;   transform: translateY(16px); }
}

.lightbulb-pop {
  transform-origin: 124px 75px;
  animation: bulbPop 4s ease-in-out infinite;
}
@keyframes bulbPop {
  0%,50%  { transform: scale(0); opacity: 0; }
  65%     { transform: scale(1.2); opacity: 1; }
  75%,100%{ transform: scale(1);  opacity: 1; }
}

/* ── Scene 2 animations ─────────────────────────── */
.coin { animation: coinFall 1.8s ease-in-out infinite; }
.coin1 { animation-delay: 0s; }
.coin2 { animation-delay: 0.35s; }
.coin3 { animation-delay: 0.7s; }
@keyframes coinFall {
  0%   { transform: translateY(-18px); opacity: 0; }
  20%  { opacity: 1; }
  70%  { transform: translateY(14px);  opacity: 1; }
  100% { transform: translateY(16px);  opacity: 0; }
}

/* ── Scene 3 animations ─────────────────────────── */

/* Envelope slides right from Mitch's hand into door gap */
.env-slide { animation: envSlide 4s ease-in-out infinite; }
@keyframes envSlide {
  0%,8%  { transform: translateX(0); }
  42%    { transform: translateX(112px); }
  85%    { transform: translateX(112px); }
  95%,100%{ transform: translateX(0); }
}

/* Orange glow spreads from under door once envelope arrives */
.door-glow {
  transform-origin: 226px 160px;
  animation: doorGlowAnim 4s ease-in-out infinite;
}
@keyframes doorGlowAnim {
  0%,38%  { transform: scale(0);   opacity: 0; }
  52%     { transform: scale(1);   opacity: 0.85; }
  80%     { transform: scale(1.1); opacity: 0.6; }
  95%,100%{ transform: scale(0);   opacity: 0; }
}

/* Hearts pop up from under the door after delivery */
.hp { opacity: 0; animation: heartPop 4s ease-out infinite; }
.hp1 { animation-delay: 2.0s; }
.hp2 { animation-delay: 2.3s; }
.hp3 { animation-delay: 2.6s; }
@keyframes heartPop {
  0%,50%  { opacity: 0; transform: translateY(0) scale(0.4); }
  60%     { opacity: 1; transform: scale(1.2); }
  85%     { opacity: 0; transform: translateY(-52px) scale(0.9); }
  100%    { opacity: 0; transform: translateY(-54px); }
}

/* ── Scene 4 animations ─────────────────────────── */

/* Dad's hand slides in from the right */
.dad-hand-anim {
  transform-origin: 240px 130px;
  animation: dadHandSlide 5s ease-in-out infinite;
}
@keyframes dadHandSlide {
  0%     { transform: translateX(55px); opacity: 0; }
  22%    { transform: translateX(0);    opacity: 1; }
  70%    { transform: translateX(0);    opacity: 1; }
  90%,100%{ transform: translateX(55px); opacity: 0; }
}

/* Kid's hand slides in from the left */
.kid-hand-anim {
  transform-origin: 0px 130px;
  animation: kidHandSlide 5s ease-in-out infinite;
}
@keyframes kidHandSlide {
  0%     { transform: translateX(-55px); opacity: 0; }
  22%    { transform: translateX(0);     opacity: 1; }
  70%    { transform: translateX(0);     opacity: 1; }
  90%,100%{ transform: translateX(-55px); opacity: 0; }
}

/* Pinky-link glow burst when hands meet */
.pinky-burst {
  transform-origin: 118px 115px;
  animation: pinkyBurst 5s ease-in-out infinite;
}
@keyframes pinkyBurst {
  0%,28%  { transform: scale(0);   opacity: 0; }
  38%     { transform: scale(1.6); opacity: 0.8; }
  55%     { transform: scale(1.2); opacity: 0.5; }
  75%,100%{ transform: scale(0);   opacity: 0; }
}

/* Stars/hearts float up after the pinky swear */
.fu { opacity: 0; animation: floatUp 5s ease-out infinite; }
.fu1 { animation-delay: 1.6s; }
.fu2 { animation-delay: 1.95s; }
.fu3 { animation-delay: 2.3s; }
.fu4 { animation-delay: 2.65s; }
.fu5 { animation-delay: 3.0s; }
@keyframes floatUp {
  0%,32%  { opacity: 0; transform: translateY(18px) scale(0.5); }
  45%     { opacity: 1; transform: scale(1.15); }
  80%,100%{ opacity: 0; transform: translateY(-44px) scale(0.9); }
}

/* ── Reel Mobile ─────────────────────────── */
@media (max-width: 900px) {
  .story-reel { padding: 60px 24px 70px; }
  .reel-header h2 { font-size: 30px; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 600px) {
  .story-reel { padding: 50px 14px 60px; }
  .reel-header h2 { font-size: 24px; }
  .reel-sub { font-size: 14px; }
  .reel-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .reel-caption { padding: 10px 12px 14px; gap: 7px; }
  .reel-num { font-size: 22px; }
  .reel-caption p { font-size: 11px; }
}
@media (max-width: 420px) {
  .reel-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   HERO EXTRAS — CA pill + Trust badges
   ================================================================ */
.ca-row {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50px; padding: 8px 16px;
  margin-top: 20px; flex-wrap: wrap;
}
.ca-label { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.8); }
.ca-address {
  font-family: monospace; font-size: 13px;
  color: white; letter-spacing: 0.5px;
  max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ca-copy {
  background: white; color: var(--orange);
  border: none; border-radius: 30px;
  font-size: 12px; font-weight: 800; font-family: 'Baloo 2', cursive;
  padding: 4px 14px; cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.ca-copy:hover { background: var(--yellow); transform: scale(1.05); }
.ca-copy.copied { background: var(--green); color: white; }

.hero-trust-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.trust-badge {
  background: rgba(255,255,255,0.22);
  border: 2px solid rgba(255,255,255,0.45);
  color: white; font-size: 12px; font-weight: 800;
  padding: 5px 14px; border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ================================================================
   TOKENOMICS
   ================================================================ */
.tokenomics-section {
  padding: 90px 40px;
  background: linear-gradient(160deg, #1A1A2E 0%, #2D1B4E 50%, #1A1A2E 100%);
  position: relative; overflow: hidden;
}
.tokenomics-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(155,109,255,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 70%, rgba(255,107,43,0.1) 0%, transparent 45%);
}
.token-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.token-header { text-align: center; margin-bottom: 50px; }
.token-header h2 {
  font-family: 'Baloo 2', cursive; font-size: 42px; font-weight: 800;
  color: white; margin: 8px 0;
}
.token-sub { color: rgba(255,255,255,0.6); font-size: 16px; font-weight: 700; }
.token-header .section-tag { color: var(--yellow); }

.token-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.token-card {
  background: rgba(255,255,255,0.06);
  border: 3px solid rgba(255,255,255,0.14);
  border-radius: 28px; padding: 32px 36px;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.2s;
}
.token-card:hover { border-color: rgba(255,107,43,0.5); transform: translateY(-4px); }
.token-card-icon { font-size: 40px; margin-bottom: 8px; }
.token-card h3 {
  font-family: 'Baloo 2', cursive; font-size: 22px; font-weight: 800;
  color: white; margin-bottom: 22px;
}

.token-rows { display: flex; flex-direction: column; gap: 0; }
.token-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.token-row:last-child { border-bottom: none; }
.tr-good   { background: rgba(6,214,160,0.05);  border-radius: 8px; padding: 10px 8px; }
.tr-charity{ background: rgba(255,107,43,0.08); border-radius: 8px; padding: 10px 8px; }
.tr-label { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 700; }
.tr-val    { font-family: 'Baloo 2', cursive; font-size: 15px; font-weight: 800; color: white; }
.tr-highlight { color: var(--orange); font-size: 17px; }
.tr-green  { color: var(--green); }
.tr-orange { color: var(--orange); }

/* ================================================================
   HOW TO BUY
   ================================================================ */
.htb-section {
  padding: 90px 40px;
  background: linear-gradient(135deg, #FF8C5A 0%, var(--orange) 40%, #E84F00 100%);
  position: relative; overflow: hidden;
}
.htb-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 2px, transparent 2px);
  background-size: 32px 32px;
}
.htb-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.htb-header { text-align: center; margin-bottom: 56px; }
.htb-header .section-tag { color: rgba(255,255,255,0.85); }
.htb-header h2 {
  font-family: 'Baloo 2', cursive; font-size: 42px; font-weight: 800;
  color: white; margin: 8px 0;
}
.htb-sub { color: rgba(255,255,255,0.85); font-size: 17px; font-weight: 700; }

.htb-steps {
  display: flex; align-items: flex-start; gap: 0;
  justify-content: center; flex-wrap: wrap;
}
.htb-step {
  background: white; border-radius: 28px;
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.15);
  padding: 28px 22px; text-align: center;
  flex: 1; min-width: 180px; max-width: 240px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.htb-step:hover { transform: translateY(-6px); box-shadow: 6px 12px 0 rgba(0,0,0,0.15); }
.htb-num {
  font-family: 'Baloo 2', cursive; font-size: 52px; font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 4px;
  opacity: 0.25;
}
.htb-icon { font-size: 42px; margin-bottom: 12px; }
.htb-step h3 {
  font-family: 'Baloo 2', cursive; font-size: 19px; font-weight: 800;
  color: var(--navy); margin-bottom: 10px;
}
.htb-step p { font-size: 13px; color: #666; line-height: 1.7; }
.htb-step strong { color: var(--orange); }

.htb-arrow {
  font-size: 30px; color: rgba(255,255,255,0.7);
  font-weight: 800; align-self: center;
  padding: 0 8px; flex-shrink: 0;
  margin-top: -40px;
}

.htb-cta { text-align: center; margin-top: 48px; }
.htb-btn {
  display: inline-block;
  background: white; color: var(--orange);
  font-family: 'Baloo 2', cursive; font-size: 20px; font-weight: 800;
  padding: 16px 44px; border-radius: 50px;
  text-decoration: none;
  border: 4px solid var(--orange-dark);
  box-shadow: 5px 5px 0 var(--orange-dark);
  transition: transform 0.15s, box-shadow 0.15s;
  animation: btnPulse 2.5s ease-in-out infinite;
}
.htb-btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--orange-dark); animation: none; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-section {
  padding: 90px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, #FFF0FF 100%);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 {
  font-family: 'Baloo 2', cursive; font-size: 42px; font-weight: 800;
  color: var(--navy); margin-top: 8px;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: white; border-radius: 20px;
  border: 3px solid #FFD0B0;
  box-shadow: 4px 4px 0 #FFD0B0;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: var(--orange); box-shadow: 4px 4px 0 var(--orange); }

.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 24px;
  background: none; border: none; cursor: pointer;
  font-family: 'Baloo 2', cursive; font-size: 17px; font-weight: 800;
  color: var(--navy); text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-item.open .faq-q { color: var(--orange); }

.faq-chevron {
  font-size: 22px; font-weight: 700; flex-shrink: 0;
  color: var(--orange); transition: transform 0.3s;
  display: inline-block;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { font-size: 15px; color: #666; line-height: 1.8; }

/* ================================================================
   COMMUNITY
   ================================================================ */
.community-section {
  padding: 90px 40px;
  background: linear-gradient(135deg, var(--yellow-pale) 0%, var(--pink-pale) 50%, var(--blue-pale) 100%);
}
.community-inner { max-width: 1100px; margin: 0 auto; }
.community-header { text-align: center; margin-bottom: 52px; }
.community-header h2 {
  font-family: 'Baloo 2', cursive; font-size: 42px; font-weight: 800;
  color: var(--navy); margin: 8px 0;
}
.community-sub { color: #888; font-size: 16px; font-weight: 700; }

.community-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.community-card {
  border-radius: 28px; border: 4px solid;
  padding: 32px 24px; text-decoration: none;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
}
.community-card:hover { transform: translate(-4px,-6px); }

.cc-blue   { background: var(--blue-pale);  border-color: var(--blue);  box-shadow: 5px 5px 0 var(--blue); }
.cc-blue:hover { box-shadow: 8px 8px 0 var(--blue); }
.cc-teal   { background: var(--green-pale); border-color: var(--green); box-shadow: 5px 5px 0 var(--green); }
.cc-teal:hover { box-shadow: 8px 8px 0 var(--green); }
.cc-orange { background: var(--orange-pale); border-color: var(--orange); box-shadow: 5px 5px 0 var(--orange); }
.cc-orange:hover { box-shadow: 8px 8px 0 var(--orange); }
.cc-pink   { background: var(--pink-pale);  border-color: var(--pink);  box-shadow: 5px 5px 0 var(--pink); }
.cc-pink:hover { box-shadow: 8px 8px 0 var(--pink); }

.cc-icon-wrap {
  font-size: 36px; font-weight: 900;
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.community-card h3 {
  font-family: 'Baloo 2', cursive; font-size: 19px; font-weight: 800;
  color: var(--navy); margin: 0;
}
.community-card p { font-size: 13px; color: #666; line-height: 1.65; flex: 1; }
.cc-arrow {
  font-family: 'Baloo 2', cursive; font-size: 14px; font-weight: 800;
  color: var(--navy); margin-top: 8px;
  transition: letter-spacing 0.2s;
}
.community-card:hover .cc-arrow { letter-spacing: 1px; }

/* ================================================================
   NEW SECTIONS — MOBILE
   ================================================================ */
@media (max-width: 900px) {
  .token-grid { grid-template-columns: 1fr; gap: 20px; }
  .tokenomics-section { padding: 60px 24px; }
  .token-header h2 { font-size: 30px; }

  .htb-section { padding: 60px 24px; }
  .htb-header h2 { font-size: 30px; }
  .htb-steps { gap: 0; }
  .htb-arrow { font-size: 22px; padding: 0 4px; margin-top: -30px; }
  .htb-step { min-width: 140px; padding: 22px 14px; }

  .community-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .community-header h2 { font-size: 30px; }

  .faq-header h2 { font-size: 30px; }
}

@media (max-width: 600px) {
  .ca-row { flex-direction: row; flex-wrap: wrap; }
  .ca-address { max-width: 140px; }
  .hero-trust-badges { gap: 6px; }
  .trust-badge { font-size: 10px; padding: 4px 10px; }

  .tokenomics-section { padding: 50px 16px; }
  .token-header h2 { font-size: 26px; }
  .token-card { padding: 22px 18px; }

  .htb-section { padding: 50px 16px; }
  .htb-header h2 { font-size: 26px; }
  .htb-steps { flex-direction: column; align-items: center; gap: 4px; }
  .htb-arrow { transform: rotate(90deg); margin: 0; padding: 2px 0; }
  .htb-step { max-width: 100%; width: 100%; }
  .htb-num { font-size: 38px; }

  .faq-section { padding: 50px 16px; }
  .faq-header h2 { font-size: 26px; }
  .faq-q { font-size: 15px; padding: 14px 18px; }

  .community-section { padding: 50px 16px; }
  .community-header h2 { font-size: 26px; }
  .community-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .community-card { padding: 20px 16px; }
  .cc-icon-wrap { width: 48px; height: 48px; font-size: 26px; border-radius: 12px; }
  .community-card h3 { font-size: 15px; }
  .community-card p { font-size: 12px; }
}

@media (max-width: 400px) {
  .community-grid { grid-template-columns: 1fr; }
}
