:root {
  --cream: #fff7e9;
  --cream-2: #f5ead8;
  --orange: #ff8a00;
  --orange-2: #ff6a00;
  --teal: #32b8a0;
  --teal-dark: #198f80;
  --ink: #111820;
  --pink: #f3a8c5;
  --white: #ffffff;
  --border: #111820;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

.announcement {
  padding: 8px 20px;
  text-align: center;
  color: white;
  background: var(--orange-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 2px solid var(--ink);
  background: var(--cream);
}

.wordmark {
  font-family: "Archivo Black", sans-serif;
  font-size: 28px;
  letter-spacing: .08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--orange-2);
}

.nav-pill {
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: white;
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px;
  background: var(--ink);
}

.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 40px;
  padding: 70px 6vw;
  background:
    radial-gradient(circle at 78% 30%, rgba(255,255,255,.45), transparent 24%),
    linear-gradient(135deg, #ffb531 0%, #ff8b00 55%, #ff7200 100%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(62px, 7.6vw, 118px);
  line-height: .9;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--cream);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 5px 5px 0 var(--ink);
}

.hero-copy p {
  max-width: 590px;
  margin-top: 32px;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.button-dark {
  color: white;
  background: var(--ink);
}

.button-light {
  background: var(--cream);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(100%, 620px);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,.12));
  transform: rotate(2deg);
}

.hero-shape {
  position: absolute;
  border: 3px solid var(--ink);
  background: var(--teal);
}

.hero-shape-one {
  width: 160px;
  height: 160px;
  right: 2%;
  top: 8%;
  border-radius: 50%;
}

.hero-shape-two {
  width: 110px;
  height: 110px;
  left: 46%;
  bottom: -30px;
  transform: rotate(18deg);
  background: var(--pink);
}

.intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  padding: 110px 7vw;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--cream);
}

.intro-title span {
  font-weight: 900;
  color: var(--orange-2);
  letter-spacing: .15em;
}

.intro h2,
.section-head h2,
.contact h2,
.statement h2 {
  margin-top: 14px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1;
  letter-spacing: -.045em;
}

.intro-copy {
  padding-top: 28px;
}

.intro-copy p {
  font-size: 20px;
  line-height: 1.65;
}

.intro-copy p + p {
  margin-top: 20px;
}

.solutions,
.clients {
  padding: 110px 6vw;
}

.solutions {
  background: var(--pink);
  border-bottom: 2px solid var(--ink);
}

.section-head {
  max-width: 820px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 58px;
}

.card {
  position: relative;
  min-height: 470px;
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--ink);
}

.card-orange {
  background: var(--orange);
}

.card-teal {
  background: var(--teal);
}

.card-cream {
  background: var(--cream);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 13px;
  font-weight: 900;
}

.card-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 85px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: white;
  font-family: "Archivo Black";
  font-size: 20px;
}

.card h3 {
  font-family: "Archivo Black";
  font-size: 29px;
  line-height: 1.05;
}

.card p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.55;
}

.card ul {
  display: grid;
  gap: 11px;
  margin-top: 26px;
  list-style: none;
  font-weight: 700;
}

.card li::before {
  content: "✓";
  margin-right: 9px;
}

.statement {
  padding: 90px 7vw;
  text-align: center;
  color: white;
  background: var(--ink);
}

.statement p {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .18em;
}

.clients {
  background: var(--cream);
}

.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 58px;
}

.client-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 7px 7px 0 var(--ink);
}

.client-card.active {
  background: var(--teal);
}

.client-card.upcoming {
  background: var(--orange);
}

.client-badge {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: white;
  font-family: "Archivo Black";
  font-size: 22px;
}

.status {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}

.client-card h3 {
  max-width: 480px;
  margin-top: 10px;
  font-family: "Archivo Black";
  font-size: 28px;
  line-height: 1.1;
}

.client-card p {
  margin-top: 10px;
}

.client-action {
  margin-top: auto;
  padding-top: 28px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  padding: 105px 7vw;
  border-top: 2px solid var(--ink);
  background: var(--orange);
}

.contact-copy p {
  max-width: 620px;
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.6;
}

.contact-box {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
}

.contact-box span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
}

.contact-box a {
  margin-top: 12px;
  font-family: "Archivo Black";
  font-size: clamp(21px, 2.3vw, 31px);
  word-break: break-word;
}

.contact-box small {
  margin-top: 34px;
  font-weight: 700;
}

footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 6vw;
  color: white;
  background: var(--ink);
}

footer p,
footer > a:last-child {
  font-size: 13px;
}

.footer-logo {
  color: white;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    z-index: 20;
    top: 112px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 2px solid var(--ink);
    border-radius: 20px;
    background: var(--cream);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual img {
    width: min(100%, 540px);
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .card {
    min-height: auto;
  }

  .card-icon {
    margin-bottom: 55px;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 68px;
  }

  .hero {
    min-height: auto;
    padding: 65px 22px 80px;
  }

  .hero h1 {
    font-size: clamp(58px, 20vw, 82px);
  }

  .hero-copy p {
    font-size: 16px;
  }

  .intro,
  .solutions,
  .clients,
  .contact {
    padding: 75px 22px;
  }

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

  footer {
    flex-direction: column;
    text-align: center;
    padding: 35px 20px;
  }
}
