:root {
  --bg: #060b19;
  --bg-soft: #0b1425;
  --bg-elevated: #0f1b30;
  --surface: rgba(14, 27, 49, 0.78);
  --surface-solid: #101d33;
  --surface-strong: #152640;
  --text: #f5f8ff;
  --text-muted: #a8b5ca;
  --text-soft: #7889a2;
  --line: rgba(174, 204, 240, 0.14);
  --line-strong: rgba(174, 204, 240, 0.26);
  --primary: #5eead4;
  --primary-strong: #2dd4bf;
  --cyan: #38bdf8;
  --violet: #8b5cf6;
  --danger: #fb7185;
  --warning: #fbbf24;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 20px 55px rgba(0, 0, 0, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: min(1180px, calc(100% - 40px));
  --top-strip-height: 36px;
  --nav-height: 82px;
  --header-height: calc(var(--top-strip-height) + var(--nav-height));
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(94, 234, 212, 0.28);
  color: var(--text);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-muted {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 15%, rgba(56, 189, 248, 0.055), transparent 26%),
    radial-gradient(circle at 96% 90%, rgba(139, 92, 246, 0.065), transparent 30%),
    var(--bg-soft);
}

.section-grid {
  background-image:
    linear-gradient(rgba(174, 204, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174, 204, 240, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.ambient-cyan {
  top: 140px;
  left: -260px;
  background: rgba(56, 189, 248, 0.16);
}

.ambient-violet {
  top: 520px;
  right: -260px;
  background: rgba(139, 92, 246, 0.14);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}

.section-heading-centered {
  display: block;
  max-width: 790px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.3rem, 4.4vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.section-heading p,
.section-heading-centered p,
.split-copy > p,
.contact-copy > p {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.section-heading > p {
  margin: 0;
}

.section-heading-centered p {
  max-width: 670px;
  margin-inline: auto;
}

.section-kicker,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker::before,
.panel-kicker::before {
  width: 23px;
  height: 1px;
  background: currentColor;
  content: "";
}

.text-gradient {
  background: linear-gradient(105deg, var(--primary), var(--cyan) 47%, #b8a5ff);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(112deg, var(--primary), var(--cyan));
  box-shadow: 0 14px 36px rgba(56, 189, 248, 0.2);
  color: #06111f;
}

.button-primary:hover {
  box-shadow: 0 17px 44px rgba(56, 189, 248, 0.28);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(94, 234, 212, 0.52);
  background: rgba(94, 234, 212, 0.06);
}

.button-small {
  min-height: 43px;
  padding: 10px 16px;
  font-size: 0.86rem;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
}

.text-link:hover {
  color: var(--cyan);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: var(--line);
  background: rgba(6, 11, 25, 0.9);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.top-strip {
  height: var(--top-strip-height);
  border-bottom: 1px solid rgba(174, 204, 240, 0.1);
  background: rgba(3, 9, 20, 0.64);
  color: var(--text-muted);
  font-size: 0.72rem;
}

.top-strip-inner,
.top-strip-messages,
.top-strip-contact {
  display: flex;
  align-items: center;
}

.top-strip-inner {
  height: 100%;
  justify-content: space-between;
  gap: 24px;
}

.top-strip-messages {
  gap: 25px;
  min-width: 0;
  white-space: nowrap;
}

.top-strip-messages span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-strip-messages span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.5);
  content: "";
}

.top-strip-promise::before {
  background: var(--cyan) !important;
}

.top-strip-contact {
  flex: 0 0 auto;
  gap: 18px;
  font-weight: 700;
}

.top-strip-contact a {
  transition: color 0.2s ease;
}

.top-strip-contact a:hover {
  color: var(--primary);
}

.nav-shell {
  display: flex;
  min-height: var(--nav-height);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 43px;
  height: 43px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.primary-nav > a {
  position: relative;
  padding: 11px 12px;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a:not(.button).active {
  color: var(--text);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button).active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle.active span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 760px;
  padding-top: calc(var(--header-height) + 92px);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(94, 234, 212, 0.09), transparent 28%),
    radial-gradient(circle at 86% 28%, rgba(56, 189, 248, 0.1), transparent 30%),
    radial-gradient(circle at 78% 88%, rgba(139, 92, 246, 0.1), transparent 26%),
    linear-gradient(rgba(174, 204, 240, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174, 204, 240, 0.027) 1px, transparent 1px);
  background-size: auto, auto, auto, 64px 64px, 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black 65%, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(470px, 0.97fr);
  align-items: center;
  gap: 66px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(94, 234, 212, 0.1);
}

.status-dot::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(94, 234, 212, 0.4);
  border-radius: 50%;
  content: "";
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.5);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3.15rem, 5.7vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--text-muted);
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.hero-signals li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-signals svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.workflow-window {
  position: relative;
  padding: 1px;
  border-radius: 27px;
  background: linear-gradient(145deg, rgba(94, 234, 212, 0.5), rgba(56, 189, 248, 0.08) 42%, rgba(139, 92, 246, 0.42));
  box-shadow: var(--shadow);
}

.workflow-window::before {
  position: absolute;
  z-index: -1;
  inset: 12% -7% -9% 8%;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(139, 92, 246, 0.14));
  filter: blur(48px);
  content: "";
}

.window-inner {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(7, 16, 30, 0.96);
}

.window-bar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
}

.window-dots i:nth-child(2) {
  background: var(--warning);
}

.window-dots i:nth-child(3) {
  background: var(--primary);
}

.window-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
}

.window-live::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

.workflow-body {
  padding: 22px;
}

.workflow-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 21px;
}

.workflow-header span,
.workflow-footer span {
  display: block;
  color: var(--text-soft);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.workflow-header strong {
  display: block;
  margin-top: 5px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.12rem;
}

.workflow-mode {
  padding: 7px 10px;
  border: 1px solid rgba(94, 234, 212, 0.2);
  border-radius: 9px;
  background: rgba(94, 234, 212, 0.07);
  color: var(--primary);
  font-size: 0.67rem;
  font-weight: 800;
  white-space: nowrap;
}

.workflow-track {
  position: relative;
  display: grid;
  gap: 9px;
}

.workflow-track::before {
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 20px;
  width: 1px;
  background: linear-gradient(var(--primary), var(--cyan), var(--violet));
  content: "";
  opacity: 0.45;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 12px 9px 0;
  border: 1px solid transparent;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.018);
}

.workflow-step.active {
  border-color: rgba(56, 189, 248, 0.18);
  background: rgba(56, 189, 248, 0.055);
}

.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-solid);
  color: var(--primary);
}

.workflow-step:nth-child(3n + 2) .step-icon {
  color: var(--cyan);
}

.workflow-step:nth-child(3n) .step-icon {
  color: #b8a5ff;
}

.step-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.step-copy strong,
.step-copy small {
  display: block;
}

.step-copy strong {
  font-size: 0.82rem;
}

.step-copy small {
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 0.67rem;
}

.step-state {
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.workflow-footer div {
  min-width: 0;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.workflow-footer strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 0.78rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11, 20, 37, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.trust-item {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 13px;
  padding: 19px 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 0.83rem;
}

.trust-item span {
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 0.7rem;
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 86px;
}

.intro-statement {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.intro-statement h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.45rem, 4.5vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.intro-statement p {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.principle-list {
  display: grid;
  gap: 14px;
}

.principle {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.022);
}

.principle-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(94, 234, 212, 0.2);
  border-radius: 15px;
  background: rgba(94, 234, 212, 0.06);
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
}

.principle h3 {
  margin: 1px 0 6px;
  font-size: 1.06rem;
}

.principle p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.91rem;
}

/* Capability cards */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  position: relative;
  min-width: 0;
  min-height: 300px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(21, 38, 64, 0.7), rgba(8, 17, 31, 0.68)),
    var(--surface);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.capability-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
  filter: blur(75px);
  opacity: 0.06;
  transition: opacity 0.22s ease;
}

.capability-card:nth-child(3n + 2)::after {
  background: var(--cyan);
}

.capability-card:nth-child(3n)::after {
  background: var(--violet);
}

.capability-card:hover {
  border-color: rgba(94, 234, 212, 0.3);
  box-shadow: 0 23px 58px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.capability-card:hover::after {
  opacity: 0.12;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(94, 234, 212, 0.18);
  border-radius: 14px;
  background: rgba(94, 234, 212, 0.065);
  color: var(--primary);
}

.capability-card:nth-child(3n + 2) .card-icon {
  border-color: rgba(56, 189, 248, 0.2);
  background: rgba(56, 189, 248, 0.065);
  color: var(--cyan);
}

.capability-card:nth-child(3n) .card-icon {
  border-color: rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.075);
  color: #b8a5ff;
}

.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-index {
  color: var(--text-soft);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.68rem;
}

.capability-card h3 {
  margin: 24px 0 11px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.capability-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 21px;
}

.card-meta span,
.profile-tags span,
.use-case-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-size: 0.66rem;
  font-weight: 700;
}

/* Architecture */
.architecture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  align-items: center;
  gap: 78px;
}

.split-copy ul,
.governance-copy ul {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.split-copy li,
.governance-copy li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text-muted);
}

.split-copy li::before,
.governance-copy li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 9px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  content: "";
}

.architecture-board {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(174, 204, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174, 204, 240, 0.035) 1px, transparent 1px),
    rgba(7, 16, 30, 0.88);
  background-size: 36px 36px;
  box-shadow: var(--shadow);
}

.board-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.board-label span:last-child {
  color: var(--primary);
}

.architecture-layers {
  display: grid;
  gap: 10px;
}

.architecture-layer {
  position: relative;
  display: grid;
  grid-template-columns: 135px 1fr;
  align-items: center;
  gap: 17px;
  min-height: 68px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(13, 27, 49, 0.88);
}

.architecture-layer::after {
  position: absolute;
  bottom: -11px;
  left: 67px;
  width: 1px;
  height: 11px;
  background: linear-gradient(var(--primary), var(--cyan));
  content: "";
  opacity: 0.55;
}

.architecture-layer:last-child::after {
  display: none;
}

.layer-name {
  color: var(--primary);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.layer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.layer-items span {
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.038);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 650;
}

.board-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(94, 234, 212, 0.16);
  border-radius: 11px;
  background: rgba(94, 234, 212, 0.045);
  color: var(--text-muted);
  font-size: 0.73rem;
}

.board-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Workflow */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.process-card {
  position: relative;
  min-height: 250px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 500;
}

.process-number::after {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  content: "";
}

.process-card h3 {
  margin: 32px 0 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
}

.process-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.process-output {
  display: block;
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Use cases */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.use-case {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.022);
}

.use-case:first-child {
  grid-column: 1 / -1;
}

.use-case-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 17px;
  background: rgba(56, 189, 248, 0.06);
  color: var(--cyan);
}

.use-case-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.use-case h3 {
  margin: 1px 0 8px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.17rem;
}

.use-case p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.89rem;
}

.use-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.profile-band {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(94, 234, 212, 0.05), rgba(56, 189, 248, 0.035), rgba(139, 92, 246, 0.055));
}

.profile-band h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
}

.profile-band p {
  margin: 7px 0 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-tags span:last-child {
  border-color: rgba(94, 234, 212, 0.26);
  background: rgba(94, 234, 212, 0.065);
  color: var(--primary);
}

/* Governance */
.governance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 84px;
}

.governance-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.governance-copy > p {
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.control-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(7, 16, 30, 0.92);
  box-shadow: var(--shadow);
}

.control-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-status {
  color: var(--primary);
}

.control-list {
  display: grid;
  padding: 11px;
}

.control-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.control-row:last-child {
  border-bottom: 0;
}

.control-check {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(94, 234, 212, 0.07);
  color: var(--primary);
}

.control-check svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.control-copy strong,
.control-copy span {
  display: block;
}

.control-copy strong {
  font-size: 0.83rem;
}

.control-copy span {
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 0.69rem;
}

.control-tag {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text-soft);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  white-space: nowrap;
}

/* Custom delivery */
.delivery-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(7, 16, 30, 0.7);
}

.delivery-step {
  position: relative;
  min-height: 250px;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}

.delivery-step:last-child {
  border-right: 0;
}

.delivery-step::before {
  display: block;
  width: 11px;
  height: 11px;
  margin-bottom: 29px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
  content: "";
}

.delivery-step::after {
  position: absolute;
  top: 30px;
  right: -1px;
  left: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), rgba(56, 189, 248, 0.18));
  content: "";
}

.delivery-step:last-child::after {
  display: none;
}

.delivery-step span {
  color: var(--primary);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.68rem;
}

.delivery-step h3 {
  margin: 13px 0 9px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.06rem;
}

.delivery-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  align-items: start;
  gap: 82px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-intro h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.faq-intro p {
  margin: 22px 0 0;
  color: var(--text-muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 650;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-width: 700px;
  padding: 0 52px 23px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-answer p {
  margin: 0;
}

/* Contact */
.contact-section {
  padding-top: 20px;
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid rgba(94, 234, 212, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 4% 0%, rgba(94, 234, 212, 0.13), transparent 33%),
    radial-gradient(circle at 96% 100%, rgba(139, 92, 246, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(18, 38, 61, 0.96), rgba(8, 17, 32, 0.96));
  box-shadow: var(--shadow);
}

.contact-shell::after {
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(94, 234, 212, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(56, 189, 248, 0.025),
    0 0 0 76px rgba(139, 92, 246, 0.02);
  content: "";
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-copy > p {
  max-width: 690px;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 250px;
  gap: 12px;
}

.contact-email {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}

.contact-email:hover {
  color: var(--primary);
}

/* Footer */
.site-footer {
  margin-top: 110px;
  padding: 62px 0 28px;
  border-top: 1px solid var(--line);
  background: #050a16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.65fr);
  gap: 42px;
}

.footer-brand p {
  max-width: 440px;
  margin: 21px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-column h3 {
  margin: 4px 0 18px;
  color: var(--text-soft);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 10px;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.73rem;
}

/* Progressive reveal */
.will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease;
}

.will-reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .top-strip-promise {
    display: none;
  }

  .primary-nav > a {
    padding-inline: 8px;
    font-size: 0.79rem;
  }

  .primary-nav > a::after {
    right: 8px;
    left: 8px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.7vw, 4.65rem);
  }

  .architecture-grid,
  .governance-grid {
    gap: 46px;
  }

  .architecture-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  }

  .governance-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  }

}

@media (max-width: 900px) {
  :root {
    --nav-height: 74px;
    --header-height: calc(var(--top-strip-height) + var(--nav-height));
  }

  .section {
    padding: 92px 0;
  }

  .nav-shell {
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    margin: 0;
    padding: 0 max(20px, calc((100% - 1180px) / 2));
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(6, 11, 25, 0.97);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.28s ease,
      opacity 0.2s ease,
      padding 0.28s ease,
      border-color 0.2s ease;
    backdrop-filter: blur(20px);
  }

  .primary-nav.open {
    max-height: 430px;
    padding-top: 12px;
    padding-bottom: 18px;
    border-color: var(--line);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav > a {
    min-height: 48px;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .primary-nav > a:last-child {
    border-bottom: 0;
  }

  .primary-nav > a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-grid,
  .intro-grid,
  .architecture-grid,
  .governance-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 62px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 10vw, 5rem);
  }

  .hero-visual {
    width: min(100%, 670px);
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p {
    max-width: 700px;
    margin: 0;
  }

  .intro-grid,
  .architecture-grid,
  .governance-grid,
  .faq-grid {
    gap: 52px;
  }

  .intro-statement,
  .faq-intro {
    position: static;
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .architecture-board,
  .control-panel {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-step {
    border-bottom: 1px solid var(--line);
  }

  .delivery-step:nth-child(even) {
    border-right: 0;
  }

  .delivery-step:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .top-strip {
    font-size: 0.65rem;
  }

  .top-strip-messages {
    overflow: hidden;
  }

  .top-strip-messages span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-strip-contact a:first-child {
    display: none;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small {
    font-size: 0.6rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 56px);
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.15rem);
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-signals {
    display: grid;
  }

  .workflow-body {
    padding: 16px;
  }

  .workflow-step {
    grid-template-columns: 40px 1fr;
  }

  .step-state {
    display: none;
  }

  .workflow-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -14px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .section-heading-centered {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .split-copy h2,
  .contact-copy h2,
  .intro-statement h2,
  .governance-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .principle {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .principle-number {
    width: 44px;
    height: 44px;
  }

  .capability-grid,
  .process-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: auto;
  }

  .use-case:first-child {
    grid-column: auto;
  }

  .use-case {
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 21px;
  }

  .use-case-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .use-case-icon svg {
    width: 22px;
    height: 22px;
  }

  .architecture-board {
    padding: 18px;
  }

  .architecture-layer {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 13px;
  }

  .architecture-layer::after {
    left: 28px;
  }

  .delivery-track {
    grid-template-columns: 1fr;
  }

  .delivery-step,
  .delivery-step:nth-child(n) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .delivery-step:last-child {
    border-bottom: 0;
  }

  .delivery-step::after {
    display: none;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 34px 25px;
  }

  .contact-actions {
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .workflow-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-mode {
    align-self: flex-start;
  }

  .use-case {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@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;
  }

  .will-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Shared Perfect.sk chrome typography and alignment. */
.top-strip,
.top-strip-inner,
.top-strip-messages,
.top-strip-contact,
.primary-nav a,
.primary-nav .button,
.site-footer {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.top-strip-messages span,
.top-strip-contact a {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: left;
}

.primary-nav {
  gap: 4px;
}

.primary-nav a:not(.button) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
}

.primary-nav .button {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.primary-nav,
.nav-toggle {
  order: 0;
}

.primary-nav .nav-contact-cta {
  height: 44px;
  min-height: 44px;
  align-self: center;
  align-items: center;
  justify-content: center;
  color: #06111f !important;
  margin: 0 0 0 6px;
  padding: 0 16px;
  text-align: center;
}

.primary-nav .nav-contact-cta:hover,
.primary-nav .nav-contact-cta:focus-visible {
  transform: none;
}

.footer-grid,
.footer-brand,
.footer-column,
.footer-links {
  text-align: left;
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.footer-column h3,
.footer-column strong,
.footer-links strong {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.footer-column nav,
.footer-column ul,
.footer-links > div {
  gap: 8px;
}

.footer-column a,
.footer-links a {
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
}

.footer-bottom,
.footer-bottom p {
  font-size: 0.7rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .top-strip-messages span,
  .top-strip-contact a {
    font-size: 0.64rem;
  }

  .primary-nav a:not(.button),
  .primary-nav .button {
    font-size: 0.9rem;
  }

  .primary-nav a:not(.button) {
    min-height: 48px;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 12px;
    text-align: left;
  }

  .primary-nav a:not(.button)::after {
    display: none;
  }

  .primary-nav .nav-contact-cta {
    height: 48px;
    align-self: stretch;
    justify-content: center;
    min-height: 48px;
    margin: 5px 0 0;
    padding: 8px 16px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-bottom p:last-child {
    text-align: left;
  }
}
