@import url('/fonts.css');

:root {
  --navy: #171d26;
  --deep-navy: #0f141d;
  --cream: #fcf8f3;
  --cream-deep: #f2ebe3;
  --green: #319751;
  --bright-green: #45b164;
  --slate: #5d646f;
  --line: rgba(23, 29, 38, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: 'Sora', Arial, sans-serif;
  font-weight: 600;
}

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

h1,
h2,
h3,
.quote,
.brand {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-weight: 700;
}

nav {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

nav > div {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(190px, 20vw, 250px);
  height: auto;
}

.nav-cta {
  border: 1px solid var(--navy);
  border-radius: 99px;
  padding: 10px 16px;
}

.hero {
  min-height: 780px;
  background: var(--cream);
  padding: 170px max(24px, calc((100vw - 1200px) / 2)) 90px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(60px, 8.5vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  margin: 24px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

.lede {
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 22px;
  border: 0;
  border-radius: 99px;
  font: inherit;
  cursor: pointer;
}

.text-link {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-weight: 700;
}

.actions .business-cta {
  order: 1;
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 22px;
  border-radius: 99px;
}

.actions .call-cta {
  order: 2;
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(23, 29, 38, 0.45);
}

.endorsement {
  margin-top: 55px;
  font-size: 12px;
  color: var(--slate);
}

.call-card {
  background: var(--navy);
  color: var(--cream);
  padding: 34px;
  border: 1px solid rgba(69, 177, 100, 0.58);
  border-radius: 30px;
  box-shadow:
    28px 0 52px -24px rgba(69, 177, 100, 0.72),
    0 30px 80px rgba(15, 20, 29, 0.2);
}

.status {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.status span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--bright-green);
  border-radius: 50%;
  margin-right: 8px;
}

.wave {
  font-size: 32px;
  letter-spacing: 4px;
  color: var(--bright-green);
  overflow: hidden;
  margin: 45px 0;
}

.quote {
  font-size: 22px;
  line-height: 1.45;
}

.call-card dl {
  border-top: 1px solid rgba(252, 248, 243, 0.2);
  margin-top: 35px;
  padding-top: 15px;
}

.call-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
}

.call-card dt {
  color: rgba(252, 248, 243, 0.55);
}

.proof {
  background: var(--navy);
  color: var(--cream);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px max(24px, calc((100vw - 1200px) / 2));
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: 110px max(24px, calc((100vw - 1200px) / 2));
}

#how {
  background: var(--bright-green);
  color: var(--deep-navy);
}

#how article {
  background: var(--cream);
  border-color: rgba(23, 29, 38, 0.12);
  box-shadow: 0 18px 45px rgba(15, 20, 29, 0.08);
}

.section h2,
.contact h2 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 950px;
  margin: 22px 0 55px;
}

.grid {
  display: grid;
  gap: 18px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  min-height: 280px;
}

article b {
  font-size: 12px;
  color: var(--slate);
}

article h3 {
  font-size: 28px;
  margin: 60px 0 16px;
}

article p,
article li,
.faq details p {
  line-height: 1.6;
  color: var(--slate);
}

.dark {
  background: var(--navy);
  color: var(--cream);
}

.dark h2 {
  color: var(--cream);
}

.dark article {
  border-color: rgba(252, 248, 243, 0.18);
}

.dark article p {
  color: rgba(252, 248, 243, 0.72);
}

.industries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(252, 248, 243, 0.2);
}

.industries a {
  display: flex;
  justify-content: space-between;
  padding: 26px 5px;
  border-bottom: 1px solid rgba(252, 248, 243, 0.2);
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 24px;
}

.industries a:nth-child(odd) {
  margin-right: 30px;
}

.featured {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-15px);
}

#pricing {
  background: var(--cream-deep);
}

#pricing article:not(.featured) {
  background: var(--cream);
  box-shadow: 0 16px 36px rgba(15, 20, 29, 0.06);
}

.featured p,
.featured li {
  color: rgba(252, 248, 243, 0.76);
}

article h3 span {
  font-family: 'Sora', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-left: 5px;
}

article ul {
  padding-left: 20px;
  line-height: 1.9;
}

.faq details {
  border: 1px solid rgba(23, 29, 38, 0.1);
  border-radius: 16px;
  padding: 22px 26px;
  max-width: 900px;
  margin-top: 12px;
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(15, 20, 29, 0.05);
}

.faq {
  background: var(--cream-deep);
}

.faq summary {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 20px;
  cursor: pointer;
}

.contact {
  background: var(--bright-green);
  color: var(--deep-navy);
  padding: 100px max(24px, calc((100vw - 1200px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact h2 {
  font-size: 56px;
  margin-bottom: 25px;
}

.contact > div > p:last-child {
  line-height: 1.6;
}

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--cream);
  padding: 28px;
  border-radius: 24px;
}

.contact label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact label:nth-of-type(3) {
  grid-column: 1 / -1;
}

.contact input,
.contact textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  color: var(--deep-navy);
  font: inherit;
}

.gotcha {
  position: absolute !important;
  left: -9999px;
}

.contact button {
  justify-self: start;
}

.contact #form-status {
  grid-column: 1 / -1;
  margin: 0;
}

footer {
  background: var(--deep-navy);
  color: var(--cream);
  padding: 60px max(24px, calc((100vw - 1200px) / 2));
  display: flex;
  justify-content: space-between;
}

.footer-brand {
  display: block;
  width: min(250px, 70vw);
  height: auto;
}

footer div:last-child {
  text-align: right;
}

footer p {
  color: rgba(252, 248, 243, 0.58);
}

@media (max-width: 800px) {
  nav > div a:not(.nav-cta) {
    display: none;
  }

  .brand img {
    width: 180px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .actions .call-cta {
    order: 1;
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
  }

  .actions .business-cta {
    order: 2;
    background: transparent;
    color: var(--navy);
    padding: 0;
    border-radius: 0;
  }

  .proof {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .three,
  .contact {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

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

  .industries a:nth-child(odd) {
    margin-right: 0;
  }

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

  .contact label:nth-of-type(3) {
    grid-column: auto;
  }

  footer {
    flex-direction: column;
    gap: 30px;
  }

  footer div:last-child {
    text-align: left;
  }
}

@media (max-width: 420px) {
  nav {
    padding-top: 18px;
  }

  .brand img {
    width: 155px;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero h1 {
    font-size: 54px;
  }
}
