:root {
  --ink: #0b1220;
  --ink-2: #1f2937;
  --muted: #5b6472;
  --paper: #fbfaf7;
  --line: #e7e5df;
  --green: #16a34a;
  --green-bg: #22c55e;
  --yellow-bg: #f59e0b;
  --red-bg: #ef4444;
  --blue: #2563eb;
  --teal: #0d9488;
  --orange: #ea580c;
  --pink: #db2777;
  --purple: #7c3aed;
  --radius: 18px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink); background: var(--paper);
  line-height: 1.55; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(251,250,247,.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.logo { font-weight: 700; font-size: 20px; letter-spacing: -.01em; display: inline-flex; align-items: center; gap: 10px; }
.logo__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green-bg); box-shadow: 0 0 0 4px rgba(34,197,94,.15); }
.nav__links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav__links a:hover { color: var(--ink); }

/* Hero */
.hero { padding: 80px 0 60px; }
.hero__inner { text-align: center; }
.eyebrow { display: inline-block; padding: 6px 12px; border-radius: 999px; background: #eef7ee; color: var(--green); font-size: 13px; font-weight: 600; letter-spacing: .02em; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: -.03em; margin: 18px auto 18px; max-width: 14ch; font-weight: 700; }
h1 em { font-style: italic; color: var(--green); }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 60ch; margin: 0 auto 28px; }
.hero__cta { display: flex; gap: 12px; justify-content: center; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 12px; font-weight: 600; font-size: 15px; border: 1px solid transparent; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; }
.btn--ghost { color: var(--ink); border-color: var(--line); background: #fff; }
.btn--ghost:hover { border-color: var(--ink); }

/* Preview cards */
.hero__preview { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: left; }
.preview-card { border-radius: 22px; padding: 24px; color: #fff; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.preview-card--green  { background: linear-gradient(160deg, #34d399, #16a34a); }
.preview-card--yellow { background: linear-gradient(160deg, #fbbf24, #d97706); color: #2b1c00; }
.preview-card--red    { background: linear-gradient(160deg, #fb7185, #dc2626); }
.preview-card__top { display: flex; justify-content: space-between; font-weight: 600; opacity: .9; }
.preview-card__big { font-size: 88px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.preview-card__sub { opacity: .85; font-size: 14px; }
.dots { width: 36px; height: 8px; background: rgba(255,255,255,.4); border-radius: 999px; }

/* Sections */
.section { padding: 96px 0; }
.section--alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--contact { background: var(--ink); color: #fff; }
.section h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.02em; margin: 0 0 12px; font-weight: 700; }
.section__lead { color: var(--muted); max-width: 60ch; margin: 0 0 40px; font-size: 17px; }
.section--contact .section__lead { color: #c0c5cf; }

/* Feature grid */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.feature h3 { margin: 14px 0 6px; font-size: 18px; }
.feature p { color: var(--muted); margin: 0; font-size: 15px; }
.feature__icon { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; }
.icon--green  { background: #dcfce7; color: #15803d; }
.icon--blue   { background: #dbeafe; color: #1d4ed8; }
.icon--orange { background: #ffedd5; color: #c2410c; }
.icon--teal   { background: #ccfbf1; color: #0f766e; }
.icon--pink   { background: #fce7f3; color: #be185d; }
.icon--purple { background: #ede9fe; color: var(--purple); }
.icon--ink    { background: #e5e7eb; color: #111827; }

/* How it works */
.how { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.steps { padding: 0; list-style: none; counter-reset: s; margin: 24px 0 0; }
.steps li { counter-increment: s; position: relative; padding: 14px 0 14px 52px; border-top: 1px solid var(--line); font-size: 16px; color: var(--muted); }
.steps li:first-child { border-top: 0; }
.steps li strong { color: var(--ink); font-weight: 600; }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 16px;
  width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.how__panel { background: var(--ink); color: #f5f5f7; border-radius: var(--radius); padding: 28px; }
.how__title { font-size: 13px; color: #93a1b0; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 13px; color: #d1d5db; margin: 0; white-space: pre-wrap; line-height: 1.6; }

/* Local section */
.local { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.checks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.checks li { padding-left: 28px; position: relative; color: var(--ink-2); }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.local__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 8px; }
.local__row { display: flex; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.local__row:last-child { border-bottom: 0; }
.local__row strong { color: var(--ink); font-weight: 600; }

/* Pricing / Plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; }
.plan--featured { border-color: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,.08), 0 20px 50px rgba(0,0,0,.08); }
.plan__badge { display: inline-block; width: fit-content; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; background: #eef7ee; color: var(--green); }
.plan__badge--pro { background: #eef7ee; color: var(--green); }
.plan__badge--custom { background: #f3e8ff; color: var(--purple); }
.plan__title { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.plan__desc { color: var(--muted); font-size: 15px; margin: 0 0 20px; line-height: 1.5; }
.plan__list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1 1 auto; }
.plan__list li { padding: 8px 0; font-size: 15px; color: var(--ink-2); border-bottom: 1px solid var(--line); }

/* Contact */
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.contact__card { background: #15151c; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 6px; color: #fff; }
.contact__card:hover { background: #1c1c25; }
.contact__k { font-size: 13px; color: #93a1b0; text-transform: uppercase; letter-spacing: .1em; }
.contact__v { font-size: 20px; font-weight: 600; }

/* Footer */
.foot { padding: 28px 0; background: #0a0a0f; color: #93a1b0; font-size: 13px; }
.foot__inner { display: flex; justify-content: space-between; align-items: center; }

@media (max-width: 860px) {
  .grid--3, .hero__preview, .contact__grid, .plans { grid-template-columns: 1fr; }
  .how, .local { grid-template-columns: 1fr; gap: 32px; }
  .nav__links { display: none; }
}
