:root {
  --bg: #0b0f14;
  --surface: #121820;
  --surface-elevated: #1a2230;
  --border: #2a3444;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --up: #22c55e;
  --down: #ef4444;
  --wait: #f59e0b;
  --info: #3b82f6;
  --radius: 12px;
  --max: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--info);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.banner {
  background: var(--surface-elevated);
  border: 1px solid var(--wait);
  color: var(--wait);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(11, 15, 20, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

nav a:hover,
nav a.active {
  color: var(--text);
  text-decoration: none;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 42rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rec {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--wait);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 2rem;
  font-weight: 800;
  margin: 1rem 0;
}

.rec.up { border-color: var(--up); color: var(--up); }
.rec.down { border-color: var(--down); color: var(--down); }
.rec.wait { border-color: var(--wait); color: var(--wait); }

.btn {
  display: inline-block;
  background: var(--info);
  color: var(--text);
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  margin-left: 0.75rem;
}

.section {
  padding: 3rem 0;
}

.muted {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.prose {
  max-width: 720px;
}

.prose ul {
  padding-left: 1.25rem;
}

.contact-form label {
  display: block;
  margin: 1rem 0 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.75rem;
  font: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.pill {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-right: 0.5rem;
}
