:root {
  --bg: #08120d;
  --bg-soft: #0f1c15;
  --text: #f4f8f4;
  --muted: #bfd1c3;
  --accent: #7ddf92;
  --accent-dark: #58b96c;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #0c1711 100%);
  color: var(--text);
  line-height: 1.5;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.nav {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  padding: 48px 0;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 20px;
}

.subtitle {
  max-width: 700px;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #06210b;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.section {
  padding: 80px 24px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
}

.status-box {
  margin-top: 32px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.status-box ul {
  margin-top: 12px;
  padding-left: 18px;
}

.links {
  margin-top: 32px;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links li {
  margin-bottom: 8px;
}

.links a {
  color: var(--accent);
  text-decoration: none;
}