:root {
  --bg: #0A0F0D;
  --text: #F4F6F5;
  --muted: #9aa8a3;
  --accent: #003D2B;
  --accent-hover: #00563d;
  --accent-soft: #9ad9c0;
  --border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page { flex: 1; }

.hero {
  max-width: 768px;
  margin: 0 auto;
  padding: 80px 24px 64px;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent-soft);
}
.hero__title {
  margin: 24px 0 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero__lead {
  margin: 24px auto 0;
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(244, 246, 245, 0.85);
  line-height: 1.55;
}
.hero__sub {
  margin: 16px auto 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 14px 28px -12px rgba(0, 61, 43, 0.5);
  transition: transform .15s ease, background .15s ease;
}
.cta:hover { background: var(--accent-hover); transform: translateY(-2px); }
.cta:active { transform: translateY(0); }
.trust { margin-top: 16px; font-size: 14px; color: var(--muted); }

.inside {
  border-top: 1px solid var(--border);
  padding: 64px 24px;
}
.inside__title {
  max-width: 768px;
  margin: 0 auto;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
}
.inside__list {
  max-width: 768px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inside__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(244, 246, 245, 0.9);
  line-height: 1.5;
}
.bullet {
  margin-top: 8px;
  width: 8px; height: 8px; border-radius: 999px; background: var(--accent-soft);
  flex-shrink: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer__inner {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 640px) {
  .footer__inner { flex-direction: row; }
}
.footer__brand { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.footer__link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease;
}
.footer__link:hover { color: var(--text); }