:root {
  --ink: #061916;
  --ink-2: #09231f;
  --muted: #63766f;
  --line: #dfe9e4;
  --soft: #f4f8f5;
  --white: #ffffff;
  --green: #31eb88;
  --green-2: #17c66c;
  --green-soft: #ddfbed;
  --cyan: #31d9e5;
  --gold: #ffc845;
  --orange: #ff9f2f;
  --navy: #041713;
  --shadow: 0 28px 80px rgba(5, 36, 28, .13);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img,
svg {
  max-width: 100%;
}
.hero-copy,
.hero-visual,
.app-copy,
.mexico-copy,
.performance-card,
.reward-card,
.prize-card,
.loop-card,
.faq-grid,
.footer-grid {
  min-width: 0;
}
code {
  padding: 2px 6px;
  border-radius: 7px;
  color: #0a6a43;
  background: #e8fbf1;
  font-size: .94em;
}
.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px 14px;
  color: #c1d8cf;
  background: #051713;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .045em;
  text-align: center;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(49, 235, 136, .45);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(49, 235, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(49, 235, 136, 0); }
}

.site-header {
  position: absolute;
  top: 34px;
  left: 0;
  z-index: 30;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.035em;
}
.brand b { font-weight: 900; }
.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(49, 235, 136, .22);
  border-radius: 13px;
  background: rgba(49, 235, 136, .13);
  box-shadow: inset 0 0 18px rgba(49, 235, 136, .08);
}
.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: var(--green);
}
.brand-mark .bolt { fill: #061916; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #c6d8d1;
  font-size: 13px;
  font-weight: 800;
}
.nav-links > a:not(.button):hover { color: #fff; }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  padding: 11px;
  background: rgba(255,255,255,.08);
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #fff;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.14;
}
.button small {
  font-size: 8px;
  letter-spacing: .13em;
  opacity: .65;
}
.button-small {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 11px;
  color: #041914;
  background: var(--green);
  font-size: 12px;
}
.button-primary {
  color: #041914;
  background: linear-gradient(135deg, #5ff6a8, #25df7f 50%, #17c66c);
  box-shadow: 0 16px 42px rgba(31, 221, 124, .28);
}
.button-primary:hover { box-shadow: 0 20px 52px rgba(31, 221, 124, .38); }
.button-prize {
  color: #2b1600;
  background: linear-gradient(135deg, #ffe27a, #ffc845 45%, #ff9f2f);
  box-shadow: 0 16px 42px rgba(255, 184, 45, .28);
}
.button-prize:hover { box-shadow: 0 20px 52px rgba(255, 184, 45, .38); }
.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d0dfda;
  font-size: 13px;
  font-weight: 900;
}
.ghost-link span { color: var(--green); }

.hero {
  min-height: 820px;
  padding-top: 110px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 30%, rgba(36, 226, 131, .2), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(42, 208, 229, .13), transparent 26%),
    linear-gradient(135deg, #041210 0%, #061916 42%, #08251e 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, #fff);
}
.hero-light {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(75px);
  pointer-events: none;
}
.hero-light-one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 190px;
  background: rgba(39, 234, 135, .24);
}
.hero-light-two {
  width: 530px;
  height: 530px;
  left: -260px;
  bottom: -230px;
  background: rgba(28, 213, 225, .14);
}
.hero-grid {
  min-height: 710px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 28px;
}
.hero-copy {
  position: relative;
  z-index: 3;
  padding: 58px 0 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #b6d2c8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { color: var(--green); }
.eyebrow.dark { color: #738982; }
.hero h1 {
  max-width: 650px;
  margin: 0 0 24px;
  font-size: clamp(49px, 5.5vw, 78px);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 900;
}
.hero-lead {
  max-width: 560px;
  margin: 0 0 32px;
  color: #b7c9c3;
  font-size: 17px;
  line-height: 1.75;
}
.hero-lead strong {
  color: #fff;
  font-weight: 900;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-proof {
  max-width: 515px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero-proof span {
  min-height: 70px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
}
.hero-proof b {
  color: var(--green);
  font-size: 21px;
  line-height: 1;
}
.hero-proof small {
  margin-top: 6px;
  color: #92aaa1;
  font-size: 9px;
  font-weight: 800;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-image-card {
  width: min(760px, 57vw);
  height: 540px;
  position: relative;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34px;
  background: rgba(5, 25, 21, .55);
  box-shadow: 0 36px 100px rgba(0,0,0,.34), inset 0 0 0 1px rgba(49, 235, 136, .06);
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(1.03) contrast(1.04);
}
.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, transparent 0 26%, rgba(4, 18, 15, .18) 56%, rgba(4, 18, 15, .5) 100%);
  pointer-events: none;
}
.float-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px 12px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  color: #fff;
  background: rgba(4, 27, 23, .78);
  box-shadow: 0 20px 48px rgba(0,0,0,.26);
  backdrop-filter: blur(14px);
}
.float-badge > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(49, 235, 136, .22), rgba(255, 200, 69, .18));
}
.float-badge p {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.float-badge b { font-size: 12px; }
.float-badge small {
  margin-top: 4px;
  color: #9cb4ab;
  font-size: 8px;
  font-weight: 800;
}
.badge-streak { top: 34px; right: 34px; }
.badge-gift { bottom: 38px; left: 34px; }

.quick-strip {
  border-bottom: 1px solid #e4ece8;
  background: #fff;
}
.quick-grid {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  column-gap: 13px;
  padding: 22px 24px;
  border-left: 1px solid #e6eee9;
}
.quick-grid div:last-child { border-right: 1px solid #e6eee9; }
.quick-grid span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eefbf4;
}
.quick-grid b {
  align-self: end;
  font-size: 13px;
  letter-spacing: -.02em;
}
.quick-grid small {
  margin-top: 4px;
  color: #82938d;
  font-size: 9px;
  font-weight: 700;
}

.section { padding: 112px 0; }
.section-heading {
  max-width: 720px;
  margin: 0 auto 54px;
}
.centered { text-align: center; }
.section-heading h2,
.prize-copy h2,
.app-copy h2,
.loop-copy h2,
.mexico-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0 0 17px;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.058em;
  font-weight: 900;
}
.section-heading p,
.prize-copy p,
.app-copy > p,
.loop-copy p,
.mexico-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.performance-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(49,235,136,.12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(49,217,229,.1), transparent 30%),
    #f8faf8;
}
.performance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.performance-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #e1ebe6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 9px 32px rgba(5, 35, 27, .045);
}
.performance-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(49,235,136,.11);
}
.performance-main {
  min-height: 410px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  gap: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 35%, rgba(49,235,136,.18), transparent 28%),
    linear-gradient(135deg, #08251f, #031410);
}
.performance-main::after {
  background: rgba(49,217,229,.1);
}
.performance-card h3 {
  margin: 0 0 13px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -.045em;
}
.performance-main h3 {
  max-width: 510px;
  font-size: clamp(34px, 4vw, 52px);
}
.performance-card p {
  max-width: 540px;
  margin: 0;
  color: #63766f;
  font-size: 13px;
  line-height: 1.7;
}
.performance-main p { color: #acc4bb; }
.performance-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 19px;
  background: #e4fbef;
  font-size: 27px;
}
.performance-icon.blue { background: #e1fbfd; }
.performance-icon.ice { background: #edf7ff; }
.performance-icon.gold { background: #fff5dc; }
.boost-panel {
  width: min(100%, 470px);
  margin-left: auto;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.065);
  box-shadow: inset 0 0 0 1px rgba(49,235,136,.05), 0 24px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.boost-score {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(49,235,136,.22), rgba(49,235,136,.045));
}
.boost-score strong {
  color: var(--green);
  font-size: 84px;
  line-height: .9;
  letter-spacing: -.08em;
  font-weight: 900;
  text-shadow: 0 0 28px rgba(49,235,136,.22);
}
.boost-score span {
  margin-top: 10px;
  color: #d7eee6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.boost-bars {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.boost-bars p {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 12px;
  max-width: none;
  margin: 0;
}
.boost-bars b {
  color: #d7eee6;
  font-size: 11px;
}
.boost-bars i {
  height: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
}
.boost-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.prize-section {
  padding: 82px 0 112px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255,200,69,.16), transparent 30%),
    radial-gradient(circle at 85% 45%, rgba(49,235,136,.12), transparent 30%),
    #fff;
}
.prize-card {
  min-height: 520px;
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 44px;
  overflow: hidden;
  padding: 64px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 200, 69, .25), transparent 28%),
    linear-gradient(135deg, #0b261f, #041511 58%, #1b1204);
  box-shadow: 0 34px 90px rgba(5, 31, 24, .18);
}
.prize-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 70%);
}
.prize-copy,
.prize-visual {
  position: relative;
  z-index: 2;
}
.prize-copy h2 {
  max-width: 600px;
}
.prize-copy h2 em {
  color: var(--gold);
  font-style: normal;
  text-shadow: 0 0 24px rgba(255, 200, 69, .24);
}
.prize-copy p {
  max-width: 540px;
  color: #b2c8bf;
}
.prize-copy .button {
  width: fit-content;
  margin-top: 30px;
}
.prize-note {
  display: block;
  max-width: 520px;
  margin-top: 15px;
  color: #7f9b90;
  font-size: 9px;
  line-height: 1.55;
}
.prize-visual {
  min-height: 380px;
  display: grid;
  place-items: center;
}
.gift-card {
  width: min(100%, 430px);
  min-height: 230px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  color: #2b1600;
  background:
    radial-gradient(circle at 85% 18%, rgba(255,255,255,.55), transparent 22%),
    linear-gradient(135deg, #ffe886, #ffc53b 48%, #ff9630);
  box-shadow: 0 28px 70px rgba(255, 169, 45, .25);
  transform: rotate(-4deg);
}
.gift-card::before,
.gift-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
}
.gift-card::before {
  width: 220px;
  height: 220px;
  right: -110px;
  bottom: -110px;
}
.gift-card::after {
  width: 72px;
  height: 72px;
  right: 26px;
  top: 26px;
  box-shadow: -42px 46px 0 rgba(255,255,255,.12);
}
.gift-card-label {
  width: fit-content;
  position: relative;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(43, 22, 0, .1);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.gift-card strong {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  font-size: clamp(64px, 8vw, 104px);
  line-height: .86;
  letter-spacing: -.08em;
  font-weight: 900;
}
.gift-card b {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-size: 24px;
  letter-spacing: .18em;
}
.gift-card small {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 900;
}
.streak-card {
  width: min(100%, 390px);
  position: relative;
  z-index: 3;
  margin-top: -36px;
  margin-left: 95px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(4, 23, 19, .78);
  box-shadow: 0 22px 52px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.streak-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.streak-head b {
  font-size: 14px;
}
.streak-head span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #2b1600;
  background: var(--gold);
  font-size: 10px;
  font-weight: 900;
}
.streak-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}
.streak-days i {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #061916;
  background: var(--green);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}
.streak-days i:last-child {
  background: linear-gradient(135deg, #ffe27a, #ff9f2f);
}
.streak-card p {
  margin: 15px 0 0;
  color: #a9c0b8;
  font-size: 11px;
  font-weight: 800;
}

.app-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(49,235,136,.12), transparent 28%),
    #f8faf8;
}
.app-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 78px;
}
.phone-showcase {
  min-height: 590px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 45%, rgba(52, 238, 143, .2), transparent 33%),
    linear-gradient(145deg, #071f1a, #031310);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.phone-showcase::before {
  content: "";
  position: absolute;
  inset: -45%;
  background-image: conic-gradient(from 120deg, transparent, rgba(49,235,136,.2), transparent 32%);
  animation: spin 11s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.phone-shell {
  width: 282px;
  min-height: 535px;
  position: relative;
  z-index: 2;
  padding: 19px;
  border: 8px solid #111f1c;
  border-radius: 38px;
  color: #fff;
  background: linear-gradient(180deg, #06221d, #041511);
  box-shadow: 0 30px 70px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(-2deg);
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d8eee5;
  font-size: 10px;
  font-weight: 900;
}
.phone-top i {
  width: 78px;
  height: 14px;
  border-radius: 999px;
  background: #0b0f0e;
}
.battery-ring {
  width: 188px;
  height: 188px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 34px auto 0;
}
.battery-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.battery-ring circle {
  fill: none;
  stroke: rgba(255,255,255,.08);
  stroke-width: 13;
}
.battery-ring .ring-progress {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-dasharray: 452;
  stroke-dashoffset: 82;
  filter: drop-shadow(0 0 12px rgba(49,235,136,.52));
}
.battery-ring div {
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,235,136,.21), rgba(49,235,136,.04));
}
.battery-ring strong {
  color: var(--green);
  font-size: 40px;
  letter-spacing: -.06em;
}
.battery-ring small {
  margin-top: 4px;
  color: #9cb4ab;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.charge-wave {
  height: 66px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 18px 4px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}
.charge-wave i {
  flex: 1;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #77f8b7, #1dd378);
  animation: wave 1.2s ease-in-out infinite alternate;
}
.charge-wave i:nth-child(2) { height: 38px; animation-delay: .15s; }
.charge-wave i:nth-child(3) { height: 28px; animation-delay: .28s; }
@keyframes wave { to { transform: scaleY(.55); opacity: .75; } }
.phone-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.phone-actions span {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  font-size: 18px;
}
.phone-actions b {
  color: #d9eee6;
  font-size: 8px;
}
.mini-task {
  min-height: 76px;
  margin-top: 13px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(49,235,136,.18), rgba(49,217,229,.1));
}
.mini-task p {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mini-task b { font-size: 12px; }
.mini-task small {
  max-width: 140px;
  margin-top: 5px;
  color: #96aea5;
  font-size: 8px;
  line-height: 1.45;
}
.mini-task button {
  width: 49px;
  height: 39px;
  border: 0;
  border-radius: 13px;
  color: #061916;
  background: var(--gold);
  font-weight: 900;
}
.app-copy { padding: 12px 0; }
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 20px;
  border: 1px solid #e0e9e5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 35, 28, .045);
}
.feature-list i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #0a6d46;
  background: var(--green-soft);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}
.feature-list h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -.035em;
}
.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.rewards-section { background: #fff; }
.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reward-card {
  min-height: 290px;
  position: relative;
  overflow: hidden;
  padding: 31px;
  border: 1px solid #e1ebe6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 9px 32px rgba(5, 35, 27, .045);
}
.reward-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -75px;
  border-radius: 50%;
  background: rgba(49,235,136,.11);
}
.reward-main {
  min-height: 390px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 35px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 40%, rgba(255,200,69,.22), transparent 28%),
    linear-gradient(135deg, #09261f, #041713);
}
.reward-main::after { background: rgba(255,200,69,.12); }
.card-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255,255,255,.06);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.reward-card h3 {
  margin: 0 0 13px;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -.045em;
}
.reward-main h3 {
  max-width: 500px;
  font-size: clamp(33px, 4vw, 50px);
}
.reward-card p {
  max-width: 520px;
  margin: 0;
  color: #60756e;
  font-size: 13px;
  line-height: 1.7;
}
.reward-main p { color: #a9c0b8; }
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.calendar-card {
  width: min(100%, 470px);
  margin-left: auto;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 25px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(49,235,136,.05);
  backdrop-filter: blur(14px);
}
.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.calendar-head b { font-size: 15px; }
.calendar-head span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #061916;
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
}
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.days span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #82a096;
  background: rgba(255,255,255,.05);
  font-size: 13px;
  font-weight: 900;
}
.days .done {
  color: #061916;
  background: linear-gradient(135deg, #60f4a8, #25d87c);
}
.days .gift {
  color: #061916;
  background: linear-gradient(135deg, #ffdc6c, #ff9f2f);
  box-shadow: 0 0 24px rgba(255,200,69,.22);
}
.progress-line {
  height: 10px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.progress-line i {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.reward-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 19px;
  background: #fff5dc;
  font-size: 27px;
}
.reward-icon.green { background: #e4fbef; }
.reward-icon.blue { background: #e1fbfd; }

.loop-section {
  padding-top: 0;
  background: #fff;
}
.loop-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  padding: 58px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(49,217,229,.18), transparent 26%),
    linear-gradient(135deg, #08241d, #031410);
}
.loop-copy p { color: #a8bdb5; }
.loop-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.loop-steps div {
  min-height: 168px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}
.loop-steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  color: #061916;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.loop-steps b {
  margin-top: 28px;
  font-size: 18px;
  letter-spacing: -.04em;
}
.loop-steps small {
  margin-top: 5px;
  color: #8aa59a;
  font-size: 9px;
  font-weight: 800;
}

.mexico-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(255,200,69,.12), transparent 28%),
    #f7faf8;
}
.mexico-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  gap: 70px;
}
.local-points {
  display: grid;
  gap: 13px;
  margin-top: 32px;
}
.local-points span {
  padding: 19px 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e9e5;
  border-radius: 18px;
  background: #fff;
}
.local-points b {
  font-size: 14px;
  letter-spacing: -.025em;
}
.local-points small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.mexico-panel {
  min-height: 470px;
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 48px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #08251f, #031410);
  box-shadow: var(--shadow);
}
.mexico-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 22px 22px;
}
.notification-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.065);
  backdrop-filter: blur(12px);
}
.notification-card:nth-child(2) { transform: translateX(28px); }
.notification-card span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 45px;
  border-radius: 15px;
  background: rgba(49,235,136,.16);
}
.notification-card.gold span { background: rgba(255,200,69,.2); }
.notification-card p {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.notification-card b {
  font-size: 14px;
  letter-spacing: -.025em;
}
.notification-card small {
  margin-top: 4px;
  color: #9fb5ad;
  font-size: 10px;
}

.faq-section { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 76px;
}
.faq-intro h2 { font-size: clamp(36px, 3.8vw, 48px); }
.faq-list {
  border-top: 1px solid #dbe5e0;
}
details {
  border-bottom: 1px solid #dbe5e0;
}
summary {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 900;
}
summary::-webkit-details-marker { display: none; }
summary span {
  color: var(--green-2);
  font-size: 20px;
  transition: transform .2s ease;
}
details[open] summary span { transform: rotate(45deg); }
details p {
  max-width: 720px;
  margin: -5px 0 24px;
  color: #667a73;
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 98px 0;
  color: #fff;
  background: #041713;
  text-align: center;
}
.final-glow {
  position: absolute;
  width: 520px;
  height: 360px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(49,235,136,.18);
  filter: blur(100px);
}
.final-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 19px;
  background: linear-gradient(135deg, var(--green), #22cc78);
  box-shadow: 0 0 35px rgba(49,235,136,.26);
  font-size: 24px;
}
.final-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
}
.final-cta p {
  max-width: 560px;
  margin: 0 0 28px;
  color: #a8bdb5;
  font-size: 15px;
  line-height: 1.7;
}
.final-cta small {
  max-width: 610px;
  margin-top: 18px;
  color: #6c887d;
  font-size: 9px;
  line-height: 1.5;
}

footer {
  padding: 34px 0;
  color: #789086;
  background: #03110e;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}
.footer-brand { font-size: 13px; }
.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
}
.footer-brand svg { width: 24px; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: #8fa39b;
  font-size: 10px;
  font-weight: 800;
}
.footer-grid p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 9px;
}

.floating-download {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  min-width: 222px;
  min-height: 64px;
  padding: 9px 15px 9px 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  color: #fff;
  background: rgba(4, 27, 23, .94);
  box-shadow: 0 18px 55px rgba(2, 19, 15, .32), 0 0 0 5px rgba(49,235,136,.09);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 23px 62px rgba(2, 19, 15, .38), 0 0 0 6px rgba(49,235,136,.13);
}
.floating-download-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #061916;
  background: linear-gradient(135deg, #5ff6a8, #22d57a);
}
.floating-download-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-download-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.floating-download-copy small {
  color: #8db2a5;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .11em;
}
.floating-download-copy b {
  margin-top: 4px;
  font-size: 13px;
}
.floating-download-arrow {
  margin-left: auto;
  color: var(--green);
  font-size: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 48% 52%;
    gap: 18px;
  }
  .hero-image-card {
    width: 55vw;
    height: 500px;
  }
  .app-grid,
  .mexico-grid {
    gap: 48px;
  }
  .loop-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links { gap: 16px; }
  .nav-links > a:not(.button) { display: none; }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    padding: 82px 0 26px;
    text-align: center;
  }
  .hero h1,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-card {
    width: min(100%, 720px);
    height: 465px;
    margin: 0 auto 55px;
  }
  .quick-grid,
  .performance-grid,
  .reward-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-grid div:nth-child(3) {
    border-left: 1px solid #e6eee9;
  }
  .app-grid,
  .performance-main,
  .prize-card,
  .reward-main,
  .mexico-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .app-copy,
  .mexico-copy {
    text-align: left;
  }
  .calendar-card {
    margin-left: 0;
  }
  .boost-panel {
    margin-left: 0;
  }
  .prize-card {
    padding: 48px;
  }
  .prize-visual {
    min-height: 340px;
  }
  .gift-card {
    margin-right: auto;
  }
  .loop-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }
  .shell { width: min(100% - 28px, 560px); }
  .top-strip {
    min-height: 36px;
    font-size: 9px;
    line-height: 1.45;
  }
  .site-header { top: 36px; }
  .nav { height: 66px; }
  .brand {
    font-size: 14px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }
  .brand-mark svg {
    width: 26px;
    height: 26px;
  }
  .menu-button { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(4, 23, 19, .98);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.button) {
    display: block;
    padding: 9px;
  }
  .button {
    width: 100%;
    min-height: 54px;
  }
  .button-small {
    width: auto;
  }
  .hero {
    padding-top: 102px;
  }
  .hero-copy {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 54px;
  }
  .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
  }
  .hero h1 {
    max-width: 410px;
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1.08;
    letter-spacing: -.045em;
  }
  .hero-lead {
    max-width: 390px;
    font-size: 14px;
    line-height: 1.7;
  }
  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }
  .hero-proof {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .hero-proof span {
    min-height: 64px;
    padding: 12px 10px;
  }
  .hero-proof b { font-size: 17px; }
  .hero-proof small { font-size: 7px; }
  .hero-image-card {
    height: clamp(285px, 68vw, 360px);
    border-radius: 26px;
  }
  .float-badge {
    padding: 10px;
    border-radius: 14px;
  }
  .float-badge > span {
    width: 34px;
    height: 34px;
  }
  .float-badge b { font-size: 10px; }
  .badge-streak {
    top: 16px;
    right: 16px;
  }
  .badge-gift {
    left: 16px;
    bottom: 16px;
  }
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .quick-grid div,
  .quick-grid div:last-child,
  .quick-grid div:nth-child(3) {
    border-left: 1px solid #e6eee9;
    border-right: 1px solid #e6eee9;
    border-bottom: 1px solid #e6eee9;
  }
  .section {
    padding: 76px 0;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading h2,
  .prize-copy h2,
  .app-copy h2,
  .loop-copy h2,
  .mexico-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 37px;
  }
  .phone-showcase {
    min-height: 540px;
    border-radius: 24px;
  }
  .phone-shell {
    transform: scale(.92) rotate(-2deg);
  }
  .feature-list article {
    grid-template-columns: 1fr;
  }
  .performance-grid {
    grid-template-columns: 1fr;
  }
  .performance-card {
    min-height: 260px;
    padding: 27px;
  }
  .performance-main {
    min-height: auto;
  }
  .boost-panel {
    padding: 18px;
  }
  .boost-score {
    min-height: 145px;
  }
  .boost-score strong {
    font-size: 68px;
  }
  .boost-bars p {
    grid-template-columns: 86px 1fr;
  }
  .prize-section {
    padding: 66px 0 76px;
  }
  .prize-card {
    padding: 32px 22px;
    border-radius: 24px;
  }
  .prize-copy .button {
    width: 100%;
  }
  .prize-visual {
    min-height: 305px;
  }
  .gift-card {
    min-height: 205px;
    padding: 24px;
    border-radius: 22px;
    transform: rotate(-2deg);
  }
  .gift-card strong {
    font-size: 72px;
  }
  .streak-card {
    width: calc(100% - 8px);
    margin-top: -22px;
    margin-left: 8px;
    padding: 16px;
  }
  .streak-days {
    gap: 5px;
  }
  .streak-days i {
    border-radius: 9px;
    font-size: 10px;
  }
  .reward-grid {
    grid-template-columns: 1fr;
  }
  .reward-card {
    min-height: 260px;
    padding: 27px;
  }
  .reward-main {
    min-height: auto;
  }
  .calendar-card {
    padding: 18px;
  }
  .days {
    gap: 7px;
  }
  .days span {
    border-radius: 12px;
    font-size: 11px;
  }
  .loop-card {
    padding: 34px 24px;
    border-radius: 24px;
  }
  .loop-steps {
    grid-template-columns: 1fr;
  }
  .loop-steps div {
    min-height: 132px;
  }
  .mexico-panel {
    min-height: 385px;
    padding: 24px;
    border-radius: 24px;
  }
  .notification-card:nth-child(2) {
    transform: none;
  }
  .faq-grid {
    gap: 24px;
  }
  summary {
    padding: 21px 0;
    font-size: 13px;
  }
  .final-cta {
    padding: 78px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid p {
    grid-column: auto;
  }
  .floating-download {
    left: 12px;
    right: 12px;
    bottom: 10px;
    min-width: 0;
    min-height: 62px;
    padding: 8px 15px 8px 9px;
    border-radius: 17px;
  }
  .floating-download-copy b {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(100% - 24px, 456px);
  }
  .top-strip {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 9px;
    letter-spacing: .025em;
  }
  .site-header {
    top: 38px;
  }
  .nav {
    height: 62px;
  }
  .brand {
    max-width: calc(100% - 54px);
    gap: 8px;
    font-size: 13px;
  }
  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }
  .brand-mark svg {
    width: 24px;
    height: 24px;
  }
  .menu-button {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
  .nav-links {
    top: 62px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 118px);
    max-height: calc(100dvh - 118px);
    overflow-y: auto;
  }
  .hero {
    padding-top: 100px;
  }
  .hero-grid {
    min-height: 0;
    gap: 0;
  }
  .hero-copy {
    max-width: 348px;
    margin: 0 auto;
    padding: 38px 0 18px;
  }
  .eyebrow {
    gap: 7px;
    margin-bottom: 14px;
    font-size: 8.5px;
    line-height: 1.35;
    letter-spacing: .1em;
  }
  .hero h1 {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
    font-size: clamp(30px, 9.3vw, 36px);
    line-height: 1.08;
    letter-spacing: -.04em;
  }
  .hero-lead {
    max-width: 336px;
    margin-bottom: 22px;
    font-size: 12.5px;
    line-height: 1.58;
  }
  .hero-actions {
    gap: 12px;
  }
  .ghost-link {
    font-size: 12px;
  }
  .button {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 13px;
  }
  .button svg {
    width: 21px;
    height: 21px;
  }
  .hero-proof {
    margin-top: 22px;
    gap: 7px;
  }
  .hero-proof span {
    min-height: 58px;
    padding: 10px 7px;
    border-radius: 13px;
  }
  .hero-proof b {
    font-size: 14px;
  }
  .hero-proof small {
    font-size: 6.5px;
  }
  .hero-image-card {
    width: 100%;
    height: clamp(245px, 72vw, 330px);
    margin-bottom: 34px;
    border-radius: 22px;
  }
  .hero-image-card img {
    object-position: 58% 50%;
  }
  .float-badge {
    max-width: calc(100% - 28px);
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
  }
  .float-badge > span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    font-size: 14px;
  }
  .float-badge b {
    font-size: 9px;
  }
  .float-badge small {
    font-size: 7px;
  }
  .badge-streak {
    top: 12px;
    right: 12px;
  }
  .badge-gift {
    left: 12px;
    bottom: 12px;
  }
  .quick-grid div {
    min-height: 78px;
    padding: 16px;
    grid-template-columns: 38px 1fr;
  }
  .quick-grid span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .quick-grid b {
    font-size: 12px;
  }
  .quick-grid small {
    font-size: 8px;
  }
  .section {
    padding: 58px 0;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading h2,
  .prize-copy h2,
  .app-copy h2,
  .loop-copy h2,
  .mexico-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(29px, 9vw, 34px);
    line-height: 1.09;
    letter-spacing: -.045em;
  }
  .section-heading p,
  .prize-copy p,
  .app-copy > p,
  .loop-copy p,
  .mexico-copy > p,
  .faq-intro > p {
    font-size: 13px;
    line-height: 1.65;
  }
  .performance-card,
  .reward-card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }
  .performance-card h3,
  .reward-card h3 {
    font-size: 21px;
    line-height: 1.2;
  }
  .performance-main h3,
  .reward-main h3 {
    font-size: clamp(27px, 8.5vw, 32px);
  }
  .performance-card p,
  .reward-card p {
    font-size: 12px;
    line-height: 1.62;
  }
  .performance-icon,
  .reward-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 16px;
    font-size: 23px;
  }
  .boost-panel,
  .calendar-card {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
  }
  .boost-score {
    min-height: 124px;
    border-radius: 18px;
  }
  .boost-score strong {
    font-size: 58px;
  }
  .boost-score span {
    font-size: 9px;
  }
  .boost-bars {
    gap: 11px;
    margin-top: 16px;
  }
  .boost-bars p {
    grid-template-columns: 78px 1fr;
    gap: 9px;
  }
  .boost-bars b {
    font-size: 9px;
  }
  .card-label {
    margin-bottom: 14px;
    font-size: 8px;
  }
  .inline-cta {
    margin-top: 18px;
    font-size: 12px;
  }
  .prize-section {
    padding: 54px 0 58px;
  }
  .prize-card {
    gap: 24px;
    padding: 26px 18px;
    border-radius: 22px;
  }
  .prize-copy .button {
    margin-top: 22px;
  }
  .prize-note {
    font-size: 8px;
  }
  .prize-visual {
    min-height: 275px;
  }
  .gift-card {
    min-height: 184px;
    padding: 20px;
  }
  .gift-card-label {
    font-size: 8px;
  }
  .gift-card strong {
    font-size: 62px;
  }
  .gift-card b {
    font-size: 18px;
  }
  .gift-card small {
    font-size: 8px;
  }
  .streak-card {
    width: 100%;
    margin-left: 0;
    margin-top: -14px;
    padding: 14px;
    border-radius: 18px;
  }
  .streak-head {
    gap: 9px;
  }
  .streak-head b {
    font-size: 12px;
  }
  .streak-head span {
    padding: 6px 9px;
    font-size: 8px;
  }
  .streak-days,
  .days {
    gap: 5px;
  }
  .streak-days i,
  .days span {
    border-radius: 9px;
    font-size: 9px;
  }
  .calendar-head {
    gap: 10px;
    flex-wrap: wrap;
  }
  .calendar-head b {
    font-size: 13px;
  }
  .calendar-head span {
    font-size: 9px;
  }
  .phone-showcase {
    min-height: 470px;
    border-radius: 22px;
  }
  .phone-shell {
    width: min(270px, 100%);
    min-height: 492px;
    padding: 16px;
    border-width: 7px;
    border-radius: 32px;
    transform: none;
  }
  .battery-ring {
    width: 158px;
    height: 158px;
    margin-top: 24px;
  }
  .battery-ring div {
    width: 112px;
    height: 112px;
  }
  .battery-ring strong {
    font-size: 32px;
  }
  .charge-wave {
    height: 56px;
    margin: 14px 2px;
  }
  .phone-actions span {
    min-height: 54px;
    border-radius: 13px;
    font-size: 15px;
  }
  .mini-task {
    min-height: 68px;
    padding: 12px;
  }
  .mini-task small {
    max-width: 130px;
  }
  .feature-list {
    margin-top: 24px;
  }
  .feature-list article,
  .local-points span {
    padding: 16px;
    border-radius: 15px;
  }
  .loop-card {
    padding: 26px 18px;
    border-radius: 22px;
  }
  .loop-steps div {
    min-height: 112px;
    padding: 15px;
    border-radius: 16px;
  }
  .loop-steps b {
    margin-top: 18px;
  }
  .mexico-panel {
    min-height: auto;
    padding: 18px;
  }
  .notification-card {
    padding: 14px;
    border-radius: 15px;
  }
  .notification-card span {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 13px;
  }
  .faq-section {
    padding-bottom: 54px;
  }
  summary {
    font-size: 12.5px;
    line-height: 1.35;
  }
  details p {
    font-size: 12px;
    line-height: 1.65;
  }
  .final-cta {
    padding: 62px 0 72px;
  }
  .footer-links {
    gap: 14px;
  }
  .floating-download {
    bottom: calc(10px + env(safe-area-inset-bottom));
    min-height: 58px;
    gap: 9px;
    padding: 7px 12px 7px 8px;
  }
  .floating-download-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }
  .floating-download-copy small {
    font-size: 6.5px;
  }
  .floating-download-copy b {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(100% - 20px, 360px);
  }
  .top-strip {
    font-size: 8px;
  }
  .hero h1 {
    max-width: 310px;
    font-size: 28px;
  }
  .hero-lead {
    max-width: 306px;
    font-size: 12px;
  }
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .hero-proof span {
    min-height: 52px;
  }
  .hero-image-card {
    height: 238px;
  }
  .badge-streak {
    display: none;
  }
  .section-heading h2,
  .prize-copy h2,
  .app-copy h2,
  .loop-copy h2,
  .mexico-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 28px;
  }
  .boost-bars p {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .phone-showcase {
    min-height: 450px;
  }
  .phone-shell {
    width: 252px;
    min-height: 470px;
  }
  .gift-card strong {
    font-size: 54px;
  }
  .floating-download-arrow {
    display: none;
  }
}

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