:root {
  --bg: #0b0b0f;
  --surface: #15151b;
  --text: #ffffff;
  --text-muted: #b8b8c0;
  --accent: #f97316;
  --border: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: #ff8c3a;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100% - 2rem, 760px);
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.hero {
  padding: 1rem 0 2.5rem;
}

.eyebrow,
.section-label {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 0.9rem;
}

.tagline {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.card p {
  margin: 0;
  color: var(--text-muted);
}

.card p + p {
  margin-top: 0.9rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

.site-footer {
  width: min(100% - 2rem, 760px);
  margin: auto auto 0;
  padding: 0 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, 760px);
    padding-top: 2.5rem;
  }

  .card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .site-footer {
    width: min(100% - 1.25rem, 760px);
    padding-bottom: 1.5rem;
  }
}
