/* =========================================
   SPROUT — CSS DESIGN SYSTEM
   ========================================= */

:root {
  --bg: #FAFBF8;
  --surface: #FFFFFF;
  --surface-2: #F3F6F0;
  --text: #1A1D16;
  --text-2: #5C6354;
  --text-3: #9BA596;
  --accent: #3DB87A;
  --accent-2: #2D9D65;
  --accent-light: #E8F8EE;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --blue: #3B82F6;
  --blue-light: #DBEAFE;
  --purple: #A855F7;
  --purple-light: #F3E8FF;
  --pink: #EC4899;
  --pink-light: #FCE7F3;
  --border: #E2E8D8;
  --shadow: 0 4px 24px rgba(26, 29, 22, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 29, 22, 0.12);
}

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .hero h1 {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ---- Layout ---- */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #C8F5E1 0%, transparent 70%);
  top: -100px; left: -100px;
}

.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FEF3C7 0%, transparent 70%);
  top: 50%; right: -80px;
}

.blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #DBEAFE 0%, transparent 70%);
  bottom: 0; left: 30%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  max-width: 960px;
  width: 100%;
}

/* Pet Showcase */
.pet-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pet-stage {
  width: 180px; height: 180px;
  background: radial-gradient(circle, #E8F8EE 0%, var(--bg) 70%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.pet-creature {
  position: relative;
  animation: pet-bounce 3s ease-in-out infinite;
}

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

.pet-body {
  width: 90px; height: 80px;
  background: linear-gradient(135deg, #A8F5C8 0%, #3DB87A 100%);
  border-radius: 45px 45px 35px 35px;
  position: relative;
  box-shadow: 0 8px 24px rgba(61, 184, 122, 0.4);
}

.pet-face {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 50px;
}

.pet-eyes {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 6px;
}

.eye {
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pupil {
  width: 10px; height: 10px;
  background: #1A1D16;
  border-radius: 50%;
  position: relative;
}

.pupil::after {
  content: '';
  position: absolute;
  width: 4px; height: 4px;
  background: white;
  border-radius: 50%;
  top: 1px; right: 1px;
}

.pet-mouth {
  width: 14px; height: 8px;
  background: #2D9D65;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
}

.pet-cheek {
  position: absolute;
  width: 14px; height: 8px;
  background: #F472B6;
  border-radius: 50%;
  opacity: 0.5;
  top: 28px;
}

.cheek-left { left: 4px; }
.cheek-right { right: 4px; }

.pet-ears {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  display: flex; justify-content: space-between;
}

.ear {
  width: 24px; height: 28px;
  background: linear-gradient(135deg, #A8F5C8 0%, #3DB87A 100%);
  border-radius: 12px 12px 8px 8px;
}

.ear-left { transform: rotate(-15deg); }
.ear-right { transform: rotate(15deg); }

.pet-tail {
  position: absolute;
  bottom: 8px; right: -14px;
  width: 20px; height: 12px;
  background: #3DB87A;
  border-radius: 8px;
  animation: tail-wag 1s ease-in-out infinite;
}

@keyframes tail-wag {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
}

.pet-shadow {
  width: 70px; height: 16px;
  background: rgba(61, 184, 122, 0.2);
  border-radius: 50%;
  margin-top: 8px;
  animation: shadow-pulse 3s ease-in-out infinite;
}

@keyframes shadow-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.2; }
  50% { transform: scaleX(0.85); opacity: 0.15; }
}

.pet-sparkle {
  position: absolute;
  width: 8px; height: 8px;
  background: #F59E0B;
  border-radius: 50%;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 { top: -10px; right: -10px; animation-delay: 0s; }
.sparkle-2 { top: 20px; left: -14px; animation-delay: 0.7s; }
.sparkle-3 { bottom: 0; right: -20px; animation-delay: 1.4s; }

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

/* Orb items */
.pet-orbs {
  display: flex; gap: 16px;
}

.orb {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Hero text */
.hero-text {
  max-width: 580px;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: var(--accent-light);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 20px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-text h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--text);
  margin-bottom: 20px;
}

.lede {
  font-size: 1.15rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px 32px;
  box-shadow: var(--shadow);
  margin-top: 8px;
}

.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 24px;
}

.stat-value {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 2px;
}

.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ---- HOW SECTION ---- */
.how {
  padding: 100px 24px;
  background: var(--surface);
}

.how h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 12px;
}

.how .section-sub {
  text-align: center;
  margin-bottom: 64px;
}

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

.step {
  position: relative;
  padding: 32px 28px;
  background: var(--bg);
  border-radius: 20px;
  border: 1.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.step-visual {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

/* Egg */
.egg-icon {
  position: relative;
  width: 64px; height: 82px;
}

.egg-shell {
  width: 64px; height: 82px;
  background: linear-gradient(160deg, #C8F5E1 0%, #3DB87A 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 6px 20px rgba(61, 184, 122, 0.3);
}

.egg-crack {
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 20px;
  border-top: 2px dashed var(--accent-2);
  border-radius: 0 0 14px 14px;
}

/* Timer */
.timer-visual {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}

.timer-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 4px solid var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.timer-progress {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  animation: timer-spin 4s linear infinite;
}

@keyframes timer-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.timer-label {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

/* Rewards stack */
.rewards-stack {
  display: flex; flex-direction: column; gap: 10px;
}

.reward-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--surface);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
}

.reward-3 { transform: translateX(12px); }

/* ---- REWARDS SECTION ---- */
.rewards {
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
}

.rewards-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #F0FDF4 0%, #FAFBF8 100%);
}

.reward-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,184,122,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.rewards-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.rewards-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.rewards-text > p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.reward-categories {
  display: flex; flex-direction: column; gap: 20px;
}

.reward-category {
  display: flex; align-items: flex-start; gap: 16px;
}

.category-icon {
  width: 40px; height: 40px;
  background: var(--surface);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.reward-category h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.reward-category p {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* Demo card */
.demo-card {
  background: var(--surface);
  border-radius: 20px;
  border: 1.5px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.demo-header {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.demo-balance {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--border);
}

.balance-label {
  font-size: 0.78rem;
  color: var(--text-3);
}

.balance-value {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}

.demo-items {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--border);
}

.demo-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem;
}

.item-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.item-equipped { background: var(--amber-light); }
.item-owned { background: var(--purple-light); }
.item-locked { background: var(--surface-2); }

.item-name { flex: 1; font-weight: 500; }

.item-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
}

.item-equipped + .item-name + .item-badge .item-badge { background: var(--amber-light); color: var(--amber); }

.demo-item:nth-child(1) .item-badge { background: var(--amber-light); color: var(--amber); }
.demo-item:nth-child(2) .item-badge { background: var(--purple-light); color: var(--purple); }
.demo-item:nth-child(3) .item-badge { background: var(--surface-2); color: var(--text-3); }

.demo-redeem {
  padding: 14px;
  background: var(--accent-light);
  border-radius: 12px;
}

.redeem-row {
  display: flex; justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.redeem-cost { color: var(--accent-2); }

.redeem-bar {
  height: 6px;
  background: rgba(61, 184, 122, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.redeem-progress {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 1s ease;
}

.redeem-hint {
  font-size: 0.72rem;
  color: var(--accent-2);
  font-weight: 600;
}

/* ---- BREAK SECTION ---- */
.break-section {
  padding: 100px 24px;
  background: var(--surface-2);
}

.break-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 12px;
}

.break-section .section-sub {
  text-align: center;
  margin-bottom: 56px;
}

.break-activities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.activity {
  padding: 24px 18px;
  background: var(--surface);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.activity:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.activity-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}

.activity-physical .activity-icon { background: #D1FAE5; }
.activity-stretch .activity-icon { background: var(--blue-light); }
.activity-breathe .activity-icon { background: var(--purple-light); }
.activity-look .activity-icon { background: var(--amber-light); }
.activity-journal .activity-icon { background: var(--pink-light); }

.activity h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.activity p {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 24px;
  background: var(--surface);
}

.pricing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
}

.pricing .section-sub {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.pricing-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg);
  border-radius: 20px;
  border: 1.5px solid var(--border);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(61, 184, 122, 0.1), var(--shadow-lg);
  transform: scale(1.02);
}

.card-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 10px;
  white-space: nowrap;
}

.card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 8px;
}

.card-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-3);
}

.card-tagline {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--border);
}

.card-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding-left: 24px;
  position: relative;
}

.feature-check::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  background: var(--accent-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%233DB87A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.feature-partial::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  background: var(--amber-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4 7L9 1' stroke='%23F59E0B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='3 2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.feature-partial { color: var(--text-3); }

.card-cta {
  text-align: center;
  padding: 12px;
  background: var(--surface);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-2);
  border: 1.5px solid var(--border);
}

.pricing-card.featured .card-cta {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Scholarship note */
.scholarship-note {
  display: flex; align-items: flex-start; gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 24px;
  background: var(--blue-light);
  border-radius: 16px;
  border: 1.5px solid #BFDBFE;
}

.scholarship-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.scholarship-note p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

.scholarship-note strong { color: var(--text); }

/* ---- CLOSING ---- */
.closing {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.closing-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--surface) 0%, #F0FDF4 100%);
}

.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,184,122,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.creature-silhouette {
  margin-bottom: 40px;
}

.silhouette-body {
  width: 100px; height: 90px;
  background: linear-gradient(135deg, #A8F5C8 0%, #3DB87A 100%);
  border-radius: 50px 50px 35px 35px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(61, 184, 122, 0.4);
}

.silhouette-face {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 50px;
}

.silhouette-eyes {
  display: flex; justify-content: center; gap: 18px;
  margin-bottom: 8px;
}

.silhouette-eye {
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255,255,255,0.8);
}

.silhouette-smile {
  width: 16px; height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}

.silhouette-ears {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 90px;
  display: flex; justify-content: space-between;
}

.silhouette-ear {
  width: 26px; height: 32px;
  background: linear-gradient(135deg, #A8F5C8 0%, #3DB87A 100%);
  border-radius: 13px 13px 8px 8px;
}

.silhouette-tail {
  position: absolute;
  bottom: 10px; right: -16px;
  width: 22px; height: 14px;
  background: #3DB87A;
  border-radius: 8px;
  animation: tail-wag 1s ease-in-out infinite;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  background: var(--accent-light);
  border-radius: 20px;
  border: 2px solid var(--accent);
}

.cta-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-2);
}

.cta-sub {
  font-size: 0.82rem;
  color: var(--accent);
  margin-top: 4px;
}

/* ---- FOOTER ---- */
.footer {
  padding: 48px 24px 32px;
  background: var(--text);
  color: rgba(255,255,255,0.6);
}

.footer-brand {
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex; flex-direction: column; gap: 10px;
}

.footer-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 40px; }
  .hero-content { gap: 32px; }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .stat-divider { width: 60px; height: 1px; }
  .stat { padding: 0; }

  .steps { grid-template-columns: 1fr; gap: 20px; }
  .break-activities { grid-template-columns: repeat(2, 1fr); }
  .rewards-content { grid-template-columns: 1fr; gap: 40px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .break-activities { grid-template-columns: 1fr; }
  .pet-orbs { gap: 10px; }
  .orb { padding: 5px 10px; }
  .orb-label { display: none; }
  .rewards-demo { display: none; }
}
