:root {
  color-scheme: light;
  --ink: #101318;
  --muted: #535b66;
  --line: #d9dde3;
  --paper: #ffffff;
  --wash: #f4f8fb;
  --blue: #0b97d7;
  --blue-dark: #046895;
  --yellow: #ffd33d;
  --green: #13a96b;
  --red: #e83838;
  --shadow: 0 22px 70px rgba(16, 19, 24, 0.12);
  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:
    radial-gradient(circle at 0 0, rgba(255, 211, 61, 0.18), transparent 30rem),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 36%, #f5f8fa 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(11, 151, 215, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 151, 215, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
}

main,
footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 28px 0 42px;
}

.hero__media {
  overflow: hidden;
  border: 1px solid rgba(16, 19, 24, 0.1);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.hero__media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__content {
  padding: clamp(28px, 5vw, 64px) 0 8px;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.45rem, 5.9vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero__lead {
  max-width: 800px;
  margin: 22px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  color: #29313a;
}

.hero__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 24px;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button--primary {
  background: var(--yellow);
}

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

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-band div {
  min-height: 118px;
  padding: 24px;
  background: var(--paper);
}

.proof-band strong {
  display: block;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.proof-band span {
  display: block;
  margin-top: 10px;
  color: #29313a;
  font-weight: 800;
  line-height: 1.35;
}

.section {
  padding: clamp(54px, 8vw, 92px) 0;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding-bottom: clamp(26px, 4vw, 46px);
}

.section__copy p:last-child {
  margin-bottom: 0;
}

.landscape-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 18px;
  align-items: center;
  margin-top: clamp(24px, 5vw, 52px);
  padding: clamp(16px, 3vw, 24px);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--yellow);
}

.landscape-info__copy h3 {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.landscape-info__copy p {
  margin: 0;
  color: #29313a;
  font-size: 0.95rem;
  line-height: 1.42;
}

.landscape-info__icons {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  justify-self: end;
}

.use-panel {
  display: grid;
  gap: 24px;
}

.use-list {
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 var(--blue);
  padding: clamp(22px, 4vw, 34px);
}

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

.use-list li {
  position: relative;
  min-height: 36px;
  padding: 8px 0 8px 40px;
  border-bottom: 1px solid #e7eaee;
  color: #222a32;
  font-weight: 800;
  line-height: 1.25;
}

.use-list li::before {
  content: "$";
  position: absolute;
  left: 0;
  top: 5px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
}

.use-list li:last-child {
  border-bottom: 0;
}

.use-promo {
  display: block;
  width: 100%;
  justify-self: center;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--blue);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.use-promo:hover,
.use-promo:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--blue);
}

.use-promo img {
  display: block;
  width: 100%;
  height: auto;
}

.opportunity {
  max-width: 890px;
  padding-top: clamp(24px, 4vw, 42px);
  padding-bottom: clamp(30px, 4vw, 50px);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 0 30px;
  padding: clamp(28px, 5vw, 52px);
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 211, 61, 0.88), rgba(255, 255, 255, 0.88)),
    var(--yellow);
  box-shadow: 10px 10px 0 var(--ink);
}

.cta p {
  max-width: 790px;
  margin-bottom: 0;
  color: #29313a;
}

footer {
  padding: 0 0 28px;
}

footer p {
  margin: 0;
  color: #66707a;
  font-size: 0.92rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.footer__legal p {
  max-width: 720px;
}

.footer__legal .copyright {
  flex-basis: 100%;
  max-width: none;
  color: #4d5661;
  font-weight: 800;
}

.footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer__legal a {
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 760px) {
  main,
  footer {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 12px;
  }

  .hero__media {
    margin-inline: -11px;
    border-left: 0;
    border-right: 0;
  }

  .hero__actions,
  .cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .proof-band,
  .section--split,
  .landscape-info {
    grid-template-columns: 1fr;
  }

  .landscape-info {
    margin-top: 30px;
  }

  .landscape-info__icons {
    justify-self: start;
    width: min(220px, 100%);
  }

  .proof-band div {
    min-height: auto;
  }

  .cta {
    padding: 24px;
  }
}
