:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5d655f;
  --paper: #fbfaf6;
  --card: #ffffff;
  --line: #d6d0c5;
  --green: #176f5b;
  --gold: #c27a1a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
  padding: 48px 0 28px;
}

.copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 10vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  margin: 24px 0 0;
  max-width: 600px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

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

.primary,
.secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
}

.primary {
  background: var(--green);
  color: #fff;
}

.secondary {
  border: 1px solid var(--line);
  background: var(--card);
}

.note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.phone {
  justify-self: end;
  width: min(100%, 340px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 24px 70px rgb(23 33 29 / 16%);
}

.phone img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 22px;
  object-fit: cover;
  object-position: top;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 10px 0 44px;
}

.features article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: 18px;
}

.features span {
  color: var(--gold);
  font-weight: 900;
}

.features h2 {
  margin: 18px 0 8px;
  font-size: 22px;
  letter-spacing: 0;
}

.features p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
  }

  .phone {
    justify-self: center;
  }

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

@media (max-width: 480px) {
  .shell {
    width: min(100% - 24px, 1120px);
  }

  .lede {
    font-size: 18px;
  }

  .primary,
  .secondary {
    width: 100%;
  }
}
