* {
  box-sizing: border-box;
}

:root {
  --ink: #172033;
  --muted: #5d697a;
  --blue: #2f8fe8;
  --blue-dark: #176ab7;
  --yellow: #f0c91e;
  --cream: #fbf7ec;
  --soft-blue: #eef7ff;
  --line: #dfe7ef;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(23, 32, 51, .12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Questrial", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  transition: all .25s ease;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 10px 2em;
  background: transparent;
}

.header-wrapper {
  width: 100%;
  max-width: 76em;
  min-height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  margin-right: auto;
}

.logo {
  width: 340px;
  max-width: min(340px, 46vw);
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-link {
  padding: 0;
  color: var(--muted);
  font-size: .75em;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

.menu-link:hover {
  color: var(--blue-dark);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.button {
  display: inline-block;
  cursor: pointer;
  border: 0;
  border-radius: .65em;
  padding: 16px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 28px rgba(47, 143, 232, .26);
  font-family: "Questrial", Arial, sans-serif;
  font-weight: 700;
  line-height: inherit;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(.98);
  box-shadow: 0 16px 34px rgba(47, 143, 232, .32);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), 0 12px 28px rgba(23, 32, 51, .08);
}

.button-small {
  padding: 12px 15px;
  font-size: .85rem;
}

.section {
  position: relative;
  padding: 5.5em 5em;
}

.container {
  width: 100%;
  max-width: 76em;
  margin: 0 auto;
}

.container.centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.hero {
  min-height: 88vh;
  padding-top: calc(6.5em + 98px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(240, 201, 30, .45), transparent 26%),
    radial-gradient(circle at 15% 10%, rgba(47, 143, 232, .18), transparent 32%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 76%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -18vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(47, 143, 232, .08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .8fr);
  gap: 3rem;
  align-items: center;
}

.copy-wrapper {
  width: 100%;
  max-width: 52em;
}

.hero-copy {
  max-width: 46em;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-size: .78em;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--yellow);
}

.headline {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.035em;
}

.headline.jumbo {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 10.5em;
}

.lede {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.body-copy p,
.copy-wrapper p {
  margin-top: 0;
  color: var(--muted);
}

.button-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.microcopy {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .95em;
}

.hero-card,
.feature-card,
.step-card,
.testimonial-card,
.checklist-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.35rem;
}

.card-label {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .8em;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sync-step {
  position: relative;
  padding: 1rem 1rem 1rem 4.2rem;
  border-radius: 18px;
  background: #f7fbff;
}

.sync-step + .sync-step {
  margin-top: .8rem;
}

.sync-step span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}

.sync-step strong,
.sync-step small {
  display: block;
}

.sync-step small {
  color: var(--muted);
}

.problem-section {
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 2rem;
  align-items: center;
}

.wide-gap {
  gap: 4rem;
}

.benefits-section {
  background: var(--cream);
}

.feature-grid {
  width: 100%;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}

.feature-card {
  padding: 1.4rem;
  box-shadow: 0 14px 36px rgba(23, 32, 51, .07);
}

.feature-card h3,
.step-card h3,
.checklist-card h3 {
  margin: 0 0 .7rem;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.feature-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
}

.highlight-card {
  border-color: rgba(240, 201, 30, .9);
  background: linear-gradient(180deg, #fffdf0, #fff);
}

.license-section {
  background: linear-gradient(135deg, var(--ink), #26344d);
  color: #fff;
}

.license-panel {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 2rem;
  align-items: center;
}

.license-copy p {
  color: rgba(255, 255, 255, .78);
}

.checklist-card {
  padding: 1.6rem;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.checklist-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-card li {
  padding: .65rem 0 .65rem 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(var(--blue), var(--blue)) left 1rem / .72rem .72rem no-repeat;
  border-radius: 4px;
}

.logo-section {
  background: #fff;
}

.logowall {
  width: 100%;
  margin-top: 3em;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  place-items: center;
}

.logo-wrapper {
  width: 100%;
  min-height: 96px;
  padding: 1rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.logo-wrapper img {
  max-height: 48px;
  object-fit: contain;
}

.testimonial-section {
  background: var(--soft-blue);
}

.testimonial-card {
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.testimonial-card blockquote {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.quote-credit {
  margin-top: 1.2rem;
  color: var(--muted);
  font-weight: 700;
}

.how-section {
  background: #fff;
}

.steps-grid {
  width: 100%;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}

.step-card {
  padding: 1.5rem;
  box-shadow: 0 14px 36px rgba(23, 32, 51, .07);
}

.step-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.info-pack {
  background: #f6f8fb;
}

.info-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 2rem;
  align-items: center;
}

.info-list {
  text-align: left;
  display: inline-block;
}

.inline-form {
  width: 100%;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.inline-form input {
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: .7rem 1rem;
  border: 1px solid var(--line);
  border-radius: .8em;
  background: #fbfdff;
  font: inherit;
  font-size: .95em;
  line-height: 1.5em;
  transition: all .2s ease;
}

.inline-form input:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(47, 143, 232, .15);
}

.inline-form .button {
  min-height: 54px;
  grid-column: 1 / -1;
}

.inline-form .button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

.form-message.success {
  color: #176b3a;
}

.form-message.error {
  color: #a32020;
}

.final-cta {
  color: #fff;
  background: #585858;
}

.final-cta p {
  color: rgba(255, 255, 255, .82);
}

.final-wrap {
  align-items: center;
  gap: 2rem;
}

.button-wrapper {
  margin-top: 2em;
}

.portrait {
  max-width: 210px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .26);
}

.site-footer {
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
  justify-items: end;
}

.footer-grid .logo {
  justify-self: start;
}

.footer-title {
  margin-bottom: .5em;
  font-weight: 700;
}

.imprint {
  margin-top: 2em;
  color: var(--muted);
  font-size: .75em;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .section {
    padding: 4em 2.5em;
  }

  .hero {
    padding-top: calc(5.5em + 98px);
  }

  .hero-grid,
  .license-panel,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 10px 1em;
  }

  .header-wrapper {
    min-height: 82px;
    gap: 1rem;
  }

  .main-menu {
    display: none;
  }

  .section {
    padding: 3em 1.5em;
  }

  .hero {
    min-height: auto;
    padding-top: 8.5em;
  }

  .two-col,
  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .wide-gap {
    gap: 1.5rem;
  }

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

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

  .portrait {
    max-width: 48%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 479px) {
  .section {
    padding: 2.5em 1.15em;
  }

  .header-actions .button {
    padding: 11px 10px;
    font-size: .78em;
  }

  .button-row {
    display: grid;
  }

  .logo {
    max-width: 52vw;
  }

  .headline.jumbo {
    font-size: 2.75rem;
  }

  .lede {
    font-size: 1.05rem;
  }

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

  .portrait {
    max-width: 68%;
  }
}
