@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/fonts/InterVariable.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/fonts/InterVariable-Italic.woff2") format("woff2");
}

@font-feature-values "Inter" {
  @character-variant {
    cv01: 1; cv02: 2; cv03: 3; cv04: 4; cv05: 5; cv06: 6; cv07: 7; cv08: 8;
    cv09: 9; cv10: 10; cv11: 11; cv12: 12; cv13: 13;
    alt-1: 1;
    alt-3: 9;
    open-4: 2;
    open-6: 3;
    open-9: 4;
    lc-l-with-tail: 5;
    simplified-u: 6;
    alt-double-s: 7;
    uc-i-with-serif: 8;
    uc-g-with-spur: 10;
    single-story-a: 11;
    compact-lc-f: 12;
    compact-lc-t: 13;
  }

  @styleset {
    ss01: 1; ss02: 2; ss03: 3; ss04: 4; ss05: 5; ss06: 6; ss07: 7; ss08: 8;
    open-digits: 1;
    disambiguation: 2;
    disambiguation-except-zero: 4;
    round-quotes-and-commas: 3;
    square-punctuation: 7;
    square-quotes: 8;
    circled-characters: 5;
    squared-characters: 6;
  }
}

:root {
  --graphite: #0f1115;
  --graphite-2: #171a22;
  --slate: #5b616c;
  --mist: #e6e8ec;
  --paper: #f7f8fa;
  --white: #ffffff;
  --indigo: #4f46e5;
  --indigo-soft: rgba(79, 70, 229, 0.10);
  --indigo-medium: #64748b;
  --indigo-hard: #312e81;
  --green: #16a34a;
  --green-soft: rgba(22, 163, 74, 0.10);
  --border: rgba(15, 17, 21, 0.09);
  --shadow-sm: 0 1px 0 rgba(15, 17, 21, 0.04), 0 12px 36px rgba(15, 17, 21, 0.06);
  --shadow-md: 0 1px 0 rgba(15, 17, 21, 0.04), 0 24px 84px rgba(15, 17, 21, 0.08);
  --radius-lg: 28px;
  --radius-xl: 38px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at 50% -10%, rgba(79, 70, 229, 0.10), transparent 34%),
    linear-gradient(180deg, #fff, var(--paper) 68%, #fff);
  color: var(--graphite);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(79,70,229,.16); }

.no-cut {
    white-space: nowrap;
}

.shell { width: min(1360px, calc(100% - 80px)); margin-inline: auto; }
.section { padding: 96px 0; }
#modules.section { padding: 22px 0 96px}
.section--tight { padding: 42px 0 16px; }
.section--muted { background: rgba(247, 248, 250, 0.72); border-block: 1px solid rgba(15,17,21,.06); }
.section--dark { background: var(--graphite); color: #fff; }

.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; }
.icon--sm { width: 16px; height: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(15,17,21,.07);
}
.header-inner { height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: 100px; }
.brand img { width: 100%; height: auto; margin-top: -4px; }
@media (max-width: 820px) {
.brand img { margin-top: -2px; }
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 11px;
  border-radius: 999px;
  color: rgba(15,17,21,.9);
  font-size: 13px;
  font-weight: 640;
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { background: rgba(15,17,21,.05); color: var(--graphite); }
.nav .nav-cta { color: #fff; background: var(--graphite); text-align: center; }
.nav .nav-cta:hover { background: var(--indigo); color: #fff; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 14px; background: #fff; padding: 10px 0; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: auto; border-radius: 99px; background: var(--graphite); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"]{ padding: 13px 0; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(79,70,229,.16);
  border-radius: 999px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: .02em;
}
.eyebrow--dark { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.08); color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 720;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { color: #fff; background: var(--indigo); box-shadow: 0 12px 28px rgba(79,70,229,.18); }
.btn--primary:hover { box-shadow: 0 12px 44px rgba(79,70,229,.24); }
.btn--secondary { color: var(--graphite); background: #fff; border-color: var(--border); box-shadow: var(--shadow-sm); }

.hero { padding: 88px 0 44px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .72fr); gap: 72px; align-items: center; }
@media (min-width: 1200px) {
  .hero-copy {
    padding-right: 50px;
  }
}
.hero-copy h1 {
  margin: 22px 0 0;
  max-width: 880px;
  font-size: clamp(48px, 5.8vw, 74px);
  line-height: .94;
  letter-spacing: -.05em;
  color: var(--graphite);
}
.hero-lead { max-width: 680px; margin: 24px 0 0; color: var(--slate); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.55; letter-spacing: -.01em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-panel {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(15,17,21,.09);
  border-radius: 42px;
  background:
    radial-gradient(circle at 78% 14%, rgba(79,70,229,.22), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,248,250,.8));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(79,70,229,.16);
  filter: blur(26px);
}
.panel-topline { display: flex; align-items: center; gap: 12px; color: var(--slate); font-size: 13px; font-weight: 580; margin-left: 8px;}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(22,163,74,.1); }
.hero-card { position: relative; margin-top: 22px; padding: 28px; border-radius: 28px; background: var(--graphite); color: #fff; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; inset: -80px -100px auto auto; width: 220px; height: 220px; background: var(--indigo); border-radius: 999px; opacity: .36; filter: blur(8px); }
.card-kicker { position: relative; color: rgba(255,255,255,.68); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 760; }
.hero-card strong { position: relative; display: block; margin-top: 12px; font-size: 31px; line-height: 1.06; letter-spacing: -.04em; }
.hero-card p { position: relative; margin: 16px 0 0; color: rgba(255,255,255,.68); line-height: 1.55; }
.hero-flow { position: relative; display: flex; align-items: center; gap: 10px; margin-top: 18px; padding: 16px; border-radius: 22px; background: rgba(255,255,255,.75); border: 1px solid var(--border); }
.hero-flow span { flex: 0 0 auto; font-size: 13px; font-weight: 760; }
.hero-flow i { height: 1px; flex: 1; background: linear-gradient(90deg, var(--indigo), rgba(79,70,229,.1)); }

.partners-row { padding: 22px 20px; border: 1px solid var(--border); border-radius: 99px; background: rgba(255,255,255,.78); box-shadow: 0 12px 50px rgba(15,17,21,.04); display: flex; align-items: center; gap: 28px; }
.partners-label { flex: 0 0 auto; color: var(--slate); font-size: 12px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; padding-left: 15px;}
@media (max-width: 980px) {
.partners-label { padding-left: 10px;}
}
.partners-logos { width: 100%; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; align-items: center; }
.partners-logos img { max-height: 36px; width: 100%; object-fit: contain; filter: grayscale(1); opacity: .72; }

.section-head { max-width: 750px; margin-bottom: 34px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { margin-inline: auto; }
.lineup-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.lineup-card { position: relative; min-height: 420px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-xl); background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); overflow: hidden; }
.lineup-card--featured { background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(79,70,229,.07)); border-color: rgba(79,70,229,.18); }
.lineup-index { position: absolute; top: 26px; right: 28px; color: rgba(79,70,229,.32); font-size: 42px; font-weight: 800; letter-spacing: -.05em; }
.lineup-icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; color: var(--indigo); background: var(--indigo-soft); }
.lineup-card h3 { margin: 28px 0 0; font-size: 40px; line-height: .95; letter-spacing: -.05em; }
.lineup-card p { color: var(--slate); line-height: 1.55; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 20px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 24px; color: var(--graphite); font-size: 14px; line-height: 1.45; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 9px; height: 9px; border-radius: 99px; background: var(--indigo); box-shadow: 0 0 0 4px rgba(79,70,229,.09); }

.split-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 48px; align-items: center; }
.modules-grid article { padding: 22px; border: 1px solid var(--border); border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: 0 1px 0 rgba(15,17,21,.03); }
.modules-grid .icon { color: var(--indigo); width: 24px; height: 24px; }
.modules-grid strong { display: block; margin-top: 16px; font-size: 18px; letter-spacing: -.025em; }
.modules-grid span { display: block; margin-top: 8px; color: var(--slate); font-size: 14px; line-height: 1.48; }

.offer-tabs { width: fit-content; padding: 5px; margin-bottom: 18px; border: 1px solid var(--border); border-radius: 999px; background: #fff; display: flex; gap: 4px; }
.offer-tabs button { border: 0; border-radius: 999px; padding: 10px 18px; background: transparent; color: var(--slate); cursor: pointer; font-size: 13px; font-weight: 760; }
.offer-tabs button.is-active { color: #fff; background: var(--graphite); }
.offer-panel { display: none; }
.offer-panel.is-active { display: block; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 28px; border: 3px solid var(--indigo-medium); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); }
.price-card--featured { border-color: var(--indigo); }
.price-card--featured2 { border-color: var(--indigo-hard); }
.price-card__label { width: fit-content; padding: 7px 10px; border-radius: 999px; background: var(--indigo-medium); color: #fff; font-size: 12px; font-weight: 770; }
.price-card--featured .price-card__label { background: var(--indigo); }
.price-card--featured2 .price-card__label { background: var(--indigo-hard); }
.evolve-panel .price-card__label { background: var(--indigo); color: #fff; }
.price-card .check-list li::before { background: var(--indigo-medium); }
.price-card--featured .check-list li::before { background: var(--indigo); }
.price-card--featured2 .check-list li::before { background: var(--indigo-hard); }
.price-card h3 { margin: 24px 0 0; min-height: 78px; font-size: 28px; line-height: 1.05; letter-spacing: -.035em; }
.price-card h3 strong { display: block; color: var(--graphite); }
.price-card p { color: var(--graphite); line-height: 1.55; margin-top: 0; margin-bottom: 2rem; }
.price-card__price {
  margin: 18px 0 14px;

  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;

  color: var(--indigo-medium);
}
.price-card--featured .price-card__price { color: var(--indigo); }
.price-card--featured2 .price-card__price { color: var(--indigo-hard); }


.price-card__prefix {
  flex-basis: 100%;

  font-size: 13px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--indigo-medium);
}
.price-card--featured .price-card__prefix { color: var(--indigo); }
.price-card--featured2 .price-card__prefix { color: var(--indigo-hard); }

.price-card__price strong {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 0.9;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.price-card__suffix {
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  color: var(--indigo-medium);
  text-transform: uppercase;
}
.price-card--featured .price-card__suffix { color: var(--indigo); }
.price-card--featured2 .price-card__suffix { color: var(--indigo-hard); }

.pricing-note {
  width: 100%;
  max-width: none;
  margin: 24px 0 0;
}

.pricing-note--winwin {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 18px;

  width: 100%;
  max-width: none;
  margin: 24px 0 0;
  padding: 24px 26px;

  border: 1px solid rgba(129, 140, 248, 0.24);
  border-radius: 28px;

  background:
    radial-gradient(circle at 92% 14%, rgba(79, 70, 229, 0.34), transparent 32%),
    radial-gradient(circle at 10% 100%, rgba(79, 70, 229, 0.16), transparent 34%),
    linear-gradient(180deg, #171a22 0%, #0f1115 100%);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 90px rgba(15, 17, 21, 0.22);

  color: #f7f8fa;
  text-align: left;
}

.pricing-note--winwin::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;

  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1), transparent 34%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 0.9;
}

.pricing-note--winwin > * {
  position: relative;
  z-index: 1;
}

.pricing-note__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;
  color: #c7d2fe;
  background:
    radial-gradient(circle at 35% 20%, rgba(255,255,255,0.2), transparent 34%),
    rgba(79, 70, 229, 0.22);
  border: 1px solid rgba(129, 140, 248, 0.28);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 14px 36px rgba(79, 70, 229, 0.2);
}

.pricing-note__icon .icon {
  width: 25px;
  height: 25px;
}

.pricing-note__content strong {
  display: block;
  margin-bottom: 7px;

  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.pricing-note__content p {
  max-width: 980px;
  margin: 0;

  font-size: 15px;
  line-height: 1.6;
  color: #b7bdc8;
}

.pricing-note__content b {
  color: #ffffff;
  font-weight: 780;
}

@media (max-width: 720px) {
  .pricing-note--winwin {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
    border-radius: 24px;
  }
}

.check-list__note {
  margin-top: 10px;
  padding-top: 12px;
  padding-left: 0!important;

  display: flex;
  align-items: flex-start;
  gap: 9px;

  border-top: 1px solid rgba(15, 17, 21, 0.08);

  color: #5b616c;
  font-size: 13px;
  line-height: 1.45;
}

.check-list__note::before {
  display: none;
}

.check-list__note-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;

  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  font-style: normal;
}
.commission { margin: 8px 0 4px; padding: 12px 14px; border-radius: 16px; background: var(--green-soft); color: #15803d; font-weight: 760; font-size: 13px; }
.evolve-panel { display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; padding: 32px; border-radius: var(--radius-xl); background: var(--graphite); color: #fff; box-shadow: var(--shadow-md); }
.evolve-panel h3 { margin: 28px 0 12px; font-size: clamp(30px, 3vw, 52px); line-height: 1; letter-spacing: -.04em; }
.evolve-panel p { color: rgba(255,255,255,.65); line-height: 1.6; }
.evolve-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-content: center; }
.evolve-list > span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  font-size: 16px;

  display: flex;
  align-items: center;
  gap: 10px;
}
.evolve-list .status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;

  display: inline-block;
  border-radius: 999px;
  background: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14);
}

.modules-shell { padding: 40px; border-radius: 42px; background: rgba(255,255,255,.72); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.modules-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }

.monitoring-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(540px, 1.22fr); gap: 48px; align-items: center; }
.lighthouse-card { padding: 24px; border-radius: 32px; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)); border: 1px solid rgba(255,255,255,.12); box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 36px 90px rgba(0,0,0,.18); }
.lighthouse-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; }
.lighthouse-top small { display: block; color: rgba(255,255,255,.55); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 760; }
.lighthouse-top strong { display: block; margin-top: 4px; font-size: 21px; letter-spacing: -.025em; }
.badge { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 32px; padding: 8px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); font-size: 12px; line-height: 1; font-weight: 720; white-space: nowrap; }
.badge--success { color: #22c55e; background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.22); }
.score-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.score-row span, .vitals-row span { padding: 18px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.07); text-align: center; }
.score-row strong { display: block; font-size: 40px; line-height: 1; letter-spacing: -.05em; }
.score-row small, .vitals-row small { display: block; margin-top: 7px; color: rgba(255,255,255,.58); font-size: 12px; }
.vitals-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 10px; }
.vitals-row strong { display: block; font-size: 22px; line-height: 1; }
.gsc-line { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 12px; align-items: center; margin-top: 12px; padding: 16px; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.gsc-line .icon { width: 24px; height: 24px; color: #fff; opacity: .86; }
.gsc-line strong { display: block; font-size: 15px; }
.gsc-line span { display: block; margin-top: 4px; color: rgba(255,255,255,.58); font-size: 12px; }
.gsc-line em { color: #22c55e; font-style: normal; font-size: 12px; font-weight: 760; }

.cta-section { padding-top: 72px; }

.site-footer { padding: 32px 0; border-top: 1px solid var(--border); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 150px 1fr auto; gap: 22px; align-items: center; }
.footer-grid img { width: 80px; }
.footer-grid p { margin: 0; color: var(--slate); font-size: 14px; text-align: right; }
.footer-grid nav { display: flex; gap: 16px; }
.footer-grid a { color: var(--slate); font-size: 13px; font-weight: 680; }
.footer-grid a:hover { color: var(--graphite); }

@media (max-width: 1080px) {
  .hero-grid, .monitoring-grid, .cta-card, .split-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: auto; }
  .pricing-grid, .lineup-grid, .modules-grid { grid-template-columns: 1fr; }
  .lineup-card { min-height: auto; }
  .partners-row { align-items: flex-start; flex-direction: column; border-radius: 22px;}
  .partners-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 1360px); }
  .hero-grid { gap: 52px; }
  .section { padding: 68px 0; }
  .section--tight { padding: 20px 0 30px; }
  .header-inner { height: 62px; }
  .brand { width: 90px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255,255,255,1);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; }
  .hero { padding-top: 58px; }
  .hero-copy h1 { font-size: clamp(44px, 6vw, 62px); }
  .score-row, .vitals-row { grid-template-columns: 1fr; }
  .partners-logos { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .evolve-panel, .evolve-list { grid-template-columns: 1fr; }
  .offer-tabs { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
  .offer-tabs button { padding-inline: 10px; }
  .modules-shell, .cta-card { padding: 24px; border-radius: 30px; }
  .gsc-line { grid-template-columns: 36px 1fr; }
  .gsc-line em { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid nav { flex-wrap: wrap; }
  .footer-grid img { margin: auto; }
  .footer-grid p { text-align: center; }
}

@media (max-width: 520px) {
  .hero-actions, .btn { width: 100%; }
  .hero-actions .btn { justify-content: center; }
  .hero-panel, .price-card, .lineup-card { border-radius: 28px; padding: 22px; }
  .hero-card strong { font-size: 26px; }
  .section-head h2, .split-grid h2, .dark-copy h2, .cta-card h2 { font-size: 38px; }
}

/* ===============================
   V02 — Optimisations site vitrine marchand
   =============================== */

.hero-flow--prominent {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-flow--prominent .flow-step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num copy";
  gap: 3px 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(15, 17, 21, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(15, 17, 21, 0.03);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.hero-flow--prominent .flow-step:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.22);
  box-shadow: 0 18px 44px rgba(79, 70, 229, 0.11);
}

.hero-flow--prominent .flow-step.is-active {
  background: var(--graphite);
  color: #fff;
  border-color: rgba(15, 17, 21, 0.22);
}

.hero-flow--prominent .flow-step span {
  grid-area: num;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: -.03em;
}

.hero-flow--prominent .flow-step.is-active span {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.hero-flow--prominent .flow-step strong {
  grid-area: title;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.03em;
}

.hero-flow--prominent .flow-step small {
  grid-area: copy;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.35;
}

.hero-flow--prominent .flow-step.is-active small { color: rgba(255, 255, 255, .68); }

.section-head h2,
.split-grid h2,
.dark-copy h2,
.cta-card h2,
.mutual-copy h2,
.ai-lab__copy h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: .96;
  letter-spacing: -.05em;
}

.section-head p,
.split-grid p,
.cta-card p,
.mutual-copy p,
.dark-copy p,
.ai-lab__copy p {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.62;
}

.dark-copy p { color: #b7bdc8!important; }

/* Mutualisation */
.mutual-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: center;
}
.mutual-copy p { max-width: 560px; color: #b7bdc8!important; }

.mutual-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mutual-board article {
  min-height: 230px;
  padding: 24px; border-radius: 32px; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)); border: 1px solid rgba(255,255,255,.12); box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 36px 90px rgba(0,0,0,.18); 
}

.mutual-board span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--indigo);
  border: 1px solid rgba(255, 255, 255, .12);
  background: var(--indigo-soft);
  font-weight: 820;
  font-size: 13px;
}

.mutual-board strong {
  display: block;
  margin-top: 22px;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.mutual-board p {
  margin: 12px 0 0;
  font-weight: 300;
  color: #b7bdc8;
  font-size: 14px;
  line-height: 1.55;
}

/* IA stack */
.ai-lab {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(15, 17, 21, .08);
  border-radius: 44px;
  background:
    radial-gradient(circle at 78% 18%, rgba(79, 70, 229, .16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,248,250,.72));
  box-shadow: var(--shadow-sm);
}

.ai-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ai-tags span {
  padding: 10px 12px;
  border: 1px solid rgba(79,70,229,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 700;
}

.ai-stack-card {
  padding: 24px;
  border: 1px solid rgba(15, 17, 21, .09);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.ai-step {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--paper);
}

.ai-step.is-active {
  background: var(--indigo);
  color: #fff;
  border-color: var(--indigo);
}

.ai-step.is-dark {
  background: var(--graphite);
  color: #fff;
  border-color: var(--graphite);
}

.ai-step span {
  color: var(--indigo);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ai-step.is-active span { color: rgba(255, 255, 255, .62); }

.ai-step.is-dark span { color: rgba(255, 255, 255, .66); }

.ai-step strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.035em;
}

.ai-step small {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.42;
}

.ai-step.is-active small, .ai-step.is-dark small { color: rgba(255, 255, 255, .68); }

.ai-stack-card > i {
  display: block;
  width: 1px;
  height: 26px;
  margin: 8px auto;
  background: linear-gradient(180deg, var(--indigo), rgba(79,70,229,.08));
}

@media (max-width: 1180px) {
  .nav a { font-size: 12px; }
}

@media (max-width: 1080px) {
  .mutual-grid,
  .ai-lab { grid-template-columns: 1fr; }
  .ai-lab { padding: 32px; }
}

@media (max-width: 820px) {
  .mutual-board { grid-template-columns: 1fr; }
  .hero-flow--prominent .flow-step { grid-template-columns: 42px minmax(0,1fr); }
}

@media (max-width: 520px) {
  .section-head h2,
  .split-grid h2,
  .dark-copy h2,
  .cta-card h2,
  .mutual-copy h2,
  .ai-lab__copy h2 { font-size: 38px; }
  .ai-lab { padding: 22px; border-radius: 30px; }
  .mutual-board article { min-height: auto; }
}

/* ===============================
   HACK — section Problème en graphite
   =============================== */

#probleme.section--dark {
  position: relative;
  overflow: hidden;

  color: #f7f8fa;
  background:
    radial-gradient(circle at 78% 12%, rgba(79, 70, 229, 0.26), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(79, 70, 229, 0.14), transparent 30%),
    linear-gradient(180deg, #0f1115 0%, #090a0d 100%);
}

#probleme.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 80%);
}

#probleme.section--dark > * {
  position: relative;
  z-index: 1;
}

/* Textes */
#probleme .section-kicker,
#probleme .highlight-kicker {
  background: #F7F8FA;
}

#probleme h1,
#probleme h2,
#probleme h3,
#probleme strong {
  color: #ffffff;
}

#probleme p,
#probleme li,
#probleme small,
#probleme .muted,
#probleme .card-copy,
#probleme .highlight-copy {
  color: #b7bdc8;
}

/* Cartes / blocs */

#probleme .card,
#probleme .problem-card,
#probleme .feature-card,
#probleme .highlight-item,
#probleme .stack-card {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.035);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 24px 80px rgba(0,0,0,0.24);
}

/* Hover cards */

#probleme .card:hover,
#probleme .problem-card:hover,
#probleme .feature-card:hover,
#probleme .highlight-item:hover,
#probleme .highlight-item.is-active {
  transform: translateY(-3px);
  border-color: rgba(79, 70, 229, 0.42);
  background:
    linear-gradient(180deg, rgba(79,70,229,0.15), rgba(255,255,255,0.045)),
    rgba(255,255,255,0.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 28px 90px rgba(79,70,229,0.16);
}

/* Icônes + accent indigo */

#probleme .icon-box,
#probleme .highlight-icon,
#probleme .feature-icon,
#probleme .problem-icon {
  color: #818cf8;
  background: rgba(79, 70, 229, 0.16);
  border: 1px solid rgba(129, 140, 248, 0.22);
}

/* Badges / pills */

#probleme .badge,
#probleme .pill,
#probleme .tag {
  color: #c7d2fe;
  border-color: rgba(129, 140, 248, 0.24);
  background: rgba(79, 70, 229, 0.16);
}

/* Liens / CTA */

#probleme a {
  color: #c7d2fe;
}

#probleme .button,
#probleme .btn {
  color: #ffffff;
  border-color: rgba(129, 140, 248, 0.28);
  background: rgba(79, 70, 229, 0.24);
}

#probleme .button:hover,
#probleme .btn:hover {
  background: #4f46e5;
  border-color: #4f46e5;
}

/* Séparateurs éventuels */

#probleme hr,
#probleme .divider {
  border-color: rgba(255,255,255,0.1);
}

/* Inputs éventuels */

#probleme input,
#probleme textarea,
#probleme select {
  color: #f7f8fa;
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

#probleme input::placeholder,
#probleme textarea::placeholder {
  color: #7f8794;
}
/* ===============================
   PROBLÈME — effet lighthouse-card
   =============================== */

#probleme .problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

#probleme .problem-grid article {
  position: relative;
  min-height: 230px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(129, 140, 248, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.035);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.28);

  overflow: hidden;
  isolation: isolate;

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

#probleme .problem-grid article::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;

  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 32%),
    radial-gradient(circle at 80% 90%, rgba(79, 70, 229, 0.22), transparent 36%);
  opacity: 0.75;
  pointer-events: none;
}

#probleme .problem-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;

  width: 132px;
  height: 132px;
  border-radius: 999px;

  background: rgba(79, 70, 229, 0.16);
  filter: blur(18px);
  opacity: 0;

  transition: opacity 180ms ease;
  pointer-events: none;
}

#probleme .problem-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(129, 140, 248, 0.34);
  background:
    radial-gradient(circle at 18% 0%, rgba(129, 140, 248, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(79, 70, 229, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 30px 96px rgba(79, 70, 229, 0.18),
    0 28px 88px rgba(0, 0, 0, 0.32);
}

#probleme .problem-grid article:hover::after {
  opacity: 1;
}

/* Icône façon Lighthouse */

#probleme .problem-grid article > .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  padding: 13px;

  display: inline-flex;

  border-radius: 18px;
  color: #c7d2fe;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.2), transparent 34%),
    rgba(79, 70, 229, 0.2);
  border: 1px solid rgba(129, 140, 248, 0.26);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 36px rgba(79, 70, 229, 0.16);
}

#probleme .problem-grid article strong {
  display: block;
  margin-bottom: 22px;

  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
}

#probleme .problem-grid article span {
  display: block;
  margin-top: auto;

  font-size: 14px;
  line-height: 1.5;
  color: #b7bdc8;
}

/* Responsive */

@media (max-width: 1180px) {
  #probleme .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  #probleme .problem-grid {
    grid-template-columns: 1fr;
  }

  #probleme .problem-grid article {
    min-height: 210px;
  }
}

/* ===============================
   CTA / CONTACT — light grey-white
   =============================== */

#contact.cta-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 82% 10%, rgba(79, 70, 229, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

#contact.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(rgba(15, 17, 21, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 17, 21, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.55), transparent);
}

#contact .cta-card {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: 42px;
  align-items: center;

  padding: 42px;
  border: 1px solid rgba(15, 17, 21, 0.08);
  border-radius: 34px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,248,250,0.84)),
    #ffffff;

  box-shadow:
    0 1px 0 rgba(15, 17, 21, 0.04),
    0 28px 90px rgba(15, 17, 21, 0.08);
}

#contact .cta-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(79,70,229,0.1), transparent 34%);
}

#contact .cta-card > * {
  position: relative;
  z-index: 1;
}

/* Texte */

#contact .eyebrow {
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.07);
  border-color: rgba(79, 70, 229, 0.14);
}

#contact h2 {
  max-width: 720px;
  margin: 18px 0 0;

  color: #0f1115;
}

#contact p {
  max-width: 640px;
  margin: 18px 0 0;
  min-height: 0;
  color: #5b616c;
}

/* Formulaire */

#contact .contact-form {
  padding: 22px;

  display: grid;
  gap: 14px;

  border: 1px solid rgba(15, 17, 21, 0.08);
  border-radius: 26px;
  background: #ffffff;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 18px 54px rgba(15, 17, 21, 0.06);
}

#contact .contact-form label {
  display: grid;
  gap: 7px;
}

#contact .contact-form label span {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #0f1115;
}

#contact .contact-form input,
#contact .contact-form textarea {
  width: 100%;

  padding: 13px 14px;
  border: 1px solid rgba(15, 17, 21, 0.1);
  border-radius: 16px;

  background: #f7f8fa;
  color: #0f1115;

  font: inherit;
  font-size: 14px;
  line-height: 1.35;

  outline: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

#contact .contact-form textarea {
  resize: vertical;
  min-height: 112px;
}

#contact .contact-form input::placeholder,
#contact .contact-form textarea::placeholder {
  color: #8a909c;
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
  border-color: rgba(79, 70, 229, 0.42);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* CTA button */

#contact .contact-form .btn--primary {
  width: 100%;
  justify-content: center;
  margin-top: 4px;

  background: #0f1115;
  color: #ffffff;
  border-color: #0f1115;
  box-shadow: none;
  cursor: pointer;
}

#contact .contact-form .btn--primary:hover {
  transform: translateY(-1px);
  background: #4f46e5;
  border-color: #4f46e5;
  box-shadow: 0 18px 44px rgba(79, 70, 229, 0.22);
}


/* Formulaire : états, honeypot et Turnstile */
.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.turnstile-field {
  min-height: 0;
}

.turnstile-field:not([hidden]) {
  display: flex;
  justify-content: center;
  padding: 4px 0 2px;
  margin-bottom: -0.75rem;
}

.form-status {
  min-height: 20px;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  color: #5b616c;
}

.form-status[data-state="loading"] { color: #5b616c; }
.form-status[data-state="success"] { color: #15803d !important; }
.form-status[data-state="error"] { color: #dc2626 !important; }

.contact-form .btn[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none !important;
}

/* Responsive */

@media (max-width: 980px) {
  #contact .cta-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
  }
}

@media (max-width: 620px) {
  #contact .cta-card {
    padding: 22px;
    border-radius: 26px;
  }

  #contact .contact-form {
    padding: 18px;
    border-radius: 22px;
  }
}

/* Hero panel — monitoring wave, slower and tighter */
.hero-panel .panel-topline .status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;

  display: inline-block;
  border-radius: 999px;
  background: #16a34a;

  box-shadow:
    0 0 0 3px rgba(22, 163, 74, 0.10),
    0 0 12px rgba(22, 163, 74, 0.24);
}

.hero-panel .panel-topline .status-dot::after,
.hero-panel .panel-topline .status-dot::before {
  content: "";
  position: absolute;
  inset: -5px;

  border-radius: 999px;
  border: 2px solid rgba(22, 163, 74, 0.28);

  transform: scale(0.55);
  opacity: 0;

  animation: monitoring-wave-slow 4.2s ease-out infinite;
}

.hero-panel .panel-topline .status-dot::before {
  border-color: rgba(22, 163, 74, 0.18);
  animation-delay: 2.1s;
}

@keyframes monitoring-wave-slow {
  0% {
    transform: scale(0.55);
    opacity: 0;
  }

  18% {
    opacity: 0.62;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel .panel-topline .status-dot::before,
  .hero-panel .panel-topline .status-dot::after {
    animation: none;
  }
}

/* ===============================
   Pricing — check bullets
   =============================== */
   
.price-card p.packmore {
    font-weight: 700;
    margin-top: -15px;
    margin-bottom: -10px;
    height: 25px;
}

.price-card {
  --price-card-accent: var(--indigo-medium);
}

.price-card--featured {
  --price-card-accent: var(--indigo);
}

.price-card--featured2 {
  --price-card-accent: var(--indigo-hard);
}

.price-card .check-list {
  gap: 12px;
}

.price-card .check-list li:not(.check-list__note) {
  position: relative;
  padding-left: 28px;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.45;
}

/* Cercle coloré */
.price-card .check-list li:not(.check-list__note)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;

  width: 15px;
  height: 15px;

  border-radius: 999px;
  background: var(--price-card-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--price-card-accent) 12%, transparent);
}

/* Check blanc */
.price-card .check-list li:not(.check-list__note)::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.28em + 4px);

  width: 6px;
  height: 3px;

  border-left: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;

  transform: rotate(-45deg);
  transform-origin: center;
}