*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

html, body {
  min-height: 100vh;
  min-height: 100dvh;
}

body {
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

input, button, textarea, select {
  font: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

th {
  font-weight: normal;
}

main {
  background: linear-gradient(135deg, rgba(47, 111, 109, 0.12), transparent 32rem), linear-gradient(315deg, rgba(184, 116, 61, 0.14), transparent 28rem), #f7f5ef;
  color-scheme: light;
  color: #1f2933;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  width: min(70rem, 100% - 2rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) 0;
}
.hero > .content {
  max-width: 44rem;
}
.hero > .content > .eyebrow {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1f4f4f;
  margin: 0 0 1rem;
}
.hero > .content > .title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1;
  letter-spacing: 0;
  color: #1f2933;
  max-width: 38rem;
}
.hero > .content > .subtitle {
  max-width: 32rem;
  margin: 1.5rem 0 0;
  color: #667085;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 100svh;
    padding: 2rem 0;
  }
  .hero > .content > h1 {
    max-width: 26rem;
  }
}
.panel {
  display: grid;
  padding: clamp(1rem, 3vw, 1.5rem);
  gap: 0.75rem;
  background: rgba(251, 250, 247, 0.76);
  border: thin solid rgba(216, 210, 196, 0.9);
  border-radius: 0.5rem;
  box-shadow: 0 1.5rem 4.5rem rgba(31, 41, 51, 0.12);
  backdrop-filter: blur(1rem);
}

@media (max-width: 760px) {
  .panel {
    width: 100%;
  }
}
.goal-card {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border: thin solid #d8d2c4;
  border-radius: 0.5rem;
  background: #fbfaf7;
  min-height: 7.5rem;
}
.goal-card.primary {
  border-color: rgba(47, 111, 109, 0.35);
  background: #e8f3f2;
}
.goal-card > .title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #b8743d;
}
.goal-card > .subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1f2933;
  align-self: end;
}

@media (max-width: 760px) {
  .goal-card {
    min-height: 6.25rem;
  }
}
