:root {
  color-scheme: light;
  --ink: #151612;
  --muted: #5d6258;
  --paper: #fbfaf6;
  --paper-strong: #ffffff;
  --line: #d8ddd0;
  --green: #22c55e;
  --green-deep: #116534;
  --amber: #f6b73c;
  --coral: #ef5b45;
  --teal: #0f9f8f;
  --blue: #2563eb;
  --black: #10120f;
  --shadow: 0 24px 70px rgba(31, 38, 25, .14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

mark {
  padding: .08em .28em;
  border-radius: 4px;
  color: #06140b;
  background: #9cffba;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--black);
  color: #fff;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(16, 18, 15, .1);
  background: rgba(251, 250, 246, .88);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 32px, var(--max));
  min-height: 68px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #07130c;
  background: linear-gradient(135deg, #9cffba, #f6d36d);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(17, 101, 52, .08);
}

.nav-cta,
.primary-button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta,
.primary-button {
  color: #06140b;
  background: #9cffba;
  box-shadow: 0 12px 28px rgba(34, 197, 94, .22);
}

.primary-button:hover,
.nav-cta:hover,
.copy-button:hover {
  transform: translateY(-1px);
}

.primary-button.light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.copy-button {
  color: #fff;
  background: #252821;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 82vh;
  overflow: hidden;
  color: #fff;
  background: #10120f;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 26%, rgba(37, 212, 242, .16), transparent 34%),
    linear-gradient(90deg, rgba(16, 18, 15, .96) 0%, rgba(16, 18, 15, .88) 46%, rgba(16, 18, 15, .7) 100%),
    url("assets/hero-section-metricsbooster-dark.webp") center / cover no-repeat,
    #10120f;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 44%;
  content: "";
  background:
    linear-gradient(180deg, transparent, #10120f 74%),
    repeating-linear-gradient(90deg, rgba(156, 255, 186, .12) 0 1px, transparent 1px 92px);
}

.hero-inner,
.section-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 82vh;
  padding: 88px 0 52px;
}

.eyebrow,
.mini-label,
.feature-kicker,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #092011;
  background: #9cffba;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero h1,
.final-cta h2 {
  max-width: 820px;
  margin: 16px 0 18px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: .94;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.22;
}

.coupon-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 30px;
}

.coupon {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 12px;
  border: 1px dashed rgba(156, 255, 186, .7);
  border-radius: 8px;
  color: #07130c;
  background: #f6ffe8;
}

.coupon.dark {
  color: #fff;
  background: rgba(0, 0, 0, .28);
  border-color: rgba(255, 255, 255, .46);
}

.coupon-label,
.coupon-bonus {
  color: rgba(7, 19, 12, .72);
  font-size: 13px;
  font-weight: 800;
}

.coupon.dark .coupon-label,
.coupon.dark .coupon-bonus {
  color: rgba(255, 255, 255, .76);
}

.coupon-code {
  padding: 8px 12px;
  border-radius: 6px;
  color: #06140b;
  background: #9cffba;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.affiliate-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 900px);
  margin: 42px 0 0;
}

.hero-stats div {
  min-height: 106px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.hero-stats dt {
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 950;
}

.snippet-band {
  padding: 24px 0;
  color: #092011;
  background: #d9ffd8;
}

.snippet-band p {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 750;
}

.section {
  padding: 86px 0;
}

.proof-strip {
  padding: 42px 0;
  background: #fff;
}

.proof-grid,
.feature-grid,
.pricing-grid,
.comparison,
.truth-grid {
  display: grid;
  gap: 18px;
}

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

.proof-grid article,
.feature-grid article,
.price-card,
.metric-panel,
.roi-tool,
.do-dont article,
.steps li,
.versus article,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.proof-grid article {
  min-height: 250px;
  padding: 28px;
}

.proof-grid h2,
.section-heading h2,
.split h2,
.truth h2,
.final-cta h2 {
  margin: 14px 0 12px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.proof-grid p,
.section-heading p,
.split p,
.truth p,
.price-card p,
.feature-grid p,
.metric-panel li,
.faq p,
.steps p {
  color: var(--muted);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 30px;
}

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

.metric-panel {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  padding: 28px;
}

.metric-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: var(--coral);
}

.metric-panel.after::before {
  background: var(--green);
}

.metric-panel span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.metric-panel ul,
.check-list,
.do-dont ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.metric-panel li,
.check-list li,
.do-dont li {
  position: relative;
  padding-left: 24px;
}

.metric-panel li::before,
.check-list li::before,
.do-dont li::before {
  position: absolute;
  left: 0;
  top: .64em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.screen-frame {
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid rgba(16, 18, 15, .12);
  border-radius: 8px;
  background: #0f1110;
  box-shadow: var(--shadow);
}

.screen-frame img {
  width: 100%;
}

.screen-frame figcaption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, .76);
  background: #10120f;
  font-size: 14px;
}

.ordering {
  background:
    linear-gradient(180deg, #f1f7ef, #fbfaf6);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: start;
}

.roi-tool {
  position: sticky;
  top: 92px;
  padding: 26px;
}

.roi-tool h3,
.do-dont h3,
.steps h3,
.price-card h3,
.feature-grid h3,
.cta-band h3 {
  margin: 12px 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.roi-tool label {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 850;
}

.roi-tool input[type="range"] {
  width: 100%;
  accent-color: var(--green-deep);
}

.roi-tool output {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.roi-result {
  display: grid;
  gap: 4px;
  margin: 24px 0 0;
  padding: 18px;
  border-radius: 8px;
  color: #07130c;
  background: #d9ffd8;
}

.roi-result span {
  font-size: 36px;
  font-weight: 950;
}

.roi-result small {
  color: #33513e;
  font-weight: 750;
}

.service {
  background: #fff;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article {
  min-height: 250px;
  padding: 24px;
}

.feature-kicker {
  color: #fff;
  background: var(--blue);
}

.offer-section {
  color: #fff;
  background: #12130f;
}

.offer-section .section-heading p,
.offer-section .price-card p {
  color: rgba(255, 255, 255, .74);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  min-height: 320px;
  padding: 26px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
}

.price-card.highlighted {
  border-color: rgba(156, 255, 186, .65);
  background:
    linear-gradient(180deg, rgba(156, 255, 186, .16), rgba(255, 255, 255, .06));
}

.tag {
  color: #07130c;
  background: var(--amber);
}

.price {
  margin: 20px 0 12px;
  color: #fff;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 950;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, .38), rgba(37, 99, 235, .28)),
    #1b2118;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.screenshots {
  background: #f5f7fb;
}

.truth {
  background: #fff7d7;
}

.truth-grid {
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
}

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

.versus article {
  min-height: 230px;
  padding: 26px;
}

.versus span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.versus strong {
  display: block;
  margin: 12px 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;
}

.transparency {
  background: #fbfaf6;
}

.do-dont {
  display: grid;
  gap: 16px;
}

.do-dont article {
  padding: 24px;
}

.howto {
  background: #ecfbf8;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 230px;
  padding: 26px;
}

.steps span {
  display: inline-flex;
  color: var(--teal);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0 22px;
}

.faq summary {
  min-height: 68px;
  padding: 20px 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin: 0 0 20px;
}

.final-cta {
  padding: 86px 0 92px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 18, 15, .96), rgba(17, 101, 52, .74)),
    url("assets/capture-dashboard-metricsbooster-commandes.webp") center / cover no-repeat,
    #10120f;
}

.final-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
}

.centered {
  align-items: center;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, .72);
  background: #10120f;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .hero-stats,
  .feature-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .truth-grid {
    grid-template-columns: 1fr;
  }

  .roi-tool {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-cta {
    display: none;
  }

  .brand span:last-child {
    overflow: hidden;
    max-width: 210px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-inner {
    padding: 74px 0 42px;
  }

  .hero h1,
  .final-cta h2 {
    font-size: 48px;
  }

  .coupon {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .copy-button,
  .primary-button {
    width: 100%;
  }

  .hero-stats,
  .proof-grid,
  .comparison,
  .feature-grid,
  .pricing-grid,
  .steps,
  .versus {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .proof-grid article,
  .metric-panel,
  .feature-grid article,
  .price-card,
  .roi-tool,
  .do-dont article,
  .steps li,
  .versus article {
    min-height: auto;
    padding: 22px;
  }

  .cta-band,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .screen-frame figcaption {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.legal-page {
  background: #fbfaf6;
}

.legal-shell {
  min-height: 100vh;
  padding: 72px 0;
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  margin: 18px 0 28px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: 24px;
}

.legal-content p {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green-deep);
  font-weight: 850;
  text-decoration: none;
}

.site-footer a {
  color: #fff;
  font-weight: 850;
}