:root {
  color-scheme: light;
  --bg: #f7faf9;
  --surface: #ffffff;
  --surface-soft: #eef5f3;
  --ink: #13211f;
  --muted: #65736f;
  --line: #d9e5e1;
  --primary: #108c73;
  --primary-dark: #096552;
  --accent: #2f6fed;
  --warning-soft: #fff6df;
  --shadow: 0 24px 70px rgba(17, 45, 40, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

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

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

.site-header {
  align-items: center;
  background: rgba(247, 250, 249, 0.92);
  border-bottom: 1px solid rgba(217, 229, 225, 0.84);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand,
.app-top {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand {
  font-size: 1.08rem;
  font-weight: 800;
}

.brand img,
.app-top img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(8, 87, 71, 0.18);
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--primary-dark);
}

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

.header-cta {
  background: var(--ink);
  color: #fff;
}

.button {
  min-width: 190px;
}

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

.button-primary {
  background: var(--primary);
  box-shadow: 0 12px 30px rgba(16, 140, 115, 0.28);
  color: #fff;
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: #e7f0ed;
  color: var(--ink);
}

.hero {
  display: grid;
  gap: clamp(36px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.82fr);
  min-height: calc(100vh - 76px);
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px) 42px;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 24px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: 0;
  line-height: 1.03;
  margin-bottom: 18px;
  text-wrap: balance;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 16px;
}

.fine-print,
small {
  color: var(--muted);
  font-size: 0.88rem;
}

.device-panel {
  align-items: center;
  display: flex;
  justify-content: center;
}

.phone-shell {
  background: #101918;
  border-radius: 44px;
  box-shadow: var(--shadow);
  max-width: 390px;
  padding: 14px;
  width: min(100%, 390px);
}

.phone-screen {
  background:
    linear-gradient(180deg, rgba(16, 140, 115, 0.2), rgba(255, 255, 255, 0) 34%),
    #f8fbfa;
  border-radius: 32px;
  min-height: 660px;
  overflow: hidden;
  padding: 26px;
}

.app-top {
  margin-bottom: 28px;
}

.app-top strong {
  display: block;
  font-size: 1.28rem;
}

.app-label,
.price-label {
  color: var(--muted);
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.status-card {
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding: 18px;
}

.status-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.status-dot {
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(16, 140, 115, 0.13);
  flex: 0 0 12px;
  height: 12px;
  margin-top: 6px;
  width: 12px;
}

.scan-list {
  background: #10201d;
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 14px 10px;
  grid-template-columns: 1fr auto;
  padding: 20px;
}

.scan-list span {
  color: rgba(255, 255, 255, 0.82);
}

.scan-list b {
  color: #76e2c5;
}

.trust-strip {
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}

.trust-strip div {
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(22px, 4vw, 34px) clamp(18px, 4vw, 42px);
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.64);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.trust-strip strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.16;
  margin-bottom: 8px;
}

.trust-strip small {
  color: rgba(255, 255, 255, 0.64);
  display: block;
}

.section,
.final-cta {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.section {
  border-bottom: 1px solid var(--line);
}

.intro {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
}

.intro > p,
.section-copy p,
.price-panel p,
.feature-card p,
details p {
  color: var(--muted);
}

.section-copy {
  max-width: 760px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 236px;
  padding: 24px;
}

.icon-shape {
  align-items: center;
  background: var(--surface-soft);
  border-radius: 8px;
  color: var(--primary-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  margin-bottom: 22px;
  width: 50px;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
}

.price-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(17, 45, 40, 0.1);
  padding: clamp(24px, 4vw, 36px);
}

.price-panel strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  margin: 8px 0 14px;
}

.price-panel small {
  font-size: 1rem;
  font-weight: 750;
}

ul {
  margin: 18px 0 24px;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.compliance {
  background: var(--warning-soft);
}

.do-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.do-grid > div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #efdfb1;
  border-radius: 8px;
  padding: 24px;
}

.faq {
  background: var(--surface);
}

details {
  border-bottom: 1px solid var(--line);
  max-width: 900px;
  padding: 20px 0;
}

summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
  max-width: 720px;
}

.final-cta {
  align-items: center;
  background: #dff0ec;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.final-cta h2 {
  margin-bottom: 0;
  max-width: 820px;
}

.site-footer {
  align-items: flex-start;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 76px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
  margin: 8px 0 0;
  max-width: 700px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

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

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

  .hero {
    min-height: 0;
  }

  .device-panel {
    justify-content: flex-start;
  }

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

  .trust-strip,
  .do-grid {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    min-height: 68px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .phone-shell {
    border-radius: 34px;
    padding: 10px;
  }

  .phone-screen {
    border-radius: 26px;
    min-height: 560px;
    padding: 20px;
  }

  .scan-list {
    font-size: 0.9rem;
  }
}
