:root {
  color-scheme: light;
  --cream: #fff8e7;
  --honey: #f4b83c;
  --oat: #ead7ab;
  --cocoa: #3c2816;
  --green: #526b34;
  --shadow: 0 28px 90px rgba(60, 40, 22, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cocoa);
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 184, 60, 0.32), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(82, 107, 52, 0.18), transparent 30rem),
    linear-gradient(135deg, #fffdf5 0%, var(--cream) 48%, #f5e6bd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(60, 40, 22, 0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 70%);
}

.page-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(60, 40, 22, 0.12);
  border-radius: 36px;
  padding: clamp(36px, 7vw, 84px);
  background: rgba(255, 252, 242, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: conic-gradient(from 20deg, #f4b83c, #ffe29a, #e69424, #f4b83c);
  opacity: 0.55;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(60, 40, 22, 0.76);
  font-size: clamp(1.1rem, 2vw, 1.36rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  color: #241407;
  background: var(--honey);
  box-shadow: 0 14px 28px rgba(212, 133, 16, 0.22);
}

.secondary {
  color: var(--cocoa);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(60, 40, 22, 0.14);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(60, 40, 22, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
}

.icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

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

.card p {
  margin: 0;
  color: rgba(60, 40, 22, 0.68);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 24px, 1120px);
    padding: 28px 0;
  }

  .hero {
    border-radius: 26px;
    padding: 32px 24px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
