:root {
  --bg: #0D1512;
  --bg-alt: #101E18;
  --surface: #1A2B23;
  --text: #F1F5F3;
  --muted: #B4C5BC;
  --primary: #34D399;
  --primary-hover: #6EE7B7;
  --accent: #7DD3FC;
  --border: #3B5547;
  --radius: 12px;
  --font: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 15, 20, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.logo__img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.35);
}

.logo__accent {
  color: var(--accent);
}

.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover { color: var(--text); }

@media (min-width: 768px) {
  .nav { display: flex; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--primary);
  color: #0D1512;
}

.btn--primary:hover { background: var(--primary-hover); }

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn--ghost:hover { border-color: var(--muted); }

.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

.hero {
  padding: 4rem 0 5rem;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(52, 211, 153, 0.16), transparent 55%),
    linear-gradient(rgba(13, 21, 18, 0.88), rgba(13, 21, 18, 0.92)),
    url("assets/hero-bg.jpg") center / cover no-repeat;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.highlight { color: var(--primary); }

.lead {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__note {
  font-size: 0.875rem;
  color: var(--muted);
}

.phone-mock {
  max-width: 280px;
  margin: 0 auto;
  padding: 12px;
  background: var(--surface);
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.phone-mock__screen {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 1rem;
  min-height: 320px;
}

.mock-header {
  height: 48px;
  background: var(--surface);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.mock-item {
  height: 64px;
  background: var(--surface);
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.mock-item--short { width: 70%; }

.mock-btn {
  height: 44px;
  background: var(--primary);
  border-radius: 999px;
  margin-top: 2rem;
  opacity: 0.9;
}

.section { padding: 4rem 0; }
.section--alt { background: var(--bg-alt); }

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

.features {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.feature__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature h3 { margin-bottom: 0.5rem; }
.feature p { color: var(--muted); font-size: 0.95rem; }

.pricing {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.plan--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.plan__badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--primary);
  color: #0D1512;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.plan h3 { margin-bottom: 0.5rem; }

.plan__price {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.plan__price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
}

.plan__annual {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.plan__price:has(+ ul) {
  margin-bottom: 1rem;
}

.plan ul {
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.plan li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.pricing__footnote {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

.section--cta {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), transparent);
}

.cta {
  text-align: center;
}

.cta h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.cta p { color: var(--muted); margin-bottom: 1.5rem; }

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a:hover { color: var(--text); }

/* Legal pages */
.legal-page {
  padding: 3rem 0 4rem;
  max-width: 720px;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.legal-page .updated {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
}

.legal-page p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.legal-page a { color: var(--primary); }

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.back-link:hover { color: var(--text); }
