:root {
  --beige: #EDE7D9;
  --beige-deep: #e3dccb;
  --teal: #12D6A2;
  --teal-deep: #0B8169;
  --ink: #1c1a18;
  --muted: #5c574f;
  --card: #ffffff;
  --stroke: rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--beige);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: 780px; margin: 0 auto; padding: 0 22px; }

/* Header */
header {
  padding: 22px 0;
  border-bottom: 1px solid var(--stroke);
  background: var(--beige);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; }
.brand .dot {
  width: 26px; height: 26px; border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  display: inline-block;
}
nav a { margin-left: 18px; font-weight: 600; font-size: .95rem; }

/* Hero */
.hero { padding: 68px 0 40px; text-align: center; }
.hero h1 {
  font-size: 2.6rem; line-height: 1.15; margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.hero .tag { font-size: 1.25rem; color: var(--muted); margin: 0 auto 26px; max-width: 560px; }
.pill {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: rgba(18,214,162,0.15); color: var(--teal-deep);
  font-weight: 700; font-size: .85rem; letter-spacing: .02em;
}

/* Cards / sections */
section { padding: 34px 0; }
h2 { font-size: 1.5rem; margin: 0 0 16px; letter-spacing: -0.01em; }
h3 { font-size: 1.05rem; margin: 22px 0 6px; }
.card {
  background: var(--card); border: 1px solid var(--stroke);
  border-radius: 18px; padding: 22px 24px; margin: 14px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.features .card { margin: 0; }
.features h3 { margin-top: 0; color: var(--teal-deep); }
.features p { margin: 4px 0 0; color: var(--muted); font-size: .96rem; }

.disclaimer {
  background: rgba(18,214,162,0.10);
  border: 1px solid rgba(11,129,105,0.18);
  border-radius: 14px; padding: 14px 18px; color: var(--muted); font-size: .92rem;
}

/* Legal doc */
.doc h2 { margin-top: 30px; }
.doc p { color: var(--ink); }
.doc strong { color: var(--ink); }
.doc .updated { color: var(--muted); font-style: italic; }

/* Footer */
footer {
  border-top: 1px solid var(--stroke); margin-top: 40px;
  padding: 28px 0 44px; color: var(--muted); font-size: .9rem;
}
footer .wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center; }
footer a { font-weight: 600; }

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .features { grid-template-columns: 1fr; }
  nav a { margin-left: 12px; }
}
