:root {
  color-scheme: light;
  --ink: #15110d;
  --orange: #ff7a1a;
  --jade: #00a887;
  --cream: #fff8ee;
  --paper: #fffefa;
  --peach: #ffe5d2;
  --pale-jade: #ddf6ef;
  --muted: #665d55;
  --line: #15110d;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 168, 135, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--cream), #fffdf7 64%, var(--pale-jade));
  font-family: Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.2em;
}

.shell {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  border: 2px solid var(--line);
}

.links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
  min-height: 70vh;
  padding: 42px 0 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 900;
}

h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.lead {
  max-width: min(640px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 750;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: var(--orange);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--line);
}

.button.secondary {
  background: var(--paper);
  color: var(--ink);
}

.icon-wrap {
  justify-self: center;
  width: min(360px, 78vw);
  aspect-ratio: 1;
  border: 3px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  padding: 18px;
  box-shadow: 0 10px 0 var(--line);
}

.icon-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
}

.band {
  border-top: 3px solid var(--line);
  padding: 34px 0 52px;
}

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

.card {
  min-height: 170px;
  padding: 22px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.card.highlight {
  background: var(--peach);
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.1;
}

.card p,
.page-copy p,
.page-copy li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.page {
  max-width: 780px;
  padding: 54px 0 80px;
}

.page h1 {
  font-size: clamp(38px, 8vw, 68px);
}

.page-copy {
  border-top: 3px solid var(--line);
  padding-top: 28px;
}

.page-copy h2 {
  margin: 34px 0 8px;
  font-size: 24px;
}

.footer {
  border-top: 3px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.shell {
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 760px) {
  .shell {
    width: 100vw;
    max-width: 100vw;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 28px;
    max-width: 100vw;
  }

  .hero > div,
  .actions,
  .page-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero > div:not(.icon-wrap),
  .lead {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .icon-wrap {
    order: -1;
    width: min(250px, 76vw);
  }

  .hero > .icon-wrap {
    align-self: center;
    width: min(250px, 76vw);
    max-width: min(250px, 76vw);
  }

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

  .links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: min(340px, calc(100vw - 48px));
    max-width: min(340px, calc(100vw - 48px));
  }

  h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .lead {
    font-size: 15px;
    line-height: 1.58;
    width: min(340px, calc(100vw - 48px));
    max-width: min(340px, calc(100vw - 48px));
    overflow-wrap: anywhere;
  }
}

.hero > * {
  min-width: 0;
}
