@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/public/fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #6BBF70;
  --green-dk: #58aa5d;
  --green-lt: #eef7ef;
  --dark:     #111111;
  --mid:      #555e68;
  --light:    #f5f7f5;
  --white:    #ffffff;
  --border:   #dde5dd;
  --radius:   12px;
}

body {
  font-family: 'Nunito', ui-sans-serif, system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
  text-decoration: none;
  line-height: 1;
}
.logo-inline {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: .25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.01em;
  font-size: 1.45rem;
  line-height: 1;
}
.logo-inline span:last-child { color: var(--green); }
.logo-sub {
  font-size: .7rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0;
}
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
  line-height: 1;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: .55rem 1.2rem;
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none;
  font-size: .95rem;
  font-family: inherit;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.btn-primary:hover { background: var(--green-dk); border-color: var(--green-dk); }
.btn-ghost { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-ghost:hover { background: var(--green); color: var(--white); }
.btn-lg { padding: .75rem 1.75rem; font-size: 1.05rem; }

/* SECTION LABEL */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
}

/* HERO */
.hero {
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(160deg, var(--green-lt) 0%, var(--white) 55%);
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.hero-sub {
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--mid);
  font-weight: 400;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.badge {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green-dk);
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
  border: 1px solid #c2e0c4;
}

/* PAIN */
.pain {
  padding: 4.5rem 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}
.pain .section-label { color: var(--green); }
.pain h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 2.5rem; font-weight: 700; }
.pain h2 em { color: var(--green); font-style: normal; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.stat-num { font-size: 2.75rem; font-weight: 800; color: var(--green); }
.stat-label { color: #94a3b8; font-size: .95rem; margin-top: .3rem; font-weight: 400; }

/* FEATURES */
.features { padding: 5.5rem 0; }
.features h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 3rem; text-align: center; font-weight: 700; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s;
}
.feature-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(107,191,112,.1);
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--dark);
}
.feature-card p { color: var(--mid); font-size: .95rem; line-height: 1.6; }

/* PRIVACY */
.privacy-section { padding: 5.5rem 0; background: var(--light); }
.privacy-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.privacy-list { list-style: none; margin: 1.25rem 0 1.75rem; }
.privacy-list li {
  padding: .45rem 0 .45rem 1.4rem;
  font-size: 1rem;
  color: var(--mid);
  position: relative;
}
.privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.privacy-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .5rem; font-weight: 700; }
.lock-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  min-width: 200px;
}
.lock-label { font-weight: 800; font-size: 1.25rem; line-height: 1.4; color: var(--dark); }

/* CTA */
.cta-section { padding: 5.5rem 0; text-align: center; background: var(--green-lt); }
.cta-inner h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .5rem; font-weight: 700; }
.cta-inner p { color: var(--mid); margin-bottom: 1.75rem; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--white);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-logo { font-size: 1.05rem; font-weight: 700; }
.footer-logo span { color: var(--green); }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: var(--mid); text-decoration: none; font-size: .9rem; }
.footer-nav a:hover { color: var(--green); }
.footer-copy { font-size: .85rem; color: #94a3b8; }
.footer-version { font-size: .75rem; color: #b6c2cf; }
.footer-version:empty { display: none; }

@media (max-width: 680px) {
  .privacy-inner { grid-template-columns: 1fr; }
  .lock-card { display: none; }
}
