:root {
  --emerald: #1FB587;
  --emerald-deep: #003123;
  --emerald-pale: #EBFBF3;
  --sky: #5CB8F5;
  --sky-deep: #044870;
  --sky-pale: #EAF4FF;
  --ink: #14201b;
  --ink-soft: #43514b;
  --line: rgba(0, 49, 35, 0.10);
  --card: rgba(255, 255, 255, 0.72);
  --bg: #f6faf8;
  --radius: 22px;
  --shadow: 0 18px 50px -22px rgba(0, 49, 35, 0.35);
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient gradient blobs */
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}
body::before {
  width: 540px; height: 540px;
  top: -180px; right: -160px;
  background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
}
body::after {
  width: 520px; height: 520px;
  bottom: -220px; left: -180px;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
}

a { color: var(--sky-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(246, 250, 248, 0.7);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--emerald-deep); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--sky) 130%);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(31, 181, 135, 0.7);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--emerald-deep);
  border: 1px solid var(--line);
}

/* Hero */
.hero { padding: 92px 0 64px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-pale);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--emerald), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 34px;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.note { margin-top: 18px; font-size: 0.9rem; color: var(--ink-soft); }

/* Phone frames + screenshots */
.phone {
  flex: 0 0 auto;
  width: 230px;
  background: #0b1411;
  border-radius: 42px;
  padding: 7px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.28);
}
.phone img { width: 100%; height: auto; display: block; border-radius: 35px; }

.hero-shot { margin-top: 64px; display: flex; justify-content: center; }
.hero-shot .phone { width: 300px; }

.shots { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.step .num {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--emerald), var(--sky));
  margin-bottom: 16px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(8px);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature .ic {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--emerald-pale);
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: 0.95rem; }

/* CTA band */
.cta-band { text-align: center; }
.cta-card {
  background: linear-gradient(135deg, var(--emerald-deep), var(--sky-deep));
  border-radius: 30px;
  padding: 60px 32px;
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-card h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-card p { opacity: 0.85; max-width: 480px; margin: 0 auto 28px; }
.cta-card .btn-primary { background: #fff; color: var(--emerald-deep); box-shadow: none; }

/* Content pages (privacy/terms) */
.page { padding: 60px 0 90px; }
.page .wrap { max-width: 760px; }
.page h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.page .updated { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 36px; }
.page h2 { font-size: 1.3rem; margin: 34px 0 12px; font-weight: 700; }
.page p { color: var(--ink-soft); margin-bottom: 14px; }
.page ul { color: var(--ink-soft); margin: 0 0 16px 22px; }
.page li { margin-bottom: 8px; }
.page strong { color: var(--ink); }
.lead {
  font-size: 1.12rem !important;
  color: var(--ink) !important;
  background: var(--emerald-pale);
  border-left: 3px solid var(--emerald);
  padding: 16px 20px;
  border-radius: 0 14px 14px 0;
}

/* Support */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.contact-card p { color: var(--ink-soft); margin-bottom: 18px; }
.contact-addr { font-size: 0.9rem; margin-top: 16px !important; margin-bottom: 0 !important; }
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.faq-item p { color: var(--ink-soft); font-size: 0.96rem; }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
footer .brand { font-size: 1rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-soft); font-size: 0.92rem; }
.copyright { color: var(--ink-soft); font-size: 0.88rem; width: 100%; }

@media (max-width: 820px) {
  .steps, .features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding: 60px 0 40px; }
}
