@import url("https://fonts.googleapis.com/css2?family=Anton&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #11110f;
  --panel: rgba(255, 245, 231, 0.08);
  --text: #f7f0e6;
  --muted: #d5c8b6;
  --accent: #cb5c2b;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(203, 92, 43, 0.38), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(122, 139, 90, 0.26), transparent 22%),
    linear-gradient(180deg, #1b1814 0%, var(--bg) 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

.shell {
  width: min(760px, 100%);
  padding: 34px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  color: #f7a57f;
}

h1 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 10vw, 84px);
  line-height: 0.96;
  letter-spacing: 0.03em;
}

.lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.button-primary {
  background: #f7f0e6;
  color: #171410;
}

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

@media (max-width: 680px) {
  .shell {
    padding: 24px;
  }
}
