:root {
  --ink: #1a1a1a;
  --dark: #2b2b2b;
  --muted: #666;
  --line: #e4e4e4;
  --accent: #0a66c2;
  --bg: #fafafa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; }

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

.hero {
  background: var(--dark);
  color: #fff;
  padding: 72px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: 30pt;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero .tagline {
  margin-top: 8px;
  font-size: 12pt;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
}

.section {
  padding: 48px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: 9pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
}

.section p {
  font-size: 11pt;
  color: #333;
}

.section p + p { margin-top: 14px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 13px 26px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 10.5pt;
  border-radius: 999px;
  transition: opacity 0.15s ease;
}

.btn-primary:hover { opacity: 0.88; }

.construction-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #fff3cd;
  color: #7a5b00;
  border: 1px solid #ffe08a;
  border-radius: 999px;
  font-size: 9.5pt;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 32px 0 48px;
  font-size: 8.5pt;
  color: #999;
}

@media (max-width: 600px) {
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 22pt; }
}
