:root {
  color-scheme: dark;
  --lenva-green: #22C55E;
  --lenva-cyan: #06B6D4;
  --lenva-blue: #2563EB;
  --lenva-sky: #0EA5E9;
  --lenva-emerald: #10B981;
  --bg-deep: #080A0E;
  --bg-forest-start: #0A1822;
  --bg-forest-end: #050C17;
  --text: #F8FAFC;
  --muted: rgba(203, 213, 225, 0.78);
  --subtitle: rgba(148, 163, 184, 0.92);
  --surface-card: rgba(24, 28, 34, 0.88);
  --surface-elevated: rgba(32, 38, 46, 0.94);
  --border-green: rgba(34, 197, 94, 0.28);
  --glow-green: rgba(34, 197, 94, 0.12);
  --glow-cyan: rgba(6, 182, 212, 0.10);
  --nav-height: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

a { color: var(--lenva-cyan); text-decoration: none; font-weight: 600; }
a:hover { color: var(--lenva-green); text-decoration: underline; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Ambient background ── */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orb-drift 18s ease-in-out infinite;
}

.ambient-orb-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  left: calc(50% - 240px);
  background: radial-gradient(circle, var(--glow-green) 0%, transparent 70%);
}

.ambient-orb-2 {
  width: 360px;
  height: 360px;
  top: 30%;
  right: -80px;
  background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
  animation-delay: -6s;
  animation-duration: 22s;
}

.ambient-orb-3 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -60px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, transparent 70%);
  animation-delay: -12s;
  animation-duration: 20s;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, var(--glow-green), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, var(--glow-cyan), transparent 50%),
    linear-gradient(165deg, var(--bg-deep) 0%, var(--bg-forest-start) 45%, var(--bg-forest-end) 100%);
}

.site-nav,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ── Animations ── */
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.05); }
  66% { transform: translate(-16px, 12px) scale(0.96); }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

.hero-enter {
  animation: hero-enter 0.85s var(--ease-out) both;
}

.hero-enter-d1 { animation-delay: 0.08s; }
.hero-enter-d2 { animation-delay: 0.16s; }
.hero-enter-d3 { animation-delay: 0.24s; }
.hero-enter-d4 { animation-delay: 0.32s; }
.hero-enter-d5 { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .ambient-orb,
  .hero-enter,
  .hero-logo {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(8, 10, 14, 0.65);
  backdrop-filter: blur(20px);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.is-scrolled {
  border-bottom-color: var(--border-green);
  background: rgba(8, 10, 14, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out);
}

.brand:hover {
  text-decoration: none;
  transform: scale(1.02);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.22);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--lenva-green), var(--lenva-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Wordmark Len (blanc) + va (dégradé) — comme l'app */
.lenva-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.lenva-wordmark .len {
  color: rgba(248, 250, 252, 0.92);
}

.lenva-wordmark .va {
  background: linear-gradient(90deg, var(--lenva-green), var(--lenva-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lenva-wordmark--nav {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.lenva-wordmark--hero {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 7vw, 4rem);
}

.lenva-wordmark--footer {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, opacity 0.2s ease;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #04111F;
  background: linear-gradient(135deg, var(--lenva-green), var(--lenva-emerald), var(--lenva-sky));
  background-size: 200% 200%;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.28);
}

.btn-primary:hover {
  color: #04111F;
  box-shadow: 0 14px 40px rgba(34, 197, 94, 0.4);
  animation: shimmer 2.5s linear infinite;
}

.btn-secondary {
  color: var(--text);
  background: var(--surface-elevated);
  border: 1px solid var(--border-green);
}

.btn-secondary:hover { color: var(--text); }

.btn-small { padding: 10px 16px; font-size: 0.9rem; border-radius: 12px; }

.btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Hero ── */
.hero {
  padding: 64px 0 56px;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr min(280px, 34vw);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero-copy .hero-logo {
  margin: 0 0 24px;
}

.hero-copy .hero-tagline {
  margin-bottom: 16px;
}

.hero-copy .hero p {
  margin-left: 0;
  margin-right: 0;
}

.hero-copy .install-zone {
  align-items: flex-start;
}

.hero-copy #install-primary,
.hero-copy #cta-install {
  justify-content: flex-start;
  margin-left: 0;
  margin-right: auto;
}

.hero-copy .hero-pills {
  justify-content: flex-start;
}

.hero-device {
  margin: 0;
  text-align: center;
}

.device-frame {
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.18), rgba(6, 182, 212, 0.12));
  border: 1px solid var(--border-green);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
  animation: float-logo 6s ease-in-out infinite;
}

.device-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.device-frame-sm {
  border-radius: 26px;
  padding: 8px;
}

.device-caption {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--subtitle);
}

/* App gallery */
.app-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.app-shot {
  margin: 0;
  text-align: center;
}

.app-shot figcaption {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lenva-green);
  letter-spacing: 0.04em;
}

.hero-glow {
  display: none;
}

.hero-logo {
  width: min(112px, 26vw);
  height: auto;
  aspect-ratio: 1;
  border-radius: 28px;
  box-shadow:
    0 20px 50px rgba(34, 197, 94, 0.35),
    0 0 0 1px rgba(34, 197, 94, 0.2);
  margin: 0 auto 28px;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
  animation: float-logo 5s ease-in-out infinite;
  animation-delay: 0.9s;
}

.hero-tagline {
  margin: 0 0 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtitle);
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.hero h1 .hero-accent,
.legal-hero h1 .hero-accent {
  display: block;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--lenva-green), var(--lenva-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p {
  margin: 0 auto 32px;
  max-width: 600px;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--subtitle);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.pill:hover {
  border-color: var(--border-green);
  color: var(--lenva-green);
}

/* ── Sections ── */
.section {
  padding: 64px 0;
}

.install-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
}

#install-primary,
#cta-install {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
}

.install-note {
  font-size: 0.88rem;
  color: var(--subtitle);
  min-height: 1.2em;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.store-row.hidden { display: none; }

/* ── Highlights strip ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.highlight-card {
  padding: 22px 18px;
  border-radius: 18px;
  background: var(--surface-card);
  border: 1px solid var(--border-green);
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.45);
}

.highlight-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--lenva-green), var(--lenva-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.section-eyebrow {
  text-align: center;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lenva-green);
}

.section-title {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  margin: 0 auto 44px;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ── Features ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--surface-card);
  border: 1px solid var(--border-green);
  border-radius: 20px;
  padding: 26px 22px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.5);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid var(--border-green);
  color: var(--lenva-green);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ── Steps ── */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--surface-card);
  border: 1px solid var(--border-green);
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.45);
}

.step-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--lenva-green), var(--lenva-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.85;
}

.step-body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
}

.step-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Platforms ── */
.platforms-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 36px;
  border-radius: 24px;
  background: var(--surface-card);
  border: 1px solid var(--border-green);
  overflow: hidden;
  position: relative;
}

.platforms-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.platforms-copy h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  font-weight: 900;
}

.platforms-copy > p {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 420px;
}

.platform-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.platform-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--border-green);
  color: var(--lenva-green);
}

.platform-icon svg {
  width: 18px;
  height: 18px;
}

.platforms-visual {
  display: flex;
  justify-content: center;
}

.platforms-visual .device-frame {
  max-width: 240px;
}

.phone-mock {
  width: 160px;
  height: 280px;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.2), rgba(6, 182, 212, 0.15));
  border: 1px solid var(--border-green);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: float-logo 6s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-screen img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.phone-screen span {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--lenva-green);
}

/* ── CTA ── */
.cta-band {
  margin: 24px 0 56px;
  padding: 48px 32px;
  text-align: center;
  border-radius: 28px;
  background: var(--surface-card);
  border: 1px solid var(--border-green);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 3.5vw, 1.75rem);
  font-weight: 900;
  position: relative;
}

.cta-band > p {
  margin: 0 0 24px;
  color: var(--muted);
  position: relative;
}

.cta-footnote {
  margin: 20px 0 0 !important;
  font-size: 0.8rem !important;
  color: var(--subtitle) !important;
  position: relative;
}

#cta-install {
  position: relative;
  margin: 0 auto;
}

/* ── Footer ── */
.site-footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--border-green);
  text-align: center;
  color: var(--subtitle);
  font-size: 0.88rem;
}

.site-footer p { margin: 8px 0; }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-brand span {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--lenva-green), var(--lenva-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.footer-links a { font-size: 0.88rem; }

/* ── Legal pages (confidentialité) ── */
.legal-page {
  padding: 32px 0 64px;
}

.legal-hero {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  animation: hero-enter 0.75s var(--ease-out) both;
}

.legal-back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--subtitle);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-back:hover {
  color: var(--lenva-green);
  text-decoration: none;
}

.legal-eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lenva-green);
}

.legal-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-intro {
  margin: 0 auto 18px;
  max-width: 520px;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.65;
}

.legal-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  font-size: 0.85rem;
  color: var(--subtitle);
}

.legal-meta-dot {
  opacity: 0.5;
}

.legal-meta-row a {
  font-weight: 600;
}

.legal-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 32px 40px;
  border-radius: 24px;
  background: var(--surface-card);
  border: 1px solid var(--border-green);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  animation: hero-enter 0.75s var(--ease-out) 0.08s both;
}

.legal-card .lead {
  margin: 0 0 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.7;
}

.legal-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.legal-card h2:first-of-type {
  margin-top: 1.25rem;
}

.legal-card h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  padding-left: 12px;
  border-left: 3px solid var(--lenva-green);
}

.legal-card ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-card li {
  margin: 0.45rem 0;
  line-height: 1.6;
}

.legal-card li strong {
  color: var(--text);
}

.legal-callout {
  margin: 1.5rem 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-green);
}

.legal-callout strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--lenva-green);
}

.legal-callout p {
  margin: 0;
}

.legal-footer-note {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-green);
  font-size: 0.85rem;
  color: var(--subtitle);
  text-align: center;
}

.nav-links a.is-active {
  color: var(--text);
}

/* ── Deep link pages ── */
.deeplink-page {
  padding: 48px 0 64px;
  min-height: calc(100vh - var(--nav-height) - 120px);
  display: flex;
  align-items: center;
}

.deeplink-card {
  width: min(460px, 100%);
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: 24px;
  background: var(--surface-card);
  border: 1px solid var(--border-green);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  text-align: center;
  animation: hero-enter 0.7s var(--ease-out) both;
}

.deeplink-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--lenva-green);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid var(--border-green);
}

.deeplink-badge.hidden { display: none; }

.deeplink-card h1 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 900;
}

.deeplink-subtitle {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.deeplink-value-wrap {
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-elevated);
  border: 1px solid rgba(6, 182, 212, 0.18);
}

.deeplink-value-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--subtitle);
}

.deeplink-value {
  display: block;
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  font-weight: 800;
  word-break: break-all;
  color: var(--lenva-cyan);
}

.deeplink-actions {
  display: grid;
  gap: 10px;
}

.btn-block { width: 100%; }

.deeplink-note {
  margin: 16px 0 0;
  font-size: 0.85rem;
  color: var(--subtitle);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .install-zone {
    align-items: center;
  }

  .hero-copy #install-primary,
  .hero-copy #cta-install {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .hero-pills {
    justify-content: center;
  }

  .hero-device {
    max-width: 260px;
    margin: 0 auto;
  }

  .app-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .platforms-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .platforms-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .platform-list {
    align-items: center;
  }
}

@media (max-width: 720px) {
  .nav-links .nav-hide-mobile { display: none; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 48px 0; }
}

@media (max-width: 520px) {
  :root { --nav-height: 64px; }

  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .brand-name { font-size: 1.05rem; }

  .nav-links {
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-links .nav-hide-xs { display: none; }

  .nav-links a:not(.btn) {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .btn-small {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 10px;
  }

  .hero {
    padding: 40px 0 36px;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }

  .hero-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero p {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }

  .hero-logo {
    width: min(88px, 22vw);
    border-radius: 22px;
    margin-bottom: 20px;
  }

  .hero-pills { margin-top: 28px; gap: 8px; }

  .pill { font-size: 0.72rem; padding: 5px 10px; }

  .app-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
  }

  .device-frame-sm {
    padding: 6px;
    border-radius: 22px;
  }

  .app-shot figcaption {
    font-size: 0.8rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  #install-primary,
  #cta-install {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  #install-primary .btn,
  #cta-install .btn {
    width: 100%;
  }

  .btn {
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .feature-card { padding: 20px 18px; }

  .cta-band {
    padding: 32px 18px;
    margin: 16px 0 40px;
  }

  .phone-mock {
    width: 140px;
    height: 240px;
  }

  .deeplink-page {
    padding: 28px 0 40px;
    min-height: auto;
  }

  .deeplink-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .legal-hero {
    margin-bottom: 24px;
  }

  .legal-hero h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }

  .legal-intro {
    font-size: 0.95rem;
  }

  .legal-meta-row {
    font-size: 0.8rem;
  }

  .legal-card {
    padding: 22px 18px 28px;
    border-radius: 20px;
  }

  .site-footer {
    padding: 28px 0 40px;
    font-size: 0.82rem;
  }

  .footer-links { gap: 12px; }
}



/* === Premium layout (no images) === */
.text-gradient {
  background: linear-gradient(135deg, var(--lenva-green) 0%, var(--lenva-cyan) 45%, var(--lenva-sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-premium {
  position: relative;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  max-width: 760px;
  margin: 0 auto;
}

.hero-deco {
  position: absolute;
  inset: -40px -20px;
  pointer-events: none;
  overflow: hidden;
}

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.12);
}

.deco-ring--1 {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 68%);
  animation: ring-breathe 8s ease-in-out infinite;
}

.deco-ring--2 {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(6, 182, 212, 0.15);
  animation: ring-breathe 8s ease-in-out infinite reverse;
}

.deco-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.35), transparent);
  opacity: 0.5;
}

.deco-line--1 { width: 60%; top: 28%; left: 20%; }
.deco-line--2 { width: 45%; bottom: 22%; right: 10%; }

@keyframes ring-breathe {
  0%, 100% { transform: translate(-50%, -55%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -55%) scale(1.06); opacity: 1; }
}

.hero-eyebrow {
  margin: 0 0 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lenva-cyan);
  opacity: 0.9;
}

.hero-title {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-premium .hero-lead {
  margin: 0 auto 32px;
  max-width: 46ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-premium .install-zone { align-items: center; }
.hero-premium #install-primary { justify-content: center; }

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(24, 28, 34, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(12px);
}

.highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lenva-green);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.spotlight {
  position: relative;
  padding: clamp(36px, 5vw, 56px);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(32, 38, 46, 0.72), rgba(12, 14, 20, 0.55));
  border: 1px solid rgba(139, 92, 246, 0.22);
  backdrop-filter: blur(20px);
}

.spotlight--mood { max-width: 880px; margin: 0 auto; }

.spotlight-aura {
  position: absolute;
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 50%;
  right: clamp(24px, 8vw, 64px);
  transform: translateY(-50%);
  border-radius: 50%;
  background: conic-gradient(from 200deg, #8b5cf6, var(--lenva-cyan), var(--lenva-green), #8b5cf6);
  padding: 3px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
  animation: ring-spin 12s linear infinite;
}

.spotlight-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: rgba(8, 10, 14, 0.9);
}

@keyframes ring-spin { to { transform: translateY(-50%) rotate(360deg); } }

.spotlight-inner { position: relative; z-index: 1; max-width: 58ch; }
.spotlight-eyebrow { color: #c4b5fd; margin-bottom: 10px; }
.spotlight-title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.spotlight-lead { margin: 0 0 22px; color: var(--muted); line-height: 1.65; font-size: 1.05rem; }
.spotlight-points { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.spotlight-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}
.point-mark {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, var(--lenva-cyan));
}
.spotlight-points strong { color: var(--text); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }

/* Cartes features — ordre app + icônes nav */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(28, 32, 40, 0.85), rgba(12, 14, 18, 0.7));
  border: 1px solid rgba(148, 163, 184, 0.1);
  backdrop-filter: blur(16px);
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  flex-shrink: 0;
}

.feature-card__icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.feature-card--home .feature-card__icon { color: var(--lenva-green); background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.22); }
.feature-card--match .feature-card__icon { color: var(--lenva-blue); background: rgba(37, 99, 235, 0.12); border: 1px solid rgba(37, 99, 235, 0.22); }
.feature-card--chat .feature-card__icon { color: var(--lenva-cyan); background: rgba(6, 182, 212, 0.12); border: 1px solid rgba(6, 182, 212, 0.22); }
.feature-card--profile .feature-card__icon { color: #a78bfa; background: rgba(139, 92, 246, 0.12); border: 1px solid rgba(139, 92, 246, 0.22); }
.feature-card--club .feature-card__icon { color: var(--lenva-emerald); background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.22); }

.feature-card__label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lenva-cyan);
  opacity: 0.85;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }

.bento-card {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(28, 32, 40, 0.85), rgba(12, 14, 18, 0.7));
  border: 1px solid rgba(148, 163, 184, 0.1);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0.85;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.bento-card--home { grid-column: span 4; }
.bento-card--match { grid-column: span 2; }
.bento-card--chat { grid-column: span 2; }
.bento-card--club { grid-column: span 2; }
.bento-card--profile { grid-column: span 2; }

.bento-card--home::before { background: linear-gradient(90deg, var(--lenva-green), var(--lenva-cyan)); }
.bento-card--match::before { background: linear-gradient(90deg, var(--lenva-blue), var(--lenva-cyan)); }
.bento-card--chat::before { background: linear-gradient(90deg, var(--lenva-cyan), var(--lenva-green)); }
.bento-card--club::before { background: linear-gradient(90deg, var(--lenva-emerald), var(--lenva-cyan)); }
.bento-card--profile::before { background: linear-gradient(90deg, #8b5cf6, var(--lenva-cyan)); }

.bento-index {
  display: block;
  margin-bottom: 16px;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(248, 250, 252, 0.06);
}

.bento-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lenva-cyan);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.bento-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.bento-card > p { margin: 0 0 16px; font-size: 0.95rem; line-height: 1.6; color: var(--muted); }

.bento-points { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.bento-points li {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--subtitle);
  background: rgba(8, 10, 14, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.steps--premium { margin-top: 8px; }

@media (max-width: 900px) {
  .feature-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-card__icon { margin: 0 auto; }

  .spotlight-ring {
    position: relative;
    top: auto; right: auto;
    transform: none;
    margin: 28px auto 0;
    animation: none;
  }
  .spotlight-inner { max-width: none; text-align: center; }
  .spotlight-points { text-align: left; max-width: 36ch; margin: 0 auto; }
  .bento { grid-template-columns: 1fr; }
  .bento-card--home, .bento-card--match, .bento-card--chat, .bento-card--club, .bento-card--profile { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  .deco-ring, .spotlight-ring { animation: none !important; }
}
