:root {
  --bg: #f4f7f9;
  --bg-2: #e9eef2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #101820;
  --muted: #53616b;
  --quiet: #778590;
  --line: rgba(16, 54, 99, 0.14);
  --logo-blue: #103663;
  --cyan: #2b6da4;
  --cyan-soft: rgba(16, 54, 99, 0.28);
  --amber: #d7a75c;
  --amber-soft: rgba(215, 167, 92, 0.14);
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(16, 54, 99, 0.12);
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
summary,
.button,
.desktop-nav a,
.contact-link {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

p,
summary,
.section-heading h2,
.security-copy h2,
.contact-section h2 {
  hyphens: none;
}

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

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--logo-blue);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 76% 16%, rgba(16, 54, 99, 0.08), transparent 40%),
    radial-gradient(ellipse at 18% 80%, rgba(215, 167, 92, 0.1), transparent 34%),
    linear-gradient(140deg, #f8fafb 0%, #eef3f6 48%, #f6f8f9 100%);
}

.site-background::before,
.site-background::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-background::before {
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(16, 54, 99, 0.045), transparent 18% 82%, rgba(16, 54, 99, 0.025)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent 40%);
  mask-image: radial-gradient(ellipse at 50% 18%, black, transparent 72%);
}

.site-background::after {
  background:
    radial-gradient(ellipse at 50% 42%, transparent 0 52%, rgba(16, 54, 99, 0.045) 82%, rgba(16, 54, 99, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(244, 247, 249, 0.72));
}

.grid-plane {
  display: none;
}

.radar-sweep {
  display: none;
}

.icon-field {
  display: none;
}

.floating-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(75, 183, 197, 0.48);
  border-radius: 50%;
  color: rgba(224, 236, 238, 0.12);
  background: rgba(7, 12, 15, 0.72);
  box-shadow: 0 0 0 10px rgba(75, 183, 197, 0.035);
  filter: none;
  animation: signal-drift var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
  will-change: transform;
}

.floating-icon svg {
  display: none;
  width: 0;
  height: 0;
  stroke: currentColor;
  stroke-width: 1.65;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-icon::after {
  content: "";
  position: absolute;
  width: clamp(90px, 14vw, 180px);
  height: 1px;
  right: 4px;
  top: 50%;
  background: linear-gradient(90deg, rgba(75, 183, 197, 0.14), rgba(185, 200, 204, 0.04), transparent);
  transform: rotate(var(--trail));
  transform-origin: right center;
  opacity: 0.38;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 76px;
  margin: 0 auto;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid rgba(16, 54, 99, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(16, 54, 99, 0.045);
}

.noscript-nav {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 38px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  opacity: 0.88;
}

.brand-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: 164px;
  object-fit: contain;
  filter: none;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--logo-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="true"] {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(43, 109, 164, 0.46);
  border-radius: var(--radius);
  color: var(--logo-blue);
  font-size: 14px;
  font-weight: 700;
  background: rgba(16, 54, 99, 0.055);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  color: var(--text);
  background: var(--logo-blue);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  touch-action: manipulation;
}

.menu-icon[hidden],
.close-icon[hidden] {
  display: none;
}

.mobile-nav {
  display: none;
}

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

section[id] {
  scroll-margin-top: 96px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(26px, 4vw, 44px) clamp(42px, 6vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 64px) 0 clamp(48px, 6vw, 76px);
  overflow: clip;
}

.hero-code-field {
  position: absolute;
  inset: 16px 0 18px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-code-field span {
  position: absolute;
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(16, 54, 99, 0.12);
  border-radius: 8px;
  color: rgba(16, 54, 99, 0.18);
  background: rgba(255, 255, 255, 0.34);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 850;
  transform: rotate(var(--rotate));
  animation: code-float 18s ease-in-out infinite;
  animation-delay: var(--delay);
}

.hero-code-field span:nth-child(1) {
  left: 6%;
  top: 12%;
}

.hero-code-field span:nth-child(2) {
  right: 18%;
  top: 8%;
}

.hero-code-field span:nth-child(3) {
  left: 46%;
  top: 36%;
}

.hero-code-field span:nth-child(4) {
  right: 6%;
  top: 42%;
}

.hero-code-field span:nth-child(5) {
  left: 14%;
  bottom: 16%;
}

.hero-code-field span:nth-child(6) {
  right: 34%;
  bottom: 10%;
}

.hero-title {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 980px;
  margin: 0;
  text-wrap: balance;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  font-weight: 760;
}

.hero-copy p {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.response-note {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 24px;
  color: var(--quiet);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  touch-action: manipulation;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button:active {
  transform: translateY(0);
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin: 28px 0 0;
}

.hero-proof div {
  min-height: 94px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.hero-proof dt {
  margin-bottom: 12px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.button-primary {
  border: 1px solid rgba(43, 109, 164, 0.72);
  color: #fff;
  background: var(--logo-blue);
  box-shadow: 0 12px 36px rgba(16, 54, 99, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--logo-blue);
  background: rgba(255, 255, 255, 0.72);
}

.operations-panel {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(185, 200, 204, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 252, 0.9)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.operations-panel::after {
  content: "";
  position: absolute;
  inset: auto 18px 74px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 54, 99, 0.18), rgba(215, 167, 92, 0.22), transparent);
  opacity: 0.42;
}

.operations-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent, rgba(16, 54, 99, 0.035), transparent),
    radial-gradient(circle at 82% 18%, rgba(16, 54, 99, 0.075), transparent 28%);
  mask-image: radial-gradient(ellipse at 50% 35%, black, transparent 78%);
}

.panel-topline,
.panel-readouts {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 18px;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.delivery-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 10px 18px 22px;
}

.delivery-flow article {
  display: grid;
  grid-template-columns: 46px minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(185, 200, 204, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.delivery-flow article + article {
  position: relative;
}

.delivery-flow article + article::before {
  content: "";
  position: absolute;
  left: 38px;
  top: -13px;
  width: 1px;
  height: 12px;
  background: rgba(75, 183, 197, 0.35);
}

.delivery-flow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(75, 183, 197, 0.32);
  border-radius: 50%;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  background: rgba(75, 183, 197, 0.05);
}

.delivery-flow h3 {
  margin: 4px 0 0;
  font-size: 18px;
  line-height: 1.2;
}

.delivery-flow p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.panel-readouts {
  border-top: 1px solid var(--line);
  background: rgba(16, 54, 99, 0.035);
}

.panel-readouts div {
  display: grid;
  gap: 5px;
}

.panel-readouts strong {
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 20px;
}

.trust-section {
  margin-top: -18px;
  margin-bottom: 44px;
}

.trust-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(16, 54, 99, 0.08);
  overflow: hidden;
}

.trust-rail div {
  min-height: 116px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.trust-rail div:last-child {
  border-right: 0;
}

.trust-rail span,
.security-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-rail strong {
  display: block;
  max-width: 190px;
  font-size: 17px;
  line-height: 1.25;
}

.content-section {
  padding: 88px 0 72px;
}

.content-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
  min-width: 0;
  margin-bottom: 28px;
}

.content-lead > * {
  min-width: 0;
}

.content-lead h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  text-wrap: balance;
}

.content-lead p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  text-wrap: pretty;
}

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

.content-columns article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 38px rgba(16, 54, 99, 0.055);
}

.content-columns h3 {
  margin: 0;
  color: var(--logo-blue);
  font-size: 22px;
}

.content-columns p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.section-kicker {
  display: inline-flex;
  color: var(--logo-blue);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.people-section {
  padding: 20px 0 96px;
}

.people-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 44px;
  align-items: stretch;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(16, 54, 99, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 242, 248, 0.78)),
    radial-gradient(circle at 8% 8%, rgba(16, 54, 99, 0.13), transparent 34%);
  box-shadow: 0 26px 70px rgba(16, 54, 99, 0.11);
  overflow: hidden;
}

.people-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 54, 99, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 54, 99, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 72%);
  pointer-events: none;
}

.people-copy,
.people-principles {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.people-copy h2 {
  margin: 12px 0 22px;
  max-width: 760px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  text-wrap: balance;
}

.people-copy p {
  margin: 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  text-wrap: pretty;
}

.people-copy p + p {
  margin-top: 18px;
}

.people-quote {
  padding-left: 18px;
  border-left: 3px solid var(--logo-blue);
  color: var(--text) !important;
  font-weight: 760;
}

.people-principles {
  display: grid;
  gap: 12px;
}

.people-principles article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  padding: 20px;
  border: 1px solid rgba(16, 54, 99, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(16, 54, 99, 0.06);
}

.people-principles span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 54, 99, 0.24);
  border-radius: var(--radius);
  color: var(--logo-blue);
  background: rgba(16, 54, 99, 0.06);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
}

.people-principles strong {
  align-self: end;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.people-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 720px;
  align-items: start;
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.section-heading .section-kicker {
  margin-bottom: -18px;
}

@supports not (text-wrap: balance) {
  .hero-title,
  .section-heading h2,
  .contact-section h2,
  .security-copy h2 {
    max-width: 14ch;
  }
}

.service-section,
.method-section,
.security-section,
.faq-section {
  padding: 96px 0;
}

.pain-section {
  padding: 16px 0 88px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pain-grid article {
  min-height: 184px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(16, 54, 99, 0.065);
}

.pain-grid strong {
  display: block;
  color: var(--text);
  font-size: 19px;
  line-height: 1.25;
}

.pain-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

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

.service-row {
  display: grid;
  grid-template-columns: 52px 58px minmax(190px, 0.42fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding-inline 180ms ease, border-color 180ms ease;
}

.service-row:hover {
  padding-inline: 14px;
  border-color: rgba(16, 54, 99, 0.2);
  background: rgba(255, 255, 255, 0.52);
}

@media (hover: none) {
  .service-row:hover,
  .button:hover,
  .header-cta:hover {
    transform: none;
  }

  .service-row:hover {
    padding-inline: 0;
    border-color: var(--line);
    background: transparent;
  }
}

.service-index {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 13px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 54, 99, 0.2);
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(16, 54, 99, 0.055);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.65;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-row h3 {
  margin: 0;
  font-size: 24px;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.industry-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(16, 54, 99, 0.055), transparent 34%, rgba(215, 167, 92, 0.08)),
    rgba(255, 255, 255, 0.52);
}

.industry-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 54px;
  padding: 92px 0;
  align-items: center;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(16, 54, 99, 0.065);
}

.industry-item {
  min-height: 138px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-item:nth-child(even) {
  border-right: 0;
}

.industry-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.industry-item strong {
  display: block;
  margin-bottom: 42px;
  font-size: 22px;
  font-weight: 800;
}

.industry-item span {
  color: var(--muted);
  font-size: 14px;
}

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

.timeline article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  overflow: hidden;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0.55;
}

.timeline small {
  display: block;
  margin-bottom: 44px;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 12px;
}

.timeline span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.security-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1fr);
  gap: 54px;
  align-items: start;
}

.security-copy {
  position: sticky;
  top: 118px;
}

.security-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

.security-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.security-grid {
  display: grid;
  gap: 14px;
}

.security-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16, 54, 99, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.78);
}

.security-grid article:nth-child(2) {
  margin-left: min(30px, 4vw);
}

.security-grid article:nth-child(3) {
  margin-left: min(60px, 8vw);
}

.security-grid h3 {
  margin: 0;
  font-size: 24px;
}

.security-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
  padding: 56px;
  border: 1px solid rgba(16, 54, 99, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(16, 54, 99, 0.08), rgba(255, 255, 255, 0.72) 44%, rgba(215, 167, 92, 0.12)),
    rgba(255, 255, 255, 0.82);
}

.contact-section p {
  max-width: 680px;
  margin-top: 18px;
}

.contact-actions {
  min-width: min(100%, 330px);
  display: grid;
  justify-items: stretch;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(16, 54, 99, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(16, 54, 99, 0.08);
}

.contact-actions .button {
  width: 100%;
}

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

.contact-link {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid rgba(16, 54, 99, 0.13);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
}

.contact-link::before {
  content: attr(data-label);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-link:hover {
  border-color: rgba(16, 54, 99, 0.28);
  color: var(--logo-blue);
  background: rgba(255, 255, 255, 0.94);
}

.contact-hint {
  max-width: none;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.faq-section {
  padding-top: 38px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 0 22px;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 22px;
}

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

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  max-width: 880px;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  align-items: start;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.96), rgba(239, 244, 240, 0.98)),
    linear-gradient(90deg, rgba(16, 54, 99, 0.045), transparent 54%);
  border-top: 1px solid rgba(205, 218, 210, 0.9);
  color: var(--muted);
  font-size: 14px;
  margin: 0 auto;
  max-width: none;
  padding: 58px max(24px, calc((100vw - var(--max)) / 2)) 36px;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--logo-blue);
}

.enhanced-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(150px, 0.55fr) minmax(170px, 0.65fr) minmax(150px, 0.55fr);
  gap: 38px;
}

.footer-brand-logo {
  display: block;
  height: 42px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-about {
  display: grid;
  gap: 0;
}

.enhanced-footer p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
}

.enhanced-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column > span {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.footer-column p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 175px), max-content));
  gap: 10px;
  margin-top: 22px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 54, 99, 0.16);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 780;
  text-align: center;
  white-space: nowrap;
}

.footer-consent-button {
  appearance: none;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-consent-button:hover,
.footer-consent-button:focus-visible {
  color: var(--logo-blue);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(205, 218, 210, 0.88);
  color: #647280;
}

.holding-affiliation {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 180ms ease, opacity 180ms ease;
}

.holding-affiliation:hover {
  color: var(--logo-blue);
  opacity: 0.88;
}

.holding-affiliation img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.legal-page {
  background:
    radial-gradient(circle at 18% 10%, rgba(16, 54, 99, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fafb, #eef3f6);
}

.legal-shell {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border: 1px solid rgba(16, 54, 99, 0.16);
  border-radius: var(--radius);
  color: var(--logo-blue);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.legal-shell h1 {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.legal-intro {
  max-width: 780px;
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.legal-card {
  margin-top: 14px;
  padding: 28px;
  border: 1px solid rgba(16, 54, 99, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(16, 54, 99, 0.06);
}

.legal-card h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 24px;
}

.legal-card p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.legal-card a,
.legal-footer a,
.legal-consent-button {
  color: var(--logo-blue);
  font-weight: 760;
}

.legal-consent-button {
  padding: 10px 14px;
  border: 1px solid rgba(16, 54, 99, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  padding: 0 0 46px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: auto;
  z-index: 30;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

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

.cookie-panel {
  width: min(calc(100vw - 40px), 760px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(16, 54, 99, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 64px rgba(16, 54, 99, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

.cookie-kicker {
  margin: 0 0 8px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-panel h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.cookie-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.cookie-options label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 54, 99, 0.035);
}

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

.cookie-options strong,
.cookie-options small {
  display: block;
}

.cookie-options strong {
  margin-bottom: 3px;
  font-size: 14px;
  color: var(--text);
}

.cookie-options small {
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.35;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .button {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 14px;
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate));
  }
  50% {
    transform: translate3d(var(--x), var(--y), 0) rotate(calc(var(--rotate) + 7deg));
  }
}

@keyframes code-float {
  0%, 100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) rotate(var(--rotate));
  }
  50% {
    opacity: 0.72;
    transform: translate3d(var(--x), var(--y), 0) rotate(calc(var(--rotate) + 5deg));
  }
}

@keyframes signal-drift {
  0%, 100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.78;
    transform: translate3d(calc(var(--x) * 0.28), calc(var(--y) * 0.28), 0);
  }
}

@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -64;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .hero-code-field span {
    opacity: 0.34;
  }
}

@media (prefers-reduced-data: reduce) {
  .radar-sweep,
  .floating-icon::after,
  .hero-code-field {
    display: none;
  }

  .floating-icon {
    filter: none;
  }
}

@media (prefers-contrast: more), (forced-colors: active) {
  :root {
    --line: rgba(16, 54, 99, 0.42);
    --muted: #263541;
    --quiet: #40515d;
  }

  .button-primary {
    box-shadow: none;
  }
}

@media (max-width: 1100px) {
  .security-grid article:nth-child(2),
  .security-grid article:nth-child(3) {
    transform: none;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .hero-copy {
    max-width: 100%;
  }

  .hero-title {
    max-width: 15ch;
    font-size: clamp(42px, 5.7vw, 48px);
    line-height: 1.04;
  }

  .hero-copy p {
    max-width: 760px;
  }

  .hero-actions,
  .response-note {
    max-width: 760px;
  }

  .site-footer {
    padding: 42px max(18px, calc((100vw - var(--max)) / 2)) 28px;
  }

  .enhanced-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }

  .footer-about {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: 14px 28px;
    align-items: end;
    padding-bottom: 8px;
  }

  .footer-brand-logo {
    height: 36px;
    margin-bottom: 0;
  }

  .footer-about p {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.55;
  }

  .footer-contact {
    grid-column: 2;
    margin-top: 0;
    grid-template-columns: repeat(3, minmax(175px, max-content));
  }

  .footer-contact a {
    min-height: 42px;
    font-size: 12px;
  }

  .footer-column {
    height: 100%;
    min-height: 168px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.58);
  }

  .footer-bottom {
    grid-column: 1 / -1;
    margin-top: 4px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: 100%;
    padding: 14px max(14px, calc((100vw - var(--max)) / 2));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .noscript-nav {
    display: grid;
    gap: 4px;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
  }

  .noscript-nav a {
    min-height: 44px;
    padding: 12px;
    border-radius: 6px;
    color: var(--text);
    font-weight: 700;
  }

  .mobile-nav {
    grid-column: 1 / -1;
    display: grid;
    gap: 6px;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    min-height: 48px;
    padding: 14px;
    border-radius: 6px;
    font-weight: 720;
  }

  .mobile-nav a:hover,
  .mobile-nav a[aria-current="page"] {
    background: rgba(16, 54, 99, 0.06);
    color: var(--logo-blue);
  }

  .mobile-cta {
    background: var(--logo-blue);
    color: #fff !important;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--logo-blue);
    background: rgba(255, 255, 255, 0.78);
    cursor: pointer;
  }

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

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 46px;
  }

  .hero-code-field span:nth-child(4),
  .hero-code-field span:nth-child(6) {
    display: none;
  }

  .hero-copy,
  .operations-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .operations-panel {
    min-height: auto;
  }

  .delivery-flow article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .delivery-flow p {
    grid-column: 2;
  }

  .section-heading,
  .content-lead,
  .people-panel,
  .industry-inner,
  .security-section {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

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

  .trust-rail div:nth-child(2) {
    border-right: 0;
  }

  .trust-rail div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .security-copy {
    position: static;
  }

  .security-grid article,
  .security-grid article:nth-child(2),
  .security-grid article:nth-child(3) {
    transform: none;
  }

  .service-row {
    grid-template-columns: 46px 54px minmax(170px, 0.42fr) minmax(220px, 1fr);
  }

  .service-row p {
    grid-column: auto;
  }

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

  .contact-section {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .contact-actions {
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }

  .contact-hint {
    text-align: center;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-items: stretch;
  }

  .cookie-panel {
    width: 100%;
    gap: 12px;
    max-height: calc(100vh - 24px);
    overflow: auto;
  }

  .cookie-options {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1 1 180px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-height: 34px;
  }

  .brand-logo {
    height: 34px;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 38px;
  }

  .hero-code-field {
    opacity: 0.62;
  }

  .hero-code-field span:nth-child(3),
  .hero-code-field span:nth-child(5) {
    display: none;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(27px, 7.2vw, 34px);
    line-height: 1.06;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .hero-proof div {
    min-height: auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .response-note {
    padding-top: 18px;
    font-size: 13px;
  }

  .cookie-panel {
    padding: 14px;
  }

  .cookie-panel h2 {
    font-size: 19px;
  }

  .cookie-panel p {
    font-size: 13px;
  }

  .cookie-options label {
    align-items: center;
    padding: 9px 10px;
  }

  .cookie-options small {
    display: none;
  }

  .cookie-actions {
    gap: 8px;
  }

  .cookie-actions .button {
    min-height: 40px;
    font-size: 14px;
  }

  .operations-panel {
    min-height: auto;
  }

  .delivery-flow {
    gap: 9px;
    padding: 8px 14px 16px;
  }

  .delivery-flow article {
    min-height: auto;
    padding: 12px;
  }

  .delivery-flow span {
    width: 30px;
    height: 30px;
  }

  .delivery-flow h3 {
    margin-top: 4px;
    font-size: 16px;
  }

  .delivery-flow p {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .panel-readouts {
    gap: 12px;
    flex-wrap: wrap;
  }

  .service-row,
  .industry-grid,
  .pain-grid,
  .timeline,
  .trust-rail {
    grid-template-columns: 1fr;
  }

  .people-section {
    padding-bottom: 70px;
  }

  .people-panel {
    gap: 28px;
    padding: 24px;
  }

  .people-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .people-principles article {
    grid-template-columns: 1fr;
  }

  .people-principles span {
    grid-row: auto;
  }

  .trust-section {
    margin-top: 0;
  }

  .trust-rail div,
  .trust-rail div:nth-child(2),
  .trust-rail div:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-rail div:last-child {
    border-bottom: 0;
  }

  .service-row {
    grid-template-areas:
      "index"
      "icon"
      "title"
      "copy";
    gap: 12px;
    padding: 28px 0;
  }

  .service-row:hover {
    padding-inline: 0;
  }

  .service-index {
    grid-area: index;
  }

  .service-icon {
    grid-area: icon;
  }

  .service-row h3 {
    grid-area: title;
  }

  .service-row p {
    grid-area: copy;
    grid-column: auto;
  }

  .industry-item,
  .industry-item:nth-child(even),
  .industry-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .industry-item:last-child {
    border-bottom: 0;
  }

  .timeline span {
    margin-bottom: 42px;
  }

  .contact-section .button {
    width: 100%;
  }

  .contact-actions {
    width: 100%;
    justify-items: stretch;
    padding: 14px;
  }

  .contact-details {
    justify-items: stretch;
  }

  .contact-link {
    grid-template-columns: 1fr;
    gap: 3px;
    min-height: 50px;
    overflow-wrap: anywhere;
    white-space: normal;
    text-align: left;
  }

  .contact-hint {
    max-width: none;
    text-align: center;
  }

  .site-footer {
    padding: 34px 14px 24px;
  }

  .enhanced-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  .footer-about,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-about {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.58);
  }

  .footer-brand-logo {
    height: 34px;
    margin-bottom: 14px;
  }

  .footer-about p {
    max-width: none;
    font-size: 14px;
    line-height: 1.55;
  }

  .footer-contact {
    margin-top: 16px;
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-contact a {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
    white-space: normal;
  }

  .footer-column {
    height: 100%;
    min-height: 150px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.58);
  }

  .footer-column > span {
    margin-bottom: 8px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
    padding: 18px 2px 0;
  }

  .legal-shell {
    width: min(100% - 28px, var(--max));
    padding: 118px 0 58px;
  }

  .legal-card {
    padding: 20px;
  }

  .legal-footer {
    width: min(100% - 28px, var(--max));
    flex-direction: column;
  }

  .faq-list summary {
    align-items: flex-start;
    min-height: auto;
    padding: 18px;
    font-size: 16px;
    line-height: 1.35;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }
}

@media (max-width: 430px) {
  .enhanced-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-column {
    min-height: auto;
  }
}

@media (max-width: 380px) {
  .site-header {
    min-height: 66px;
  }

  .brand {
    min-height: 30px;
  }

  .brand-logo {
    height: 30px;
  }

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

  .hero-title {
    font-size: 27px;
  }

  .panel-topline,
  .panel-readouts {
    padding: 14px;
    font-size: 10px;
  }

  .delivery-flow {
    padding-inline: 12px;
  }

  .delivery-flow article {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 11px;
  }

  .delivery-flow p {
    grid-column: 1 / -1;
  }

  .section-heading h2,
  .content-lead h2,
  .people-copy h2,
  .contact-section h2,
  .security-copy h2 {
    font-size: 30px;
    overflow-wrap: normal;
    hyphens: none;
  }
}
