:root {
  --fg: #0a0a0a;
  --muted: #525252;
  --border: #e5e5e5;
  --bg: #fff;
  --surface: #fafafa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--fg);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
code {
  font-size: 0.9em;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
}

.wrap { max-width: 72rem; margin: 0 auto; padding: 0 16px; }
.label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.muted { color: var(--muted); }

.top {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  z-index: 10;
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 16px;
}
.brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
  text-decoration: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
}
.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover { color: var(--fg); }
.nav-cta {
  color: var(--fg) !important;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--surface); text-decoration: none; }

.hero {
  border-bottom: 1px solid var(--border);
  padding: 64px 0 72px;
  background: var(--surface);
}
.hero-inner { max-width: 40rem; }
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 12px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.lead {
  margin: 0 0 28px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.btn:hover { text-decoration: none; filter: brightness(0.98); }
.btn-primary { background: var(--fg); color: #fff; border-color: var(--fg); }
.btn-outline { background: #fff; }

.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.section-alt { background: var(--surface); }
.section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 28rem;
}
.section-lead {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 36rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.cell {
  background: var(--bg);
  padding: 20px;
}
.cell h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.cell p { margin: 0; color: var(--muted); font-size: 14px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.price {
  background: var(--bg);
  padding: 24px;
}
.price-featured { background: #fff; }
.price h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.amount {
  margin: 0 0 18px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}
.price ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.fine {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.contact .section-lead { margin-bottom: 20px; }

.foot {
  padding: 24px 0 40px;
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
}

@media (max-width: 720px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero { padding: 40px 0 48px; }
  .grid, .price-grid { grid-template-columns: 1fr; }
}
