:root {
  --ink: #0a1724;
  --muted: #526171;
  --line: #d9e1e8;
  --line-strong: #b7c4cf;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --soft-blue: #eef6ff;
  --blue: #0b6fcf;
  --blue-dark: #0755a5;
  --teal: #0e9d83;
  --teal-dark: #087260;
  --amber: #e99a2e;
  --max: 1240px;
  --radius: 6px;
  --shadow: 0 18px 50px rgba(20, 39, 58, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand-text strong {
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.6rem;
  line-height: 1.08;
}

h3 {
  line-height: 1.22;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(26, 48, 69, 0.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: white;
  background: var(--blue);
  box-shadow: 7px 7px 0 #a8ede1;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 15px;
  font-weight: 800;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.site-navigation a {
  padding: 9px 12px;
  color: #344454;
  font-size: 14px;
  font-weight: 600;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
  color: var(--blue-dark);
  background: var(--soft-blue);
  outline: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: white;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(20, 123, 232, 0.2);
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  transform: translateY(-1px);
  outline: none;
}

.button-small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal-dark);
  outline: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 104px));
  align-content: start;
  padding-top: clamp(52px, 7vw, 88px);
  overflow: hidden;
  background: white;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 26%;
  height: 4px;
  background: var(--teal);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: var(--max);
}

.kicker,
.section-label {
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kicker span {
  width: 30px;
  height: 2px;
  background: var(--teal);
}

.hero h1 {
  margin-bottom: 2px;
  font-size: 7.9rem;
  font-weight: 800;
  line-height: 0.96;
}

.hero-statement {
  max-width: 780px;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-family: "Manrope", sans-serif;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-detail {
  max-width: 710px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.product-frame {
  position: relative;
  align-self: end;
  width: min(94%, 1480px);
  height: clamp(220px, 31vw, 390px);
  margin: clamp(34px, 5vw, 60px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: #f7fafc;
  box-shadow: var(--shadow);
}

.product-frame::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
  content: "";
}

.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 3%;
}

.proof-band {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 0.75fr)) 1.7fr;
  align-items: stretch;
}

.proof-grid > div,
.proof-grid > p {
  display: grid;
  align-content: center;
  min-height: 88px;
  margin: 0;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid span {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.proof-grid small {
  color: var(--muted);
  font-size: 12px;
}

.proof-grid > p {
  border-right: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.section {
  padding: clamp(76px, 9vw, 124px) 0;
}

.two-column,
.export-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.section-intro > p:not(.section-label):not(.assurance),
.section-heading > p:not(.section-label) {
  max-width: 690px;
  color: var(--muted);
  font-size: 17px;
}

.sticky-intro {
  position: sticky;
  top: 116px;
}

.sticky-intro .text-link {
  margin-top: 12px;
}

.price-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 10px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.price-comparison > div {
  padding: 18px 18px 18px 0;
}

.price-comparison > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line-strong);
}

.price-comparison dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-comparison dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.price-comparison dd strong {
  color: var(--blue-dark);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.section-intro > .price-source {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.price-source a {
  color: var(--teal-dark);
  font-weight: 700;
}

.capability-list {
  border-top: 1px solid var(--line-strong);
}

.capability-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.capability-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #a9d8ce;
  border-radius: 50%;
  color: var(--teal-dark);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.capability-list h3 {
  margin-bottom: 7px;
  font-size: 21px;
}

.capability-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.data-center-section {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.data-center-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.data-center-layout .section-intro {
  position: sticky;
  top: 116px;
}

.data-center-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.data-center-capabilities article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: white;
}

.data-center-capabilities article:nth-child(2),
.data-center-capabilities article:nth-child(3) {
  background: #effaf7;
}

.data-center-capabilities article > span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--teal-dark);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.data-center-capabilities h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.data-center-capabilities p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.jurisdiction-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 110px);
  margin-top: clamp(58px, 7vw, 92px);
  padding-top: 42px;
  border-top: 3px solid var(--blue);
}

.jurisdiction-band h3 {
  max-width: 470px;
  margin-bottom: 0;
  font-size: 2rem;
}

.jurisdiction-band > div:last-child > p:first-child {
  color: #2f4254;
  font-size: 17px;
}

.jurisdiction-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 24px 0;
}

.jurisdiction-links .text-link {
  font-size: 14px;
}

.jurisdiction-note {
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.workflow-section {
  background: var(--ink);
  color: white;
}

.workflow-section .section-label {
  color: #77dccb;
}

.workflow-section .section-heading > p:not(.section-label) {
  color: #b9c7d4;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 54px;
}

.workflow-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #3b4b5b;
}

.workflow-line li {
  position: relative;
  min-height: 205px;
  padding: 30px 24px 22px 0;
  border-right: 1px solid #3b4b5b;
}

.workflow-line li + li {
  padding-left: 24px;
}

.workflow-line li:last-child {
  border-right: 0;
}

.workflow-line li > span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-dark);
  color: white;
  font-weight: 800;
}

.workflow-line strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.workflow-line p {
  margin-bottom: 0;
  color: #b9c7d4;
  font-size: 14px;
}

.compact-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  max-width: none;
  gap: 0 80px;
}

.compact-heading .section-label {
  grid-column: 1;
}

.compact-heading h2 {
  grid-column: 1;
}

.compact-heading > p:last-child {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  padding-top: 8px;
}

.study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.study-grid article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: white;
}

.study-grid article:nth-child(2),
.study-grid article:nth-child(6) {
  background: var(--soft-blue);
}

.study-grid article:nth-child(4) {
  background: #effaf7;
}

.study-code {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--blue-dark);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.study-grid h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.study-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.dynamic-proof-section {
  border-top: 1px solid var(--line);
  background: white;
}

.dynamic-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: clamp(45px, 8vw, 100px);
  margin-bottom: 42px;
}

.dynamic-proof-heading h2 {
  margin-bottom: 0;
}

.dynamic-proof-heading > div:last-child > p {
  color: var(--muted);
  font-size: 17px;
}

.dynamic-proof-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dynamic-proof-facts span {
  display: grid;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.dynamic-proof-facts span:last-child {
  border-right: 0;
}

.dynamic-proof-facts strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.dynamic-proof-media {
  margin: 0;
}

.dynamic-proof-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dynamic-proof-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.export-section {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.assurance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 0;
  color: #263a4c;
  font-size: 15px;
  font-weight: 600;
}

.assurance span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  background: #d5f3ec;
  color: var(--teal-dark);
  font-size: 12px;
}

.format-explorer {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 42px rgba(29, 50, 70, 0.09);
  overflow: hidden;
}

.format-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.format-tabs button {
  min-height: 52px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.format-tabs button:last-child {
  border-right: 0;
}

.format-tabs button[aria-selected="true"] {
  color: var(--blue-dark);
  background: white;
  box-shadow: inset 0 3px 0 var(--blue);
}

.format-tabs button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -3px;
}

.format-panel {
  min-height: 420px;
  padding: clamp(28px, 5vw, 50px);
}

.file-name {
  display: inline-block;
  margin-bottom: 34px;
  padding: 7px 10px;
  border: 1px solid #b9d8f5;
  border-radius: 4px;
  background: var(--soft-blue);
  color: var(--blue-dark);
  font-family: Consolas, monospace;
  font-size: 13px;
}

.format-panel h3 {
  margin-bottom: 12px;
  font-size: 2.1rem;
}

.format-panel > p:not(.file-name) {
  color: var(--muted);
}

.format-panel dl {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.format-panel dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.format-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.format-panel dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.submission-section {
  padding-block: 72px;
  background: var(--teal-dark);
  color: white;
}

.submission-section .section-label {
  color: #d5fff8;
}

.submission-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: end;
}

.submission-layout h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.submission-layout > p {
  margin: 0 0 5px;
  color: #e2fff9;
  font-size: 17px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  content: "+";
  color: var(--blue-dark);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 690px;
  margin-bottom: 25px;
  color: var(--muted);
}

.contact-section {
  border-top: 1px solid var(--line);
  background: #f8fafc;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.contact-copy > p:not(.section-label) {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
}

.contact-points {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.contact-points span {
  position: relative;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--line);
  color: #2f4254;
  font-weight: 600;
}

.contact-points span::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 42px rgba(29, 50, 70, 0.09);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: #263a4c;
  font-size: 13px;
  font-weight: 700;
}

.contact-form label small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color 130ms ease, box-shadow 130ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 111, 207, 0.13);
}

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.contact-form-actions p {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.contact-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.contact-status.is-success {
  color: var(--teal-dark);
}

.contact-status.is-error {
  color: #b42318;
}

.final-cta {
  padding: 76px 0;
  background: var(--blue-dark);
  color: white;
}

.final-cta .section-label {
  color: #bfe1ff;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.final-cta h2 {
  margin-bottom: 8px;
}

.final-cta p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #d7e9fa;
}

.button-light {
  flex: 0 0 auto;
  border-color: white;
  background: white;
  color: var(--blue-dark);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  border-color: #d6ecff;
  background: #d6ecff;
  color: var(--blue-dark);
}

.site-footer {
  padding: 48px 0 28px;
  background: #07111d;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px 60px;
  align-items: start;
}

.footer-brand .brand-mark {
  box-shadow: 6px 6px 0 rgba(168, 237, 225, 0.45);
}

.footer-brand strong {
  font-family: "Manrope", sans-serif;
}

.footer-brand p {
  margin: 2px 0 0;
  color: #aebdca;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  color: #d4dee7;
  font-size: 14px;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: white;
}

.legal {
  max-width: 800px;
  margin: 0;
  color: #8798a7;
  font-size: 12px;
}

.copyright {
  margin: 0;
  color: #8798a7;
  font-size: 12px;
  text-align: right;
}

@media (min-width: 981px) and (max-height: 820px) {
  .product-section .sticky-intro {
    position: static;
  }
}

@media (max-width: 980px) {
  h2 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: 6.3rem;
  }

  .hero-statement {
    font-size: 1.7rem;
  }

  .site-navigation {
    gap: 0;
  }

  .site-navigation a {
    padding-inline: 8px;
    font-size: 13px;
  }

  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-grid > p {
    grid-column: 1 / -1;
    min-height: 62px;
    border-top: 1px solid var(--line);
    text-align: center;
  }

  .two-column,
  .export-layout,
  .faq-layout {
    gap: 54px;
  }

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

  .workflow-line li:nth-child(3) {
    border-right: 0;
  }

  .workflow-line li:nth-child(n + 4) {
    border-top: 1px solid #3b4b5b;
  }

  .study-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  h2 {
    font-size: 2.4rem;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    height: 64px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-action {
    display: none;
  }

  .site-navigation {
    position: fixed;
    z-index: 49;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 14px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(18, 38, 57, 0.12);
  }

  .site-navigation.is-open {
    display: grid;
  }

  .site-navigation a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .site-navigation a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .hero-detail {
    font-size: 16px;
  }

  .hero-statement {
    font-size: 1.35rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .product-frame {
    width: calc(100% - 28px);
    height: clamp(220px, 57vw, 350px);
    margin-top: 36px;
  }

  .product-frame img {
    object-position: 41% 3%;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid > div,
  .proof-grid > p {
    min-height: 76px;
    padding: 14px 16px;
  }

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(3),
  .proof-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .proof-grid > p {
    grid-column: 1 / -1;
  }

  .two-column,
  .export-layout,
  .faq-layout,
  .submission-layout,
  .compact-heading,
  .dynamic-proof-heading,
  .data-center-layout,
  .jurisdiction-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .data-center-layout .section-intro {
    position: static;
  }

  .dynamic-proof-facts {
    grid-template-columns: 1fr;
  }

  .dynamic-proof-facts span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dynamic-proof-facts span:last-child {
    border-bottom: 0;
  }

  .sticky-intro {
    position: static;
  }

  .price-comparison {
    grid-template-columns: 1fr;
  }

  .price-comparison > div {
    padding: 16px 0;
  }

  .price-comparison > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .compact-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .workflow-line {
    grid-template-columns: 1fr;
  }

  .workflow-line li,
  .workflow-line li + li {
    display: grid;
    grid-template-columns: 48px 100px 1fr;
    min-height: 0;
    align-items: start;
    gap: 14px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #3b4b5b;
  }

  .workflow-line li:nth-child(n + 4) {
    border-top: 0;
  }

  .workflow-line li > span {
    margin-bottom: 0;
  }

  .workflow-line strong {
    padding-top: 3px;
  }

  .workflow-line p {
    padding-top: 4px;
  }

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

  .study-grid article {
    min-height: 190px;
  }

  .format-panel {
    min-height: 450px;
  }

  .format-panel h3 {
    font-size: 1.7rem;
  }

  .submission-layout {
    align-items: start;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-copy h2 {
    max-width: 620px;
  }

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

  .copyright {
    text-align: left;
  }
}

@media (max-width: 460px) {
  h2 {
    font-size: 2.1rem;
  }

  .brand-text small {
    display: none;
  }

  .hero-statement {
    font-size: 1.18rem;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .workflow-line li,
  .workflow-line li + li {
    grid-template-columns: 42px 1fr;
  }

  .workflow-line p {
    grid-column: 2;
  }

  .format-tabs button {
    min-height: 48px;
    font-size: 13px;
  }

  .format-panel {
    min-height: 500px;
    padding: 24px 20px;
  }

  .format-panel dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .data-center-capabilities,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .data-center-capabilities article {
    min-height: 0;
  }

  .contact-message-field {
    grid-column: auto;
  }

  .contact-form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
