:root {
  color: #101414;
  background: #fbfbf7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfbf7;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: min(760px, 92svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -2;
  background:
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=84")
    center / cover no-repeat;
  transform: scale(1.04);
  animation: settle 900ms ease-out forwards;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 12, 13, 0.86) 0%, rgba(6, 12, 13, 0.68) 42%, rgba(6, 12, 13, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 12, 13, 0.6) 0%, rgba(6, 12, 13, 0) 44%);
}

.hero__content {
  width: min(640px, calc(100vw - 40px));
  margin: 0 0 clamp(34px, 8vh, 86px) clamp(20px, 7vw, 96px);
  color: #ffffff;
  animation: rise 520ms ease-out both;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: #cfd7d4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 11vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 31rem;
  margin-bottom: 30px;
  color: #eef3ef;
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  background: #f7d45a;
  color: #101414;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: #ffe174;
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.button--dark {
  background: #101414;
  color: #ffffff;
}

.button--dark:hover {
  background: #28302f;
}

.scope,
.proof,
.limits {
  padding: clamp(48px, 8vw, 104px) clamp(20px, 7vw, 96px);
}

.scope__inner,
.limits__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.scope {
  background: #fbfbf7;
}

.scope .section-label,
.proof .section-label,
.limits .section-label {
  color: #64716d;
}

ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li,
.proof__grid p,
.limits p {
  color: #34403c;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.55;
}

li {
  padding-bottom: 18px;
  border-bottom: 1px solid #d9ded8;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(36px, 7vw, 84px);
  background: #e8ece5;
}

.proof__grid {
  display: grid;
  gap: 22px;
}

.proof__grid p {
  margin-bottom: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid #cfd7cf;
}

.limits {
  background: #fbfbf7;
}

.limits p {
  margin-bottom: 26px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settle {
  to {
    transform: scale(1);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 88svh;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(6, 12, 13, 0.88) 0%, rgba(6, 12, 13, 0.7) 58%, rgba(6, 12, 13, 0.36) 100%);
  }

  .hero__content {
    width: calc(100vw - 40px);
    margin: 0 20px 34px;
  }

  h1 {
    max-width: 8ch;
  }

  .scope__inner,
  .proof,
  .limits__inner {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
}
