:root {
  --bg: #0a0a0a;
  --surface: #14110e;
  --border: rgba(255, 214, 160, 0.12);
  --text: #f8f4ee;
  --muted: #b5a898;
  --faint: #7a6f63;
  --accent: #ff6b2c;
  --accent-hot: #ff3b1f;
  --gold: #ffc857;
  --radius: 16px;
  --max: 720px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-brand: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 107, 44, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(255, 200, 87, 0.08), transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #ffe09a; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid var(--border);
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}
.brand {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.brand:hover { color: var(--gold); }
.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a { color: var(--muted); }
.nav a:hover { color: #fff; }

main { flex: 1; padding-bottom: 3rem; }

.hero {
  padding: 3.5rem 0 2rem;
}
.kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-brand);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.lede {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1.1rem;
  color: var(--muted);
}
.status-pill {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 44, 0.35);
  background: rgba(255, 107, 44, 0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-label {
  margin: 2rem 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.card {
  margin: 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
}
.card strong { color: var(--text); }
.card p { margin: 0; }

.btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
}
.btn:hover {
  filter: brightness(1.08);
  color: #fff !important;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0 1.75rem;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--faint);
}
.footer-brand { color: var(--muted); }
