:root {
  --green: #10893f;
  --green-deep: #0a6d32;
  --green-ring: #0a5c2b;
  --green-bright: #10a94b;
  --ink: #14201a;
  --ink-2: #55605a;
  --ink-3: #8a938c;
  --bg: #f5f6f3;
  --line: #e5e8e2;
  --card-line: #e6e9e3;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Archivo', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--green-deep);
}

h1,
h2,
p {
  margin: 0;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 246, 243, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark .ring {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2.5px solid #fff;
}

.brand-name {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.brand.small .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.brand.small .brand-mark .ring {
  width: 12px;
  height: 12px;
}

.brand.small .brand-name {
  font-size: 15px;
  font-weight: 800;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links>a {
  font-size: 15px;
  font-weight: 700;
  color: #4a5850;
}

.lang-toggle {
  display: flex;
  border: 1.5px solid #cfe0d5;
  border-radius: 999px;
  overflow: hidden;
}

.lang-toggle button {
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 13px;
  border: none;
  background: transparent;
  color: #4a5850;
}

.lang-toggle button.active {
  background: var(--green);
  color: #fff;
}

/* HERO */
.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 84px 28px 64px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e5f3ea;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 800;
  color: #0a7d3c;
}

.pill-dot {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pill-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.02;
  margin-bottom: 20px;
}

.hero-body {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 460px;
}

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

.store {
  display: block;
}

.store:hover {
  opacity: .92;
}

.store img {
  display: block;
  height: 48px;
  width: auto;
}

.hero-foot {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  margin-top: 16px;
}

/* PHONE */
.hero-phone {
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: 268px;
  height: 564px;
  border-radius: 42px;
  background: #0a0b0a;
  padding: 9px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .22);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 23px;
  background: #0a0b0a;
  border-radius: 14px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 12px 22px 22px;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  font-size: 12px;
  font-weight: 700;
  color: #3a423d;
}

.battery {
  width: 20px;
  height: 10px;
  border: 1.5px solid #3a423d;
  border-radius: 3px;
  opacity: .7;
}

.phone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 16px;
}

.back {
  font-size: 19px;
  color: var(--ink);
  font-weight: 700;
}

.phone-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-3);
}

.phone-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.phone-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  margin-top: 3px;
}

.verified {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #e5f3ea;
  font-size: 11px;
  font-weight: 800;
  color: #0a7d3c;
}

.phone-eyebrow.small {
  margin: 20px 0 11px;
  letter-spacing: .14em;
  color: #a2aaa3;
  font-size: 10px;
}

.chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 7px;
}

.knoop {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(16, 137, 63, .28);
}

.knoop-num {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: var(--green-deep);
}

.arrow {
  color: #b4c0b7;
  font-size: 15px;
  font-weight: 700;
}

.knoop-more {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #e6ebe6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #7d867e;
}

.phone-btn {
  margin-top: auto;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

/* SECTIONS */
.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 28px;
  scroll-margin-top: 70px;
}

.section-tag {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--green-bright);
  margin-bottom: 26px;
}

.features-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--card-line);
  border-radius: 20px;
  padding: 26px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #eaf4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid var(--green);
}

.feature-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.5;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.step-num span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--green-deep);
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.step-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.5;
}

/* PRIVACY BANNER */
.priv-banner {
  background: var(--green);
  border-radius: 24px;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.priv-banner-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.priv-banner-text {
  flex: 1;
  min-width: 260px;
}

.priv-banner-title {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.priv-banner-body {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  line-height: 1.5;
}

.priv-banner-cta {
  background: #fff;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 14px;
  flex: none;
}

.priv-banner-cta:hover {
  color: var(--green-deep);
  opacity: .9;
}

/* PRIVACY PAGE */
.privacy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 28px 80px;
}

.back-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}

.privacy-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.privacy-updated {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 36px;
}

.priv-summary {
  background: #e5f3ea;
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
}

.priv-summary-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.priv-section {
  margin-bottom: 30px;
}

.priv-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.priv-section p {
  font-size: 16px;
  font-weight: 500;
  color: #3f4a44;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-links {
  margin-left: auto;
  display: flex;
  gap: 22px;
  align-items: center;
}

.footer-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
}

.copyright {
  font-size: 14px;
  font-weight: 500;
  color: #a2aaa3;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
  }

  .hero-phone {
    order: -1;
  }

  .hero-title {
    font-size: 44px;
  }

  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 16px;
  }
}

@media (max-width: 560px) {

  .nav-links>a[href="#features"],
  .nav-links>a[href="#how"] {
    display: none;
  }

  .store img {
    height: 40px;
  }
}