:root {
  --bg: #FBFDFC;
  --ink: #0F1A16;
  --ink-70: #3C4A44;
  --muted: #5A6661;
  --muted-2: #98A29D;

  --primary: #1F6B52;
  --primary-deep: #14513D;
  --primary-tint: #E4EFE9;
  --primary-tint-border: #C3DDD1;

  --surface: #F5F7F5;
  --border: #D6DDD8;
  --border-light: #E1E7E4;
  --border-lighter: #EDF1EF;
  --border-strong: #C3CDC8;

  --dark: #0F1A16;
  --dark-muted: #B8C4BF;
  --dark-faint: #8DA69B;
  --dark-accent: #4FA382;
  --dark-tint: #A8D3C1;

  --danger: #A8221B;
  --danger-bg: #FBE9E7;
  --danger-border: #E8C4BF;

  --warn: #A85A08;
  --warn-bg: #FBF0E2;

  --info: #0B5FA5;
  --info-bg: #E7F0F8;

  --font-heading: 'Nunito', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  color-scheme: light;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover { color: var(--primary-deep); }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  text-wrap: balance;
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-70);
  max-width: 30em;
  text-wrap: pretty;
}

.section {
  padding: 84px 0 76px;
}

.section__intro {
  margin: 14px 0 44px;
  max-width: 36em;
}

.fine-print {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  font-size: 16px;
  font-weight: 600;
  background: none;
  white-space: nowrap;
}

.btn--sm { height: 40px; padding: 0 16px; font-size: 14.5px; }
.btn--lg { height: 54px; padding: 0 26px; font-size: 16.5px; }

.btn--primary { background: var(--primary); color: #FFF; }
.btn--primary:hover { background: var(--primary-deep); }

.btn--outline { border-color: var(--primary); color: var(--primary); }
.btn--outline:hover { background: var(--primary-tint); }

.btn--outline-onbrand { border-color: var(--primary); color: var(--primary); background: #FFF; }
.btn--outline-onbrand:hover { background: var(--primary-tint); }

.btn--dark { background: var(--dark); color: #FFF; }
.btn--dark:hover { background: #1B2A24; }

.btn--ghost { border-color: var(--border-strong); color: var(--ink-70); }
.btn--ghost:hover { background: var(--surface); }

.btn--ghost-light { border-color: rgba(255,255,255,0.28); color: #FFF; }
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); }

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-row--center { justify-content: center; }

/* Pills / eyebrows */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 26px;
}
.pill--brand {
  background: var(--primary-tint);
  border: 1px solid var(--primary-tint-border);
  color: var(--primary-deep);
}
.pill--brand span:first-child { color: var(--primary); font-size: 12px; }

.pill--danger {
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  color: var(--danger);
  height: 30px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--dark-accent); }

/* Nav */

.nav {
  border-bottom: 1px solid var(--border-light);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-70);
}

/* Hero */

.hero { padding: 72px 0 88px; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(0,1fr);
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: 58px;
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero .lede { margin-bottom: 32px; }

.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
}
.demo-card__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.demo-card__stack { display: grid; gap: 9px; }

.demo-tile {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
}
.demo-tile--highlight { border: 1.5px solid var(--primary); padding: 14px 15px; }
.demo-tile__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.demo-tile__label--ok { color: var(--primary-deep); margin-bottom: 7px; }
.demo-tile__label--warn { color: var(--warn); margin-bottom: 7px; margin-top: 11px; }
.demo-tile__text { font-size: 14.5px; line-height: 1.4; }

.demo-tile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}
.demo-tile__score {
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.demo-tile__score strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.demo-tile__score span { font-size: 12.5px; font-weight: 600; color: var(--muted); }

.badge {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  padding: 0 9px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 11.5px;
}
.badge--verified {
  background: var(--primary-tint);
  border: 1px solid var(--primary);
  color: var(--primary-deep);
}
.badge--verified span:first-child { color: var(--primary); font-size: 11px; }

.progress {
  height: 5px;
  border-radius: 999px;
  background: var(--border-light);
  overflow: hidden;
  display: flex;
  margin-bottom: 10px;
}
.progress__bar--met { background: var(--primary); }
.progress__bar--warn { background: var(--warn); }

.demo-tile__title { font-size: 15.5px; font-weight: 600; line-height: 1.25; margin-bottom: 2px; }
.demo-tile__meta { font-size: 12.5px; color: var(--muted); }

.demo-arrow {
  display: flex;
  justify-content: center;
  color: var(--muted-2);
  font-size: 15px;
}

.check-list { display: grid; gap: 4px; margin-bottom: 11px; }
.check-list li { display: flex; gap: 8px; font-size: 14px; align-items: flex-start; }
.check-list--spaced { gap: 10px; margin-bottom: 0; }
.mark { font-weight: 700; font-size: 13px; flex: none; margin-top: 2px; }
.mark--ok { color: var(--primary); }
.mark--warn { color: var(--warn); }
.mark--danger { color: var(--danger); font-size: 12px; }

.demo-tile--cta {
  background: var(--primary);
  border-radius: 12px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: none;
}
.demo-tile__cta-title { font-size: 15px; font-weight: 600; color: #FFF; line-height: 1.3; }
.demo-tile__cta-sub { font-size: 12.5px; color: var(--dark-tint); margin-top: 2px; }
.demo-tile--cta > span { color: #FFF; font-size: 17px; }

/* Dark stats section */

.stats { background: var(--dark); padding: 76px 0; }
.on-dark { color: #FFF; }
.on-dark-muted { color: var(--dark-muted); }
.on-dark-strong { color: #FFF; font-weight: 600; max-width: 28em; margin-top: 16px; }
.on-dark-faint { color: var(--dark-faint); font-size: 16px; max-width: 30em; margin: 0 0 26px; }

.stats h2 { font-size: 40px; line-height: 1.08; }
.stats .lede { max-width: 28em; margin-bottom: 16px; }

.stats__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.05fr);
  gap: 64px;
  align-items: center;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px;
}
.stat-tile--brand {
  background: rgba(31,107,82,0.28);
  border: 1px solid rgba(79,163,130,0.4);
}
.stat-tile__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: #FFF;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.stat-tile__label { font-size: 13.5px; line-height: 1.45; color: var(--dark-muted); }
.stat-tile__label--brand { color: var(--dark-tint); }

/* Steps */

h2 { font-size: 40px; line-height: 1.08; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
}
.step { background: var(--bg); padding: 24px 22px; }
.step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 9px;
}
.step p { font-size: 14.5px; line-height: 1.5; color: var(--ink-70); }

/* Protect / scam check */

.protect {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 76px 0;
}
.protect__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 380px;
  gap: 56px;
  align-items: center;
}
.protect h2 { font-size: 38px; }
.protect .lede { max-width: 32em; margin-bottom: 24px; }

.risk-card {
  background: #FFF;
  border: 2px solid var(--danger);
  border-radius: 16px;
  padding: 20px;
}
.risk-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.02em;
  color: var(--danger);
}
.risk-card__head span { font-size: 21px; }
.risk-card__verdict { font-size: 15.5px; font-weight: 600; line-height: 1.35; margin-bottom: 16px; }

.reasons {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-lighter);
}
.reasons li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; line-height: 1.4; }

.risk-card__real {
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 11px;
  background: var(--primary-tint);
  border: 1px solid var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.risk-card__real-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: 5px;
}

/* Trust */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
}
.trust-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.trust-card--brand { border: 1.5px solid var(--primary); background: var(--primary-tint); }
.trust-card__head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.trust-card__head span { font-size: 18px; color: var(--warn); }
.trust-card--brand .trust-card__head span { color: var(--primary); }
.trust-card h3 {
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.trust-card--brand h3 { color: var(--primary-deep); }
.trust-card p { font-size: 14.5px; line-height: 1.5; color: var(--ink-70); margin-bottom: 14px; }
.trust-card .check-list--spaced li { color: var(--ink-70); font-size: 14.5px; line-height: 1.45; }
.trust-card--brand .check-list--spaced li { color: #1B3F32; }
.trust-card__footnote {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-lighter);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-70);
  margin-bottom: 0;
}
.trust-card--brand .trust-card__footnote { border-top-color: var(--primary-tint-border); color: #1B3F32; }

.status-chips { display: grid; gap: 8px; margin-bottom: 16px; }
.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.chip--info { background: var(--info-bg); border: 1px solid var(--info); color: var(--info); }
.chip--warn { background: var(--warn-bg); border: 1px solid var(--warn); color: var(--warn); }

/* Groups */

.groups {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  padding: 76px 0;
}
.groups__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 56px;
  align-items: center;
}
.groups h2 { font-size: 36px; line-height: 1.1; }
.groups .lede { max-width: 30em; margin-bottom: 22px; }

.group-card {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.group-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-lighter);
}
.group-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--primary-deep);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  flex: none;
}
.group-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.group-card__meta { font-size: 13.5px; color: var(--muted); margin-top: 3px; }

.group-card__list { display: grid; gap: 9px; }
.group-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 11px;
  background: var(--surface);
}
.group-row__fit { display: flex; align-items: baseline; gap: 7px; }
.group-row__fit strong { font-family: var(--font-heading); font-weight: 800; font-size: 19px; line-height: 1; font-variant-numeric: tabular-nums; }
.group-row__fit span { font-size: 12px; font-weight: 600; color: var(--muted); }
.group-row__name { flex: 1; font-size: 14px; font-weight: 600; }
.group-row__status { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.group-row__status--warn { color: var(--warn); }
.group-row__status--ok { color: var(--primary-deep); }

/* Partners */

.partners { background: var(--dark); padding: 76px 0; }
.partners__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 56px;
  align-items: center;
}
.partners h2 { font-size: 36px; line-height: 1.1; }
.partners .lede { max-width: 30em; }

.report-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px;
}
.report-card__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--dark-faint);
  margin-bottom: 14px;
}
.report-rows { display: grid; gap: 11px; }
.report-row__head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 5px;
}
.report-row__head span:last-child { font-variant-numeric: tabular-nums; }
.report-row__bar { height: 20px; border-radius: 5px; overflow: hidden; background: rgba(255,255,255,0.08); }
.report-row__bar > div { height: 100%; }
.report-row__note { font-size: 12px; color: #E8B57A; margin-top: 5px; font-weight: 600; }

.report-card__insight {
  margin-top: 18px;
  padding: 13px 14px;
  border-radius: 11px;
  background: rgba(31,107,82,0.28);
  border: 1px solid rgba(79,163,130,0.4);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--dark-tint);
}

/* Final CTA */

.final-cta { padding: 84px 0; }
.final-cta__card {
  border: 1.5px solid var(--primary);
  background: var(--primary-tint);
  border-radius: 20px;
  padding: 48px 44px;
  text-align: center;
}
.final-cta h2 { font-size: 42px; line-height: 1.06; }
.final-cta .lede { margin: 0 auto 30px; color: #1B3F32; }
.fine-print--dark { color: #1B3F32; }

/* Footer */

.footer { border-top: 1px solid var(--border-light); padding: 44px 0 56px; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) repeat(3, minmax(0,1fr));
  gap: 40px;
  margin-bottom: 36px;
}
.brand--footer { margin-bottom: 14px; }
.footer__about { font-size: 14px; line-height: 1.55; color: var(--muted); max-width: 26em; }
.footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer__links { display: grid; gap: 9px; }
.footer__links a { font-size: 14px; color: var(--ink-70); }

.footer__disclaimer {
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-70);
}
.footer__disclaimer strong { font-weight: 600; color: var(--ink); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--muted); }

/* Responsive */

@media (max-width: 900px) {
  .hero__grid,
  .stats__grid,
  .groups__grid,
  .partners__grid {
    grid-template-columns: 1fr;
  }
  .protect__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .final-cta__card { padding: 36px 24px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 34px; }
  .lede { font-size: 17px; }
  h2 { font-size: 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn--lg { height: 48px; padding: 0 20px; font-size: 15px; }
}
