:root {
  color-scheme: light;
  --ink: #111813;
  --muted: #5b665f;
  --line: #dce5de;
  --surface: #f5f7f3;
  --surface-2: #ffffff;
  --brand: #123d25;
  --brand-2: #1f7a42;
  --accent: #d7fb45;
  --gold: #f3b941;
  --danger: #d94838;
  --shadow: 0 22px 70px rgba(14, 38, 23, 0.16);
  --radius: 18px;
  --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(--surface);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 61, 37, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 45px rgba(18, 61, 37, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
  letter-spacing: 0;
}

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

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

nav a:hover,
nav a:focus-visible {
  color: var(--brand);
}

.mobile-quick-actions {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta {
  min-height: 40px;
  color: #fff;
  background: var(--brand);
}

.button:hover,
.header-cta:hover,
.button:focus-visible,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.primary {
  color: #102015;
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(215, 251, 69, 0.24);
}

.secondary {
  color: var(--brand);
  background: #fff;
  border-color: rgba(18, 61, 37, 0.2);
}

.secondary.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 92px);
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 112px) 0 70px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-metrics div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 61, 37, 0.1);
  border-radius: 16px;
}

.hero-metrics dt {
  font-size: 23px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  min-height: 620px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 18%, rgba(215, 251, 69, 0.44), transparent 32%),
    linear-gradient(145deg, #0d2116, #185e34 62%, #0f2f20);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone {
  width: min(320px, 82vw);
  padding: 16px;
  color: #fff;
  background: #0b120e;
  border: 10px solid #17221b;
  border-radius: 38px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.phone-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.phone-top span:first-child {
  width: 54px;
  height: 5px;
  background: #26372b;
  border-radius: 999px;
}

.score-card,
.qr-card,
.table-card {
  border-radius: 20px;
}

.score-card {
  padding: 18px;
  background: linear-gradient(145deg, #163a26, #23814a);
}

.score-card p,
.score-card small {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.score-card h2 {
  margin: 16px 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.score-card h2 span {
  display: block;
  width: max-content;
  margin: 10px 0;
  padding: 4px 10px;
  color: #0f170f;
  background: var(--accent);
  border-radius: 999px;
}

.qr-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  color: var(--ink);
  background: #fff;
}

.qr-card p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.qr-grid {
  height: 82px;
  border: 8px solid #111;
  background:
    linear-gradient(90deg, #111 12px, transparent 12px) 0 0 / 24px 24px,
    linear-gradient(#111 12px, transparent 12px) 0 0 / 24px 24px,
    #fff;
}

.table-card {
  margin-top: 14px;
  padding: 10px;
  background: #16251b;
}

.table-card div {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-card div:last-child {
  border-bottom: 0;
}

.table-card span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #142018;
  background: var(--gold);
  border-radius: 999px;
  font-weight: 900;
}

.table-card em {
  color: var(--accent);
  font-style: normal;
  font-weight: 850;
}

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

.problem,
.screens,
.security,
.install,
.audience,
.faq {
  border-top: 1px solid rgba(18, 61, 37, 0.12);
}

.problem {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 36px;
}

.pain-grid,
.feature-grid,
.security-grid,
.steps,
.audience-grid {
  display: grid;
  gap: 14px;
}

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

.pain-grid article,
.feature-grid article,
.security-grid article,
.steps article,
.mini-screen,
.download-card,
details {
  background: var(--surface-2);
  border: 1px solid rgba(18, 61, 37, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(18, 61, 37, 0.06);
}

.pain-grid article,
.feature-grid article,
.security-grid article,
.steps article {
  padding: 22px;
}

.pain-grid span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--brand);
  background: #e8f4da;
  border-radius: 999px;
  font-weight: 900;
}

article p,
.section-heading p,
.screen-panel p,
details p,
.cta-final p {
  color: var(--muted);
  line-height: 1.55;
}

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

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

.privacy {
  border-top: 1px solid rgba(18, 61, 37, 0.12);
}

.privacy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.privacy-list article {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(18, 61, 37, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(18, 61, 37, 0.06);
}

.privacy-list strong,
.privacy-list span {
  display: block;
}

.privacy-list span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.features {
  padding-top: 84px;
}

.screens {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 18px;
}

.screen-panel {
  padding: 30px;
  color: #fff;
  background: linear-gradient(145deg, #10241a, #1c6a3b);
  border-radius: 28px;
}

.screen-panel .eyebrow,
.cta-final .eyebrow {
  color: var(--accent);
}

.screen-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.screen-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-screen {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background:
    linear-gradient(to top, rgba(12, 24, 16, 0.86), transparent 58%),
    repeating-linear-gradient(0deg, #1f7a42 0 16px, #1a6939 16px 32px);
  color: #fff;
}

.mini-screen strong {
  font-size: 20px;
}

.mini-screen span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.install {
  background:
    linear-gradient(#f5f7f3, #f5f7f3) padding-box,
    linear-gradient(90deg, transparent, rgba(31, 122, 66, 0.22), transparent) border-box;
}

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

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
}

.download-card strong,
.download-card span {
  display: block;
}

.download-card span {
  margin-top: 4px;
  color: var(--muted);
}

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

.audience-grid article {
  padding: 22px;
  color: #fff;
  background: #10241a;
  border-radius: var(--radius);
  font-weight: 850;
}

.faq {
  max-width: 860px;
}

details {
  padding: 20px 22px;
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.cta-final {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 26px;
  padding: clamp(42px, 7vw, 78px);
  color: #fff;
  background:
    radial-gradient(circle at 76% 20%, rgba(215, 251, 69, 0.3), transparent 34%),
    linear-gradient(145deg, #10241a, #1a6738);
  border-radius: 32px;
}

.cta-final h2 {
  max-width: 760px;
}

.cta-final p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 16px 86px;
  color: var(--muted);
  font-size: 14px;
}

footer span {
  color: var(--ink);
  font-weight: 900;
}

.mobile-sticky {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 30;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: #102015;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(16, 36, 26, 0.24);
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(640px, calc(100% - 36px));
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(18, 61, 37, 0.16);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(14, 38, 23, 0.22);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-actions a,
.cookie-actions button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.cookie-actions a {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  background: #eef4ec;
}

.cookie-actions button {
  color: #102015;
  background: var(--accent);
  border: 0;
  cursor: pointer;
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(calc(100% - 20px), var(--max));
    padding: 12px;
    border-radius: 24px;
  }

  nav,
  .header-cta {
    display: none;
  }

  .mobile-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mobile-quick-actions a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: var(--brand);
    background: #edf4eb;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
  }

  .mobile-quick-actions a:nth-child(2) {
    color: #102015;
    background: var(--accent);
  }

  .hero,
  .problem,
  .screens {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .pain-grid,
  .feature-grid,
  .security-grid,
  .steps,
  .screen-list {
    grid-template-columns: 1fr;
  }

  .privacy-list {
    grid-template-columns: 1fr;
  }

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

  .mobile-sticky {
    display: flex;
  }
}

@media (max-width: 560px) {
  .site-header {
    margin-top: 8px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.35;
  }

  .lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    margin-top: 24px;
  }

  .mobile-secondary-cta {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
    border-radius: 24px;
  }

  .phone {
    width: min(294px, 88vw);
  }

  section:not(.hero) {
    padding: 52px 0;
  }

  .download-card {
    align-items: stretch;
    flex-direction: column;
  }

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

  .cta-final {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 76px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions a,
  .cookie-actions button {
    justify-content: center;
    width: 100%;
  }
}
