:root {
  --orange: #ff6b00;
  --orange-dark: #dc5900;
  --ink: #171719;
  --muted: #626269;
  --surface: #ffffff;
  --background: #f7f7f5;
}

* {
  box-sizing: border-box;
}

html {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 20%, #fff1e5 0, transparent 36rem),
    var(--background);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}

.hero__content {
  width: min(100%, 760px);
  text-align: center;
}

.hero__logo {
  display: block;
  width: min(320px, 72vw);
  height: auto;
  margin: 0 auto 2rem;
  mix-blend-mode: multiply;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.hero__description {
  max-width: 650px;
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  line-height: 1.65;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button--primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 30px rgb(255 107 0 / 24%);
}

.button--primary:hover {
  background: var(--orange-dark);
}

.hero__status {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 520px) {
  .hero__actions {
    flex-direction: column;
  }
}