@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap");

:root {
  --bg: #070614;
  --bg-deep: #070614;
  --bg-teal: #072c4a;
  --bg-blue: #071b3b;
  --bg-band: #141133;
  --panel: #070614;
  --panel-border: rgba(106, 98, 145, 0.68);
  --cyan: #12d6a4;
  --blue: #146ff5;
  --magenta: #b057f1;
  --orange: #f47621;
  --navy: #071b3b;
  --text: #c8cfdf;
  --muted: #8d93a5;
  --dim: #5e6474;
  --ink: #0b1720;
  --teal: #12d6a4;
  --teal-dark: #1b888b;
  --green: #62b879;
  --white: #eef4fb;
  --font: "Roboto", Arial, Helvetica, sans-serif;
  --heading-font: "Roboto", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 52% 2%, rgba(7, 67, 77, 0.95) 0%, rgba(7, 67, 77, 0.42) 20%, rgba(7, 67, 77, 0) 45%),
    linear-gradient(180deg, var(--bg-teal) 0%, var(--bg-blue) 34%, var(--bg) 100%);
  background-attachment: scroll;
  background-repeat: no-repeat;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

figure {
  margin: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

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

h1,
h2 {
  color: var(--text);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 570px;
  font-size: clamp(2.2rem, 4.2vw, 2.8125rem);
}

.mobile-title-line {
  display: inline;
}

h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.4rem);
}

h3 {
  color: var(--text);
  font-family: var(--heading-font);
  font-size: 1.40625rem;
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 1.265625rem;
  font-weight: 400;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--teal);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.language-selector {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  padding: 6px;
  backdrop-filter: blur(18px);
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.language-button.is-active {
  border-color: rgba(18, 214, 164, 0.9);
  background: rgba(34, 215, 187, 0.16);
}

.flag {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 16px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.flag-en {
  background: #012169 url("assets/flag-en.svg") center / cover no-repeat;
}

.flag-de {
  background: linear-gradient(#000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%);
}

.wrap {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.main-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 28px;
}

.main-page-shell {
  display: flex;
  min-height: calc(100vh - 56px);
  flex-direction: column;
}

.main-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  width: min(1110px, calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: transparent;
  padding: 6px 0;
}

.main-brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 700;
}

.main-brand-logo {
  width: auto;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.mobile-nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(238, 244, 251, 0.16);
  border-radius: 999px;
  background: rgba(7, 6, 20, 0.34);
  color: rgba(238, 244, 251, 0.9);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.mobile-nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mobile-nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

body.product-page .main-brand {
  border: 1px solid rgba(238, 244, 251, 0.16);
  border-radius: 999px;
  background: #fefefe;
  padding: 8px 15px;
  backdrop-filter: blur(10px);
}

body.contact-page .subpage-nav .main-brand,
body.privacy-page .subpage-nav .main-brand,
body.imprint-page .subpage-nav .main-brand,
body.access-denied-page .subpage-nav .main-brand {
  border: 1px solid rgba(238, 244, 251, 0.16);
  border-radius: 999px;
  background: #fefefe;
  padding: 8px 15px;
  backdrop-filter: blur(10px);
}

body.product-page .main-brand:hover {
  border-color: rgba(22, 255, 187, 0.72);
}

body.product-page .main-brand-logo {
  height: 30px;
}

body.contact-page .subpage-nav .main-brand-logo,
body.privacy-page .subpage-nav .main-brand-logo,
body.imprint-page .subpage-nav .main-brand-logo,
body.access-denied-page .subpage-nav .main-brand-logo {
  height: 30px;
}

.main-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.main-nav-links a,
.main-nav-menu-button {
  border: 1px solid rgba(238, 244, 251, 0.16);
  border-radius: 999px;
  background: rgba(7, 6, 20, 0.34);
  color: rgba(238, 244, 251, 0.84);
  padding: 8px 15px;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.main-nav-menu-button {
  cursor: pointer;
}

.main-nav-links a:hover,
.main-nav-menu-button:hover,
.main-nav-menu-button[aria-expanded="true"] {
  border-color: rgba(22, 255, 187, 0.72);
  color: var(--white);
}

.main-nav-menu-button[data-i18n="navProducts"] {
  color: var(--orange);
}

.main-nav-menu-button[data-i18n="navProducts"]:hover,
.main-nav-menu-button[data-i18n="navProducts"][aria-expanded="true"] {
  border-color: rgba(244, 118, 33, 0.72);
  color: var(--orange);
}

.main-nav-dropdown {
  position: relative;
}

.main-nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 90;
  min-width: 220px;
  border: 1px solid rgba(22, 255, 187, 0.3);
  border-radius: 18px;
  background: rgba(7, 20, 34, 0.94);
  padding: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.main-nav-menu a {
  display: block;
  border-radius: 12px;
  background: transparent;
  padding: 10px 12px;
  white-space: nowrap;
}

.main-nav-menu a:hover {
  background: rgba(22, 255, 187, 0.16);
}

.main-page-content {
  width: min(790px, 100%);
  margin-top: auto;
  margin-bottom: auto;
  border: 1px solid rgba(238, 244, 251, 0.14);
  border-radius: 30px;
  background: rgba(7, 6, 20, 0.38);
  padding: clamp(34px, 6vw, 66px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.main-page-content h1 {
  max-width: none;
  margin-top: 18px;
  color: var(--white);
  font-size: 2.8125rem;
  line-height: 1.25;
  overflow-wrap: normal;
  white-space: normal;
}

.main-page-content p {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(238, 244, 251, 0.82);
}

.product-page .main-page {
  min-height: auto;
  padding-bottom: 0;
}

.product-page .main-page-shell {
  min-height: auto;
}

.product-page .main-page-content {
  display: none;
}

.product-page .hero {
  padding-top: clamp(72px, 9vw, 116px);
}

.hero {
  padding-top: 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.hero-copy {
  padding-top: 68px;
  min-width: 0;
}

.hero-copy p {
  max-width: 590px;
  margin-top: 28px;
}

.hero-expert-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-expert-link:hover,
.hero-expert-link:focus-visible {
  color: var(--teal);
}

.button-primary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--ink);
  padding: 0 22px;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(18, 214, 164, 0.18);
}

.hero-media img {
  width: 410px;
  height: 610px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(23, 93, 67, 0.9);
  color: #79b783;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin-top: 42px;
}

.feature-card img {
  width: 200px;
  height: 161px;
  border-radius: 14px;
  object-fit: cover;
}

.feature-card h3 {
  margin-top: 26px;
}

.feature-card p {
  max-width: 250px;
  margin-top: 12px;
}

.fade-card {
  opacity: 1;
}

.process h2,
.process p {
  max-width: 1030px;
}

.process p {
  margin-top: 24px;
}

.process-steps {
  width: min(976px, 100%);
  margin-top: 72px;
  margin-inline: auto;
}

.process-diagram__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.process-diagram__circle {
  fill: #171431;
  stroke: #16ffbb;
  stroke-width: 5;
}

.process-diagram__connector {
  stroke: none;
}

.process-diagram__connector--first {
  fill: #168cac;
}

.process-diagram__connector--second {
  fill: #29abe8;
}

.process-diagram__icon {
  fill: none;
  stroke: rgba(238, 244, 251, 0.92);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.process-diagram__icon--keyboard rect:not(:first-child) {
  fill: rgba(238, 244, 251, 0.92);
  stroke: none;
}

.process-diagram__icon--check {
  stroke-width: 4;
}

.process-diagram__labels text {
  fill: rgba(238, 244, 251, 0.92);
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 34px;
}

.teal-card {
  min-height: auto;
  margin-top: 22px;
  border-radius: 26px;
  background: var(--teal-dark);
  padding: 24px;
}

.teal-card h3,
.teal-card p {
  color: #071b24;
}

.teal-card p {
  margin-top: 18px;
}

.case-list {
  display: grid;
  gap: 25px;
  padding-top: 0;
}

.case-list article {
  position: relative;
  padding-left: 28px;
}

.case-list article::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #16ffbb;
  content: "";
}

.case-list article:nth-child(2)::before {
  background: #25d7d5;
}

.case-list article:nth-child(3)::before {
  background: #36a8ec;
}

.case-list article:nth-child(4)::before {
  background: #f5c451;
}

.case-list p {
  margin-top: 12px;
  color: var(--dim);
}

.comparison-panel {
  border: 5px solid var(--panel-border);
  border-radius: 34px;
  background: rgba(5, 5, 25, 0.58);
  padding: 58px 66px 48px;
  color: var(--white);
}

.comparison-panel h2,
.comparison-panel h3 {
  color: var(--white);
}

.comparison-panel p {
  margin-top: 30px;
  color: rgba(238, 244, 251, 0.94);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 44px;
}

.stats article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(3rem, 5vw, 4.1765625rem);
  font-weight: 700;
  line-height: 1;
}

.stats h3 {
  margin-top: 22px;
}

.stats p {
  margin-top: 8px;
  max-width: 15rem;
  text-align: center;
}

.integration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 70px;
  align-items: center;
}

.knowledge-grid > p,
.integration-grid p {
  margin-top: 28px;
}

.integration-grid > img {
  border-radius: 24px;
}

.knowledge-grid {
  width: min(1399px, calc(100% - 60px));
  max-width: 100%;
}

.knowledge {
  padding-top: 26px;
}

.knowledge-grid > p {
  max-width: 1359px;
  color: rgba(238, 244, 251, 0.86);
  font-weight: 400;
}

.knowledge-cards {
  display: grid;
  width: min(100%, 1240px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 31px auto 0;
}

.knowledge-card {
  min-height: 372px;
  border: 3px solid #16ffbb;
  border-radius: 28px;
  background: rgba(7, 6, 20, 0.82);
  padding: 26px 24px 28px;
}

.knowledge-card--cyan {
  border-color: #1bdad7;
}

.knowledge-card--blue {
  border-color: #33a7eb;
}

.knowledge-card--navy {
  border-color: #245da8;
}

.knowledge-icon {
  display: grid;
  width: 73px;
  height: 73px;
  place-items: center;
  border-radius: 50%;
  background: #16ffbb;
}

.knowledge-card--cyan .knowledge-icon {
  background: #25d7d5;
}

.knowledge-card--blue .knowledge-icon {
  background: #36a8ec;
}

.knowledge-card--navy .knowledge-icon {
  background: #245da8;
}

.knowledge-icon img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.knowledge-card--navy .knowledge-icon img {
  filter: brightness(0) invert(1);
}

.knowledge-card h3 {
  margin-top: 27px;
  color: rgba(238, 244, 251, 0.92);
  font-size: 1.40625rem;
  line-height: 1.25;
}

.knowledge-card p {
  margin-top: 16px;
  color: rgba(238, 244, 251, 0.84);
  font-weight: 400;
  hyphens: auto;
  overflow-wrap: normal;
}

.audience {
  padding-top: 32px;
}

.audience-layout {
  width: min(1478px, calc(100% - 64px));
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: clamp(58px, 5.4vw, 95px);
  align-items: center;
}

.audience-media {
  position: relative;
  overflow: hidden;
  border-radius: 31px;
}

.audience-graphic {
  width: 100%;
  height: clamp(441px, 41.33vw, 726px);
  object-fit: cover;
  object-position: 47% 50%;
}

.audience-content {
  padding-top: 31px;
}

.audience-content h2 {
  max-width: 810px;
  color: rgba(238, 244, 251, 0.96);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 27px;
  margin-top: 43px;
}

.audience-card {
  min-height: 245px;
  border: 4px solid #16ffbb;
  border-left-width: 16px;
  border-radius: 29px;
  background: rgba(28, 24, 67, 0.78);
  padding: 29px 29px 27px 32px;
}

.audience-card--cyan {
  border-color: #2bdbd5;
}

.audience-card--blue {
  border-color: #37a9ea;
}

.audience-card--navy {
  border-color: #245ca5;
}

.audience-card h3 {
  color: rgba(238, 244, 251, 0.94);
  font-size: 1.40625rem;
  line-height: 1.25;
}

.audience-card p {
  margin-top: 22px;
  color: rgba(238, 244, 251, 0.84);
  font-weight: 400;
  hyphens: auto;
  overflow-wrap: normal;
}

.integration-grid {
  grid-template-columns: minmax(0, 1fr) 432px;
}

.integration-grid h3 {
  margin-top: 24px;
  color: var(--teal);
}

.final-cta {
  min-height: clamp(560px, 64vw, 820px);
  display: flex;
  align-items: center;
  background-image: url("assets/cta.png");
  background-position: center;
  background-size: cover;
}

.final-grid {
  width: min(720px, calc(100% - 64px));
  margin-left: max(32px, calc((100vw - 1110px) / 2));
  border: 1px solid rgba(238, 244, 251, 0.18);
  border-radius: 30px;
  background: rgba(7, 6, 20, 0.62);
  padding: clamp(34px, 5vw, 58px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
}

.final-grid p {
  margin-top: 28px;
  color: rgba(238, 244, 251, 0.84);
}

.contact-main {
  min-height: 100vh;
}

.privacy-main {
  min-height: 100vh;
}

.access-denied-main {
  min-height: 100vh;
}

.access-denied-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.access-denied-wrap {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding-top: clamp(104px, 12vw, 140px);
  padding-bottom: 56px;
}

.access-denied-logo {
  display: inline-flex;
  width: min(260px, 72vw);
}

.access-denied-logo img {
  width: 100%;
  height: auto;
}

.access-denied-panel {
  max-width: 760px;
  border-left: 8px solid var(--teal);
  padding: clamp(24px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(18, 214, 164, 0.15), rgba(255, 109, 0, 0.09)),
    rgba(7, 6, 20, 0.68);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.access-denied-code {
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.access-denied-panel h1 {
  margin-top: 10px;
  font-size: clamp(2.4rem, 8vw, 5.8rem);
  color: var(--teal);
}

.access-denied-panel > p:not(.access-denied-code) {
  max-width: 620px;
  margin-top: 20px;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.access-denied-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.contact-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.privacy-hero {
  min-height: 100vh;
  padding-top: 28px;
}

.contact-wrap {
  padding-top: clamp(104px, 12vw, 140px);
  padding-bottom: 56px;
}

.privacy-wrap {
  padding-top: clamp(104px, 12vw, 140px);
  padding-bottom: 56px;
}

.subpage-nav {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: start;
}

.privacy-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.privacy-heading p {
  margin-top: 24px;
}

.contact-grid h1 {
  max-width: 620px;
}

.contact-grid p {
  max-width: 620px;
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(7, 6, 20, 0.68);
  padding: clamp(24px, 4vw, 34px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.contact-form__status {
  border-radius: 14px;
  margin-top: 0;
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-form__status[hidden] {
  display: none;
}

.contact-form__status--success {
  background: rgba(18, 214, 164, 0.22);
  border: 1px solid rgba(18, 214, 164, 0.7);
}

.contact-form__status--error {
  background: rgba(176, 87, 241, 0.18);
  border: 1px solid rgba(176, 87, 241, 0.58);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.contact-form label > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contact-form em {
  color: var(--teal);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  font-weight: 700;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(18, 214, 164, 0.5);
  outline-offset: 2px;
  border-color: var(--teal);
}

.contact-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.legal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-document {
  display: grid;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(7, 6, 20, 0.46);
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.privacy-document[hidden] {
  display: none;
}

.privacy-document h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.2rem);
}

.privacy-document section {
  display: grid;
  gap: 14px;
}

.privacy-document h3 {
  color: var(--teal);
}

.privacy-document p,
.privacy-document li {
  color: var(--muted);
  font-weight: 600;
}

.privacy-document ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.3rem;
}

.privacy-document a {
  color: var(--teal);
  font-weight: 700;
}

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

.legal-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 34px;
}

.legal-grid h3 {
  margin-top: 28px;
}

.legal-grid p {
  margin-top: 14px;
}

.legal-grid a {
  color: var(--teal);
  font-weight: 700;
}

.site-footer {
  padding: 30px 0 42px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  text-align: center;
}

.footer-grid p {
  font-size: 0.9rem;
}

.footer-grid .footer-notice {
  width: min(100%, 980px);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.cookie-revisit {
  position: fixed;
  z-index: 112;
  left: 15px;
  bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #0056a7;
  cursor: pointer;
}

.cookie-revisit[hidden] {
  display: none;
}

.cookie-revisit:hover::before,
.cookie-revisit:focus-visible::before {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 7px);
  width: max-content;
  max-width: min(260px, calc(100vw - 86px));
  padding: 4px 8px;
  color: #ffffff;
  background: #4e4b66;
  border-radius: 4px;
  font-size: 12px;
  line-height: 16px;
}

.cookie-revisit:hover::after,
.cookie-revisit:focus-visible::after {
  content: "";
  position: absolute;
  left: calc(100% + 2px);
  border: 5px solid transparent;
  border-left-width: 0;
  border-right-color: #4e4b66;
}

.cookie-revisit img {
  width: 30px;
  height: 30px;
  max-width: fit-content;
  margin: 0;
}

.cookie-card {
  position: fixed;
  z-index: 112;
  left: 40px;
  bottom: 40px;
  width: min(440px, calc(100vw - 40px));
  padding: 22px 26px;
  color: #2d2d2d;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.cookie-card.is-hidden {
  display: none;
}

.cookie-card h2 {
  margin: 0 0 12px;
  color: #303030;
  font-size: 20px;
  font-weight: 700;
}

.cookie-card p {
  margin: 0 0 18px;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.65;
}

.cookie-card div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.cookie-card button,
.cookie-modal-actions button {
  min-height: 44px;
  border: 2px solid #1f68e5;
  color: #1f68e5;
  background: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.cookie-card button:first-child,
.cookie-modal-actions button:last-child {
  color: #ffffff;
  background: #1f68e5;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 126;
  background: rgba(10, 14, 24, 0.42);
}

.cookie-modal-backdrop[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-modal {
  position: fixed;
  z-index: 127;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 18px;
  width: min(806px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 28px 28px 24px;
  color: #232323;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.cookie-modal h2 {
  margin: 0;
  color: #202020;
  font-size: 28px;
  font-weight: 700;
}

.cookie-modal p {
  margin: 0;
  color: #232323;
  font-size: 14px;
  line-height: 1.7;
}

.cookie-modal-copy {
  display: grid;
  gap: 10px;
}

.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  color: #555555;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cookie-settings-list {
  display: grid;
  gap: 12px;
}

.cookie-setting {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #d9dee8;
  border-radius: 8px;
}

.cookie-setting strong {
  display: block;
  margin-bottom: 4px;
  color: #202020;
  font-size: 16px;
}

.cookie-setting small {
  display: block;
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-setting input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.cookie-modal-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

body.cookie-modal-open {
  overflow: hidden;
}

.accessibility-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 118;
  display: inline-grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.accessibility-toggle__icon {
  display: inline-grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 52%, var(--magenta));
  box-shadow: 0 18px 40px rgba(6, 24, 67, 0.2);
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.accessibility-toggle__icon img {
  width: 1.85rem;
  height: 1.85rem;
}

.accessibility-toggle:hover .accessibility-toggle__icon,
.accessibility-toggle:focus-visible .accessibility-toggle__icon {
  box-shadow: 0 22px 46px rgba(6, 24, 67, 0.26);
  transform: scale(1.06);
}

.accessibility-toggle__tooltip {
  position: absolute;
  right: calc(100% + 0.65rem);
  bottom: 50%;
  z-index: 1;
  width: max-content;
  max-width: min(17rem, calc(100vw - 6rem));
  padding: 0.45rem 0.65rem;
  border-radius: 4px;
  color: #ffffff;
  background: #223247;
  box-shadow: 0 10px 24px rgba(6, 24, 67, 0.18);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50%) translateX(0.35rem);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.accessibility-toggle__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  border: 6px solid transparent;
  border-left-color: #223247;
  transform: translateY(-50%);
}

.accessibility-toggle:hover .accessibility-toggle__tooltip,
.accessibility-toggle:focus-visible .accessibility-toggle__tooltip {
  opacity: 1;
  transform: translateY(50%);
}

.accessibility-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(36rem, 100vw);
  height: 100vh;
  overflow-y: auto;
  color: #223247;
  background: #fff;
  box-shadow: -18px 0 70px rgba(6, 24, 67, 0.2);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.2s ease, transform 0.44s cubic-bezier(0.23, 1, 0.32, 1);
}

.accessibility-panel.is-open {
  opacity: 1;
  transform: translateX(0);
}

.accessibility-panel__header {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: 2.1rem 2rem 1.7rem;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(97, 216, 233, 0.24), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, var(--navy), var(--ink) 58%, var(--blue));
}

.accessibility-panel__badge {
  display: grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(5, 17, 46, 0.2);
}

.accessibility-panel__badge-icon {
  width: 2.45rem;
  height: 2.45rem;
  filter: brightness(0) saturate(100%) invert(34%) sepia(98%) saturate(3308%) hue-rotate(209deg) brightness(99%) contrast(96%);
  object-fit: contain;
}

.accessibility-panel__heading h2 {
  margin: 0 0 0.3rem;
  color: inherit;
  font-size: clamp(1.4rem, 3.4vw, 1.75rem);
  line-height: 1.15;
}

.accessibility-panel__heading p {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
}

.accessibility-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.accessibility-section {
  padding: 1.35rem 1.2rem 0;
}

.accessibility-section h3 {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.accessibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.accessibility-card,
.accessibility-reset {
  border: 1px solid rgba(15, 53, 142, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.accessibility-card {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  min-height: 6.9rem;
  padding: 0.95rem 0.8rem;
  border-radius: 18px;
  color: #223247;
  text-align: center;
  box-shadow: 0 10px 28px rgba(6, 24, 67, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.accessibility-card > span {
  font-weight: 700;
  line-height: 1.28;
}

.accessibility-card > small {
  color: #5f7086;
  font-size: 0.8rem;
  font-weight: 700;
}

.accessibility-card:hover,
.accessibility-card:focus-visible {
  border-color: rgba(33, 118, 255, 0.42);
  box-shadow: 0 18px 34px rgba(6, 24, 67, 0.13);
  transform: translateY(-2px);
}

.accessibility-card.is-active {
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
}

.accessibility-card.is-active > small {
  color: rgba(255, 255, 255, 0.78);
}

.accessibility-card--wide {
  grid-column: span 2;
}

.accessibility-card--step {
  justify-items: stretch;
  cursor: default;
}

.accessibility-stepper {
  display: grid;
  grid-template-columns: 2.55rem 1fr 2.55rem;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.accessibility-stepper button {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.accessibility-stepper button[disabled] {
  opacity: 0.36;
  cursor: not-allowed;
}

.accessibility-stepper span {
  min-width: 0;
  color: #5f7086;
  font-size: 0.86rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.accessibility-reset {
  width: calc(100% - 2.4rem);
  min-height: 3.1rem;
  margin: 1.4rem 1.2rem 1.8rem;
  border-color: rgba(15, 53, 142, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--ink));
  box-shadow: 0 18px 38px rgba(6, 24, 67, 0.18);
  font-weight: 700;
  cursor: pointer;
}

.accessibility-reading-line {
  position: fixed;
  left: 0;
  z-index: 116;
  width: 100%;
  height: 12px;
  border: 3px solid #fff36d;
  border-radius: 5px;
  background: rgba(5, 17, 46, 0.86);
  pointer-events: none;
}

.accessibility-reading-mask {
  position: fixed;
  left: 0;
  z-index: 115;
  width: 100%;
  background: rgba(5, 17, 46, 0.48);
  pointer-events: none;
}

body.accessibility-readable-font {
  font-family: var(--font);
}

body.accessibility-big-cursor,
body.accessibility-big-cursor * {
  cursor: crosshair !important;
}

body.accessibility-letter-spacing,
body.accessibility-letter-spacing p,
body.accessibility-letter-spacing li,
body.accessibility-letter-spacing a,
body.accessibility-letter-spacing span,
body.accessibility-letter-spacing button,
body.accessibility-letter-spacing input,
body.accessibility-letter-spacing textarea {
  letter-spacing: 0.06em;
}

body.accessibility-align-text main,
body.accessibility-align-text section,
body.accessibility-align-text article {
  text-align: center;
}

body.accessibility-font-weight p,
body.accessibility-font-weight li,
body.accessibility-font-weight a,
body.accessibility-font-weight span,
body.accessibility-font-weight label,
body.accessibility-font-weight button {
  font-weight: 700;
}

body.accessibility-light-contrast,
body.accessibility-light-contrast .accessibility-panel,
body.accessibility-light-contrast .accessibility-card,
body.accessibility-light-contrast .comparison-panel,
body.accessibility-light-contrast .contact-form,
body.accessibility-light-contrast .legal-grid article {
  color: #1f2937 !important;
  background: #ffffff !important;
}

body.accessibility-light-contrast a {
  color: #0f358e !important;
}

body.accessibility-light-contrast .accessibility-card.is-active {
  color: #0f358e !important;
  background: #dceeff !important;
  border-color: #0f358e !important;
}

body.accessibility-high-contrast,
body.accessibility-high-contrast .accessibility-panel,
body.accessibility-high-contrast .accessibility-card,
body.accessibility-high-contrast .comparison-panel,
body.accessibility-high-contrast .contact-form,
body.accessibility-high-contrast .legal-grid article {
  color: #ffffff !important;
  background: #111111 !important;
}

body.accessibility-high-contrast a,
body.accessibility-high-contrast h1,
body.accessibility-high-contrast h2,
body.accessibility-high-contrast h3,
body.accessibility-high-contrast h4,
body.accessibility-high-contrast h5,
body.accessibility-high-contrast h6,
body.accessibility-high-contrast .eyebrow {
  color: #fff36d !important;
}

body.accessibility-high-contrast .accessibility-card.is-active {
  color: #111111 !important;
  background: #fff36d !important;
  border-color: #fff36d !important;
}

body.accessibility-light-contrast .footer-grid p {
  color: #1f2937 !important;
}

body.accessibility-high-contrast .footer-grid p {
  color: #ffffff !important;
}

body.accessibility-monochrome {
  filter: grayscale(1);
}

body.accessibility-hide-images img {
  opacity: 0 !important;
}

body.accessibility-hide-images .final-cta {
  background-image: none !important;
}

body.accessibility-hide-images .accessibility-toggle__icon img {
  opacity: 1 !important;
}

body.accessibility-hide-images .accessibility-panel__badge-icon {
  opacity: 1 !important;
}

body.accessibility-highlight-links a:not(.accessibility-close) {
  color: #111111 !important;
  background: #fff36d !important;
  text-decoration: underline !important;
}

body.accessibility-highlight-content section,
body.accessibility-highlight-content article,
body.accessibility-highlight-content .comparison-panel,
body.accessibility-highlight-content .contact-form,
body.accessibility-highlight-content input,
body.accessibility-highlight-content textarea {
  outline: 3px solid #b057f1;
  outline-offset: 4px;
}

body.accessibility-stop-animations,
body.accessibility-stop-animations * {
  scroll-behavior: auto !important;
  animation: none !important;
  transition: none !important;
}

@media (max-width: 900px) {
  .main-page {
    min-height: auto;
    padding-top: 72px;
  }

  .privacy-hero {
    padding-top: 72px;
  }

  .section.main-page {
    padding-top: 188px;
  }

  .contact-wrap,
  .privacy-wrap,
  .access-denied-wrap {
    padding-top: 188px;
  }

  .main-page-shell {
    min-height: auto;
    gap: 54px;
  }

  .main-nav {
    top: 12px;
    width: min(100% - 32px, 1110px);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
  }

  .main-nav-links {
    justify-content: flex-start;
    gap: 8px;
  }

  .main-nav-links a,
  .main-nav-menu-button {
    padding: 7px 11px;
    font-size: 0.92rem;
  }

  .main-nav-menu {
    left: auto;
    right: 0;
  }

  .main-page-content {
    margin: 0;
  }

  .main-page-content h1 {
    font-size: 3.2rem;
  }

  .main-page-content p {
    font-size: 1.15rem;
  }

  .hero-grid,
  .cases-grid,
  .knowledge-grid,
  .audience-layout,
  .integration-grid,
  .access-denied-wrap,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(1.8rem, 6.8vw, 2.15rem);
  }

  h2 {
    font-size: clamp(1.55rem, 6.5vw, 2.1rem);
  }

  .hero-media img {
    width: 100%;
    height: auto;
    max-height: 560px;
  }

  .feature-list,
  .stats,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-layout {
    width: min(100% - 32px, 1110px);
    gap: 36px;
  }

  .audience-media {
    border-radius: 24px;
  }

  .audience-graphic {
    height: min(403px, 86vw);
  }

  .audience-content {
    padding-top: 0;
  }

  .audience-card {
    min-height: auto;
  }

  .audience-card p {
    font-size: 1.15rem;
  }

  .final-cta {
    min-height: 560px;
    background-position: center;
  }

  .final-grid {
    width: min(100% - 32px, 720px);
    margin: 0 auto;
    padding: 30px 24px;
  }

  .fade-card {
    opacity: 1;
  }

  .process-steps {
    margin-top: 42px;
  }

  .case-list {
    padding-top: 0;
  }

  .teal-card {
    min-height: auto;
  }

  .comparison-panel {
    padding: 34px 24px;
  }

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

  .knowledge-grid {
    width: min(100% - 32px, 1110px);
  }

  .knowledge-grid > p,
  .knowledge-card p {
    font-size: 1.15rem;
  }

  .knowledge-card {
    min-height: auto;
  }

  .footer-grid {
    flex-direction: column;
  }

  .cookie-card {
    left: 20px;
    bottom: 20px;
  }

  .cookie-modal {
    width: min(728px, calc(100vw - 24px));
    padding: 24px 20px 20px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 32px, 1110px);
  }

  .main-page-content h1 {
    font-size: 2.35rem;
  }

  .main-nav {
    top: 10px;
    width: min(100% - 24px, 1110px);
    padding: 0;
  }

  .contact-wrap,
  .privacy-wrap,
  .section.main-page,
  .access-denied-wrap {
    padding-top: 206px;
  }

  .language-button {
    width: 38px;
    height: 28px;
  }

  .section {
    padding: 64px 0;
  }

  .privacy-hero {
    padding-top: 64px;
  }

  .mobile-title-line {
    display: block;
  }

  .accessibility-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 3.25rem;
    height: 3.25rem;
  }

  .accessibility-toggle__icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .accessibility-panel {
    width: 100%;
  }

  .accessibility-panel__header {
    padding-inline: 1.15rem;
  }

  .accessibility-section {
    padding-inline: 0.75rem;
  }

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

  .cookie-card {
    left: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
    padding: 20px 22px;
  }

  .cookie-card div,
  .cookie-modal-actions {
    grid-template-columns: 1fr;
  }

  .cookie-setting {
    grid-template-columns: 1fr 20px;
    padding: 12px 14px;
  }

  .accessibility-reset {
    width: calc(100% - 1.5rem);
    margin-inline: 0.75rem;
  }

  .accessibility-card-grid {
    grid-template-columns: 1fr;
  }
}

body.home-page {
  --home-teal: #009b8f;
  --home-teal-dark: #007e75;
  --home-navy: #09213f;
  --home-orange: #f47621;
  --home-mint: #c9fbf3;
  --home-green-panel: #bde9c8;
  --home-soft: #f5f2f1;
  --home-border: #d9d7d4;
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 32%, #d7d7d7 68%, #b8b8b8 100%);
  color: #333333;
}

body.home-page .language-selector {
  border-color: rgba(0, 155, 143, 0.2);
}

body.home-page a:focus-visible,
body.home-page button:focus-visible {
  outline-color: var(--home-orange);
}

body.home-page .main-page {
  background: transparent;
  padding-bottom: clamp(48px, 6vw, 88px);
}

body.home-page .main-nav {
  background: transparent;
}

body.home-page .main-brand {
  border: 1px solid rgba(9, 33, 63, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--home-navy);
  padding: 8px 15px;
  box-shadow: 0 12px 28px rgba(9, 33, 63, 0.08);
  backdrop-filter: blur(10px);
}

body.home-page .main-brand:hover {
  border-color: var(--home-teal);
}

body.home-page .main-nav-links a,
body.home-page .main-nav-menu-button {
  border-color: rgba(9, 33, 63, 0.14);
  background: rgba(255, 255, 255, 0.48);
  color: var(--home-navy);
  box-shadow: 0 12px 28px rgba(9, 33, 63, 0.08);
}

body.home-page .main-nav-links a:hover,
body.home-page .main-nav-menu-button:hover,
body.home-page .main-nav-menu-button[aria-expanded="true"] {
  border-color: var(--home-teal);
  color: var(--home-teal-dark);
}

body.home-page .main-nav-menu-button[data-i18n="navProducts"],
body.home-page .main-nav-menu-button[data-i18n="navProducts"]:hover,
body.home-page .main-nav-menu-button[data-i18n="navProducts"][aria-expanded="true"] {
  border-color: rgba(244, 118, 33, 0.32);
  color: var(--home-orange);
}

body.home-page .main-nav-menu {
  border-color: rgba(0, 155, 143, 0.24);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(9, 33, 63, 0.14);
}

body.home-page .main-nav-menu a:hover {
  background: rgba(0, 155, 143, 0.1);
}

body.home-page .pdf-home {
  --pdf-teal: #009b8f;
  --pdf-orange: #f47621;
  --pdf-text: #333333;
  --pdf-light: #f1eeee;
  --pdf-muted: #f3f3f3;
  --pdf-blue: #245592;
  --pdf-green: #1e7938;
  --pdf-purple: #66269a;
  --pdf-red: #ff3d43;
  --pdf-navy: #172849;
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 32%, #d7d7d7 68%, #b8b8b8 100%);
  color: var(--pdf-text);
}

.pdf-home .main-nav {
  background: transparent;
}

.pdf-home .main-brand-logo {
  object-fit: contain;
  filter: none;
}

.pdf-home .main-brand-logo {
  height: 46px;
}

.pdf-section {
  position: relative;
  display: grid;
  min-height: min(920px, 100vh);
  align-items: center;
  overflow: hidden;
  background: transparent;
  padding: clamp(72px, 8vw, 132px) 0;
}

.pdf-slide {
  position: relative;
  z-index: 1;
}

.pdf-nav-wrap {
  position: relative;
  z-index: 4;
  padding-top: 28px;
}

.pdf-hero {
  min-height: 100vh;
  padding-top: 0;
}

.pdf-hero-bg,
.pdf-start-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.16;
}

.pdf-hero-bg {
  background-image: linear-gradient(rgba(255,255,255,0.52), rgba(255,255,255,0.9)), url("assets/expert-solutions-hero-pdf.jpg");
  opacity: 1;
}

.pdf-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 112px);
}

.pdf-hero h1 {
  color: var(--pdf-teal);
  font-family: var(--heading-font);
  font-size: clamp(4rem, 7.4vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.pdf-orange-lead {
  margin-top: clamp(34px, 5vw, 58px);
  color: var(--pdf-orange);
  font-family: var(--heading-font);
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
}

.pdf-intro,
.pdf-section-intro {
  max-width: 1500px;
  margin-top: 28px;
  color: var(--pdf-text);
  font-size: clamp(1.08rem, 1.45vw, 1.55rem);
  line-height: 1.45;
}

.pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(48px, 7vw, 90px);
}

.pdf-button {
  display: inline-flex;
  min-width: 164px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pdf-orange);
  border-radius: 8px;
  padding: 0 24px;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
}

.pdf-button--primary {
  background: #d66200;
  color: #ffffff;
}

.pdf-slide h2 {
  color: var(--pdf-teal);
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  font-weight: 700;
  line-height: 1.04;
}

.pdf-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 7vw, 110px);
  margin-top: clamp(48px, 7vw, 86px);
  text-align: center;
}

.pdf-stat-grid strong {
  display: block;
  color: var(--pdf-orange);
  font-family: var(--heading-font);
  font-size: clamp(4rem, 7vw, 6.25rem);
  font-weight: 700;
  line-height: 1;
}

.pdf-stat-grid h3,
.pdf-chaos-grid h3,
.pdf-platform-grid h3,
.pdf-layer h3,
.pdf-security-grid h3,
.pdf-model-card h3,
.pdf-pricing-grid h3,
.pdf-timeline h3,
.pdf-roadmap-grid h3,
.pdf-why-grid h3,
.pdf-start-grid h3 {
  color: var(--pdf-text);
  font-family: var(--heading-font);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1.16;
}

.pdf-stat-grid h3 {
  margin-top: 22px;
}

.pdf-stat-grid p,
.pdf-chaos-grid p,
.pdf-platform-grid p,
.pdf-layer p,
.pdf-security-grid p,
.pdf-model-card p,
.pdf-model-card li,
.pdf-pricing-grid p,
.pdf-timeline p,
.pdf-roadmap-grid p,
.pdf-why-grid p,
.pdf-start-grid p {
  margin-top: 14px;
  color: var(--pdf-text);
  font-size: clamp(1.02rem, 1.45vw, 1.5rem);
  line-height: 1.45;
}

.pdf-chaos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: clamp(44px, 6vw, 70px);
}

.pdf-tile {
  min-height: 210px;
  background: #f1f1f1;
  border-radius: 4px;
  padding: clamp(26px, 3vw, 36px);
}

.pdf-tile--dark {
  background: #d0d0d0;
}

body.fly-in-ready .pdf-chaos-grid article[data-rotate-in] {
  opacity: 0;
  transform-origin: center;
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.18, 0.8, 0.22, 1);
  will-change: opacity, transform;
}

body.fly-in-ready .pdf-chaos-grid article[data-rotate-in="left"] {
  transform: translateX(-110px) rotate(-10deg);
}

body.fly-in-ready .pdf-chaos-grid article[data-rotate-in="right"] {
  transform: translateX(110px) rotate(10deg);
}

body.fly-in-ready .pdf-chaos-grid article[data-rotate-in].is-visible {
  opacity: 1;
  transform: translateX(0) rotate(0);
}

body.fly-in-ready .pdf-security-grid article[data-fly-up] {
  opacity: 0;
  transform: translateY(58px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: opacity, transform;
}

body.fly-in-ready .pdf-security-grid article[data-fly-up]:nth-child(2) {
  transition-delay: 80ms;
}

body.fly-in-ready .pdf-security-grid article[data-fly-up]:nth-child(3) {
  transition-delay: 160ms;
}

body.fly-in-ready .pdf-security-grid article[data-fly-up]:nth-child(4) {
  transition-delay: 240ms;
}

body.fly-in-ready .pdf-security-grid article[data-fly-up].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pdf-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 70px) clamp(42px, 8vw, 110px);
  margin-top: clamp(36px, 5vw, 56px);
}

.pdf-platform-grid article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

body.fly-in-ready .pdf-platform-grid article[data-fly-in],
body.fly-in-ready .pdf-roadmap-grid article[data-fly-in],
body.fly-in-ready .pdf-why-grid article[data-fly-in],
body.fly-in-ready .pdf-layer[data-fly-in] {
  opacity: 0;
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: opacity, transform;
}

body.fly-in-ready .pdf-platform-grid article[data-fly-in="left"],
body.fly-in-ready .pdf-roadmap-grid article[data-fly-in="left"],
body.fly-in-ready .pdf-why-grid article[data-fly-in="left"],
body.fly-in-ready .pdf-layer[data-fly-in="left"] {
  transform: translateX(-72px);
}

body.fly-in-ready .pdf-platform-grid article[data-fly-in="right"],
body.fly-in-ready .pdf-roadmap-grid article[data-fly-in="right"],
body.fly-in-ready .pdf-why-grid article[data-fly-in="right"],
body.fly-in-ready .pdf-layer[data-fly-in="right"] {
  transform: translateX(72px);
}

body.fly-in-ready .pdf-platform-grid article[data-fly-in].is-visible,
body.fly-in-ready .pdf-roadmap-grid article[data-fly-in].is-visible,
body.fly-in-ready .pdf-why-grid article[data-fly-in].is-visible,
body.fly-in-ready .pdf-layer[data-fly-in].is-visible {
  opacity: 1;
  transform: translateX(0);
}

body.fly-in-ready .pdf-roadmap-grid article[data-fly-in]:nth-child(2) {
  transition-delay: 90ms;
}

body.fly-in-ready .pdf-roadmap-grid article[data-fly-in]:nth-child(3) {
  transition-delay: 180ms;
}

body.fly-in-ready .pdf-roadmap-grid article[data-fly-in]:nth-child(4) {
  transition-delay: 270ms;
}

body.fly-in-ready .pdf-why-grid article[data-fly-in]:nth-child(2) {
  transition-delay: 90ms;
}

body.fly-in-ready .pdf-why-grid article[data-fly-in]:nth-child(3) {
  transition-delay: 180ms;
}

body.fly-in-ready .pdf-why-grid article[data-fly-in]:nth-child(4) {
  transition-delay: 270ms;
}

.pdf-platform-icon {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.pdf-architecture-section {
  min-height: 1100px;
}

.pdf-architecture-stack {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.pdf-layer {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  min-height: 116px;
  border: 4px solid currentColor;
  background: #ffffff;
}

.pdf-layer-icon {
  display: grid;
  place-items: center;
  background: var(--layer-color, currentColor);
}

.pdf-layer-icon img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.pdf-layer > div {
  display: grid;
  align-content: center;
  padding: 18px 24px;
}

.pdf-layer--blue { color: #204c8e; --layer-color: #204c8e; }
.pdf-layer--green { color: #1f7135; --layer-color: #1f7135; }
.pdf-layer--purple { color: #5e208e; --layer-color: #5e208e; }
.pdf-layer--orange { color: #f47920; --layer-color: #f47920; }
.pdf-layer--mint { color: #5cc97b; --layer-color: #5cc97b; }
.pdf-layer--red { color: #f44444; --layer-color: #f44444; }
.pdf-layer--navy { color: #1b2a4a; --layer-color: #1b2a4a; }

.pdf-layer h3,
.pdf-layer p {
  color: var(--pdf-text);
  margin: 0;
}

.pdf-security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(42px, 8vw, 120px);
  row-gap: clamp(42px, 6vw, 86px);
  margin-top: clamp(42px, 6vw, 72px);
}

.pdf-security-grid article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
}

.pdf-security-icon {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0;
}

.pdf-security-grid h3,
.pdf-security-grid p {
  grid-column: 2;
}

.pdf-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 22px;
}

.pdf-model-card {
  min-height: clamp(380px, 34vw, 470px);
  padding: 0;
  background: transparent;
  perspective: 1500px;
  outline: none;
}

.pdf-model-card--external {
  --model-front-bg: #b6e8c4;
  --model-back-bg: #0b7f72;
  --model-back-text: #ffffff;
  --model-cube-glow: rgba(182, 232, 196, 0.34);
}

.pdf-model-card--internal {
  --model-front-bg: #ff7a22;
  --model-back-bg: #1b2a4a;
  --model-back-text: #ffffff;
  --model-cube-glow: rgba(255, 122, 34, 0.34);
}

.pdf-model-card--flip-left {
  --model-flip-angle: -180deg;
}

.pdf-model-card--flip-right {
  --model-flip-angle: 180deg;
}

.pdf-model-card:focus-visible {
  outline: 3px solid var(--brand-teal);
  outline-offset: 7px;
}

body.fly-in-ready .pdf-model-card[data-cube-cue] {
  opacity: 0;
  transform: translateY(46px) scale(0.985);
  transform-origin: center;
  will-change: opacity, transform;
}

body.fly-in-ready .pdf-model-card[data-cube-cue].is-visible {
  animation: pdf-model-cube-cue 1360ms cubic-bezier(0.18, 0.8, 0.22, 1) both;
}

body.fly-in-ready .pdf-model-card[data-cube-cue="right"].is-visible {
  animation-delay: 120ms;
}

@keyframes pdf-model-cube-cue {
  0% {
    opacity: 0;
    transform: translateY(46px) scale(0.985) rotate(0deg);
  }

  42% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }

  54% {
    transform: translateY(0) scale(1) rotate(-1.35deg);
  }

  66% {
    transform: translateY(0) scale(1) rotate(1.25deg);
  }

  78% {
    transform: translateY(0) scale(1) rotate(-0.75deg);
  }

  90% {
    transform: translateY(0) scale(1) rotate(0.35deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

.pdf-model-cube {
  position: relative;
  display: grid;
  min-height: 100%;
  transform-style: preserve-3d;
  transition: transform 820ms cubic-bezier(0.18, 0.82, 0.22, 1);
  will-change: transform;
}

.pdf-model-card:hover .pdf-model-cube,
.pdf-model-card.is-flipped .pdf-model-cube,
.pdf-model-card:focus .pdf-model-cube,
.pdf-model-card:focus-visible .pdf-model-cube {
  transform: rotateY(var(--model-flip-angle));
}

.pdf-model-face {
  grid-area: 1 / 1;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 4px;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  overflow: hidden;
}

.pdf-model-face--front {
  background: var(--model-front-bg);
  transform: rotateY(0deg);
}

.pdf-model-face--back {
  position: relative;
  display: grid;
  align-content: center;
  background: var(--model-back-bg);
  color: var(--model-back-text);
  transform: rotateY(180deg);
}

.pdf-model-face--back::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 32px;
  width: 88px;
  height: 88px;
  border: 2px solid rgba(255, 255, 255, 0.54);
  box-shadow:
    -18px 18px 0 rgba(255, 255, 255, 0.11),
    0 0 52px var(--model-cube-glow);
  transform: rotate(45deg);
}

.pdf-model-face--back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 62%, rgba(255, 255, 255, 0.13) 100%);
  pointer-events: none;
}

.pdf-model-face--back h3,
.pdf-model-face--back p,
.pdf-model-cube-mark {
  position: relative;
  z-index: 1;
  color: inherit;
}

.pdf-model-cube-mark {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border: 2px solid rgba(255, 255, 255, 0.66);
  border-radius: 4px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.pdf-model-card ul {
  margin: 16px 0 0;
  padding-left: 28px;
}

.pdf-commercial-intro {
  margin-top: clamp(42px, 5vw, 64px);
  font-size: clamp(1.08rem, 1.45vw, 1.5rem);
}

.pdf-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pdf-pricing-grid article {
  min-height: 190px;
  border: 1px solid #d7d2d2;
  background: var(--pdf-light);
  padding: 26px 24px;
}

body.fly-in-ready .pdf-pricing-grid article[data-roll-in] {
  opacity: 0;
  transform-origin: center;
  will-change: opacity, transform;
}

body.fly-in-ready .pdf-pricing-grid article[data-roll-in="left"] {
  transform: translateX(-88px) rotate(-8deg);
}

body.fly-in-ready .pdf-pricing-grid article[data-roll-in="right"] {
  transform: translateX(88px) rotate(8deg);
}

body.fly-in-ready .pdf-pricing-grid article[data-roll-in].is-visible {
  animation: pdf-pricing-roll-in 880ms cubic-bezier(0.18, 0.82, 0.22, 1) both;
}

body.fly-in-ready .pdf-pricing-grid article[data-roll-in]:nth-child(2).is-visible {
  animation-delay: 90ms;
}

body.fly-in-ready .pdf-pricing-grid article[data-roll-in]:nth-child(3).is-visible {
  animation-delay: 180ms;
}

body.fly-in-ready .pdf-pricing-grid article[data-roll-in]:nth-child(4).is-visible {
  animation-delay: 270ms;
}

@keyframes pdf-pricing-roll-in {
  0% {
    opacity: 0;
  }

  62% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

.pdf-pricing-grid h3 {
  font-size: clamp(1.1rem, 1.18vw, 1.25rem);
  line-height: 1.2;
  overflow-wrap: normal;
  hyphens: manual;
}

.pdf-premium-line {
  margin-top: 12px;
  color: var(--pdf-text);
  font-size: clamp(1.02rem, 1.35vw, 1.4rem);
}

.pdf-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  min-height: 760px;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.pdf-timeline::before {
  position: absolute;
  top: 48%;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--pdf-orange);
  content: "";
  transform-origin: left center;
}

.pdf-timeline li {
  position: relative;
  display: grid;
  min-width: 0;
  text-align: center;
}

.pdf-timeline h3,
.pdf-timeline p {
  justify-self: center;
  width: min(430px, 190%);
  max-width: calc(100vw - 48px);
}

.pdf-timeline li::before {
  position: absolute;
  left: calc(50% - 1.5px);
  z-index: 0;
  width: 3px;
  background: var(--pdf-orange);
  content: "";
  transform-origin: top center;
}

.pdf-timeline-top {
  align-content: start;
  padding: 70px 18px 180px;
}

.pdf-timeline-bottom {
  align-content: start;
  padding: 485px 18px 0;
}

.pdf-timeline-top::before {
  top: calc(48% - 64px);
  height: 64px;
}

.pdf-timeline-bottom::before {
  top: 48%;
  height: 105px;
}

.pdf-timeline span {
  position: absolute;
  top: calc(48% - 30px);
  left: calc(50% - 30px);
  z-index: 1;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  background: var(--pdf-orange);
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.pdf-timeline h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.85rem);
  line-height: 1.15;
}

.pdf-timeline p {
  margin-top: 16px;
  font-size: clamp(1.05rem, 1.35vw, 1.5rem);
  line-height: 1.35;
}

body.fly-in-ready .pdf-timeline li {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: opacity, transform;
}

body.fly-in-ready .pdf-timeline li:nth-child(2) {
  transition-delay: 120ms;
}

body.fly-in-ready .pdf-timeline li:nth-child(3) {
  transition-delay: 240ms;
}

body.fly-in-ready .pdf-timeline li:nth-child(4) {
  transition-delay: 360ms;
}

body.fly-in-ready .pdf-timeline li:nth-child(5) {
  transition-delay: 480ms;
}

body.fly-in-ready .pdf-timeline li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pdf-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 70px;
  margin-top: 36px;
}

.pdf-roadmap-grid article {
  border-left: 6px solid var(--pdf-orange);
  padding-left: 28px;
}

.pdf-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 68px);
  margin-top: 28px;
  text-align: center;
}

.pdf-why-grid img {
  width: min(100%, 220px);
  aspect-ratio: 1;
  object-fit: cover;
  margin-inline: auto;
}

.pdf-why-grid h3 {
  margin-top: 24px;
}

.pdf-info-callout {
  margin-top: clamp(50px, 7vw, 78px);
  background: #b8d8fb;
  padding: 26px 34px;
  color: #111111;
  font-size: clamp(1.02rem, 1.45vw, 1.45rem);
  line-height: 1.45;
}

.pdf-start {
  min-height: 100vh;
}

.pdf-start-bg {
  background-image: linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)), url("assets/expert-solutions-contact-pdf.png");
  opacity: 1;
}

.pdf-start h2 {
  text-align: center;
}

.pdf-start .pdf-section-intro {
  max-width: 1500px;
  margin-inline: auto;
  text-align: center;
}

.pdf-start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.pdf-start-grid article {
  min-height: 190px;
  border: 1px solid #d6d1d1;
  background: rgba(241, 238, 238, 0.9);
  padding: 28px;
}

.pdf-contact-block {
  display: grid;
  gap: 8px;
  margin-top: 54px;
  color: var(--pdf-text);
  font-style: normal;
  text-align: center;
}

.pdf-contact-block strong {
  font-family: var(--heading-font);
  font-size: 1.25rem;
}

.pdf-email-button {
  display: flex;
  width: fit-content;
  margin-top: 34px;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .pdf-home .main-nav {
    padding-right: 0;
  }

  .pdf-stat-grid,
  .pdf-chaos-grid,
  .pdf-platform-grid,
  .pdf-model-grid,
  .pdf-roadmap-grid,
  .pdf-start-grid {
    grid-template-columns: 1fr;
  }

  .pdf-security-grid,
  .pdf-pricing-grid,
  .pdf-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pdf-timeline {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pdf-timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;
    width: 4px;
    height: auto;
  }

  .pdf-timeline li,
  .pdf-timeline-top,
  .pdf-timeline-bottom {
    min-height: 0;
    padding: 0 0 0 78px;
    text-align: left;
  }

  .pdf-timeline h3,
  .pdf-timeline p {
    justify-self: stretch;
    width: auto;
    max-width: none;
  }

  .pdf-timeline li::before {
    display: none;
  }

  .pdf-timeline span {
    top: 0;
    left: 0;
  }
}

@media (max-width: 620px) {
  .pdf-section {
    min-height: auto;
    padding: 84px 0;
  }

  .pdf-hero {
    min-height: 100vh;
  }

  .pdf-hero h1 {
    font-size: 3.3rem;
    white-space: normal;
  }

  .pdf-security-grid,
  .pdf-pricing-grid,
  .pdf-why-grid {
    grid-template-columns: 1fr;
  }

  .pdf-platform-grid article,
  .pdf-layer {
    grid-template-columns: 1fr;
  }

  body.fly-in-ready .pdf-platform-grid article[data-fly-in="left"],
  body.fly-in-ready .pdf-platform-grid article[data-fly-in="right"],
  body.fly-in-ready .pdf-roadmap-grid article[data-fly-in="left"],
  body.fly-in-ready .pdf-roadmap-grid article[data-fly-in="right"],
  body.fly-in-ready .pdf-why-grid article[data-fly-in="left"],
  body.fly-in-ready .pdf-why-grid article[data-fly-in="right"],
  body.fly-in-ready .pdf-layer[data-fly-in="left"],
  body.fly-in-ready .pdf-layer[data-fly-in="right"] {
    transform: translateY(34px);
  }

  body.fly-in-ready .pdf-chaos-grid article[data-rotate-in="left"],
  body.fly-in-ready .pdf-chaos-grid article[data-rotate-in="right"] {
    transform: translateY(34px) rotate(-4deg);
  }

  body.fly-in-ready .pdf-pricing-grid article[data-roll-in="left"],
  body.fly-in-ready .pdf-pricing-grid article[data-roll-in="right"] {
    transform: translateY(34px) rotate(-4deg);
  }

  body.fly-in-ready .pdf-platform-grid article[data-fly-in].is-visible,
  body.fly-in-ready .pdf-roadmap-grid article[data-fly-in].is-visible,
  body.fly-in-ready .pdf-why-grid article[data-fly-in].is-visible,
  body.fly-in-ready .pdf-layer[data-fly-in].is-visible {
    transform: translateY(0);
  }

  body.fly-in-ready .pdf-chaos-grid article[data-rotate-in].is-visible {
    transform: translateY(0) rotate(0);
  }

  .pdf-layer-icon {
    min-height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.fly-in-ready .pdf-platform-grid article[data-fly-in],
  body.fly-in-ready .pdf-roadmap-grid article[data-fly-in],
  body.fly-in-ready .pdf-why-grid article[data-fly-in],
  body.fly-in-ready .pdf-layer[data-fly-in],
  body.fly-in-ready .pdf-chaos-grid article[data-rotate-in],
  body.fly-in-ready .pdf-security-grid article[data-fly-up],
  body.fly-in-ready .pdf-model-card[data-cube-cue],
  body.fly-in-ready .pdf-pricing-grid article[data-roll-in],
  body.fly-in-ready .pdf-timeline li {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .pdf-model-cube {
    transition: none;
  }
}

.home-hero-layout {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.92fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  padding: clamp(42px, 6vw, 86px) 0 0;
}

.home-cover-visual {
  overflow: hidden;
  align-self: center;
  height: clamp(363px, 35.2vw, 501px);
  border-radius: 0 8px 8px 0;
  background: var(--home-soft);
  box-shadow: 0 24px 58px rgba(9, 33, 63, 0.14);
}

.home-cover-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home-page .main-page-content {
  width: min(760px, 100%);
  border: 0;
  border-left: 8px solid var(--home-teal);
  border-radius: 0;
  background: #ffffff;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: none;
  backdrop-filter: none;
}

body.home-page .eyebrow,
.home-label {
  background: var(--home-mint);
  color: var(--home-teal-dark);
  font-weight: 700;
}

body.home-page .main-page-content h1 {
  max-width: 900px;
  color: var(--home-teal);
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.98;
}

body.home-page .main-page-content .home-claim {
  max-width: 780px;
  margin-top: 28px;
  color: var(--home-orange);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

body.home-page .main-page-content p:not(.home-claim) {
  max-width: 820px;
  color: #333333;
  font-size: 1.22rem;
  line-height: 1.45;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.home-actions .button-primary,
.home-actions .button-secondary {
  width: 184px;
  min-height: 54px;
  box-sizing: border-box;
  margin-top: 0;
  padding-inline: 18px;
  white-space: nowrap;
}

body.home-page .button-primary {
  background: var(--home-teal);
  color: #ffffff;
  box-shadow: none;
}

.button-secondary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--home-teal);
  border-radius: 999px;
  color: var(--home-teal-dark);
  padding: 0 22px;
  font-weight: 700;
}

.home-section {
  background: #ffffff;
  padding: clamp(68px, 8vw, 108px) 0;
}

.home-section--soft {
  background: #f8f8f7;
}

.home-section-header {
  max-width: 1120px;
  margin-bottom: 34px;
}

.home-section-header--compact {
  margin-bottom: 24px;
}

.home-section h2 {
  color: var(--home-teal);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.home-section-header p {
  max-width: 1180px;
  margin-top: 18px;
  color: #333333;
  font-size: 1.25rem;
  line-height: 1.45;
}

.home-card-grid,
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px clamp(36px, 6vw, 74px);
}

.home-feature-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  border-top: 1px solid var(--home-border);
  padding-top: 26px;
}

.home-feature-badge {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
}

.home-feature-badge img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.home-feature-card h3,
.home-why-grid h3,
.home-example-card h3 {
  color: #333333;
  font-size: 1.45rem;
}

.home-feature-card p,
.home-why-grid p,
.home-example-card p,
.home-model-card p,
.home-model-card li {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.45;
}

.home-feature-card h3,
.home-feature-card p {
  grid-column: 2;
}

.home-feature-card p {
  margin-top: 8px;
}

.home-architecture-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: start;
}

.architecture-stack {
  display: grid;
  gap: 18px;
}

.architecture-group {
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(18px, 2.5vw, 24px);
}

.architecture-group--foundry {
  background: #f1f6f3;
}

.architecture-group h3 {
  color: var(--home-teal-dark);
  font-size: 1.2rem;
}

.architecture-layers {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.architecture-layer {
  display: grid;
  min-height: 64px;
  grid-template-columns: 64px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d5dde4;
  border-radius: 6px;
  background: #edf5fb;
}

.architecture-layer > div {
  display: grid;
  align-content: center;
  padding: 12px 16px;
}

.architecture-number {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.architecture-layer strong {
  color: #1c2736;
  font-size: 1rem;
  line-height: 1.2;
}

.architecture-layer p {
  margin-top: 4px;
  color: #333333;
  font-size: 0.9rem;
  line-height: 1.35;
}

.architecture-layer--blue .architecture-number {
  background: #2a73e8;
}

.architecture-layer--teal .architecture-number {
  background: #168899;
}

.architecture-layer--purple .architecture-number {
  background: #7d57d9;
}

.architecture-layer--yellow .architecture-number {
  background: #f6a300;
}

.architecture-layer--green .architecture-number {
  background: #28a958;
}

.architecture-layer--red .architecture-number {
  background: #df3e42;
}

.architecture-layer--navy .architecture-number {
  background: #12324d;
}

.home-security-panel {
  border-left: 6px solid var(--home-orange);
  padding-left: clamp(22px, 3vw, 34px);
}

.home-security-panel h2 {
  color: var(--home-teal);
}

.home-security-panel > p {
  margin-top: 18px;
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.48;
}

.home-security-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.home-security-list article {
  position: relative;
  padding-left: 22px;
}

.home-security-list article::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-orange);
  content: "";
}

.home-security-list h3,
.home-delivery-item h3,
.home-commercial-grid h3,
.home-onboarding-steps h3 {
  color: #333333;
  font-size: 1.22rem;
}

.home-security-list p,
.home-delivery-item p,
.home-commercial-grid p,
.home-onboarding-steps p {
  margin-top: 8px;
  color: #333333;
  font-size: 1rem;
  line-height: 1.45;
}

.home-model-grid,
.home-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-model-card {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
}

.home-model-card--external {
  background: var(--home-green-panel);
}

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

.home-model-card h3 {
  color: #111111;
  font-size: 1.75rem;
}

.home-model-card p {
  margin-top: 14px;
}

.home-model-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 1.15rem;
}

.home-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 42px);
}

.home-delivery-item {
  border-top: 1px solid var(--home-border);
  padding-top: 24px;
}

.home-commercial-layout {
  margin-top: 48px;
}

.home-commercial-intro {
  max-width: 1010px;
  color: #333333;
  font-size: 1.14rem;
  line-height: 1.45;
}

.home-commercial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.home-commercial-grid article {
  border-left: 5px solid var(--home-teal);
  background: #f8f8f7;
  padding: 20px 22px;
}

.home-commercial-grid article:nth-child(2n) {
  border-left-color: var(--home-orange);
}

.home-commercial-premium {
  grid-column: 1 / -1;
}

.home-callout--orange {
  background: var(--home-orange);
}

.home-onboarding-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.home-onboarding-steps::before {
  position: absolute;
  top: 27px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: var(--home-border);
  content: "";
}

.home-onboarding-steps li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding-top: 2px;
}

.home-step-number {
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--home-teal);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(9, 33, 63, 0.14);
}

.home-onboarding-steps li:nth-child(even) .home-step-number {
  background: var(--home-orange);
}

.home-process-callout {
  margin-top: 42px;
  background: var(--home-teal);
  color: #ffffff;
  padding: 18px 24px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.home-why-grid article {
  border-left: 6px solid var(--home-teal);
  padding-left: 24px;
}

.home-why-grid p {
  margin-top: 8px;
}

.home-callout {
  margin-top: 48px;
  background: var(--home-teal);
  color: #ffffff;
  padding: 22px 26px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.home-example-card {
  border: 1px solid var(--home-border);
  background: #ffffff;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 18px 38px rgba(9, 33, 63, 0.06);
}

.home-example-card > span {
  display: inline-flex;
  background: var(--home-mint);
  color: var(--home-teal-dark);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-example-card h3 {
  margin-top: 18px;
  color: var(--home-teal);
}

.home-example-card p {
  margin-top: 12px;
}

.home-contact-section {
  background: #ffffff;
  padding-bottom: clamp(54px, 7vw, 96px);
}

.home-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.home-contact-image {
  overflow: hidden;
  height: clamp(430px, 58vw, 680px);
  border-radius: 8px;
  background: var(--home-soft);
  box-shadow: 0 24px 58px rgba(9, 33, 63, 0.14);
}

.home-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.home-contact-details {
  border-left: 8px solid var(--home-teal);
  padding-left: clamp(24px, 4vw, 48px);
}

.home-contact-logo {
  width: 158px;
  height: auto;
  margin-bottom: 28px;
}

.home-contact-details .home-label {
  margin-bottom: 16px;
}

.home-contact-details h2 {
  max-width: 640px;
}

.home-contact-details address {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: #333333;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.45;
}

.home-contact-details a {
  color: var(--home-teal-dark);
  font-weight: 700;
}

body.home-page .site-footer {
  background: transparent;
  color: #707070;
}

body.home-page .footer-grid {
  border-top-color: rgba(9, 33, 63, 0.12);
}

body.home-page .footer-grid p {
  color: #333333;
}

@media (max-width: 900px) {
  body.home-page .main-nav {
    padding-right: 0;
  }

  .home-hero-layout,
  .home-card-grid,
  .home-architecture-layout,
  .home-model-grid,
  .home-delivery-grid,
  .home-commercial-grid,
  .home-why-grid,
  .home-example-grid,
  .home-contact-layout {
    grid-template-columns: 1fr;
  }

  .home-onboarding-steps {
    grid-template-columns: 1fr;
  }

  .home-onboarding-steps::before {
    top: 0;
    bottom: 0;
    left: 27px;
    width: 2px;
    height: auto;
  }

  .home-onboarding-steps li {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 18px;
  }

  .home-onboarding-steps h3,
  .home-onboarding-steps p {
    grid-column: 2;
  }

  .home-onboarding-steps h3 {
    align-self: center;
    margin-top: 13px;
  }

  .home-onboarding-steps p {
    margin-top: 0;
  }

  .home-cover-visual {
    order: 2;
    min-height: 0;
    height: 396px;
    border-radius: 8px;
  }

  .home-hero-content {
    order: 1;
  }

  body.home-page .main-page-content h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }
}

@media (max-width: 560px) {
  body.home-page .main-page-content {
    border-left-width: 5px;
    padding: 24px 20px;
  }

  .home-cover-visual {
    height: 341px;
  }

  .home-feature-card {
    grid-template-columns: 1fr;
  }

  .architecture-layer {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .architecture-layer > div {
    padding: 12px;
  }

  .home-security-panel,
  .home-contact-details {
    border-left-width: 5px;
    padding-left: 20px;
  }

  .home-feature-card h3,
  .home-feature-card p {
    grid-column: auto;
  }

  .home-feature-card h3 {
    margin-top: 14px;
  }
}

@media (max-width: 640px) {
  .main-nav {
    top: 10px;
    display: grid;
    grid-template-columns: minmax(0, auto) auto;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 24px, 1110px);
    gap: 10px 12px;
    padding: 0;
  }

  .main-nav.is-mobile-open {
    border: 1px solid rgba(238, 244, 251, 0.16);
    border-radius: 24px;
    background: rgba(7, 20, 34, 0.72);
    padding: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
  }

  .main-nav .main-brand {
    max-width: calc(100vw - 96px);
  }

  .main-brand-logo,
  body.product-page .main-brand-logo,
  body.contact-page .subpage-nav .main-brand-logo,
  body.privacy-page .subpage-nav .main-brand-logo,
  body.imprint-page .subpage-nav .main-brand-logo,
  body.access-denied-page .subpage-nav .main-brand-logo,
  .pdf-home .main-brand-logo {
    height: 30px;
    max-width: 178px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav-links,
  .main-nav .language-selector {
    display: none;
  }

  .main-nav.is-mobile-open .main-nav-links {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 4px;
  }

  .main-nav.is-mobile-open .language-selector {
    display: flex;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .main-nav-links a,
  .main-nav-menu-button {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 10px 13px;
    text-align: center;
  }

  .main-nav-dropdown {
    width: 100%;
  }

  .main-nav-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    border-radius: 14px;
    box-shadow: none;
  }

  .main-nav-menu a {
    width: 100%;
    white-space: normal;
  }

  body.home-page .main-nav.is-mobile-open {
    border-color: rgba(9, 33, 63, 0.14);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(9, 33, 63, 0.14);
  }

  body.home-page .mobile-nav-toggle {
    border-color: rgba(9, 33, 63, 0.14);
    background: rgba(255, 255, 255, 0.48);
    color: var(--home-navy);
    box-shadow: 0 12px 28px rgba(9, 33, 63, 0.08);
  }

  body.home-page .main-nav-links a,
  body.home-page .main-nav-menu-button {
    background: rgba(255, 255, 255, 0.62);
  }

  body.home-page .main-nav-menu {
    background: rgba(255, 255, 255, 0.92);
  }

  .contact-wrap,
  .privacy-wrap,
  .section.main-page,
  .access-denied-wrap {
    padding-top: 126px;
  }

  body.product-page .hero {
    padding-top: 118px;
  }
}
