:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #140f0a;
  color: #f5efe3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(224, 96, 62, 0.2), transparent 30rem),
    radial-gradient(circle at 85% 78%, rgba(77, 163, 154, 0.18), transparent 28rem),
    #140f0a;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.brand {
  color: #f5efe3;
  font-weight: 800;
  text-decoration: none;
}

.hero,
.content {
  margin-top: 24px;
  border: 1px solid rgba(255, 239, 217, 0.12);
  border-radius: 8px;
  background: rgba(22, 17, 14, 0.74);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.hero {
  padding: 44px;
}

.content {
  padding: 30px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #93eee2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

h2 {
  font-size: 1.7rem;
}

p {
  max-width: 68ch;
  color: rgba(245, 239, 227, 0.76);
  font-size: 1.02rem;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 8px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #e0603e, #e28f55);
  color: #140f0a;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 640px) {
  .hero,
  .content {
    padding: 22px;
  }

  h1 {
    max-width: none;
  }
}
