:root {
  --teal: #0d9488;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--teal-700); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

/* header */
header.nav { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.8); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 10; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.logo { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, #14b8a6, #0f766e); display: flex; align-items: center; justify-content: center; color: #fff; }
.nav-links a { color: var(--muted); margin-left: 20px; font-size: 14px; font-weight: 500; }

/* hero */
.hero { text-align: center; padding: 72px 0 56px; background: radial-gradient(120% 70% at 50% 0%, rgba(204,251,241,.6), rgba(204,251,241,0) 55%); }
.hero h1 { font-size: 44px; line-height: 1.1; margin: 0 0 16px; letter-spacing: -.02em; }
.hero p { font-size: 19px; color: var(--muted); max-width: 620px; margin: 0 auto 28px; }
.btn { display: inline-block; background: var(--teal-600); color: #fff; padding: 12px 24px; border-radius: 12px; font-weight: 600; box-shadow: 0 6px 20px rgba(13,148,136,.25); }
.btn:hover { background: var(--teal-700); text-decoration: none; }
.btn.ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: none; margin-left: 10px; }
.tag { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* sections */
section { padding: 56px 0; }
h2.center { text-align: center; font-size: 30px; letter-spacing: -.01em; margin: 0 0 8px; }
.sub { text-align: center; color: var(--muted); margin: 0 auto 40px; max-width: 560px; }
.grid { display: grid; gap: 20px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .cols-3 { grid-template-columns: 1fr; } .hero h1 { font-size: 34px; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.card h3 { margin: 0 0 6px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.ic { width: 38px; height: 38px; border-radius: 10px; background: #ccfbf1; color: var(--teal-700); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 20px; }

/* steps */
.steps { counter-reset: s; }
.step { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.step .n { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--teal-600); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* pricing */
.price { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; }
.price.feat { border-color: var(--teal-600); box-shadow: 0 10px 30px rgba(13,148,136,.15); }
.price .amt { font-size: 34px; font-weight: 800; margin: 6px 0 2px; }
.price .per { color: var(--muted); font-size: 13px; }
.price ul { list-style: none; padding: 0; margin: 18px 0 0; }
.price li { padding: 6px 0; font-size: 14px; display: flex; gap: 8px; }
.price li::before { content: "✓"; color: var(--teal-600); font-weight: 700; }
.pill { align-self: flex-start; background: #ccfbf1; color: var(--teal-700); font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; }

/* footer */
footer { border-top: 1px solid var(--line); background: #fff; padding: 36px 0; margin-top: 24px; }
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 14px; }
.foot a { color: var(--muted); margin-right: 18px; }

/* legal pages */
.legal { padding: 48px 0 64px; }
.legal h1 { font-size: 30px; margin-bottom: 4px; }
.legal h2 { font-size: 19px; margin-top: 30px; }
.legal .updated { color: var(--muted); font-size: 14px; }
.legal p, .legal li { color: #334155; }
