:root {
  --background: #f3f9fd;
  --surface: #fbfdfe;
  --surface-raised: #e9f3fa;
  --surface-accent: #d7eaf7;
  --text: #0f2231;
  --muted: #4f6575;
  --line: #c4d9e6;
  --accent: #0b7fc4;
  --accent-strong: #075e93;
  --accent-soft: #d2ecfb;
  --navy: #0c3352;
  --cyan: #e3a43c;
  --success: #23734e;
  --danger: #ad3030;
  --shadow: 0 24px 70px rgb(18 58 84 / 14%);
  --radius-card: 24px;
  --radius-control: 12px;
  --header-height: 72px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a1622;
    --surface: #10202f;
    --surface-raised: #152a3d;
    --surface-accent: #1a3550;
    --text: #e9f3fa;
    --muted: #a4bfd1;
    --line: #2b4459;
    --accent: #45ace4;
    --accent-strong: #2e94d0;
    --accent-soft: #122e44;
    --navy: #ddeefa;
    --cyan: #f0b45f;
    --success: #75c99d;
    --danger: #ff9292;
    --shadow: 0 24px 70px rgb(0 0 0 / 32%);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 12%, rgb(30 99 198 / 8%), transparent 27%),
    radial-gradient(circle at 92% 30%, rgb(89 185 218 / 9%), transparent 24%);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3,
strong {
  color: var(--text);
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  text-wrap: balance;
}

p {
  color: var(--muted);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-control);
  background: var(--text);
  color: var(--background);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  height: 100%;
}

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

.brand img {
  width: 188px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 32px);
  white-space: nowrap;
}

.primary-nav a,
.login-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.login-link:hover {
  color: var(--accent);
}

.nav-mobile-action {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-weight: 750;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  background: var(--accent);
  color: #f8fbff;
  box-shadow: 0 12px 30px rgb(30 99 198 / 24%);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.button-compact {
  min-height: 42px;
  padding-inline: 18px;
}

.hero {
  display: flex;
  min-height: auto;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding-block: clamp(44px, 6vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 22px;
  color: color-mix(in srgb, var(--accent-strong) 82%, var(--text));
  font-size: clamp(1.75rem, 3.1vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.22;
  text-align: left;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 30px;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.65;
  text-align: left;
}

.hero-platforms-marquee {
  width: 306px;
  max-width: 100%;
  overflow: hidden;
  align-self: flex-start;
}

.hero-platforms {
  display: flex !important;
  width: max-content;
  justify-content: start;
  align-items: center;
  gap: 6px;
  margin-inline: 0;
  animation: hero-platforms-marquee 20s linear infinite;
}

.hero-platforms li {
  flex: 0 0 auto;
  width: 46px;
  min-width: 46px;
}

.hero-platforms .store-badge {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  padding: 0;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.hero-platforms .store-badge img,
.hero-platforms .store-badge .store-badge-icon {
  display: block;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  object-fit: contain;
  box-sizing: border-box;
}

.hero-platforms .store-badge[aria-label="Ubuntu Store"] .store-badge-icon {
  width: 38px;
  height: 38px;
  max-width: 38px;
  max-height: 38px;
}

.hero-platforms .store-badge:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 72%, #ffffff);
  outline-offset: 2px;
}

.hero-media {
  position: relative;
  margin-bottom: 0;
  min-width: 0;
}

.hero-media::before {
  content: none;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(65dvh, 620px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.proof {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-grid > div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px clamp(18px, 3vw, 34px);
  text-align: center;
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof strong {
  display: flex;
  align-items: baseline;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.proof-grid > div > span {
  color: color-mix(in srgb, var(--accent-strong) 78%, var(--text));
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.availability {
  padding: clamp(30px, 4vw, 44px) 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--navy);
  color: #f1f8fd;
  text-decoration: none;
}

.store-badge svg,
.store-badge-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-badge-icon {
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  object-fit: contain;
}

.store-badge small {
  display: block;
  color: #c3ddef;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.82;
  text-transform: uppercase;
}

.store-badge strong {
  display: block;
  color: #f1f8fd;
  font-size: 1.02rem;
  line-height: 1.2;
}

.logo-wall-marquee {
  margin: 0 0 40px;
  overflow: hidden;
}

.logo-wall {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: logo-wall-marquee 28s linear infinite;
}

.logo-wall li {
  display: grid;
  flex: 0 0 auto;
  min-height: 72px;
  min-width: 190px;
  place-items: center;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 720;
  letter-spacing: 0.01em;
  text-align: center;
}

.logo-wall img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  object-fit: contain;
}

.logo-wall .logo-wall-cvedix {
  width: auto;
  max-width: 100%;
  max-height: 52px;
}

@keyframes logo-wall-marquee {
  from {
    transform: translateX(calc(-50% - 6px));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes hero-platforms-marquee {
  from {
    transform: translateX(calc(-50% - 3px));
  }

  to {
    transform: translateX(0);
  }
}

.section {
  padding-block: clamp(76px, 8vw, 112px);
}

.section-heading {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 54px;
  text-align: center;
}

.section-heading--center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.section-heading--center p {
  margin-inline: auto;
}

.section-heading h2,
.field-copy h2,
.deployment-copy h2,
.demo-copy h2 {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--accent-strong) 82%, var(--text));
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.24;
  text-transform: uppercase;
}

.section-heading p,
.section-lead,
.demo-copy > p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.7;
}

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
}

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

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

.solution-list details[open] {
  padding-bottom: 20px;
}

.solution-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 760;
  list-style: none;
  cursor: pointer;
}

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

.solution-list summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--accent);
  content: "+";
  font-size: 1.35rem;
  font-weight: 500;
}

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

.solution-list p {
  max-width: 560px;
  margin-bottom: 0;
  padding-right: 32px;
  line-height: 1.65;
}

.solution-media {
  margin-bottom: 0;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, var(--surface), var(--surface-raised));
  box-shadow: var(--shadow);
}

.solution-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.solution-media figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.field {
  background: var(--surface);
}

.field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

.field-media {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.field-media img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.flow-list {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.flow-list article {
  position: relative;
  padding-left: 26px;
}

.flow-list article::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent);
  content: "";
}

.flow-list h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.flow-list p {
  margin-bottom: 0;
  line-height: 1.6;
}

.benefits {
  background: linear-gradient(145deg, var(--background), var(--surface-raised));
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-template-rows: repeat(2, minmax(230px, auto));
  gap: 14px;
}

.benefit {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.benefit-art {
  display: block;
  width: min(210px, 68%);
  height: auto;
  margin: 0 auto 18px;
}

.benefit-art .il-tile { fill: color-mix(in srgb, var(--accent) 15%, transparent); }
.benefit-art .il-deep { fill: var(--accent-strong); }
.benefit-art .il-main { fill: var(--accent); }
.benefit-art .il-soft { fill: var(--accent-soft); }
.benefit-art .il-pop { fill: var(--cyan); }
.benefit-art .il-stroke { fill: none; stroke: var(--cyan); }
.benefit-art .il-check { fill: none; stroke: var(--accent-soft); }

.benefit-primary .benefit-art {
  position: relative;
  z-index: 1;
  width: min(250px, 80%);
}

.benefit-primary .benefit-art .il-tile { fill: rgb(255 255 255 / 12%); }
.benefit-primary .benefit-art .il-deep { fill: #075e93; }
.benefit-primary .benefit-art .il-main { fill: #45ace4; }
.benefit-primary .benefit-art .il-soft { fill: #d2ecfb; }

.benefit h3 {
  max-width: 390px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.05;
}

.benefit p {
  max-width: 520px;
  margin-bottom: 0;
  line-height: 1.62;
}

.benefit-primary {
  grid-row: span 2;
  background: #0c3352;
}

.benefit-primary::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 230px;
  height: 230px;
  border: 48px solid color-mix(in srgb, var(--cyan) 45%, transparent);
  border-radius: 50%;
  content: "";
}

.benefit-primary h3,
.benefit-primary p,
.benefit-primary strong {
  position: relative;
  z-index: 1;
  color: #f3f8ff;
}

.benefit-primary strong {
  display: block;
  margin-top: 34px;
  font-size: 0.92rem;
}

.benefit-flow {
  grid-column: span 2;
  background: var(--surface-accent);
}

.benefit-security {
  background: var(--surface);
}

.benefit-security::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border: 8px solid var(--accent);
  border-radius: 16px;
  content: "";
  opacity: 0.25;
}

.benefit-open {
  background:
    linear-gradient(145deg, transparent, color-mix(in srgb, var(--cyan) 16%, transparent)),
    var(--surface);
}

.clients {
  background: var(--surface);
}

.clients-heading {
  margin-bottom: 34px;
}

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

.client-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, var(--surface), var(--surface-raised));
}

.client-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
}

.client-card p {
  margin-bottom: 0;
}

.testimonial-heading {
  max-width: 720px;
  margin: 44px 0 24px;
}

.testimonial-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.testimonial-heading p {
  margin-bottom: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, color-mix(in srgb, var(--cyan) 12%, var(--surface)), var(--surface-accent));
}

.testimonial-card p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.62;
}

.testimonial-card footer {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 720;
}

.deployment {
  background: var(--surface);
}

.deployment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.model-tags li {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--background);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 720;
}

.technology-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--background);
  box-shadow: var(--shadow);
}

.technology-panel > div {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.technology-panel > div:nth-child(2n) {
  border-right: 0;
}

.technology-panel > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.technology-panel span {
  color: var(--muted);
  font-size: 0.82rem;
}

.technology-panel strong {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.demo {
  background: linear-gradient(160deg, #07223b, #0c4a76);
}

.demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.demo-copy .eyebrow {
  color: #7cc7f0;
}

.demo-copy h2,
.demo-copy > p {
  color: #f1f8fd;
}

.demo-copy > p {
  color: #c3ddef;
}

.demo-facts {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.demo-facts li {
  position: relative;
  padding-left: 22px;
  color: #ddeefa;
  font-size: 0.9rem;
  font-weight: 720;
}

.demo-facts li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--cyan);
  content: "";
}

.demo-form {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.form-inline-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: var(--text);
  font-weight: 740;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  outline: none;
  background: var(--background);
  color: var(--text);
  line-height: 1.5;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field-group textarea {
  min-height: 142px;
  resize: vertical;
}

.field-group select {
  min-height: 50px;
  appearance: none;
  padding-right: 44px;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field-group select:invalid {
  color: color-mix(in srgb, var(--muted) 82%, transparent);
}

.field-group select option {
  color: var(--text);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}

.field-group small,
.consent,
.form-status {
  color: var(--muted);
  font-size: 0.8rem;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  line-height: 1.55;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.consent a {
  color: var(--accent);
  font-weight: 720;
}

.demo-form .button {
  justify-self: start;
}

.demo-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 1.4em;
  margin-bottom: 0;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

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

.contact-rail {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 40;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
}

.contact-rail a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 22%);
  background: var(--accent);
  color: #f8fbff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: filter 180ms ease;
}

.contact-rail a:nth-child(2) {
  background: var(--accent-strong);
}

.contact-rail a:last-child {
  border-bottom: 0;
}

.contact-rail a:hover {
  filter: brightness(1.18);
}

.cta-band {
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, #082c4a, #0b7fc4);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}

.cta-band .eyebrow {
  color: #7cc7f0;
}

.cta-band h2 {
  margin-bottom: 12px;
  color: #f1f8fd;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.cta-band p:last-of-type {
  margin-bottom: 0;
  color: #c3ddef;
}

.cta-band .button-primary {
  border-color: #f1f8fd;
  background: #f1f8fd;
  color: #082c4a;
}

.cta-band .button-primary:hover {
  background: #d2ecfb;
}

.site-footer {
  padding: 64px 0 26px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  background: #07223a;
  color: #d4e5f0;
}

.site-footer strong {
  color: #f1f8fd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr 1fr;
  align-items: start;
  gap: clamp(34px, 6vw, 78px);
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.privacy-note p {
  max-width: 390px;
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-grid nav {
  display: grid;
  gap: 12px;
}

.footer-grid nav strong,
.footer-support strong {
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.footer-grid nav a {
  color: #d4e5f0;
  font-weight: 720;
  text-decoration: none;
}

.footer-support p {
  margin-bottom: 8px;
}

.footer-support a {
  color: #d4e5f0;
  font-weight: 720;
  text-decoration: none;
}

.footer-support a:hover {
  color: #7cc7f0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer-social a {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 999px;
  background: transparent;
  color: #d4e5f0;
  font-size: 0.78rem;
  font-weight: 720;
  text-decoration: none;
}

.footer-social a:hover {
  border-color: #7cc7f0;
  color: #7cc7f0;
}

.footer-grid nav a:hover {
  color: #7cc7f0;
}

.privacy-note strong {
  display: block;
  margin-bottom: 10px;
}

.privacy-note a {
  display: inline-block;
  margin-top: 10px;
  color: #7cc7f0;
  font-size: 0.86rem;
  font-weight: 720;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  color: #99b4c7;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: #99b4c7;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero .reveal.is-visible:first-child {
  transition-delay: 70ms;
}

.hero .reveal.is-visible:last-child {
  transition-delay: 150ms;
}

.error-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 24px;
}

.error-panel {
  width: min(620px, 100%);
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-panel h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 1;
}

.error-panel .button {
  margin-top: 18px;
}

.privacy-page {
  min-height: 100dvh;
  padding-block: clamp(28px, 6vw, 72px);
}

.privacy-header,
.privacy-content {
  width: min(820px, calc(100% - 32px));
  margin-inline: auto;
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}

.privacy-header .brand img {
  width: 188px;
}

.privacy-content {
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.privacy-content h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 1;
}

.privacy-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

.privacy-content a {
  color: var(--accent);
  font-weight: 720;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-color-scheme: dark) {
  .brand img,
  .footer-brand img {
    filter: brightness(0) invert(1);
    opacity: 0.94;
  }

  .benefit-primary {
    background: #172f51;
  }

  .button-primary {
    background: #245fb9;
  }

  .button-primary:hover {
    background: #1d4e99;
  }
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: absolute;
    top: calc(var(--header-height) - 4px);
    right: 24px;
    display: none;
    width: min(300px, calc(100vw - 48px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: var(--shadow);
    white-space: normal;
  }

  .primary-nav.is-open {
    display: grid;
  }

  html:not(.js) .primary-nav {
    display: grid;
  }

  html:not(.js) .menu-toggle {
    display: none;
  }

  .primary-nav a {
    padding: 11px 12px;
    border-radius: var(--radius-control);
  }

  .primary-nav a:hover {
    background: var(--surface-raised);
  }

  .primary-nav .nav-mobile-action {
    display: block;
    border-top: 1px solid var(--line);
  }

  .primary-nav .nav-mobile-primary {
    border-top: 0;
    background: var(--accent);
    color: #f8fbff;
    text-align: center;
  }

  .primary-nav .nav-mobile-primary:hover {
    background: var(--accent-strong);
    color: #f8fbff;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .solutions-layout,
  .field-grid,
  .deployment-grid,
  .demo-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 52px 64px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(1.6rem, 4.6vw, 2.3rem);
  }

  .hero-copy,
  .field-copy,
  .deployment-copy {
    max-width: 760px;
  }

  .hero-media,
  .solution-media,
  .field-media,
  .technology-panel,
  .demo-form {
    width: 100%;
    max-width: 760px;
  }

  .hero-media img {
    max-height: none;
    aspect-ratio: 3 / 2;
  }

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

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

  .logo-wall li {
    min-width: 150px;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .field-media img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

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

  .benefit-primary {
    grid-row: span 2;
  }

  .benefit-flow {
    grid-column: auto;
  }

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

  .privacy-note,
  .footer-support {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .contact-rail {
    display: none;
  }

  .shell {
    width: min(100% - 32px, 1180px);
  }

  .brand img {
    width: 158px;
  }

  .section {
    padding-block: 66px;
  }

  .hero-grid {
    padding-block: 42px 54px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.25;
  }

  .hero-platforms-marquee {
    width: 294px;
    max-width: 100%;
  }

  .hero-platforms {
    gap: 6px;
  }

  .hero-platforms li {
    width: 44px;
    min-width: 44px;
  }

  .hero-platforms .store-badge {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
  }

  .hero-platforms .store-badge img,
  .hero-platforms .store-badge .store-badge-icon {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
  }

  .hero-platforms .store-badge[aria-label="Ubuntu Store"] .store-badge-icon {
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
    object-position: 62% center;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .field-copy h2,
  .deployment-copy h2,
  .demo-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
  }

  .benefit-grid,
  .technology-panel,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-primary {
    min-height: 330px;
    grid-row: auto;
  }

  .technology-panel > div,
  .technology-panel > div:nth-child(2n),
  .technology-panel > div:nth-last-child(-n + 2) {
    min-height: 138px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .technology-panel > div:last-child {
    border-bottom: 0;
  }

  .demo-panel {
    width: min(100% - 32px, 1180px);
    padding: 30px 20px;
  }

  .demo-form .button {
    width: 100%;
  }

  .privacy-note {
    grid-column: auto;
  }

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

@media (max-width: 480px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div {
    min-height: 112px;
  }

  .proof-grid > div:last-child {
    border-bottom: 0;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .logo-wall {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .hero-platforms-marquee {
    width: auto;
    overflow: visible;
  }

  .hero-platforms {
    width: auto;
    animation: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media print {
  .site-header,
  .demo-form,
  .hero-platforms {
    display: none;
  }

  body,
  .field,
  .deployment,
  .proof,
  .demo,
  .site-footer {
    background: #f8fbff;
    color: #0b1f3a;
  }

  .section,
  .hero {
    min-height: auto;
    padding-block: 30px;
  }
}
