/* ==========================================================
   PapaRun — Landing Page
   Paleta real do protótipo do app:
   Verde Volt #9BE01E | Ciano #00C2F0 | Fundo #EEF2F6 | Navy #0D1B2E
   Fonte: Space Grotesk (a mesma do app mobile)
   ========================================================== */

:root {
  --volt: #9BE01E;
  --volt-dark: #7CBF0A;
  --volt-soft: rgba(155, 224, 30, .16);
  --cyan: #00C2F0;
  --cyan-dark: #00A3CC;
  --cyan-soft: rgba(0, 194, 240, .13);
  --bg: #EEF2F6;
  --card: #FFFFFF;
  --navy: #0D1B2E;
  --navy-2: #13253D;
  /* Azul escuro do app (welcome/login) */
  --app-dark: #011129;
  --app-dark-2: #0A2340;
  --app-blue: #00AEEF;
  --text: #17273B;
  --muted: #5B6B80;
  --gold: #F5B818;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 10px 30px rgba(13, 27, 46, .08);
  --shadow-lg: 0 24px 60px rgba(13, 27, 46, .14);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --header-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(1160px, 92%); margin: 0 auto; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }

.grad-text {
  background: linear-gradient(92deg, var(--cyan) 8%, var(--volt) 85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-text-dark {
  background: linear-gradient(92deg, var(--cyan-dark), var(--volt-dark));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons (3D) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  border: none; border-radius: 16px; cursor: pointer;
  padding: .95rem 1.7rem; color: var(--navy);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  will-change: transform;
}
.btn--green {
  background: linear-gradient(180deg, #ABEF33, var(--volt));
  box-shadow: 0 5px 0 var(--volt-dark), 0 14px 28px rgba(155, 224, 30, .38);
}
.btn--green:hover { filter: brightness(1.04); transform: translateY(-2px); box-shadow: 0 7px 0 var(--volt-dark), 0 18px 34px rgba(155, 224, 30, .45); }
.btn--green:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--volt-dark), 0 8px 16px rgba(155, 224, 30, .3); }
.btn--sm { padding: .62rem 1.15rem; font-size: .9rem; border-radius: 13px; box-shadow: 0 4px 0 var(--volt-dark), 0 10px 20px rgba(155,224,30,.3); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.08rem; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 700; font-size: .82rem; border-radius: 999px; padding: .32rem .8rem;
  white-space: nowrap;
}
.chip--green { background: var(--volt-soft); color: #4F8A00; }
.chip--cyan { background: var(--cyan-soft); color: #0084A8; }
.chip--gray { background: #E6EBF2; color: var(--muted); }
.chip--gold { background: rgba(245, 184, 24, .16); color: #A87A00; }

/* ---------- Header ---------- */
/* Transparente sobre o hero escuro; só ganha fundo depois do scroll */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.header.scrolled {
  background:
    radial-gradient(120% 180% at 12% 0%, rgba(0, 174, 239, .28), transparent 60%),
    linear-gradient(100deg, var(--app-dark) 0%, var(--app-dark-2) 52%, var(--app-dark) 100%);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(1, 17, 41, .38);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header__logo { display: flex; align-items: center; }
.header__logo-img { width: 178px; height: auto; object-fit: contain; }
.header__nav { display: flex; align-items: center; gap: 1.7rem; }
.header__link { font-weight: 500; font-size: .95rem; color: rgba(255, 255, 255, .82); position: relative; transition: color .2s; }
.header__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 3px; width: 0;
  border-radius: 3px; background: linear-gradient(90deg, var(--cyan), var(--volt));
  transition: width .25s ease;
}
.header__link:hover { color: #fff; }
.header__link:hover::after { width: 100%; }
.header__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.header__burger span { display: block; width: 24px; height: 3px; border-radius: 3px; background: #fff; margin: 5px 0; transition: transform .3s, opacity .3s; }
.header__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (escuro, mesma base do app) ---------- */
.hero {
  position: relative; padding: calc(var(--header-h) + 56px) 0 110px; overflow: hidden;
  background: linear-gradient(168deg, var(--app-dark) 0%, #04203C 55%, var(--app-dark) 100%);
  color: #fff;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero__blob--cyan { width: 560px; height: 560px; background: var(--app-blue); top: -190px; right: -130px; opacity: .3; }
.hero__blob--green { width: 460px; height: 460px; background: var(--volt); bottom: -210px; left: -150px; opacity: .18; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.09) 1.5px, transparent 1.5px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 255, 255, .07); border: 1.5px solid rgba(0, 174, 239, .35);
  border-radius: 999px; padding: .42rem 1rem .42rem .5rem;
  font-weight: 500; font-size: .85rem; color: #8FE3FF;
}
.hero__eyebrow-icon { width: 26px; height: 26px; border-radius: 8px; }
.hero__title {
  font-size: clamp(1.9rem, 3.2vw, 2.45rem); font-weight: 600; line-height: 1.25;
  margin: 1.1rem 0 1rem; color: #fff; max-width: 28ch;
}
.hero__title-accent { color: var(--volt); }
.hero__subtitle { font-size: clamp(1rem, 1.4vw, 1.12rem); color: rgba(255, 255, 255, .72); max-width: 34rem; margin-bottom: 1.8rem; }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; }

.store-badges { display: flex; gap: .7rem; }
.store-badge {
  display: flex; align-items: center; gap: .55rem;
  background: var(--navy); color: #fff;
  border-radius: 13px; padding: .5rem .95rem;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 0 #050e1b, 0 10px 22px rgba(13,27,46,.28);
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge:active { transform: translateY(2px); box-shadow: 0 2px 0 #050e1b, 0 5px 10px rgba(13,27,46,.2); }
.store-badge small { display: block; font-size: .62rem; opacity: .75; line-height: 1.1; }
.store-badge strong { font-size: .92rem; line-height: 1.15; font-family: var(--font-display); }
.store-badges--center { justify-content: center; margin-top: 1.6rem; }
/* No hero escuro os badges viram vidro pra não sumir no fundo */
.hero .store-badge { background: rgba(255, 255, 255, .09); border: 1.5px solid rgba(255, 255, 255, .2); box-shadow: none; }
.hero .store-badge:hover { background: rgba(255, 255, 255, .15); }
.hero .store-badge:active { transform: translateY(2px); box-shadow: none; }

.hero__stats { display: flex; gap: 2.2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__stat strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; color: #fff; }
.hero__stat span { font-size: .85rem; color: rgba(255, 255, 255, .58); }

/* Phone mockups */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone {
  background: #0b1524; border-radius: 42px; padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  position: relative;
}
.phone img { border-radius: 32px; }
.phone--main { width: min(330px, 78vw); }
.phone__notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 22px; background: #0b1524; border-radius: 999px; z-index: 2;
}
.phone--sm { width: 100%; border-radius: 30px; padding: 8px; }
.phone--sm img { border-radius: 23px; }

.hero__mascot {
  position: absolute; width: 168px; bottom: -18px; left: -30px; z-index: 3;
  filter: drop-shadow(0 16px 24px rgba(0, 194, 240, .35));
}
.hero__badge {
  position: absolute; z-index: 4;
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border-radius: 16px; padding: .6rem 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-lg);
}
.hero__badge--xp { top: 9%; right: 2%; color: #4F8A00; border: 2px solid var(--volt); }
.hero__badge--streak { bottom: 24%; right: -4%; color: var(--cyan-dark); border: 2px solid var(--cyan); }
.ring { width: 34px; height: 34px; transform: rotate(-90deg); }
.ring--lg { width: 84px; height: 84px; }
.ring__bg { fill: none; stroke: #E3E9F1; stroke-width: 3.6; }
.ring__fill { fill: none; stroke: url(#ringGrad), var(--cyan); stroke: var(--cyan); stroke-width: 3.6; stroke-linecap: round; }
.ring--lg .ring__fill { stroke: var(--volt); }

/* Float animations */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-slow { animation: floaty 6s ease-in-out infinite; }
.float-slow2 { animation: floaty 7s ease-in-out .8s infinite; }
.float-mid { animation: floaty 4.6s ease-in-out .4s infinite; }
.float-mid2 { animation: floaty 5.2s ease-in-out 1.1s infinite; }
.float-fast { animation: floaty 3.8s ease-in-out .2s infinite; }

/* ---------- Sections base ---------- */
.section { padding: 96px 0; }
.section__head { text-align: center; max-width: 46rem; margin: 0 auto 3.4rem; }
.section__tag {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .09em;
  border-radius: 999px; padding: .4rem 1.05rem; margin-bottom: 1.1rem;
}
.tag--green { background: var(--volt-soft); color: #4F8A00; }
.tag--cyan { background: var(--cyan-soft); color: #0084A8; }
.section__title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--navy); }
.section__lead { color: var(--muted); font-size: 1.06rem; margin-top: 1rem; }

/* ---------- How (3 passos) ---------- */
.how { background: #fff; border-radius: 56px 56px 0 0; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.how-card {
  position: relative; background: var(--bg); border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.7rem; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.how-card:hover { transform: translateY(-8px) rotate(-.4deg); box-shadow: var(--shadow-lg); }
.how-card__step {
  position: absolute; top: -16px; left: 22px; z-index: 5;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--volt));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  border-radius: 13px; box-shadow: 0 8px 18px rgba(0, 194, 240, .35);
}
.how-card__phone { width: 62%; margin: .8rem auto 1.2rem; }
.how-card__icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 14px; margin-bottom: .8rem;
}
.icon--green { background: var(--volt-soft); color: #4F8A00; }
.icon--cyan { background: var(--cyan-soft); color: #0084A8; }
.how-card__body h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: .45rem; }
.how-card__body p { font-size: .94rem; color: var(--muted); margin-bottom: .9rem; }

/* ---------- Rewards ---------- */
.rewards { background: linear-gradient(165deg, #E4F7FD 0%, #EFF9E1 100%); }
.rewards__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.4rem; align-items: center; }
.rewards__phone { position: relative; display: flex; justify-content: center; }
.rewards__float { top: 12%; right: 0; }
.xp-panel {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.5rem; margin-top: 1.8rem;
}
.xp-panel__balance {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 1.2rem; border-bottom: 1.5px solid #EDF1F6;
}
.bolt--big { font-size: 2rem; filter: drop-shadow(0 4px 8px rgba(155,224,30,.4)); }
.xp-panel__balance small { color: var(--muted); font-weight: 600; }
.xp-panel__number { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--navy); line-height: 1.1; }
.xp-panel__ring { margin-left: auto; position: relative; }
.xp-panel__ring-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.xp-panel__ring-label strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); line-height: 1; }
.xp-panel__ring-label small { font-size: .6rem; color: var(--muted); font-weight: 700; }
.ring__fill--animate { transition: stroke-dasharray 1.4s cubic-bezier(.22,.8,.35,1); }

.xp-panel__list { list-style: none; margin-top: .4rem; }
.reward-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .78rem 0; border-bottom: 1px solid #F1F4F8;
}
.reward-row:last-child { border-bottom: none; }
.reward-row > div { flex: 1; min-width: 0; }
.reward-row strong { display: block; font-size: .95rem; color: var(--navy); font-weight: 700; }
.reward-row small { color: var(--muted); font-size: .8rem; }
.reward-row__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--volt); }
.reward-row--locked .reward-row__avatar { border-color: #D6DEE8; filter: grayscale(.4); }
.reward-row__icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 13px; background: var(--bg-c, #eee); font-size: 1.3rem;
  background: color-mix(in srgb, var(--bg) 20%, transparent);
  background: var(--bg);
}
.reward-row__icon[style] { background: var(--bg); box-shadow: inset 0 0 0 100px color-mix(in srgb, var(--bg, #eee) 0%, transparent); }
.reward-row__icon { background: #F0F3F8; }
.reward-row__cta {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  background: linear-gradient(180deg, #ABEF33, var(--volt)); color: var(--navy);
  border-radius: 999px; padding: .4rem .95rem;
  box-shadow: 0 3px 0 var(--volt-dark);
}
.reward-row__pct { font-weight: 800; font-size: .82rem; color: var(--cyan-dark); }
.reward-row--gold { background: linear-gradient(90deg, rgba(245,184,24,.08), transparent); border-radius: 12px; padding-inline: .5rem; }
.progress { height: 8px; background: #E8EDF3; border-radius: 999px; margin-top: .45rem; overflow: hidden; }
.progress__fill {
  height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--volt));
  transition: width 1.4s cubic-bezier(.22,.8,.35,1);
}

/* ---------- Streak ---------- */
.streak-section { padding-top: 40px; }
.streak-card {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 500px at 85% -20%, rgba(0,194,240,.25), transparent 60%),
              radial-gradient(900px 500px at 10% 120%, rgba(155,224,30,.2), transparent 60%),
              var(--navy);
  border-radius: 34px; color: #fff;
  display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center;
  padding: 3.2rem 3.4rem; box-shadow: 0 30px 70px rgba(13,27,46,.35);
}
.streak-card__flames { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.flame-anim { position: absolute; font-size: 1.6rem; animation: flameRise 5s ease-in infinite; opacity: 0; }
.f1 { left: 12%; bottom: -10%; animation-delay: 0s; }
.f2 { left: 50%; bottom: -10%; animation-delay: 1.8s; }
.f3 { left: 84%; bottom: -10%; animation-delay: 3.2s; }
@keyframes flameRise {
  0% { transform: translateY(0) scale(.7); opacity: 0; }
  15% { opacity: .8; }
  100% { transform: translateY(-520px) scale(1.3) rotate(12deg); opacity: 0; }
}
.streak-card__counter { display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center; }
.streak-flame-svg { animation: flamePulse 2.2s ease-in-out infinite; filter: drop-shadow(0 0 22px rgba(155,224,30,.55)); }
@keyframes flamePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.09); } }
.streak-card__days strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 4rem; line-height: 1; background: linear-gradient(90deg, var(--cyan), var(--volt)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.streak-card__days span { font-size: .95rem; opacity: .8; font-weight: 600; }
.streak-card__text h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: .8rem; }
.streak-card__text p { opacity: .82; max-width: 34rem; margin-bottom: 1.4rem; }
.streak-card__week { display: flex; gap: .5rem; margin-bottom: 1.2rem; }
.day {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 13px; background: rgba(255,255,255,.08);
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  border: 1.5px solid rgba(255,255,255,.12);
}
.day.done { background: rgba(155,224,30,.2); border-color: var(--volt); color: var(--volt); }
.day.active { background: linear-gradient(135deg, var(--cyan), var(--volt)); color: var(--navy); border: none; box-shadow: 0 0 20px rgba(0,194,240,.5); animation: dayGlow 2s ease-in-out infinite; }
@keyframes dayGlow { 0%,100% { box-shadow: 0 0 14px rgba(0,194,240,.4); } 50% { box-shadow: 0 0 26px rgba(155,224,30,.65); } }
.streak-card__mult { display: flex; gap: .7rem; flex-wrap: wrap; }
.streak-card__mult .chip--green { background: rgba(155,224,30,.18); color: var(--volt); }
.streak-card__mult .chip--cyan { background: rgba(0,194,240,.15); color: var(--cyan); }

/* ---------- Pros ---------- */
.pros { background: #fff; }
.pros__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; max-width: 46rem; margin-inline: auto; }
.pro-card {
  background: var(--bg); border-radius: var(--radius); padding: 2rem 1.6rem 1.8rem;
  text-align: center; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pro-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pro-card__photo { position: relative; width: 120px; height: 120px; margin: 0 auto 1.1rem; }
.pro-card__photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  border: 4px solid #fff; box-shadow: 0 0 0 3px var(--cyan), 0 12px 26px rgba(13,27,46,.16);
}
.pro-card:nth-child(odd) .pro-card__photo img { box-shadow: 0 0 0 3px var(--volt), 0 12px 26px rgba(13,27,46,.16); }
.pro-card__badge {
  position: absolute; bottom: 4px; right: 4px;
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; border: 3px solid #fff;
}
.badge--green { background: var(--volt-dark); }
.badge--cyan { background: var(--cyan); }
.pro-card h3 { font-size: 1.3rem; color: var(--navy); }
.pro-card__role {
  display: inline-block; font-weight: 700; font-size: .85rem; margin-top: .3rem;
}
.role--green { color: #4F8A00; }
.role--cyan { color: #0084A8; }
.pro-card__reg {
  display: inline-block; margin: .55rem auto .8rem;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .04em;
  background: var(--navy); color: #fff; border-radius: 999px; padding: .32rem .85rem;
}
.pro-card p { font-size: .92rem; color: var(--muted); margin-bottom: 1rem; }
.pro-card__tags { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.pro-card__tags span {
  font-size: .76rem; font-weight: 600; color: var(--text);
  background: #fff; border-radius: 999px; padding: .32rem .75rem;
  box-shadow: 0 3px 10px rgba(13,27,46,.07);
}
.pros__checkup {
  display: flex; align-items: center; gap: 1.1rem;
  background: linear-gradient(92deg, var(--cyan-soft), var(--volt-soft));
  border: 1.5px dashed rgba(0,163,204,.4);
  border-radius: var(--radius); padding: 1.3rem 1.7rem; margin-top: 2.6rem;
}
.pros__checkup-icon { font-size: 2rem; }
.pros__checkup p { font-size: 1rem; color: var(--text); }

/* ---------- CTA final ---------- */
.cta-final { padding-bottom: 110px; }
.cta-card {
  position: relative; text-align: center;
  background: #fff; border-radius: 34px; padding: 3.6rem 2rem 3rem;
  box-shadow: var(--shadow-lg); overflow: visible;
}
.cta-card__mascot {
  position: absolute; width: 130px; top: -58px; right: 6%;
  filter: drop-shadow(0 14px 22px rgba(0,194,240,.3));
}
.cta-card h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: var(--navy); }
.cta-card > p { color: var(--muted); max-width: 33rem; margin: .9rem auto 1.9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #fff; padding: 64px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.4rem;
  padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { width: 190px; }
.footer__slogan { margin-top: .9rem; font-family: var(--font-display); font-weight: 700; opacity: .85; }
.footer__col { display: flex; flex-direction: column; gap: .65rem; }
.footer__col strong { font-family: var(--font-display); font-size: .95rem; margin-bottom: .3rem; color: var(--volt); }
.footer__col a { opacity: .75; font-size: .92rem; transition: opacity .2s, color .2s; }
.footer__col a:hover { opacity: 1; color: var(--cyan); }
.footer__social { display: flex; gap: .7rem; }
.footer__social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 12px; color: #fff; opacity: .8;
  transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}
.footer__social a:hover {
  background: linear-gradient(135deg, var(--cyan), var(--volt));
  border-color: transparent; color: var(--navy); opacity: 1;
  transform: translateY(-2px);
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; font-size: .85rem; opacity: .65;
}

/* ---------- Reveal on scroll ---------- */
.reveal, .reveal-scale {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.22,.8,.35,1), transform .8s cubic-bezier(.22,.8,.35,1);
}
.reveal-scale { transform: translateY(24px) scale(.94); }
.reveal.visible, .reveal-scale.visible { opacity: 1; transform: translateY(0) scale(1); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__title, .hero__subtitle { margin-inline: auto; }
  .hero__ctas, .hero__stats { justify-content: center; }
  .hero__visual { margin-top: 2.5rem; }
  .hero__mascot { left: 0; width: 140px; }
  .how__grid, .pros__grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .rewards__inner { grid-template-columns: 1fr; }
  .rewards__phone { order: 2; margin-top: 2rem; }
  .streak-card { grid-template-columns: 1fr; text-align: center; padding: 2.6rem 1.8rem; }
  .streak-card__week, .streak-card__mult { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .header__nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: linear-gradient(180deg, var(--app-dark-2), var(--app-dark));
    box-shadow: 0 24px 40px rgba(1, 17, 41, .38);
    padding: .6rem 6% 1.2rem;
    transform: translateY(-130%); transition: transform .35s cubic-bezier(.22,.8,.35,1);
  }
  .header__nav.open { transform: translateY(0); }
  .header__link { padding: .9rem 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .header__link::after { display: none; }
  .header__cta { margin-top: .9rem; justify-content: center; }
  .header__burger { display: block; }
  .section { padding: 70px 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .3rem; text-align: center; }
  .cta-card__mascot { width: 90px; top: -40px; }
  .hero__badge--streak { right: 0; }
  .streak-card__days strong { font-size: 3.1rem; }
  .reward-row small { display: none; }
  .reward-row .progress { max-width: 140px; }
}
