:root {
  --ink: #17201c;
  --moss: #496a4d;
  --mint: #5fe3d1;
  --cream: #f7faf5;
  --line: #cbd7ca;
  --muted: #59645e;
  --gold: #e8b65b;
  --panel: #ffffff;
}

* {
  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(--cream);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(73, 106, 77, 0.18);
  background: rgba(247, 250, 245, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--moss);
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 750;
}

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

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  max-width: 780px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.lead {
  max-width: 680px;
  font-size: 20px;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.trust li, .pill {
  border: 1px solid rgba(73, 106, 77, 0.22);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.phone-stack {
  min-height: 650px;
  position: relative;
}

.phone {
  position: absolute;
  width: 270px;
  border-radius: 30px;
  border: 10px solid #111a16;
  box-shadow: 0 24px 60px rgba(23, 32, 28, 0.22);
  background: #111a16;
  overflow: hidden;
}

.phone img {
  display: block;
  width: 100%;
}

.phone.one {
  right: 70px;
  top: 0;
}

.phone.two {
  left: 0;
  top: 118px;
  width: 238px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 20px;
}

.band {
  background: white;
  border-top: 1px solid rgba(73, 106, 77, 0.16);
  border-bottom: 1px solid rgba(73, 106, 77, 0.16);
}

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

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

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.stat {
  font-size: 42px;
  line-height: 1;
  font-weight: 850;
  color: var(--moss);
}

.muted {
  color: var(--muted);
}

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

.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.screen-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.screen-card img {
  display: block;
  width: 100%;
}

.screen-card p {
  margin: 0;
  padding: 12px;
  color: var(--muted);
  font-size: 14px;
}

.legal {
  max-width: 860px;
}

.legal h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.footer {
  border-top: 1px solid rgba(73, 106, 77, 0.18);
  padding: 30px 20px;
  color: var(--muted);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    min-height: 560px;
  }

  .phone.one {
    right: 12%;
  }

  .phone.two {
    left: 8%;
  }

  .grid, .grid.two, .feature-list, .screen-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .phone-stack {
    min-height: 430px;
  }

  .phone {
    width: 210px;
  }

  .phone.two {
    width: 185px;
  }
}
