:root {
  --bg: #0b0b0b;
  --panel: rgba(255, 255, 255, 0.04);
  --text: #f5f1e8;
  --muted: #c7c0b1;
  --accent: #ff6a13;
  --accent-strong: #ff7e2f;
  --grid: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 19, 0.34), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(255, 106, 19, 0.16), transparent 22%),
    linear-gradient(135deg, #111111 0%, #0b0b0b 52%, #141414 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 85%);
  pointer-events: none;
}

.page-shell {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 28px 48px;
}

.hero {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 760px);
  text-align: left;
}

h1 {
  margin: 0 0 20px;
  max-width: 12ch;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.accent-word {
  color: var(--accent);
}

.lede {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #111111;
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(255, 106, 19, 0.26);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
  .page-shell {
    min-height: auto;
    display: block;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 20px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .lede {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .actions {
    width: 100%;
  }
}
