/* ============================================================================
   Butelkuj — product site
   "Forest Ether" design system, translated from
   "Design System - React Native.html" into plain CSS.
   ============================================================================ */

/* --- Design tokens (mirrors the T object in the design system) ------------- */
:root {
  /* Primary */
  --lime: #2FD865;
  --lime-dark: #25B553;
  /* Forest */
  --green: #063B1E;
  --green-mid: #0F5D35;
  --green-soft: #E0F7E8;
  --green-tint: #F1FBF4;
  /* Neutral */
  --white: #FFFFFF;
  --cream: #F8F6F0;
  --line: #EFEFEB;
  --line-dark: #D8D8D0;
  --doc-bg: #ECEAE4;
  /* Ink (text) */
  --ink: #0C1510;
  --ink-70: rgba(12, 21, 16, 0.70);
  --ink-50: rgba(12, 21, 16, 0.50);
  --ink-30: rgba(12, 21, 16, 0.30);
  /* Accents */
  --warning: #F59E0B;
  --warning-soft: #FEF3E2;
  --info: #3B5BDB;
  --info-soft: #EEF2FF;

  --font: 'Nunito', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-card: 24px;
  --r-btn: 28px;
  --r-btn-sm: 22px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 16px 36px rgba(6, 59, 30, 0.08);
  --shadow-pop: 0 24px 60px rgba(6, 59, 30, 0.22);

  /* Layout */
  --maxw: 1120px;
  --gutter: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
  border-radius: 6px;
}

::selection { background: var(--lime); color: var(--green); }

/* --- Skip link --------------------------------------------------------------*/
.skip-link {
  position: absolute;
  top: -48px; left: 16px;
  z-index: 100;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 0 0 14px 14px;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* --- Typography scale (from the design system) ----------------------------- */
h1, h2, h3 { color: var(--green); font-weight: 900; line-height: 1.05; }
h1 { font-size: clamp(38px, 6.4vw, 60px); letter-spacing: -2.2px; }
h2 { font-size: clamp(26px, 4vw, 36px); letter-spacing: -1px; }
h3 { font-size: 18px; letter-spacing: -0.4px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--lime-dark);
}

/* --- Layout helpers -------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 96px 0; position: relative; }

.section-head { max-width: 52ch; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 14px 0 14px; }
.section-head p { font-size: 17px; font-weight: 600; color: var(--ink-70); }

/* --- Header ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 246, 240, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(6, 59, 30, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(47, 216, 101, 0.35);
}
/* When the mark is the real logo image, it brings its own shape */
img.brand__mark {
  background: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(47, 216, 101, 0.35));
}
.brand__name { font-size: 21px; font-weight: 900; letter-spacing: -0.5px; color: var(--green); }

.site-nav { display: flex; gap: 4px; margin: 0 auto; }
.site-nav a {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink-70);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color 0.15s ease, background 0.15s ease;
}
.site-nav a:hover { color: var(--green); background: var(--green-soft); }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.site-nav + .header-actions { margin-left: 0; }

/* --- Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  border: none;
  border-radius: var(--r-btn);
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--sm { height: 44px; border-radius: var(--r-btn-sm); font-size: 14px; padding: 0 18px; }
.btn--primary {
  background: var(--lime);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(47, 216, 101, 0.35);
}
.btn--primary:hover { background: var(--lime-dark); box-shadow: 0 12px 28px rgba(47, 216, 101, 0.45); }
.btn--dark { background: var(--ink); color: var(--white); }

/* --- Chip (pill) ----------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--green-soft);
  color: var(--green-mid);
  font-size: 13px;
  font-weight: 800;
}
.chip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 216, 101, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(47, 216, 101, 0); }
}

/* --- Store badges ------------------------------------------------------------*/
.badges { display: flex; flex-wrap: wrap; gap: 14px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 22px 13px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 18px;
  min-width: 196px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.badge:hover {
  transform: translateY(-3px);
  background: #16241B;
  box-shadow: 0 18px 40px rgba(6, 59, 30, 0.25), 0 0 0 3px rgba(47, 216, 101, 0.25);
}
.badge:active { transform: translateY(-1px); }
.badge__icon { flex-shrink: 0; }
.badge__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.badge__top { font-size: 11px; font-weight: 700; letter-spacing: 0.3px; color: rgba(255, 255, 255, 0.65); }
.badge__store { font-size: 18px; font-weight: 800; letter-spacing: -0.2px; }

/* Light badges (used on the dark CTA band) */
.badge--light { background: var(--white); color: var(--ink); border-color: transparent; }
.badge--light:hover { background: var(--cream); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(47, 216, 101, 0.4); }
.badge--light .badge__top { color: var(--ink-50); }

/* --- Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 84px 0 108px;
  overflow: clip;
}

/* Soft floating orbs behind the hero */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.orb--lime {
  width: 480px; height: 480px;
  top: -140px; right: -120px;
  background: radial-gradient(circle, rgba(47, 216, 101, 0.22), transparent 65%);
  animation: drift 14s ease-in-out infinite alternate;
}
.orb--green {
  width: 420px; height: 420px;
  bottom: -180px; left: -160px;
  background: radial-gradient(circle, rgba(15, 93, 53, 0.14), transparent 65%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 30px) scale(1.08); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.hero__title { margin: 20px 0 20px; max-width: 13ch; }
.hero__title .accent {
  /* marker-style highlight that survives line wrapping */
  background-image: linear-gradient(rgba(47, 216, 101, 0.35), rgba(47, 216, 101, 0.35));
  background-size: 100% 32%;
  background-position: 0 86%;
  background-repeat: no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 4px;
  margin: 0 -4px;
}
.hero__lead {
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 600;
  color: var(--ink-70);
  max-width: 38ch;
}
.hero__cta { margin-top: 32px; }
.hero__cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-50);
  margin-top: 16px;
}
.hero__cta-note svg { flex-shrink: 0; }

/* --- Coming soon card ------------------------------------------------------ */
.coming-soon {
  margin-top: 32px;
  max-width: 42ch;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}
.coming-soon__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.coming-soon__title svg { flex-shrink: 0; }
.coming-soon__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-70);
  margin-top: 8px;
}
.coming-soon__stores { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.coming-soon__store {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--cream);
  color: var(--ink-70);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}

/* --- Phone mockup ------------------------------------------------------------*/
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__visual::before {
  /* glow disc behind the phone */
  content: "";
  position: absolute;
  inset: 8% 4%;
  background: radial-gradient(ellipse at 50% 42%, rgba(47, 216, 101, 0.3), rgba(15, 93, 53, 0.08) 55%, transparent 75%);
  filter: blur(30px);
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(320px, 84vw);
  border-radius: 46px;
  background: var(--ink);
  padding: 10px;
  box-shadow:
    0 50px 100px -20px rgba(6, 59, 30, 0.35),
    0 30px 60px -30px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(0.4deg); }
  50% { transform: translateY(-12px) rotate(-0.4deg); }
}

.phone__screen {
  background: var(--white);
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__notch {
  width: 108px; height: 26px;
  background: var(--ink);
  border-radius: 999px;
  margin: 10px auto 4px;
}
/* Real app screenshot filling the screen */
/* <picture> wraps the shot; keep it transparent to the flex column layout */
.phone__screen > picture { display: block; width: 100%; }
.phone__shot {
  width: 100%;
  height: auto;
  border-radius: 0 0 38px 38px;
}
.phone__body { padding: 10px 16px 14px; display: flex; flex-direction: column; gap: 12px; }

.phone__greeting { font-size: 14px; font-weight: 800; color: var(--ink-70); padding: 2px 4px 0; }

.balance-card {
  position: relative;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 22px;
  padding: 18px 18px 16px;
  color: var(--white);
  overflow: hidden;
}
.balance-card::before {
  content: "";
  position: absolute;
  top: -46px; right: -46px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.14;
}
.balance-card__label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.balance-card__amount { font-size: 36px; font-weight: 900; letter-spacing: -1.4px; line-height: 1; }
.balance-card__amount span { font-size: 19px; font-weight: 600; opacity: 0.55; margin-left: 3px; letter-spacing: 0; }
.balance-card__trend {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--lime);
  background: rgba(47, 216, 101, 0.14);
  border-radius: 999px;
  padding: 4px 10px;
}

.phone__section-label {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--ink-50);
  padding: 4px 4px 0;
}

.mini-row {
  display: flex; align-items: center; gap: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px 13px;
}
.mini-row__icon {
  width: 36px; height: 36px; border-radius: 11px;
  background: var(--green-soft);
  color: var(--green-mid);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mini-row__label { font-size: 13.5px; font-weight: 800; color: var(--ink); }
.mini-row__meta { font-size: 11px; font-weight: 600; color: var(--ink-50); }
.mini-row__amount { margin-left: auto; font-size: 13.5px; font-weight: 900; color: var(--lime-dark); white-space: nowrap; }

.phone__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--lime);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 900;
  border-radius: 999px;
  padding: 13px;
  margin-top: 2px;
  box-shadow: 0 8px 18px rgba(47, 216, 101, 0.35);
}

.phone__tabbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 11px 8px 16px;
  margin-top: 2px;
}
.phone__tab { color: var(--ink-30); }
.phone__tab.is-active { color: var(--green); }

/* Floating notification chips around the phone */
.float-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 11px 16px 11px 12px;
  box-shadow: var(--shadow-pop);
}
.float-chip__icon {
  width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-chip__icon--lime { background: var(--green-soft); color: var(--green-mid); }
.float-chip__icon--green { background: var(--lime); color: var(--white); }
.float-chip__title { font-size: 13.5px; font-weight: 900; color: var(--ink); white-space: nowrap; }
.float-chip__sub { font-size: 11.5px; font-weight: 700; color: var(--ink-50); white-space: nowrap; }

/* Anchored just outside the phone edges (phone half-width = 160px) */
.float-chip--courier {
  top: 18%;
  right: calc(50% + 138px);
  animation: chipFloatA 6s ease-in-out infinite;
}
.float-chip--payout {
  bottom: 20%;
  left: calc(50% + 138px);
  animation: chipFloatB 6.8s ease-in-out infinite;
}
@keyframes chipFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes chipFloatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* --- Stats band -------------------------------------------------------------*/
.stats {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: -160px; left: 12%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 216, 101, 0.18), transparent 70%);
  pointer-events: none;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px 24px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.stat { text-align: center; }
.stat__value {
  font-size: clamp(34px, 4.6vw, 48px);
  font-weight: 900;
  letter-spacing: -1.6px;
  color: var(--lime);
  line-height: 1;
}
.stat__label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

/* --- How it works ---------------------------------------------------------- */
.section--how { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* 5 cards: 3 on the first row, 2 centered on the second */
.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step { grid-column: span 2; }
.step:nth-child(4) { grid-column: 2 / span 2; }
.step:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 980px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step, .step:nth-child(4), .step:nth-child(5) { grid-column: auto; }
  .step:nth-child(5) { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(5) { grid-column: auto; }
}
.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(47, 216, 101, 0.4);
}
.step__num {
  counter-increment: step;
  position: absolute;
  top: -14px; right: 6px;
  font-size: 84px;
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--green);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step:nth-child(odd) .step__icon { background: var(--lime); color: var(--white); box-shadow: 0 8px 18px rgba(47, 216, 101, 0.3); }
.step__title { font-size: 17px; font-weight: 900; color: var(--ink); margin-bottom: 7px; }
.step__desc { font-size: 14.5px; font-weight: 600; color: var(--ink-70); }

/* --- Values row ------------------------------------------------------------ */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.value__icon {
  width: 50px; height: 50px; border-radius: 15px;
  background: var(--lime); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(47, 216, 101, 0.3);
}
.value__title { font-size: 17px; font-weight: 900; color: var(--ink); margin-bottom: 6px; }
.value__desc { font-size: 14.5px; font-weight: 600; color: var(--ink-70); }

/* --- FAQ --------------------------------------------------------------------*/
.section--faq { background: var(--white); border-top: 1px solid var(--line); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.faq-item[open] { border-color: rgba(47, 216, 101, 0.5); box-shadow: var(--shadow-card); background: var(--white); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-item__toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item[open] summary .faq-item__toggle {
  transform: rotate(45deg);
  background: var(--lime);
  color: var(--white);
}
.faq-item__answer {
  padding: 0 22px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-70);
  line-height: 1.65;
  max-width: 60ch;
}

/* --- CTA band ----------------------------------------------------------------*/
.cta-band { padding: 0 0 96px; }
.cta-band__panel {
  position: relative;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  border-radius: 36px;
  padding: clamp(48px, 7vw, 84px) clamp(24px, 6vw, 72px);
  text-align: center;
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}
.cta-band__panel::before,
.cta-band__panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-band__panel::before {
  width: 420px; height: 420px;
  top: -220px; right: -120px;
  background: radial-gradient(circle, rgba(47, 216, 101, 0.35), transparent 70%);
}
.cta-band__panel::after {
  width: 340px; height: 340px;
  bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(47, 216, 101, 0.2), transparent 70%);
}
.cta-band__title {
  color: var(--white);
  font-size: clamp(28px, 4.6vw, 44px);
  letter-spacing: -1.4px;
  max-width: 22ch;
  margin: 0 auto;
}
.cta-band__lead {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  max-width: 46ch;
  margin: 16px auto 0;
}
.cta-band__badges { justify-content: center; margin-top: 36px; position: relative; z-index: 1; }

/* --- Footer ---------------------------------------------------------------- */
.site-footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 44px;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.site-footer .brand__name { color: var(--white); }
.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a { font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, 0.72); transition: color 0.15s ease; }
.footer__links a:hover { color: var(--lime); }
.footer__tagline { font-size: 15px; font-weight: 800; color: var(--white); }
.footer__copy { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.45); }

/* --- Legal pages ----------------------------------------------------------- */
.legal { padding: 56px 0 88px; }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal__eyebrow { margin-bottom: 12px; }
.legal h1 { font-size: clamp(30px, 5vw, 42px); letter-spacing: -1.2px; margin-bottom: 8px; }
.legal__updated { font-size: 13px; font-weight: 700; color: var(--ink-50); margin-bottom: 26px; }
.legal__disclaimer {
  background: var(--warning-soft);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #92400E;
  font-style: italic;
  margin-bottom: 36px;
}
.legal__body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(24px, 5vw, 44px);
}
.legal__body h2 { font-size: 20px; letter-spacing: -0.4px; margin: 32px 0 12px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 16px; letter-spacing: -0.2px; margin: 22px 0 8px; }
.legal__body p, .legal__body li { font-size: 15px; font-weight: 600; color: var(--ink-70); line-height: 1.7; }
.legal__body p { margin-bottom: 12px; }
.legal__body ul { margin: 0 0 16px 20px; }
.legal__body li { margin-bottom: 6px; }
.legal__body strong { color: var(--ink); font-weight: 800; }
.legal__body a { color: var(--green-mid); font-weight: 800; text-decoration: underline; }

.back-link {
  display: flex; width: max-content; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 800; color: var(--ink-70);
  margin-bottom: 26px;
  transition: color 0.15s ease;
}
.back-link:hover { color: var(--green); }

/* --- Toast (store badge fallback while links are not live) ------------------ */
.toast-wrap {
  position: fixed;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: min(380px, calc(100vw - 32px));
  pointer-events: none;
}
.toast {
  background: var(--ink);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  animation: toastIn 0.25s ease;
}
@keyframes toastIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.toast__icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(47, 216, 101, 0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.toast__title { font-size: 15px; font-weight: 800; color: var(--white); }
.toast__body { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.6); }

/* --- Scroll reveal ------------------------------------------------------------*/
.reveal {
  opacity: 0;
  transform: translateY(26px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--d, 0ms);
}
/* If JS never runs, never hide content */
.no-js .reveal { opacity: 1; transform: none; }

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 960px) {
  .site-nav { display: none; }
}
@media (max-width: 880px) {
  .hero { padding: 48px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__title, .hero__lead { max-width: none; }
  .section { padding: 72px 0; }
  .float-chip--courier { right: auto; left: 4px; top: -20px; }
  .float-chip--payout { left: auto; right: 4px; bottom: -16px; }
}
@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .site-header .container { height: 66px; }
  .brand__name { font-size: 18px; }
  .header-actions .btn { display: none; }
  .badge { min-width: 0; flex: 1 1 156px; padding: 11px 16px 11px 14px; }
  .badge__store { font-size: 16px; }
  .float-chip { padding: 9px 13px 9px 10px; border-radius: 15px; }
  .float-chip__icon { width: 32px; height: 32px; }
  .float-chip__title { font-size: 12px; }
  .float-chip__sub { font-size: 10.5px; }
  .cta-band__panel { border-radius: 28px; }
  .site-footer .container { flex-direction: column; align-items: flex-start; }
}

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