@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #faf5ec;
  --bg-warm-glow: #f5ead9;
  --surface: #fffdf8;
  --text: #2b241d;
  --text-secondary: #8c8072;
  --border: #ece1cd;
  --border-soft: #f1e7d6;
  --accent: #6b8f71;
  --accent-deep: #4f6e55;
  --accent-soft: #e8efe4;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(43, 36, 29, 0.05);
  --shadow-md: 0 10px 30px rgba(43, 36, 29, 0.08);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(640px 320px at 15% -10%, var(--bg-warm-glow), transparent 60%),
    radial-gradient(520px 260px at 100% 0%, var(--accent-soft), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  margin-right: 6px;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.btn {
  display: inline-block;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.92;
  background: var(--accent);
}

.btn-lg {
  padding: 13px 24px;
  font-size: 14.5px;
  border-radius: 12px;
}

/* Top bar */

.topbar {
  padding: 20px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14px;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

/* Hero */

.hero {
  padding: 56px 0 40px;
}

.hero-inner {
  text-align: center;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 auto 30px;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-strip .stat {
  background: var(--surface);
  padding: 24px 12px;
}

.stat-strip .num {
  font-size: 34px;
  color: var(--accent-deep);
}

.stat-strip .label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.stat-caption {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 14px;
}

/* Sections */

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-title {
  font-size: 28px;
  text-align: center;
  margin: 0 0 36px;
}

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

.step {
  padding: 26px 22px;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 15px;
  margin: 0 0 8px;
}

.step p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

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

.body-copy {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 18px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  padding-left: 22px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.mock-card {
  padding: 24px;
}

.mock-header {
  font-size: 11.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.mock-headline {
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 20px;
}

.mock-stats {
  display: flex;
  gap: 18px;
}

.mock-stats > div {
  display: flex;
  flex-direction: column;
}

.mock-stats span {
  font-size: 20px;
  color: var(--accent-deep);
}

.mock-stats small {
  font-size: 10.5px;
  color: var(--text-secondary);
  margin-top: 2px;
}

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

.privacy-item {
  padding: 24px 22px;
}

.privacy-item h3 {
  font-size: 14.5px;
  margin: 0 0 8px;
}

.privacy-item p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.cta-section {
  padding-bottom: 72px;
}

.cta-wrap {
  text-align: center;
  padding: 48px 32px;
}

.cta-wrap h2 {
  font-size: 26px;
  margin: 0 0 10px;
}

.cta-wrap p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0 0 24px;
}

/* Footer */

.footer {
  border-top: 1px solid var(--border-soft);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 12.5px;
  color: var(--text-secondary);
}

@media (max-width: 720px) {
  .steps,
  .privacy-grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}
