:root {
  --bg: #11151b;
  --panel: #1a1f26;
  --panel-border: #2c3440;
  --text: #f5f7fa;
  --muted: #b8c1cc;
  --accent: #d19b52;
  --accent-strong: #f1b35f;
  --button-dark: #2a313c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(209, 155, 82, 0.18), transparent 28rem),
    linear-gradient(180deg, #11151b 0%, #0d1117 100%);
  color: var(--text);
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

h1,
h2 {
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.95;
}

.lede {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-block;
  padding: 0.95rem 1.2rem;
  border-radius: 0.85rem;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--accent);
  color: #11151b;
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  background: var(--button-dark);
  color: var(--text);
  border: 1px solid var(--panel-border);
}

.button.disabled {
  opacity: 0.65;
  cursor: default;
}

.card {
  margin-top: 1.4rem;
  padding: 1.4rem;
  border: 1px solid var(--panel-border);
  border-radius: 1rem;
  background: rgba(26, 31, 38, 0.92);
  backdrop-filter: blur(6px);
}

ul,
ol {
  margin: 0;
  padding-left: 1.3rem;
  color: var(--muted);
  line-height: 1.8;
}

p,
li,
code {
  font-size: 1rem;
}

code {
  color: var(--text);
}

@media (max-width: 640px) {
  .page {
    padding-top: 2.4rem;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}
