:root {
  --navy: #1a3a5c;
  --navy-dark: #0d2236;
  --teal: #2a9d8f;
  --teal-hover: #238f82;
  --teal-pale: rgba(42, 157, 143, 0.14);
  --teal-border: rgba(42, 157, 143, 0.3);
  --teal-deep: #2f6f68;
  --hero: #69b3ab;
  --ink: #171f26;
  --page: #f6f4f0;
  --panel: #e6eef5;
  --peach: #f5b7b1;
  --peach-soft: #fce8e6;
  --blue-soft: #ddeaf6;
  --lavender: #c3c8f2;
  --lavender-soft: #e8ebff;
  --mint: #e5f2f0;
  --salmon: #e89b90;
  --cream: #f7f9fb;
  --muted: #5c6b75;
  --white: #ffffff;
  --body: #2c353c;
  --light: #d9e5ec;
  --green: #4ade80;
  --shadow: 0 8px 30px rgba(23, 31, 38, 0.06);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --nav-h: 88px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--body);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
ul { list-style: none; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 12px;
}

h1, .h1 {
  font-size: clamp(36px, 5.4vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h2, .h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h3, .h3 {
  font-size: 20px;
  font-weight: 700;
}

.lead {
  font-size: 17px;
  color: var(--body);
  max-width: 640px;
  margin-top: 14px;
  line-height: 1.55;
}

.lead--center {
  margin-inline: auto;
  text-align: center;
}

.section-head {
  margin-bottom: 48px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-label { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  text-align: center;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover { background: var(--teal-hover); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline-white:hover { border-color: var(--white); }

.btn--full { width: 100%; }

.btn--pill {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
}

.btn--teal-deep {
  background: var(--teal-deep);
  color: var(--white);
}
.btn--teal-deep:hover { background: #275c56; }

.btn--ink {
  background: var(--ink);
  color: var(--white);
}
.btn--ink:hover { background: #0d1318; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--teal);
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

/* Nav */
.nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  height: auto;
  background: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  min-height: 64px;
  box-shadow: 0 10px 40px rgba(23, 31, 38, 0.1);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo img {
  height: 34px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__menu {
  display: contents;
}

.nav__links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--teal-deep); }

.nav__cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  left: 11px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__toggle span { top: 20px; }
.nav__toggle span::before,
.nav__toggle span::after { content: ""; left: 0; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--hero);
  color: var(--ink);
  padding: 120px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0 16px;
}

.hero .pill {
  margin-bottom: 22px;
  border-color: rgba(23, 31, 38, 0.18);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(34px, 6.2vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.mark {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  padding: 0.04em 0.2em 0.1em;
  border-radius: 10px;
  line-height: 1;
  font-weight: 700;
  max-width: 100%;
}

.hero .lead {
  color: var(--ink);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  line-height: 1.55;
  margin: 28px auto 36px;
  max-width: 640px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__ctas .btn {
  padding: 16px 28px;
  font-size: 15.5px;
}

.hero__scroll {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-top: 8px;
  transition: background 0.2s;
}

.hero__scroll:hover { background: var(--white); }

.hero__scroll svg {
  animation: scroll-bounce 1.7s ease-in-out infinite;
}

.hero__scroll:hover svg {
  animation-play-state: paused;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(5px); }
  60% { transform: translateY(2px); }
}

.hero__curve {
  width: 100%;
  height: clamp(64px, 8vw, 96px);
  margin-top: auto;
  line-height: 0;
}
.hero__curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

.proof {
  background: var(--page);
  padding: 8px 0 24px;
}

.stat-bar,
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: var(--panel);
  border-radius: 999px;
  padding: 22px 12px;
}

.stat {
  padding: 0 24px;
}

.stat + .stat {
  border-left: 1px solid rgba(23, 31, 38, 0.1);
}

.stat__value {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.panel {
  background: var(--panel);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.panel--center {
  text-align: center;
}

.panel--center .lead {
  margin-inline: auto;
  margin-bottom: 40px;
}

.constat-circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.constat-circles .circle {
  width: 112px;
  height: 112px;
}

.constat-circles p {
  font-size: 14.5px;
  color: var(--body);
  max-width: 260px;
  margin-inline: auto;
}

.media-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.media-card--blue { background: var(--blue-soft); }
.media-card--peach { background: var(--peach-soft); }
.media-card--lavender { background: var(--lavender-soft); }

.media-card__body {
  padding: 22px 22px 26px;
}

.media-card h3 {
  color: var(--ink);
  margin-bottom: 8px;
}

.media-card p {
  font-size: 15px;
  color: var(--body);
}

.media-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 180px;
  background: rgba(23, 31, 38, 0.06);
  color: var(--ink);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.media-ph img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.media-ph span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.media-ph--lg {
  min-height: 100%;
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 0;
}

.media-ph--lg img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  min-height: 420px;
}

.flow__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.flow__steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}

.flow__steps li:last-child { padding-bottom: 0; }

.flow__steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 1.5px;
  background: rgba(23, 31, 38, 0.15);
}

.flow__steps h3 {
  color: var(--ink);
  margin-bottom: 6px;
}

.flow .how-num { margin-bottom: 0; }

.flow__steps p {
  font-size: 15px;
  color: var(--body);
}

.pastel,
.how-card {
  border-radius: var(--radius-lg);
  padding: 28px 26px 32px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.pastel--peach, .how-card--peach { background: var(--peach-soft); }
.pastel--blue, .how-card--blue { background: var(--blue-soft); }
.pastel--lavender, .how-card--lavender { background: var(--lavender-soft); }

.pastel h3, .how-card h3 {
  color: var(--ink);
  margin: 12px 0 8px;
  font-size: 20px;
}

.pastel p, .how-card p {
  color: var(--body);
  font-size: 15px;
}

.metric {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pastel__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.how-card {
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 18px;
  background: var(--page);
  position: relative;
  z-index: 1;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Tabs / audiences */
.tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.tabs__glider {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), width 0.45s cubic-bezier(0.22, 1, 0.36, 1), height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tabs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.25s ease;
}

.tabs button.is-active {
  background: transparent;
  color: var(--white);
}

.audience-panel {
  background: var(--panel);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 860px;
  margin-inline: auto;
  text-align: left;
  position: relative;
}

.audience-pane {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 300px;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-pane:not(.is-active) {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.audience-pane.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.audience-photo {
  min-height: 100%;
  border-radius: 0;
  background: rgba(23, 31, 38, 0.08);
  overflow: hidden;
  padding: 0;
}

.audience-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.audience-copy {
  padding: 36px 36px 36px 32px;
}

.audience-pane h3 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 12px 0 20px;
}

.tag {
  display: inline-flex;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink);
}

.checks li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/12px no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Indice */
.indice-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--page);
}

.indice-layout .lead { margin-bottom: 24px; }

.indice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px 28px 20px;
}

.indice-widget__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.indice-widget__value {
  font-size: 52px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 8px 0;
  font-variant-numeric: tabular-nums;
}

.indice-widget__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badge-pct,
.badge-range {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.badge-pct {
  background: #d8f5e3;
  color: #1f7a4d;
}

.badge-range {
  background: #eef1f4;
  color: var(--muted);
}

.sparkline {
  width: 100%;
  height: 88px;
}

.sparkline__line {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sparkline__fill {
  opacity: 1;
}

@keyframes spark-fill {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .sparkline:not(.is-drawn) .sparkline__line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
  }

  .sparkline:not(.is-drawn) .sparkline__fill {
    opacity: 0;
  }

  .sparkline.is-drawn .sparkline__fill {
    animation: spark-fill 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
  }
}

/* Plans */
.plan-path {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 872px);
  margin: 28px auto 0;
  padding: 0;
}

.plan-path li {
  background: var(--white);
  border: 1px solid rgba(23, 31, 38, 0.08);
  border-radius: 20px;
  padding: 20px 18px 22px;
  box-shadow: 0 10px 28px rgba(23, 31, 38, 0.05);
}

.plan-path .how-num {
  margin-bottom: 12px;
}

.plan-path h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.plan-path p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  width: min(100%, 872px);
  margin: 16px auto 0;
}

.plan {
  --plan-accent: #69b3ab;
  background: var(--white);
  border: 1px solid rgba(23, 31, 38, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(23, 31, 38, 0.05);
}

.plan--fondateur { --plan-accent: #7eb6d9; }
.plan--pro { --plan-accent: #171f26; }
.plan--business { --plan-accent: #9aa3e8; }

.plan__accent {
  height: 6px;
  background: var(--plan-accent);
}

.plan--featured {
  border-color: var(--ink);
  box-shadow: 0 18px 44px rgba(23, 31, 38, 0.12);
  transform: translateY(-10px);
}

.plan__head {
  padding: 16px 22px 0;
  color: var(--ink);
}

.plan__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
}

.plan__badge {
  display: inline-flex;
  margin-top: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.plan__seats {
  margin-top: 0;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--page);
  padding: 4px 8px;
  border-radius: 999px;
}

.plan--featured .plan__seats {
  color: var(--ink);
  background: rgba(23, 31, 38, 0.06);
}

.plan__price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 14px;
}
.plan__price small {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.55;
}

.plan__price-ttc {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}

.plan__hook {
  margin: 0;
  padding: 10px 16px;
  border-radius: 0;
  background: var(--page);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
}

.plan--featured .plan__hook {
  background: var(--ink);
  color: var(--white);
}

.plan__body {
  padding: 16px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan__features {
  margin-bottom: 20px;
  flex: 1;
}

.check,
.nope {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  padding: 8px 0;
  color: var(--ink);
  border-top: 1px solid rgba(23, 31, 38, 0.06);
}

.plan__features li:first-child {
  border-top: 0;
}

.check .tick,
.nope .tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check .tick {
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
}

.nope {
  color: var(--muted);
}
.nope .tick {
  background: transparent;
  border: 1.5px solid rgba(23, 31, 38, 0.18);
  color: var(--muted);
}

.plan.is-soldout {
  opacity: 0.78;
}
.plan.is-soldout .plan__seats {
  background: var(--ink);
  color: var(--white);
}

.plan-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 872px);
  margin: 16px auto 0;
  padding: 22px 28px;
  background: var(--white);
  border: 1px solid rgba(23, 31, 38, 0.08);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(23, 31, 38, 0.05);
}

.plan-partner__copy h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.plan-partner__copy h3 span {
  font-weight: 600;
  color: var(--muted);
}

.plan-partner__copy p {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.plan-partner .btn {
  flex-shrink: 0;
}

.checkout-cancel {
  width: min(100%, 872px);
  margin: 8px auto 0;
  padding: 14px 20px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--teal-deep);
  background: var(--mint);
  border: 1px solid var(--teal-border);
  border-radius: 14px;
}

.plans-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.legal-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 16px;
  cursor: pointer;
}

.legal-check input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.legal-check span {
  flex: 1;
  min-width: 0;
}

.legal-check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Trust circles */
.circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--ink);
}

.circle--peach { background: var(--peach); }
.circle--lavender { background: var(--lavender); }
.circle--mint { background: var(--mint); }

.circles h3 { color: var(--ink); margin-bottom: 8px; }
.circles p { color: var(--body); font-size: 14.5px; }

.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.card--team {
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--hero);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--team h3 { color: var(--ink); }
.card--team .role {
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 700;
  margin: 2px 0 8px;
}
.card--team p { font-size: 14.5px; color: var(--muted); }

/* FAQ */
.faq {
  max-width: 760px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px 28px;
  box-shadow: var(--shadow);
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:last-child { border-bottom: 0; }

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 20px 36px 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}

.faq-item.is-open button::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item__a {
  display: none;
  padding: 0 8px 20px 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-item.is-open .faq-item__a { display: block; }

/* Waitlist */
.waitlist {
  text-align: center;
}

.waitlist h2 { color: var(--ink); }

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 560px;
  margin: 28px auto 16px;
}

.waitlist-consent {
  max-width: 560px;
  margin: 0 auto 8px;
  text-align: left;
  color: var(--muted);
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 31, 38, 0.12);
  background-color: var(--white);
  color: var(--ink);
  font-size: 16px;
  outline: none;
}

.waitlist-form select {
  grid-column: 1 / -1;
  border-radius: 16px;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c6b75' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}

.waitlist-form input::placeholder { color: var(--muted); }
.waitlist-form input:focus,
.waitlist-form select:focus { border-color: var(--ink); }

.waitlist-alt {
  font-size: 14px;
  color: var(--muted);
}
.waitlist-alt a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__inner > *,
.stat-bar,
.section-head,
.panel,
.flow,
.tabs,
.audience-panel,
.indice-layout > *,
.faq,
.waitlist,
.constat-circles > *,
.media-cards > *,
.plans > *,
.plan-partner,
.circles > *,
.team > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

.hero__inner > * {
  transform: translateY(18px);
  transition-duration: 0.65s;
}

.is-in {
  opacity: 1 !important;
  transform: none !important;
}

.form-msg {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  min-height: 1.4em;
}
.form-msg.ok { color: #1f7a4d; }
.form-msg.err { color: #c24141; }

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 28px;
  font-size: 14px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-left: auto;
}

.footer__links a:hover { color: var(--white); }

.footer__copy {
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 34, 54, 0.62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open { display: flex; }

.modal__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(100%, 460px);
  padding: 32px;
  position: relative;
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--cream);
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  color: var(--navy);
}

.modal h3 { color: var(--navy); margin-bottom: 6px; }
.modal .plan-recap {
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 20px;
}

.waitlist-popup {
  width: min(100%, 760px);
  padding: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
}

.waitlist-popup__media {
  min-height: 100%;
  background: var(--ink);
  overflow: hidden;
}

.waitlist-popup__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.waitlist-popup__copy {
  padding: 36px 28px 28px;
}

.waitlist-popup__copy h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.waitlist-popup__copy p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 15px;
}

.waitlist-popup__copy .waitlist-popup__copy form,
.waitlist-popup form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist-popup input[type="email"],
.waitlist-popup select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--light);
  border-radius: 999px;
  font-size: 16px;
  background-color: var(--white);
  color: var(--ink);
}

.waitlist-popup select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c6b75' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}

.waitlist-popup .legal-check {
  margin: 0;
}

.waitlist-popup .modal__close {
  z-index: 2;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(23, 31, 38, 0.16);
}

.cookie-bar p {
  margin: 0;
  font-size: 14px;
  color: var(--body);
}

.cookie-bar a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--light);
  border-radius: 8px;
  font-size: 16px;
  color: var(--navy);
  outline: none;
  background-color: var(--white);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c6b75' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}
.field input:focus,
.field select:focus { border-color: var(--teal); }

.legal-tiny {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 14px;
  line-height: 1.5;
}

/* Legal pages */
.legal {
  padding: 120px 0 80px;
}

body.page-fill {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--page);
}

body.page-fill .legal {
  flex: 1;
}

body.page-fill .footer {
  margin-top: auto;
}

.merci-next {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 36px;
}

.merci-next article {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.merci-next h2 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--ink);
}

.merci-next p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.5;
}
.legal h1 { color: var(--navy); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 22px; margin: 32px 0 10px; }
.legal h3 { font-size: 18px; margin: 24px 0 8px; }
.legal p, .legal li { margin-bottom: 10px; }
.legal ul { padding-left: 18px; list-style: disc; }
.legal ol { padding-left: 18px; list-style: decimal; }
.legal a:not(.btn) { color: var(--teal); text-decoration: underline; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1100px) {
  .logo img { height: 30px; }

  .nav__toggle { display: block; order: 2; }

  .nav__inner {
    padding: 8px 10px 8px 18px;
    border-radius: 22px;
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    gap: 12px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(23, 31, 38, 0.12);
  }

  .nav__links {
    position: static;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    display: flex;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .nav__links a {
    display: block;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--cream);
    white-space: normal;
  }
  .nav__links a:last-child { border-bottom: 0; }

  .nav__cta {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .nav__cta .btn { width: 100%; }

  body.nav-open .nav__menu { display: flex; }
  body.nav-open { overflow: hidden; }

  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
  .cookie-bar { bottom: 88px; }
}

@media (max-width: 900px) {
  .merci-next {
    grid-template-columns: 1fr;
  }

  .plans {
    display: flex;
    justify-content: flex-start;
    width: auto;
    max-width: none;
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 12px 2px;
    margin-inline: -2px;
    scrollbar-width: none;
  }

  .plans::-webkit-scrollbar {
    display: none;
  }

  .plan {
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    scroll-snap-align: start;
  }

  .plan--featured { transform: none; }

  .plan-partner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 20px;
  }

  .plan-partner__copy p {
    max-width: none;
  }

  .plan-partner .btn {
    width: 100%;
  }

  .plan-path {
    grid-template-columns: 1fr;
  }

  .waitlist-popup {
    grid-template-columns: 1fr;
  }

  .waitlist-popup__media {
    max-height: 140px;
    min-height: 0;
  }

  .waitlist-popup__media img {
    min-height: 0;
    height: 140px;
  }

  .waitlist-popup__copy {
    padding: 20px 20px 24px;
    position: relative;
    z-index: 1;
    background: var(--white);
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-bar__actions {
    justify-content: center;
  }

  .grid-3,
  .circles,
  .constat-circles,
  .media-cards,
  .flow,
  .team,
  .stat-bar,
  .hero__stats,
  .indice-layout {
    grid-template-columns: 1fr;
  }

  .flow { min-height: 0; }
  .media-ph--lg { min-height: 220px; }
  .media-ph--lg img { min-height: 220px; }

  .stat-bar,
  .hero__stats {
    border-radius: 24px;
    padding: 18px 12px;
  }

  .panel,
  .audience-copy {
    padding: 28px 20px;
  }

  .audience-pane {
    grid-template-columns: 1fr;
  }

  .audience-photo {
    min-height: 200px;
  }

  .tabs {
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    border-radius: 24px;
  }

  .tabs button {
    width: 100%;
    text-align: center;
  }

  .sparkline { width: 100%; }

  .waitlist-form { grid-template-columns: 1fr; }
  .waitlist-form .btn { width: 100%; }

  .hero { padding-top: 100px; min-height: auto; }
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .section { padding: 64px 0; }

  .stat + .stat {
    border-left: 0;
    padding-top: 20px;
    border-top: 1px solid var(--light);
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav__inner {
    width: min(100% - 16px, 1180px);
  }

  .hero .pill {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    height: auto;
    text-align: center;
  }

  .indice-widget__value {
    font-size: clamp(36px, 12vw, 52px);
  }

  .indice-card {
    padding: 20px 16px 16px;
  }

  .audience-pane h3 {
    font-size: 22px;
  }

  .panel {
    padding: 24px 16px;
    border-radius: 24px;
  }

  .modal__box {
    padding: 24px 18px;
  }

  .waitlist-popup {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .hero__inner > *,
  .stat-bar,
  .section-head,
  .panel,
  .flow,
  .tabs,
  .audience-panel,
  .indice-layout > *,
  .faq,
  .waitlist,
  .constat-circles > *,
  .media-cards > *,
  .plans > *,
  .plan-partner,
  .circles > *,
  .team > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tabs__glider,
  .audience-pane {
    transition: none;
  }

  .hero__scroll svg {
    animation: none;
  }

  .sparkline:not(.is-drawn) .sparkline__line,
  .sparkline.is-drawn .sparkline__line {
    stroke-dashoffset: 0;
    transition: none;
  }

  .sparkline__fill,
  .sparkline.is-drawn .sparkline__fill {
    opacity: 1;
    clip-path: none;
    animation: none;
  }
}
