:root {
  --ink: #0f2f25;
  --ink-soft: #204b3b;
  --bg: #f4f9f7;
  --card: #ffffff;
  --accent: #0f3d2e;
  --accent-2: #2a9d8f;
  --accent-3: #7ad3c5;
  --shadow: 0 18px 48px rgba(12, 56, 41, 0.15);
  --radius: 20px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 0%, #e9f6f1 0, #f4f9f7 45%, #ffffff 100%);
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; margin: 0 0 0.6rem; }

.container { width: min(1120px, 92%); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eef2f1;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand { display: flex; gap: 0.8rem; align-items: center; }
.logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
}
.brand-name { font-weight: 700; }
.brand-tagline { font-size: 0.85rem; color: #6b7280; }

.nav-links { display: flex; gap: 1.2rem; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 0.7rem; }

.cta, .ghost {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: var(--shadow);
}

.ghost {
  border: 1px solid #d1e5df;
  color: var(--ink-soft);
  background: #fff;
}

.menu-btn { display: none; border: none; background: #fff; border-radius: 12px; padding: 0.5rem 0.7rem; box-shadow: var(--shadow); }

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: center; gap: 2rem; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem; color: var(--accent-2); font-weight: 700; }

.hero-text h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.subtitle { font-size: 1.1rem; color: #4b5563; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.trust { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; color: #6b7280; }
.pill { background: #e6f4f0; color: var(--accent); padding: 0.3rem 0.7rem; border-radius: 999px; font-size: 0.8rem; }

.hero-card .screen { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; }
.screen-header { display: flex; gap: 0.4rem; margin-bottom: 1rem; }
.screen-header span { width: 10px; height: 10px; border-radius: 50%; background: #d1e5df; }

.screen-body { display: grid; gap: 1rem; }
.stat { background: #f6fbfa; padding: 0.8rem 1rem; border-radius: 14px; }
.stat-title { font-size: 0.8rem; color: #6b7280; }
.stat-value { font-size: 1.4rem; font-weight: 700; }

.chart { display: flex; gap: 0.4rem; align-items: flex-end; height: 90px; }
.bar { flex: 1; border-radius: 8px; background: linear-gradient(180deg, var(--accent-2), var(--accent-3)); }
.screen-note { font-size: 0.85rem; color: #6b7280; }

.section { padding: 4rem 0; }
.section.alt { background: #f0f7f4; }
.section-head { margin-bottom: 2rem; }
.section-head p { color: #6b7280; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.card { background: var(--card); padding: 1.4rem; border-radius: var(--radius); box-shadow: 0 12px 30px rgba(12,56,41,0.1); }
.card .icon { font-size: 1.2rem; width: 36px; height: 36px; display: grid; place-items: center; background: #e6f4f0; border-radius: 12px; }
.card h3 { font-size: 1rem; }
.card p { color: #6b7280; font-size: 0.9rem; }

.how-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.checklist { padding: 0; list-style: none; display: grid; gap: 0.7rem; }
.checklist li::before { content: '✔'; margin-right: 0.6rem; color: var(--accent-2); }

.steps { display: grid; gap: 1rem; }
.step { display: flex; gap: 1rem; background: #fff; padding: 1rem; border-radius: 16px; box-shadow: 0 12px 30px rgba(12,56,41,0.1); }
.step span { font-weight: 700; color: var(--accent-2); }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.price-card { position: relative; overflow: hidden; }
.price-title { font-weight: 700; color: var(--accent); }
.price-value { font-size: 2rem; font-weight: 700; margin: 0.6rem 0; }
.price-desc { color: #6b7280; margin-bottom: 1rem; }
.price-card ul { padding-left: 1rem; color: #4b5563; }
.price-card .block { display: inline-block; margin-top: 1rem; }

.cta-section { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.cta-section .ghost { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.cta-grid { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.footer { background: #0f2f25; color: #d1e5df; padding: 2rem 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: #d1e5df; margin-left: 1rem; text-decoration: none; }

.reveal-init { opacity: 0; transform: translateY(18px); transition: all 0.6s ease; }
.reveal { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-links.active { display: flex; position: absolute; top: 72px; right: 4%; flex-direction: column; background: #fff; padding: 1rem; border-radius: 12px; box-shadow: var(--shadow); }
}

@media (max-width: 600px) {
  .hero { padding-top: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta, .ghost { text-align: center; }
}
