@font-face {
  font-family: "Inter Variable";
  src: url("/assets/fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Variable";
  src: url("/assets/fonts/archivo-latin-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --teal: #19a394;
  --teal-dark: #0f776e;
  --teal-soft: #dff3f0;
  --slate: #364151;
  --slate-deep: #2d3746;
  --ink: #1f2937;
  --muted: #5c6876;
  --cool: #edf2f3;
  --cool-light: #f6f8f8;
  --line: #d7dfe2;
  --white: #fff;
  --page: min(1200px, calc(100% - 64px));
  --shadow: 0 30px 80px rgba(33, 43, 55, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter Variable", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
h1, h2, h3 {
  margin-top: 0;
  color: var(--slate);
  font-family: "Archivo Variable", Archivo, "Arial Narrow", sans-serif;
  font-weight: 720;
  letter-spacing: -.045em;
  line-height: 1.03;
}
h1 { margin-bottom: 24px; font-size: clamp(3.45rem, 4.65vw, 4.6rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.55rem, 4vw, 3.7rem); }
h3 { margin-bottom: 9px; font-size: 1.35rem; line-height: 1.12; letter-spacing: -.025em; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 11px 16px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 999px;
  font-weight: 750;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: 86px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(36, 46, 59, .34), transparent);
}
.header__inner {
  display: flex;
  width: var(--page);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-weight: 820;
  letter-spacing: .075em;
  text-decoration: none;
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.header-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 680; }
.header-nav > a:not(.button) { min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; }
.header-nav > a:not(.button):hover { text-decoration: underline; text-underline-offset: 5px; }

.eyebrow {
  margin: 0 0 17px;
  color: var(--teal-dark);
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow--light { color: #8ce9df; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(126, 224, 212, .72);
  outline-offset: 3px;
}
.button--header {
  min-height: 48px;
  padding-inline: 22px;
  color: var(--slate);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(24, 32, 43, .14);
}
.button--header:hover { background: #eef7f5; }
.button--primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 15px 34px rgba(15, 119, 110, .24);
}
.button--primary:hover { background: #0b675f; }
.button--secondary-dark { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, .65); }
.button--secondary-dark:hover { background: rgba(255, 255, 255, .08); border-color: var(--white); }
.button--outline { color: var(--slate); background: var(--white); border-color: #aeb9be; }
.button--outline:hover { border-color: var(--teal-dark); }

.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--slate); }
.hero__copy {
  display: flex;
  min-width: 0;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 7% 88%, rgba(25, 163, 148, .2), transparent 31%),
    var(--slate);
}
.hero__copy-inner {
  width: min(600px, calc(100% - 64px));
  margin-left: max(32px, calc((100vw - 1200px) / 2));
  padding: 128px 24px 58px 0;
}
.hero h1 { max-width: 650px; color: var(--white); font-size: clamp(3.2rem, 4.1vw, 3.7rem); }
.hero__lede { max-width: 580px; margin: 0 0 28px; color: #d8dfe4; font-size: 1.06rem; line-height: 1.6; }
.hero__actions { display: grid; max-width: 470px; gap: 11px; }
.hero__actions .button { width: 100%; }
.hero__text-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 10px;
  align-items: center;
  gap: 7px;
  color: #a1eee5;
  font-size: .91rem;
  font-weight: 720;
  text-underline-offset: 5px;
}
.qualification {
  max-width: 535px;
  margin: 8px 0 0;
  padding-left: 15px;
  color: #c5cfd6;
  border-left: 2px solid var(--teal);
  font-size: .78rem;
  line-height: 1.5;
}

.media-panel { position: relative; min-width: 0; overflow: hidden; background: var(--cool); }
.media-panel--hero { min-height: 720px; background: var(--slate-deep); }
.media-panel__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }

.proof-section { padding: 116px 0 124px; background: var(--white); }
.section-intro { width: min(840px, calc(100% - 48px)); margin: 0 auto 68px; text-align: center; }
.section-intro h2 { max-width: 770px; margin-inline: auto; }
.section-intro > p:last-child { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 1.06rem; }
.proof-layout { display: grid; width: var(--page); margin-inline: auto; grid-template-columns: .92fr 1.08fr; gap: clamp(54px, 7vw, 100px); align-items: center; }
.media-panel--documentation {
  min-height: 700px;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.proof-list { display: grid; align-content: center; }
.proof-item { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.proof-item:first-child { border-top: 1px solid var(--line); }
.proof-item > span { display: grid; width: 45px; height: 45px; place-items: center; color: var(--teal-dark); background: var(--teal-soft); border-radius: 50%; font-size: .8rem; font-weight: 800; letter-spacing: .08em; }
.proof-item p { margin: 0; color: var(--muted); }
.proof-list > .button { justify-self: start; margin-top: 34px; }

.final-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 690px; }
.media-panel--research {
  min-height: 690px;
  background: var(--cool);
}
.final-split__copy { display: flex; align-items: center; background: var(--cool); }
.final-split__copy > div { max-width: 660px; padding: 72px clamp(34px, 7vw, 96px); }
.final-split__copy p:not(.eyebrow) { margin: 0 0 31px; color: var(--muted); font-size: 1.04rem; line-height: 1.68; }
.final-split__link { display: inline-flex; min-height: 44px; margin-left: 20px; align-items: center; gap: 7px; color: var(--slate); font-weight: 740; text-underline-offset: 5px; }

.site-footer { padding: 64px max(32px, calc((100vw - 1200px) / 2)) 28px; color: #dbe2e7; background: var(--slate-deep); }
.footer__top { display: grid; grid-template-columns: 1fr 1.35fr; gap: 70px; align-items: start; }
.brand--footer { color: var(--white); }
.brand--footer img { width: 42px; height: 42px; }
.footer__brand p { max-width: 430px; margin: 15px 0 0; color: #bcc7ce; font-size: .9rem; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; }
.footer__links a, .link-button { display: inline-flex; min-height: 44px; align-items: center; color: #eef2f4; font-size: .86rem; font-weight: 680; text-underline-offset: 5px; }
.link-button { padding: 0; background: none; border: 0; text-decoration: underline; }
.footer__bottom { display: flex; justify-content: space-between; gap: 50px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .15); }
.footer__bottom p { margin: 0; color: #aebac2; font-size: .8rem; line-height: 1.55; }
.footer__bottom p:first-child { max-width: 760px; }
.footer__bottom p:last-child { flex: 0 0 auto; }

.consent {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  max-width: 1120px;
  margin-inline: auto;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bfc9ce;
  border-radius: 14px;
  box-shadow: 0 18px 56px rgba(32, 42, 56, .23);
}
.consent[hidden] { display: none; }
.consent__summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.consent__summary p { margin: 2px 0 0; color: var(--muted); font-size: .82rem; }
.consent__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.consent .button { min-height: 44px; padding: 10px 14px; font-size: .84rem; }
.button--quiet { color: var(--slate); background: var(--white); border-color: #aebbc2; }
.button--text { color: var(--teal-dark); background: transparent; }
.consent__custom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.consent__custom[hidden] { display: none; }
.consent__custom label { display: flex; gap: 9px; align-items: flex-start; padding: 10px 12px; background: var(--cool-light); border-radius: 9px; cursor: pointer; }
.consent__custom input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--teal-dark); }
.consent__custom span { display: grid; }
.consent__custom small { color: var(--muted); font-size: .75rem; }
.noscript { position: fixed; z-index: 60; right: 16px; bottom: 16px; left: 16px; margin: 0; padding: 12px; color: var(--white); background: var(--slate); text-align: center; }

@media (max-width: 1080px) {
  :root { --page: min(100% - 48px, 920px); }
  .header-nav { gap: 19px; }
  .header-nav > a:not(.button) { display: none; }
  .hero__copy-inner { width: calc(100% - 48px); margin-left: 24px; padding-right: 0; }
  h1 { font-size: clamp(3rem, 5.5vw, 3.8rem); }
  .proof-layout { grid-template-columns: .92fr 1.08fr; gap: 48px; }
  .media-panel--documentation { min-height: 620px; }
  .final-split__copy > div { padding-inline: 48px; }
  .final-split__link { display: flex; width: max-content; margin: 12px 0 0; }
}

@media (max-width: 760px) {
  :root { --page: calc(100% - 36px); }
  body { font-size: 15px; }
  .site-header { height: 74px; background: linear-gradient(180deg, rgba(36, 46, 59, .42), transparent); }
  .header__inner { width: calc(100% - 36px); }
  .brand { gap: 8px; font-size: .84rem; }
  .brand img { width: 40px; height: 40px; }
  .header-nav { display: none; }
  .hero { display: flex; min-height: 0; flex-direction: column; }
  .hero__copy { min-height: 620px; align-items: flex-start; }
  .hero__copy-inner { width: calc(100% - 36px); margin: 0 auto; padding: 88px 0 28px; }
  .eyebrow { margin-bottom: 12px; font-size: .8rem; }
  .hero h1 { margin-bottom: 16px; font-size: clamp(2.35rem, 10.4vw, 2.85rem); line-height: 1.02; }
  h2 { font-size: clamp(2.25rem, 9.6vw, 2.85rem); }
  .hero__lede { margin-bottom: 18px; font-size: .92rem; line-height: 1.5; }
  .hero__actions { max-width: none; gap: 9px; }
  .hero__actions .button { min-height: 50px; padding: 11px 17px; font-size: .87rem; }
  .hero__text-link { margin-top: 6px; font-size: .84rem; }
  .qualification { margin-top: 5px; padding-left: 12px; font-size: .8rem; line-height: 1.4; }
  .media-panel--hero { min-height: 470px; }
  .proof-section { padding: 76px 0 82px; }
  .section-intro { width: calc(100% - 36px); margin-bottom: 42px; }
  .section-intro > p:last-child { font-size: .96rem; }
  .proof-layout { width: calc(100% - 36px); grid-template-columns: 1fr; gap: 44px; }
  .media-panel--documentation { min-height: 520px; }
  .proof-item { grid-template-columns: 46px 1fr; gap: 17px; padding: 24px 0; }
  .proof-item > span { width: 42px; height: 42px; }
  .proof-list > .button { width: 100%; margin-top: 28px; }

  .final-split { display: flex; min-height: 0; flex-direction: column; }
  .media-panel--research { min-height: 500px; }
  .final-split__copy > div { max-width: none; padding: 70px 18px 76px; }
  .final-split__copy .button { width: 100%; }
  .final-split__link { width: 100%; justify-content: center; margin-top: 12px; }

  .site-footer { padding: 52px 18px 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__links { justify-content: flex-start; gap-inline: 20px; }
  .footer__bottom { display: grid; gap: 12px; margin-top: 32px; }
  .footer__bottom p:last-child { flex: auto; }

  .consent { right: 8px; bottom: 8px; left: 8px; padding: 12px; }
  .consent__summary { display: grid; gap: 8px; }
  .consent__summary p { font-size: .76rem; line-height: 1.35; }
  .consent__actions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .consent__actions .button { padding-inline: 5px; font-size: .8rem; }
  .consent__actions .button--text { grid-column: auto; }
  .consent__custom { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .hero__copy { min-height: 610px; }
  .hero__copy-inner { padding-top: 84px; }
  .hero h1 { font-size: 2.34rem; }
  .hero__lede { font-size: .88rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
