:root {
  --primary: #2e7d6b;
  --primary-dark: #174e43;
  --primary-deep: #0f3a31;
  --accent: #a7f3d0;
  --accent-soft: #def5eb;
  --alarm: #e11d48;
  --ink: #10201c;
  --ink-soft: #46605a;
  --bg: #f6faf8;
  --surface: #ffffff;
  --border: #e3efe9;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 10px 30px rgba(23, 78, 67, 0.10);
  --shadow-lg: 0 24px 60px rgba(23, 78, 67, 0.18);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--primary-dark);
}

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

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--ink-soft);
}

.nav-links a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 14px;
  padding: 13px 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(46, 125, 107, 0.32);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-ghost {
  background: var(--surface);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.9rem;
  border-radius: 11px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.lang-toggle:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(167, 243, 208, 0.5), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(46, 125, 107, 0.18), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
  padding: 72px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
}

.hero h1 .mint {
  color: var(--primary);
}

.hero p.lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 30rem;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  line-height: 1.15;
}

.store-badge small {
  display: block;
  font-weight: 500;
  font-size: 0.68rem;
  opacity: 0.75;
}

.store-badge svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-phone {
  width: 260px;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: rotate(3deg);
}

.hero-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-float.pin {
  top: 8%;
  left: -6%;
}

.hero-float.bell {
  bottom: 6%;
  right: -4%;
}

.hero-float .dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-float .dot.green {
  background: var(--accent-soft);
  color: var(--primary);
}

.hero-float .dot.red {
  background: #fde8ee;
  color: var(--alarm);
}

/* ---------- Sections ---------- */

.section {
  padding: 72px 0;
}

.section-alt {
  background: #fff;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin: 0;
}

/* ---------- Features ---------- */

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

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 1.12rem;
  margin: 0 0 8px;
}

.feature p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Screenshots ---------- */

.screenshots {
  display: flex;
  justify-content: center;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 6px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.screenshots::-webkit-scrollbar {
  display: none;
}

.shot {
  flex: 0 0 auto;
  width: 236px;
  text-align: center;
  scroll-snap-align: start;
}

.shot img {
  width: 236px;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: var(--surface);
}

.shot span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- Privacy strip ---------- */

.privacy-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 38px;
}

.privacy-strip h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.privacy-strip p {
  margin: 0;
  color: var(--accent-soft);
}

.privacy-strip .btn {
  background: #fff;
  color: var(--primary-dark);
}

/* ---------- CTA ---------- */

.cta {
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(167, 243, 208, 0.45), transparent 65%),
    linear-gradient(180deg, var(--primary-deep), var(--primary-dark));
  color: #fff;
}

.cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.cta p {
  color: var(--accent-soft);
  font-size: 1.12rem;
  max-width: 32rem;
  margin: 0 auto 30px;
}

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

.cta .store-badge small {
  color: var(--ink-soft);
  opacity: 1;
}

.cta .store-badge svg {
  fill: var(--ink);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--primary-deep);
  color: #cfe8df;
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}

.footer-grid .brand {
  color: #fff;
}

.footer-grid p {
  font-size: 0.92rem;
}

.footer-col h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  color: #cfe8df;
  margin-bottom: 10px;
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  font-size: 0.86rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Legal pages ---------- */

.legal {
  max-width: 760px;
  padding: 56px 24px 72px;
  margin: 0 auto;
}

.legal h1 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.legal .updated {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0 0 32px;
}

.legal h2 {
  font-size: 1.28rem;
  margin: 34px 0 12px;
  color: var(--primary-dark);
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal ul {
  padding-left: 22px;
}

.legal li {
  margin-bottom: 8px;
}

.legal .card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 18px 0;
}

.legal .divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p.lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 12px;
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .screenshots {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .privacy-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-links a:not(.btn) {
    display: none;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .screenshots {
    grid-template-columns: 1fr 1fr;
  }
  .hero-float {
    display: none;
  }
}
