:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f7f4ef;
  color: #211f1b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 94, 85, 0.13), transparent 26rem),
    radial-gradient(circle at 90% 8%, rgba(88, 165, 118, 0.14), transparent 24rem),
    #f7f4ef;
}

a {
  color: #c84435;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.hero,
.content {
  padding: 44px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(33, 31, 27, 0.09);
  border-radius: 18px;
  box-shadow: 0 20px 70px rgba(33, 31, 27, 0.08);
}

.hero {
  min-height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.back,
.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  color: #c84435;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.back {
  margin-bottom: 18px;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.96;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

p {
  margin: 0;
  color: #524d46;
  font-size: 17px;
  line-height: 1.65;
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  background: #211f1b;
  color: #fff;
  font-weight: 800;
}

.button.secondary {
  background: #fff;
  color: #211f1b;
  border: 1px solid rgba(33, 31, 27, 0.14);
}

.button:hover {
  text-decoration: none;
}

.content {
  display: grid;
  gap: 18px;
}

.panel {
  padding-top: 24px;
  border-top: 1px solid rgba(33, 31, 27, 0.1);
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 20px, 920px);
    padding: 10px 0;
  }

  .hero,
  .content {
    padding: 28px 22px;
    border-radius: 12px;
  }

  .hero {
    min-height: calc(100vh - 20px);
  }
}
