/* ============ Charji — site vitrine ============ */
:root {
  --green: #01f27c;
  --green-strong: #00d96e;
  --emerald: #10b981;
  --deep: #047857;
  --ink: #062d1f;
  --ink-soft: #23443a;
  --muted: #5b7268;
  --bg: #ffffff;
  --mint: #eafcf3;
  --mint-2: #d8f8e8;
  --line: #e2f0e9;
  --shadow: 0 20px 60px rgba(6, 45, 31, 0.12);
  --radius: 22px;
  --font: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; }

.grad-text {
  background: linear-gradient(100deg, var(--deep), var(--emerald) 45%, var(--green-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  font-size: 0.98rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  will-change: transform;
}
.btn--lg { padding: 0.95rem 1.7rem; font-size: 1.05rem; }
.btn--solid {
  background: linear-gradient(120deg, var(--green-strong), var(--emerald));
  color: #fff;
  box-shadow: 0 10px 26px rgba(1, 217, 110, 0.35);
}
.btn--solid:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 34px rgba(1, 217, 110, 0.45); }
.btn--ghost {
  background: #fff;
  color: var(--deep);
  border: 2px solid var(--mint-2);
}
.btn--ghost:hover { border-color: var(--green-strong); transform: translateY(-2px); }
.btn--invert { background: #fff; color: var(--deep); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); }
.btn--invert:hover { transform: translateY(-2px) scale(1.02); }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--mint);
  border: 1px solid var(--mint-2);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.kicker--light { background: rgba(1, 242, 124, 0.12); border-color: rgba(1, 242, 124, 0.25); color: var(--green); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(6, 45, 31, 0.08);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.18rem; }
.nav__logo { border-radius: 11px; box-shadow: 0 4px 14px rgba(1, 217, 110, 0.35); }
.nav__tld { color: var(--emerald); }
/* Par défaut la nav flotte sur le hero sombre -> texte clair ; une fois
   scrollée (fond blanc), on repasse en encre. */
.nav__name { color: #fff; transition: color 0.25s ease; }
.nav__name .nav__tld { color: var(--green); }
.nav.is-scrolled .nav__name { color: var(--ink); }
.nav.is-scrolled .nav__name .nav__tld { color: var(--emerald); }
.nav__links { display: flex; gap: 1.5rem; margin-left: auto; font-weight: 600; font-size: 0.95rem; color: rgba(255, 255, 255, 0.88); transition: color 0.25s ease; }
.nav.is-scrolled .nav__links { color: var(--ink-soft); }
.nav__links a { position: relative; padding: 0.25rem 0; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--green-strong);
  transition: right 0.25s ease;
}
.nav__links a:hover::after { right: 0; }
.nav__cta { margin-left: 0.4rem; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; margin-left: auto; }
.nav__burger span { display: block; width: 22px; height: 2.5px; background: var(--ink); margin: 4.5px 0; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.4rem 1.4rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 30px rgba(6, 45, 31, 0.12);
  font-weight: 600;
}
.nav__mobile.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 7.2rem 1.2rem 4rem;
  background: linear-gradient(165deg, #04352a 0%, #06503a 45%, #0a7a52 100%);
  color: #fff;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: blobFloat 11s ease-in-out infinite alternate;
}
.hero__blob--a { width: 480px; height: 480px; background: #01f27c; top: -160px; right: -100px; }
.hero__blob--b { width: 380px; height: 380px; background: #0affa0; bottom: -140px; left: -120px; animation-delay: -5s; }
@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-40px, 30px) scale(1.12); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
.hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2.5rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}
.dot-live {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(1, 242, 124, 0.7);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(1, 242, 124, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(1, 242, 124, 0); }
  100% { box-shadow: 0 0 0 0 rgba(1, 242, 124, 0); }
}
.hero__title { font-size: clamp(2.3rem, 5.2vw, 3.9rem); font-weight: 850; }
.hero__title .grad-text {
  background: linear-gradient(100deg, #7dffc0, var(--green) 55%, #b2ffdb);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__sub { margin-top: 1.15rem; max-width: 34rem; font-size: 1.09rem; color: rgba(255, 255, 255, 0.85); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero__actions .btn--ghost { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.hero__actions .btn--ghost:hover { border-color: var(--green); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem; margin-top: 1.9rem; list-style: none; font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); font-weight: 600; }
.hero__badges li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__badges svg { color: var(--green); flex: 0 0 auto; }

.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero__wave svg { width: 100%; height: 64px; }

/* Téléphone mockup */
.hero__device { position: relative; display: flex; justify-content: center; }
.phone {
  width: min(295px, 74vw);
  aspect-ratio: 9 / 18.6;
  background: #0b1512;
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45), inset 0 0 0 2px rgba(255, 255, 255, 0.09);
  animation: phoneFloat 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
}
.phone__notch {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 22px;
  background: #0b1512;
  border-radius: 12px;
  z-index: 5;
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: #e8f4ec;
  display: flex;
  flex-direction: column;
}
.mockmap { position: relative; flex: 1; background: linear-gradient(160deg, #eef7f0, #dcefe2); overflow: hidden; }
.mockmap__road { position: absolute; background: #ffffff; border-radius: 6px; box-shadow: 0 0 0 3px rgba(190, 214, 199, 0.55); }
.mockmap__road--a { width: 14px; top: -10%; bottom: -10%; left: 26%; transform: rotate(9deg); }
.mockmap__road--b { height: 12px; left: -10%; right: -10%; top: 38%; transform: rotate(-7deg); }
.mockmap__road--c { height: 9px; left: -10%; right: -10%; top: 72%; transform: rotate(4deg); }
.mockmap__park { position: absolute; width: 34%; height: 20%; right: 6%; top: 8%; background: #cdeed8; border-radius: 14px; }
.mockmap__block { position: absolute; background: #dbe9df; border-radius: 8px; }
.mockmap__block--1 { width: 22%; height: 12%; left: 8%; top: 12%; }
.mockmap__block--2 { width: 26%; height: 14%; left: 52%; top: 52%; }
.mockmap__block--3 { width: 18%; height: 10%; left: 10%; top: 56%; }
.mockmap__route { position: absolute; inset: 0; width: 100%; height: 100%; }
.route-line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: routeDraw 4.5s ease-in-out infinite;
  filter: drop-shadow(0 2px 5px rgba(1, 217, 110, 0.5));
}
@keyframes routeDraw {
  0% { stroke-dashoffset: 700; }
  55%, 80% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -700; }
}
.blip {
  position: absolute;
  width: 20px; height: 20px;
  background: var(--green-strong);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.45);
  z-index: 2;
}
.blip__pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--green-strong);
  animation: blipPulse 2.2s ease-out infinite;
}
@keyframes blipPulse {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(2.4); opacity: 0; }
}
.blip--1 { left: 20%; top: 30%; }
.blip--2 { left: 62%; top: 18%; animation-delay: 0.4s; }
.blip--3 { left: 48%; top: 62%; }
.blip--2 .blip__pulse { animation-delay: 0.7s; }
.blip--3 .blip__pulse { animation-delay: 1.3s; }
.blip--dest {
  left: 73%; top: 4.5%;
  width: 16px; height: 16px;
  background: #fff;
  border: 4px solid var(--deep);
}
.car-dot {
  position: absolute;
  left: 13%; bottom: 3%;
  width: 15px; height: 15px;
  background: #2563eb;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 9px rgba(37, 99, 235, 0.5);
  z-index: 2;
}
.phone__sheet {
  background: #fff;
  border-radius: 22px 22px 0 0;
  margin-top: -18px;
  position: relative;
  z-index: 3;
  padding: 0.55rem 0.85rem 1rem;
  box-shadow: 0 -8px 24px rgba(6, 45, 31, 0.14);
}
.phone__pill { display: block; width: 44px; height: 4.5px; background: #d7e5dc; border-radius: 4px; margin: 0 auto 0.6rem; }
.phone__row { display: flex; align-items: center; gap: 0.6rem; }
.phone__ico { border-radius: 9px; }
.phone__txt { flex: 1; min-width: 0; line-height: 1.25; }
.phone__txt b { font-size: 0.82rem; display: block; color: var(--ink); }
.phone__txt small { font-size: 0.68rem; color: var(--muted); }
.tag { display: inline-block; padding: 0.05rem 0.45rem; border-radius: 999px; font-weight: 700; }
.tag--ok { background: var(--mint); color: var(--deep); }
.phone__go {
  background: linear-gradient(120deg, var(--green-strong), var(--emerald));
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(1, 217, 110, 0.4);
}
.chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 0.85rem;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  z-index: 3;
  animation: chipFloat 5.5s ease-in-out infinite;
}
.chip svg { color: var(--green-strong); flex: 0 0 auto; }
.chip__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-strong);
  box-shadow: 0 0 0 3px rgba(1, 217, 110, 0.25);
  flex: 0 0 auto;
}
.chip--a { top: 14%; left: 2%; }
.chip--b { top: 46%; right: 0; animation-delay: -1.8s; }
.chip--c { bottom: 16%; left: 0; animation-delay: -3.4s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* ---------- Stats ---------- */
.stats { padding: 2.6rem 1.2rem 1rem; }
.stats__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  text-align: center;
}
.stat span { color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.stat__num {
  display: block;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 850;
  background: linear-gradient(110deg, var(--deep), var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Sections génériques ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 4.6rem 1.2rem 3.4rem; }
.section__head { text-align: center; max-width: 46rem; margin: 0 auto 2.8rem; }
.section__sub { margin-top: 0.8rem; color: var(--muted); font-size: 1.05rem; }

/* ---------- Cartes fonctionnalités ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: var(--mint-2);
}
.card__ico {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--mint), var(--mint-2));
  color: var(--deep);
  margin-bottom: 1.05rem;
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Bandeau sombre itinéraire ---------- */
.dark {
  background:
    radial-gradient(700px 340px at 85% -10%, rgba(1, 242, 124, 0.16), transparent 60%),
    linear-gradient(150deg, #05231a, #073526);
  color: #fff;
  padding: 4.8rem 1.2rem;
}
.dark__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.dark__copy p { color: rgba(255, 255, 255, 0.82); margin-top: 0.9rem; max-width: 33rem; }
.dark__list { list-style: none; margin: 1.4rem 0 1.9rem; display: grid; gap: 0.65rem; }
.dark__list li { display: flex; gap: 0.7rem; align-items: center; color: rgba(255, 255, 255, 0.9); font-weight: 600; }
.dark__list span {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(1, 242, 124, 0.14);
  color: var(--green);
}

.routecard {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.2rem;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.4);
  max-width: 25rem;
  margin: 0 auto;
  transform: rotate(1.4deg);
  transition: transform 0.3s ease;
}
.routecard:hover { transform: rotate(0deg) scale(1.02); }
.routecard__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.1rem; font-size: 1.02rem; }
.routecard__leg { display: flex; gap: 0.85rem; }
.routecard__leg > div { padding-bottom: 1.05rem; line-height: 1.3; }
.routecard__leg b { font-size: 0.93rem; display: block; }
.routecard__leg small { color: var(--muted); font-size: 0.8rem; }
.routecard__dotline { display: flex; flex-direction: column; align-items: center; }
.rc-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.75rem;
  flex: 0 0 auto;
}
.rc-dot--start { background: var(--mint-2); border: 3px solid var(--emerald); }
.rc-dot--end { background: var(--deep); border: 3px solid var(--mint-2); }
.rc-dot--charge { background: linear-gradient(120deg, var(--green-strong), var(--emerald)); color: #fff; box-shadow: 0 5px 12px rgba(1, 217, 110, 0.45); }
.rc-line { flex: 1; width: 3px; background: linear-gradient(var(--mint-2), var(--emerald)); border-radius: 2px; margin: 3px 0; min-height: 16px; }
.routecard__bar { height: 7px; background: var(--mint); border-radius: 5px; overflow: hidden; margin-top: 0.4rem; }
.routecard__bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--green-strong), var(--emerald));
  animation: chargeBar 3.4s ease-in-out infinite;
}
@keyframes chargeBar {
  0% { width: 12%; }
  60% { width: 86%; }
  100% { width: 12%; }
}

/* ---------- Réseaux ---------- */
.nets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  max-width: 1080px;
  margin: 0 auto;
}
.net {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.net:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.net b { display: block; font-size: 1.05rem; }
.net small { color: var(--muted); line-height: 1.35; display: block; }
.net__badge {
  flex: 0 0 auto;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  font-weight: 850;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-strong), var(--deep));
  box-shadow: 0 8px 20px rgba(1, 217, 110, 0.35);
}
.net__badge--alt { background: linear-gradient(135deg, #0ea5e9, #0369a1); box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3); }
.net__badge--soon { background: linear-gradient(135deg, #94a3b8, #64748b); box-shadow: none; }
.net--soon { border-style: dashed; }

/* ---------- Étapes ---------- */
.steps { max-width: 1180px; margin: 0 auto; padding: 2.4rem 1.2rem 4.4rem; }
.steps__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: linear-gradient(160deg, var(--mint), #fff 62%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.7rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-weight: 850;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(120deg, var(--green-strong), var(--emerald));
  box-shadow: 0 8px 20px rgba(1, 217, 110, 0.4);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ---------- CTA final ---------- */
.cta {
  padding: 3rem 1.2rem 4.6rem;
}
.cta__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  border-radius: 34px;
  padding: 3.6rem 1.6rem 3.2rem;
  background:
    radial-gradient(600px 260px at 20% 0%, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(135deg, #059669, #047857 55%, #04352a);
  box-shadow: 0 34px 80px rgba(4, 120, 87, 0.35);
  position: relative;
  overflow: hidden;
}
.cta__logo { margin: 0 auto 0.6rem; width: 200px; height: auto; }
.cta__inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.cta__inner p { margin: 0.7rem auto 1.7rem; color: rgba(255, 255, 255, 0.86); max-width: 30rem; }
.cta__note { display: block; margin-top: 1.1rem; color: rgba(255, 255, 255, 0.75); font-weight: 600; }
.storebtns { display: flex; justify-content: center; gap: 0.9rem; flex-wrap: wrap; }
.storebtn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #0b1512;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 0.62rem 1.25rem 0.62rem 1rem;
  text-align: left;
  line-height: 1.15;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.storebtn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.45);
}
.storebtn small { display: block; font-size: 0.68rem; color: rgba(255, 255, 255, 0.72); font-weight: 600; }
.storebtn b { font-size: 1.05rem; font-weight: 750; letter-spacing: 0.01em; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 2.2rem 1.2rem; }
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 0.55rem; font-weight: 800; font-size: 1.05rem; }
.footer__brand img { filter: invert(62%) sepia(64%) saturate(2600%) hue-rotate(110deg) brightness(0.95); }
.footer__links { display: flex; gap: 1.4rem; font-weight: 600; color: var(--muted); font-size: 0.93rem; margin-left: auto; }
.footer__links a:hover { color: var(--deep); }
.footer__legal { flex-basis: 100%; color: var(--muted); font-size: 0.85rem; }
.footer__legal a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.footer__legal a:hover { color: var(--deep); text-decoration-color: var(--green-strong); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal--delay { transition-delay: 0.15s; }
.reveal.is-in { opacity: 1; transform: none; }

@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; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__device { margin-top: 1.6rem; }
  .cards, .nets, .steps__list { grid-template-columns: 1fr 1fr; }
  .dark__inner { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(14px); box-shadow: 0 4px 18px rgba(6, 45, 31, 0.07); }
  .nav__name { color: var(--ink); }
  .nav__name .nav__tld { color: var(--emerald); }
  .hero { padding-top: 5.6rem; }
}
@media (max-width: 600px) {
  .cards, .nets, .steps__list { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 1.6rem 0.8rem; }
  .chip--a { left: -2%; }
  .chip--b { right: -2%; }
  .footer__links { margin-left: 0; flex-wrap: wrap; }
}
