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

:root {
  --bg: #f8f9fa;
  --surface: #fff;
  --surface-dark: #1a1f2e;
  --footer-navy: #111827;
  --text: #1a1f2e;
  --text-light: #f8f9fa;
  --text-muted: #5c6370;
  --text-muted-light: #9ca3af;
  --border: #e5e7eb;
  --accent: #2563eb;
  --accent-light: #dbeafe;
  --radius: 6px;
}

html {
  font-size: 17px;
  /* Fixed header (~72px): keep in-page #anchors from hiding titles under the bar */
  scroll-padding-top: 88px;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.header-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}
.header-container > .logo-row {
  grid-column: 1;
  justify-self: start;
  min-width: 0;
}
.header-container > .site-nav {
  grid-column: 2;
  justify-self: center;
}
.header-container > .lang-switcher {
  grid-column: 3;
  justify-self: end;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0 5px;
  color: #0b1e3a;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-nav__link:hover {
  color: #0b1e3a;
  border-color: rgba(11, 30, 58, 0.22);
}
.site-nav__link.is-active {
  color: #0b1e3a;
  border-color: rgba(37, 99, 235, 0.45);
}
.site-nav__link.is-active:hover {
  border-color: rgba(37, 99, 235, 0.45);
}

/* Site chrome only — do not target bare `header` (cards use <header> too) */
.site-header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0b1e3a;
}
.logo-link {
  color: inherit;
}
.logo-row img {
  width: 32px;
  height: 32px;
}
.logo-row span {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  font-family: "Inter", system-ui, sans-serif;
  text-transform: lowercase;
  color: inherit;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.42s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-switcher__dropdown {
  position: relative;
}

.lang-switcher__dropdown > summary {
  list-style: none;
}

.lang-switcher__dropdown > summary::-webkit-details-marker {
  display: none;
}

.lang-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(11, 30, 58, 0.1);
  background: rgba(255, 255, 255, 0.6);
  color: #0b1e3a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lang-switcher__trigger:hover {
  color: #0b1e3a;
  border-color: rgba(11, 30, 58, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.lang-switcher__icon {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
}

.lang-switcher__code {
  color: inherit;
  min-width: 1.25em;
}

.lang-switcher__chev {
  display: inline-flex;
  color: inherit;
  transition: transform 0.2s ease;
}

.lang-switcher__dropdown[open] .lang-switcher__chev {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  z-index: 200;
  top: calc(100% + 6px);
  right: 0;
  min-width: 11.5rem;
  padding: 6px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.lang-switcher__item {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.8125rem;
  line-height: 1.3;
  text-decoration: none;
  color: var(--text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switcher__item:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text);
}

.lang-switcher__item-code {
  font-weight: 700;
  color: var(--text-muted);
}

.lang-switcher__item-code::after {
  content: " · ";
  font-weight: 500;
  color: var(--text-muted-light);
}

.lang-switcher__item-name {
  font-weight: 500;
  color: var(--text-muted-light);
}

.lang-switcher__item.is-active {
  background: rgba(15, 23, 42, 0.06);
}

.lang-switcher__item.is-active .lang-switcher__item-code {
  color: var(--text);
}

.lang-switcher__item.is-active .lang-switcher__item-name {
  color: var(--text-muted);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 40px;
  min-height: min(100vh, 760px);
  background: var(--surface);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(26, 31, 46, 0.15) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 0%,
    transparent 80%
  );
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(37, 99, 235, 0.25) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  pointer-events: none;
  animation: grid-pulse 6s linear infinite;
}
@keyframes grid-pulse {
  0% {
    opacity: 0;
    mask-image: radial-gradient(
      circle at center,
      transparent 0%,
      black 0%,
      transparent 2%
    );
    -webkit-mask-image: radial-gradient(
      circle at center,
      transparent 0%,
      black 0%,
      transparent 2%
    );
  }
  10%,
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    mask-image: radial-gradient(
      circle at center,
      transparent 40%,
      black 50%,
      transparent 60%
    );
    -webkit-mask-image: radial-gradient(
      circle at center,
      transparent 40%,
      black 50%,
      transparent 60%
    );
  }
  60% {
    opacity: 0;
    mask-image: radial-gradient(
      circle at center,
      transparent 0%,
      black 0%,
      transparent 2%
    );
    -webkit-mask-image: radial-gradient(
      circle at center,
      transparent 0%,
      black 0%,
      transparent 2%
    );
  }
  70%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    mask-image: radial-gradient(
      circle at center,
      transparent 40%,
      black 50%,
      transparent 60%
    );
    -webkit-mask-image: radial-gradient(
      circle at center,
      transparent 40%,
      black 50%,
      transparent 60%
    );
  }
}
/* Soft ambient glow behind radar */
.hero-glow {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.08) 0%,
    rgba(37, 99, 235, 0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
}
/* Subtle arc accents */
.hero-arc {
  position: absolute;
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero-arc:nth-child(2) {
  width: 680px;
  height: 680px;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
}
.hero-arc:nth-child(3) {
  width: 860px;
  height: 860px;
  top: 50%;
  right: -18%;
  transform: translateY(-50%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}
.radar-ring {
  position: absolute;
  border: 1px solid rgba(26, 31, 46, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.radar-ring:nth-child(1) {
  width: 100%;
  height: 100%;
}
.radar-ring:nth-child(2) {
  width: 70%;
  height: 70%;
}
.radar-ring:nth-child(3) {
  width: 40%;
  height: 40%;
}
.radar-center {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.radar-center::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(37, 99, 235, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(37, 99, 235, 0) 0deg,
    rgba(37, 99, 235, 0) 300deg,
    rgba(37, 99, 235, 0.06) 322deg,
    rgba(37, 99, 235, 0.18) 345deg,
    rgba(37, 99, 235, 0.35) 356deg,
    rgba(37, 99, 235, 0.7) 359deg,
    rgba(37, 99, 235, 0) 360deg
  );
  filter: blur(0.2px);
  animation: sweep 4s linear infinite;
  z-index: 2;
}
@keyframes sweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.08);
    opacity: 0.5;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.radar-blip {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: blip 4s ease-out infinite;
  z-index: 3;
}
.radar-blip::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: blip-ring 4s ease-out infinite;
}
@keyframes blip {
  0%,
  20% {
    opacity: 0;
    transform: scale(0.5);
  }
  25% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blip-ring {
  0%,
  20% {
    transform: scale(1);
    opacity: 0;
  }
  25% {
    transform: scale(1);
    opacity: 0.6;
  }
  60% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.radar-blip:nth-child(5) {
  top: 15%;
  left: 25%;
  animation-delay: 0.5s;
}
.radar-blip:nth-child(6) {
  top: 75%;
  left: 35%;
  animation-delay: 2s;
}
.radar-blip:nth-child(7) {
  top: 45%;
  left: 80%;
  animation-delay: 3.2s;
}
.radar-alert {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  top: 60%;
  left: 65%;
  z-index: 5;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  animation:
    alert-pulse 2s ease-in-out infinite,
    alert-appear 10s infinite;
}
.radar-alert::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid #ef4444;
  border-radius: 50%;
  animation: alert-ring 2s ease-out infinite;
}
@keyframes alert-appear {
  0%,
  45% {
    opacity: 0;
    transform: scale(0);
  }
  50%,
  95% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes alert-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes alert-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.hero-card-status {
  padding: 4px 10px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  min-width: 100px;
  text-align: center;
}
.hero-card-status::before {
  content: attr(data-monitoring);
  animation: status-text-monitoring 10s infinite;
}
.hero-card-status::after {
  content: attr(data-alert);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fee2e2; /* Solid light red background */
  color: #ef4444;
  opacity: 0;
  animation: status-bg-alert 10s infinite;
}
@keyframes status-text-monitoring {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes status-bg-alert {
  0%,
  45% {
    opacity: 0;
  }
  50%,
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.hero-card-footer span:last-child::after {
  content: "0";
  animation: alert-count 10s infinite;
}
@keyframes alert-count {
  0%,
  45% {
    content: "0";
  }
  50%,
  95% {
    content: "1";
    color: #ef4444;
    font-weight: 600;
  }
  100% {
    content: "0";
  }
}
.radar-crosshair {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(26, 31, 46, 0.05);
  z-index: 1;
}
.radar-crosshair-v {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(26, 31, 46, 0.05);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 8px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero h1 {
  font-size: 3.1rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 620px;
}
.hero .sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.cta:hover {
  background: #1d4ed8;
  /* translateY avoids scale() text raster flicker in WebKit/Blink */
  transform: translateY(-2px);
  box-shadow:
    0 4px 20px rgba(37, 99, 235, 0.4),
    0 0 40px rgba(37, 99, 235, 0.2);
}
.cta:active {
  transform: translateY(0);
}
.cta-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.cta-link:hover {
  color: var(--accent);
  border-color: rgba(37, 99, 235, 0.3);
}
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-trust li {
  position: relative;
  padding-left: 16px;
}
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.5);
}
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}
.hero-card-header,
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-card-status {
  padding: 4px 10px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.hero-card-body {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 14px;
  margin: 16px 0;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
/* Radar illustration */
.radar {
  position: relative;
  width: 280px;
  height: 280px;
}
.radar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.35);
  opacity: 0;
  transform: scale(0.08);
  animation: pulse 3.2s ease-out infinite;
  z-index: 0;
}

/* Value section - dark */
.value {
  padding: 100px 0;
  background: var(--surface-dark);
  color: var(--text-light);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 16px;
}
.value h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 560px;
}
.value .section-sub {
  color: rgba(148, 163, 184, 0.9);
  max-width: 640px;
  margin-bottom: 48px;
}
.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: start;
}
.alert-visual {
  position: relative;
}
.alert-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 16px;
}
.alert-card {
  position: relative;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.alert-card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px 12px;
}
.alert-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-icon {
  width: 18px;
  height: 18px;
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.alert-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.alert-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
}
.alert-meta {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.9);
}
.alert-divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.18);
}
.alert-card-body {
  padding: 14px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.65fr);
  gap: 14px;
  align-items: stretch;
  flex: 1;
}
.alert-player-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.alert-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.2);
  overflow: hidden;
}
.alert-clip-length {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  color: rgba(226, 232, 240, 0.85);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 3px 8px;
  border-radius: 999px;
}
.alert-player::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  border: 1px dashed rgba(148, 163, 184, 0.35);
}
.player-scrub {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 46px;
  height: 3px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
}
.player-scrub span {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.7);
  position: relative;
}
.player-scrub span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93c5fd;
  transform: translate(50%, -50%);
}
.player-controls {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.9);
}
.player-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: inherit;
}
.player-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.alert-chip {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.alert-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-self: end;
  max-width: 170px;
}
.control-group {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 8px 10px;
}
.control-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.8);
  margin-bottom: 6px;
}
.control-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.7rem;
  background: rgba(15, 23, 42, 0.5);
}
.control-select span {
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.65rem;
}
.control-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.control-pill {
  font-size: 0.65rem;
  padding: 3px 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: rgba(226, 232, 240, 0.75);
}
.control-pill.active {
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(37, 99, 235, 0.18);
}
.alert-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px 16px;
}
.alert-muted {
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.75);
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: default;
  pointer-events: none;
}
.alert-muted:hover {
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.5);
}
.alert-action {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  background: #93c5fd;
  border-radius: 999px;
  padding: 8px 14px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  transform: scale(1);
  transform-origin: center;
  will-change: transform;
}
.alert-action:hover {
  transform: scale(1.03);
  box-shadow:
    0 8px 22px rgba(59, 130, 246, 0.45),
    0 0 18px rgba(59, 130, 246, 0.35);
}
.callout-zone {
  top: 24%;
}
.callout-timestamp {
  top: 16%;
}
.callout-clip {
  top: 52%;
}
.callout-escalation {
  top: 78%;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 32px;
}
.benefit-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-icon {
  width: 28px;
  height: 28px;
  color: rgba(148, 163, 184, 0.9);
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}
.benefit-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.benefit-desc {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.4;
  max-width: 360px;
}

/* Industries section */
.industries {
  padding: 0 0 110px;
  background: var(--surface-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.industries-separator {
  width: 65%;
  height: 4px;
  margin: 0 auto 40px;
  background: rgba(125, 211, 252, 0.8);
  box-shadow:
    0 0 24px rgba(125, 211, 252, 0.5),
    0 0 12px rgba(125, 211, 252, 0.3);
}
.industries .container {
  position: relative;
  z-index: 1;
}
.industries .section-label {
  color: rgba(148, 163, 184, 0.9);
}
.industries h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.industries .section-sub {
  color: rgba(148, 163, 184, 0.9);
  max-width: 620px;
  margin-bottom: 48px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  display: flex;
  flex-direction: column;
  background: rgba(248, 250, 252, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #0f172a;
}
.industry-card:hover {
  background: rgba(248, 250, 252, 0.98);
  border-color: rgba(15, 23, 42, 0.18);
  transform: translateY(-4px);
  box-shadow:
    0 12px 26px rgba(2, 6, 23, 0.2),
    0 8px 22px rgba(59, 130, 246, 0.45),
    0 0 18px rgba(59, 130, 246, 0.35);
}
.industry-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(11, 30, 58, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
}
.industry-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.industry-icon svg[fill="#60a5fa"] {
  fill: currentColor;
}
.industry-pill {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.22);
  padding: 6px 10px;
  border-radius: 999px;
}
.industry-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b1e3a;
}
.industry-card p {
  color: rgba(11, 30, 58, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.industry-highlight {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(11, 30, 58, 0.72);
  font-size: 0.85rem;
}
.industry-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(11, 30, 58, 0.8);
}

/* Section separator - dark */
.section-separator-dark {
  width: 65%;
  height: 4px;
  margin: 0 auto;
  background: #1e3a5f;
  box-shadow:
    0 0 20px rgba(30, 58, 95, 0.25),
    0 0 10px rgba(30, 58, 95, 0.15);
}

/* Pilot section - light */
.pilot {
  padding: 100px 0 64px;
  background: var(--surface);
}
.pilot .section-label {
  color: var(--text-muted);
}
.pilot h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 560px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: var(--border);
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.step-text {
  font-size: 1.05rem;
  color: var(--text);
  padding-top: 6px;
}
.step-text span {
  color: var(--text-muted);
}

/* FAQ section - light */
.faq {
  padding: 64px 0 100px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.faq .container {
  position: relative;
  z-index: 1;
}
.faq .section-label {
  color: var(--text-muted);
}
.faq h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.faq-card {
  max-width: 760px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 8px 28px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.06);
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 30px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  content: "";
}
.faq-item summary::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(148, 163, 184, 0.9);
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat;
  flex-shrink: 0;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.6);
}
.faq-item summary:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 4px;
  border-radius: 10px;
}
.faq-question {
  flex: 1;
}
.faq-answer {
  padding: 12px 0 4px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-answer-label {
  font-weight: 600;
  color: var(--text);
  margin-right: 6px;
}

/* Final CTA */
.final {
  padding: 100px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, #1e3a5f 0%, #111827 50%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.2) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.final .container {
  position: relative;
  z-index: 1;
}
.final h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.final p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.final .cta {
  background: #fff;
  color: #111827;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.final .cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 20px rgba(59, 130, 246, 0.5),
    0 0 40px rgba(59, 130, 246, 0.3);
}
.final .cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.4);
}

/* Footer */
footer {
  background: var(--footer-navy);
  color: rgba(255, 255, 255, 0.5);
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.footer-brand span {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fff;
}
.footer-social svg {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}
.footer-copy a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}
.footer-copy a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Credibility / deployments — secondary to hero (light, low contrast) */
.credibility-strip {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  padding: 0 0 16px;
  background: transparent;
  border: none;
}
.credibility-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
  gap: 0;
}
.credibility-strip__heading {
  margin: 0 0 12px;
  max-width: 22rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
  color: var(--text-muted);
}
.deployments-panel {
  /* Same horizontal bounds as `.container` / hero (full width of strip inner) */
  width: 100%;
  max-width: 100%;
  container-type: inline-size;
  container-name: deployments;
  background: rgba(248, 249, 250, 0.65);
  border-radius: 10px;
  padding: 8px 10px 7px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}
.deployment-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  margin: 0 -2px;
  padding: 2px 2px 5px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(92, 99, 112, 0.35) rgba(229, 231, 235, 0.8);
  outline: none;
}
.deployment-carousel:has(.deployment-list > :nth-child(2):last-child),
.deployment-carousel:has(.deployment-list > :only-child) {
  overflow-x: visible;
  scroll-snap-type: none;
}
.deployment-carousel:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
}
.deployment-carousel::-webkit-scrollbar {
  height: 4px;
}
.deployment-carousel::-webkit-scrollbar-track {
  background: rgba(229, 231, 235, 0.9);
  border-radius: 999px;
}
.deployment-carousel::-webkit-scrollbar-thumb {
  background: rgba(92, 99, 112, 0.35);
  border-radius: 999px;
}
.deployment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  justify-content: flex-start;
  min-height: 0;
}
.deployment-list:has(> :only-child) {
  justify-content: center;
}
.deployment-list:has(> :nth-child(2):last-child) .deployment-slide {
  flex: 1 1 calc(50% - 4px);
  width: auto;
  min-width: 0;
  max-width: none;
}
.deployment-list:has(> :nth-child(3)) .deployment-slide {
  flex: 0 0 auto;
  width: min(264px, calc(100vw - 5rem));
  min-width: min(224px, 100%);
  max-width: 312px;
}
/* After base 3-card rules: wide panel = equal columns, no horizontal scroll (must follow rules above). */
@container deployments (min-width: 38rem) {
  .deployment-carousel:has(.deployment-list > :nth-child(3)) {
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .deployment-list:has(> :nth-child(3)) .deployment-slide {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
  }
}
.deployment-slide {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(100%, 312px);
}
.deployment-card {
  /* Grid keeps the two horizontal rules aligned across sibling cards */
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  gap: 4px;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  padding: 5px 9px 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: left;
}
.deployment-card--live {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.06);
}
.deployment-card--placeholder {
  background: rgba(252, 252, 253, 0.98);
}
.deployment-skeleton {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: #e8eaed;
}
.deployment-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  animation: deployment-skeleton-wave 1.35s ease-in-out infinite;
}
@keyframes deployment-skeleton-wave {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}
.deployment-card .deployment-skeleton--value {
  flex-shrink: 0;
  width: 4.25ch;
  max-width: 100%;
  /* Match dd line box (font-size + line-height) for alignment with real values */
  height: 1.15em;
  min-height: 1.15em;
  align-self: center;
}
.deployment-skeleton--line {
  width: 100%;
  height: calc(0.62rem * 1.35);
  min-height: calc(0.62rem * 1.35);
}
.deployment-card__context--skeleton {
  margin-top: 0;
  padding-top: 5px;
  border-top: 1px solid var(--border);
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.deployment-card__context--skeleton .deployment-skeleton--line {
  margin: 0;
}
.deployment-card__primary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px 10px;
  width: 100%;
  min-height: 2.125rem;
  box-sizing: border-box;
}
.deployment-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  min-width: 0;
}
.deployment-card__live-slot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
.deployment-card__live-cue {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  line-height: 1;
  white-space: nowrap;
}
.deployment-card__live-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.22);
}
.deployment-card__geo {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}
.deployment-card__type {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(37, 99, 235, 0.06);
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.12);
}
.deployment-card__specs {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px 16px;
  margin: 0;
  padding-top: 3px;
  border-top: 1px solid var(--border);
  min-height: 2.35rem;
  box-sizing: border-box;
}
.deployment-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  justify-content: flex-start;
}
.deployment-spec dt {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text-muted-light);
}
.deployment-card .deployment-spec dd {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 0.76rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.15;
  min-height: 1.15em;
  color: var(--text-muted);
}
.deployment-card__context {
  margin-top: 0;
  align-self: start;
  width: 100%;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  font-size: 0.62rem;
  line-height: 1.35;
  color: var(--text-muted-light);
}
/* Future: partner logo — prepend inside .deployment-card */

@media (prefers-reduced-motion: reduce) {
  .deployment-carousel {
    scroll-snap-type: none;
  }
  .deployment-skeleton::after {
    animation: none;
  }
  .deployment-skeleton {
    opacity: 0.78;
  }
}

/* Fit / problem / why section shells */
.fit,
.problem,
.why {
  padding: 100px 0;
}
.fit .section-label,
.problem .section-label,
.why .section-label {
  color: var(--text-muted);
}
.fit h2,
.problem h2,
.why h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.fit .section-sub,
.problem .section-sub,
.why .section-sub {
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 48px;
}
.problem .problem-intro .section-sub {
  margin-bottom: 0;
}

/* Fit section — horizon grid + elevated comparison cards */
.fit {
  position: relative;
  overflow: hidden;
  background: #e9eef6;
}
.fit .container {
  position: relative;
  z-index: 1;
}
.fit-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    #dfe7f2 0%,
    #eef2f8 38%,
    #f5f7fb 100%
  );
}
.fit-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(26, 31, 46, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 31, 46, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(
    ellipse 90% 70% at 50% 20%,
    black 0%,
    transparent 72%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 70% at 50% 20%,
    black 0%,
    transparent 72%
  );
}
.fit-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(37, 99, 235, 0.04) 100%
  );
  pointer-events: none;
}
.fit-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  isolation: isolate;
}
.fit-card {
  border-radius: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.fit-card--positive {
  position: relative;
  z-index: 0;
  background: var(--surface);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 36px -14px rgba(15, 23, 42, 0.1);
}
.fit-card--positive::before {
  content: "";
  display: block;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  flex-shrink: 0;
}
.fit-card--negative {
  position: relative;
  z-index: 1;
  /* Opaque surface: semi-transparent + neighbor shadow read as overlapping text */
  background: #eef2f7;
  border: 1px dashed rgba(100, 116, 139, 0.4);
  box-shadow: 0 8px 28px -16px rgba(15, 23, 42, 0.07);
}
.fit-card__header {
  position: static;
  padding: 24px 28px 0;
}
.fit-card--positive .fit-card__header {
  padding-top: 22px;
}
.fit-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fit-card__badge-ico {
  flex-shrink: 0;
  opacity: 0.95;
}
.fit-card__badge--positive {
  color: #1e40af;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.fit-card__badge--negative {
  color: #64748b;
  background: rgba(100, 116, 139, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.2);
}
.fit-card__lead {
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.fit-card__lead--muted {
  color: var(--text-muted);
  font-weight: 400;
}
.fit-card--negative .fit-card__lead {
  font-size: 0.9rem;
}
.fit-card__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fit-card__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
}
.fit-card__list li > span:last-child {
  min-width: 0;
  flex: 1;
}
.fit-card__list li:first-child {
  border-top: none;
  padding-top: 0;
}
.fit-card--negative .fit-card__list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top-color: rgba(100, 116, 139, 0.12);
}
.fit-card__row-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}
.fit-card__row-icon--positive {
  background-color: rgba(37, 99, 235, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%232563eb' d='M6.47 10.78 4 8.31l.94-.94 1.53 1.53 4-4 .94.94-4.94 4.94z'/%3E%3C/svg%3E");
}
.fit-card__row-icon--negative {
  background-color: rgba(100, 116, 139, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748b' d='M5 7.25h6v1.5H5z'/%3E%3C/svg%3E");
}
/* Problem section — white field, engineered foreground story */
.problem {
  background: #fff;
}
.problem-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px 40px;
  align-items: center;
  margin-bottom: 56px;
}
.problem-intro__copy {
  min-width: 0;
}
.problem-visual {
  position: relative;
  margin: 0;
  min-width: 0;
}
/* Diagram only — no card chrome; copy + pain cards own hierarchy */
.problem-visual__diagram {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.problem-visual__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px 8px;
  align-items: center;
}
.problem-visual__strip {
  min-width: 0;
  padding: 0;
}
.problem-visual__feeds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.problem-visual__feed {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 22px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
}
.problem-visual__feed-icon {
  width: 52%;
  max-width: 1.4rem;
  height: auto;
  display: block;
  flex-shrink: 0;
  color: inherit;
}
.problem-visual__feed--hot {
  border-color: rgba(217, 119, 6, 0.45);
  background: #fffbeb;
  color: #b45309;
}
.problem-visual__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  flex-shrink: 0;
  width: 1.25rem;
}
.problem-visual__arrow-glyph {
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 500;
  opacity: 0.85;
}
.problem-visual__queue {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.problem-visual__bar {
  display: block;
  height: 6px;
  border-radius: 3px;
}
.problem-visual__bar--noise {
  width: 100%;
  background: #e5e7eb;
}
.problem-visual__bar--signal {
  width: 78%;
  background: #fecaca;
  border: 1px solid rgba(220, 38, 38, 0.28);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pain-card {
  position: relative;
  border-radius: 16px;
  padding: 26px 24px 26px 28px;
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 36px -22px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}
.pain-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: #cbd5e1;
}
.pain-card--risk::before {
  background: linear-gradient(180deg, #ea580c 0%, #f59e0b 100%);
}
.pain-card--noise::before {
  background: linear-gradient(180deg, #64748b 0%, #94a3b8 100%);
}
.pain-card--delay::before {
  background: linear-gradient(180deg, #1d4ed8 0%, #3b82f6 100%);
}
.pain-card__step {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted-light);
  margin-bottom: 12px;
}
.pain-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pain-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.62;
}

/* Problem-section "Why now" evidence strip — small, muted, footnote-style */
.problem-evidence {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.problem-evidence__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-light);
}
.problem-evidence__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}
.problem-evidence__item {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.problem-evidence__stat {
  display: inline;
}
.problem-evidence__source {
  margin-left: 6px;
  font-size: 0.7rem;
  color: var(--text-muted-light);
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  white-space: nowrap;
}
.problem-evidence__source:hover {
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .problem-evidence__list {
    grid-template-columns: 1fr;
  }
}

/* Workflow steps (How it works right side) */
.workflow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 16px;
}
.workflow-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
}
.workflow-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #93c5fd;
}
.workflow-text {
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.5;
  padding-top: 3px;
}
.outcome-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.outcome-chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
}

/* Why Rimward section — perimeter / horizon atmosphere, asymmetric layout */
.why {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    #eef2f7 0%,
    #f6f8fb 38%,
    var(--bg) 100%
  );
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Layered washes + one-way banding (not a square grid — differs from .fit) */
  background:
    radial-gradient(
      ellipse 78% 52% at 88% 10%,
      rgba(37, 99, 235, 0.07) 0%,
      transparent 54%
    ),
    radial-gradient(
      ellipse 62% 48% at 10% 92%,
      rgba(15, 23, 42, 0.05) 0%,
      transparent 56%
    ),
    radial-gradient(
      ellipse 95% 58% at 50% -18%,
      rgba(219, 234, 254, 0.5) 0%,
      transparent 58%
    ),
    repeating-linear-gradient(
      118deg,
      transparent 0,
      transparent 58px,
      rgba(26, 31, 46, 0.024) 58px,
      rgba(26, 31, 46, 0.024) 59px
    );
  mask-image: radial-gradient(
    ellipse 100% 85% at 50% 0%,
    #000 0%,
    transparent 72%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 100% 85% at 50% 0%,
    #000 0%,
    transparent 72%
  );
}
.why .container {
  position: relative;
  z-index: 1;
}
.why .section-sub {
  max-width: 640px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px 18px;
  margin-bottom: 36px;
}
.why-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  padding: 22px 22px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px -22px rgba(15, 23, 42, 0.14);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .why-card {
    transition: none;
  }
}
.why-card:hover {
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 44px -20px rgba(15, 23, 42, 0.16);
}
.why-card__viz {
  display: flex;
  align-items: center;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: #2563eb;
  opacity: 0.88;
}
.why-card__svg {
  width: 100%;
  max-width: 112px;
  height: auto;
  display: block;
}
.why-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.35;
}
.why-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.58;
}
.why-supporting {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.65;
  margin: 0;
  padding: 16px 0 0 16px;
  border-left: 2px solid rgba(37, 99, 235, 0.22);
}
@media (min-width: 901px) {
  .why-card:nth-child(1),
  .why-card:nth-child(2) {
    grid-column: span 6;
  }
  .why-card:nth-child(3) {
    grid-column: span 7;
  }
  .why-card:nth-child(4) {
    grid-column: span 5;
  }
}

/* Best-fit sectors section */
.sectors {
  padding: 100px 0 110px;
  background: var(--surface-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.sectors .container {
  position: relative;
  z-index: 1;
}
.sectors .section-label {
  color: rgba(148, 163, 184, 0.9);
}
.sectors h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* Sub-pages (legal, etc.) */
.page-sub {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-sub main {
  flex: 1;
  padding-top: 120px;
  padding-bottom: 80px;
}
.page-sub .logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-content h1 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: #0b1e3a;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #0b1e3a;
}
.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.legal-content ul {
  margin: 0 0 1rem 1.35rem;
  color: var(--text-muted);
}
.legal-content li {
  margin-bottom: 0.7rem;
  line-height: 1.7;
}
.legal-content li:last-child {
  margin-bottom: 0;
}
.legal-content a {
  color: var(--accent);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}

.careers-hero {
  padding: 8px 0 28px;
}
.careers-hero__inner {
  display: block;
}
.careers-hero__copy {
  max-width: 620px;
}
.careers-hero h1 {
  font-size: 2.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
  color: #0b1e3a;
}
.careers-hero__copy p {
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--text-muted);
}

.careers-section + .careers-section {
  padding-top: 72px;
}
.careers-section__head {
  max-width: 48ch;
  margin-bottom: 24px;
}
.careers-section__head h2 {
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #0b1e3a;
}
.careers-section__head p {
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text-muted);
}
.career-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.career-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 22px 22px 20px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 40px -28px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  transition:
    transform 0.22s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.career-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #2563eb 0%, #3b82f6 100%);
  opacity: 0.9;
}
.career-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 8px 24px -12px rgba(37, 99, 235, 0.18),
    0 24px 48px -32px rgba(15, 23, 42, 0.28);
}
.career-card--open {
  background: linear-gradient(165deg, #eff6ff 0%, #f8fafc 42%, #ffffff 100%);
  border-color: rgba(37, 99, 235, 0.22);
}
.career-card--open::before {
  width: 4px;
  top: 12px;
  bottom: 12px;
  background: linear-gradient(180deg, #1d4ed8 0%, #60a5fa 100%);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.35);
}
.career-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.career-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--text-muted);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}
.career-card__meta > .career-card__tag:first-child {
  background: rgba(37, 99, 235, 0.09);
  color: #1e3a8a;
  border-color: rgba(37, 99, 235, 0.12);
}
.career-card h3 {
  font-size: 1.12rem;
  line-height: 1.28;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #0b1e3a;
}
.career-card__criteria {
  flex: 1 1 auto;
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--text-muted);
}
.career-card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}
.career-card__cta::after {
  content: "→";
  font-size: 0.95em;
  opacity: 0.85;
  transition: transform 0.18s ease;
}
.career-card__cta:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.55);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}
.career-card__cta:hover::after {
  transform: translateX(3px);
}
.career-card__cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .career-card,
  .career-card__cta,
  .career-card__cta::after {
    transition: none;
  }
  .career-card:hover {
    transform: none;
  }
}

.manifesto-page {
  --manifesto-body: #0f172a;
  --manifesto-body-soft: #334155;
  --manifesto-accent: #2563eb;
  /* Primary reading width ~65–72ch; cap in rem for very large fonts */
  --manifesto-measure: min(47rem, 72ch);
  --manifesto-measure-narrow: min(44rem, 68ch);
  --manifesto-measure-tight: min(42rem, 65ch);
  --manifesto-hero-column: 100%;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.07), transparent 36%),
    linear-gradient(180deg, #f3f6fb 0%, #f7f8fa 38%, #edf1f7 100%);
}
/* Centered page column; text blocks stay left-aligned inside the rail */
.manifesto-page main .manifesto-hero .container.manifesto-shell,
.manifesto-page main .manifesto-content .container {
  max-width: min(75ch, 58rem);
  margin-left: auto;
  margin-right: auto;
}
.manifesto-page footer {
  position: relative;
  margin-top: 32px;
  padding-top: 48px;
  background: #151c28;
  color: rgba(255, 255, 255, 0.36);
}
/* Soft ramp from page background into footer (avoids a hard edge / empty band). */
.manifesto-page footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: clamp(96px, 14vw, 160px);
  background: linear-gradient(
    180deg,
    #edf1f7 0%,
    #edf1f7 22%,
    #e4eaf3 34%,
    #cdd8e8 48%,
    #9eacbf 62%,
    #6a7688 76%,
    #3d4654 86%,
    #252d3a 93%,
    #151c28 100%
  );
  pointer-events: none;
}
.manifesto-page .footer-main {
  padding: 22px 0;
}
.manifesto-page .footer-brand img {
  opacity: 0.92;
}
.manifesto-page .footer-brand span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}
.manifesto-page .footer-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.36);
  border-left-color: rgba(255, 255, 255, 0.08);
}
.manifesto-page .footer-social a {
  color: rgba(255, 255, 255, 0.36);
}
.manifesto-page .footer-bottom {
  padding: 14px 0 20px;
}
.manifesto-page .footer-copy,
.manifesto-page .footer-copy a {
  color: rgba(255, 255, 255, 0.24);
}
.manifesto-page .footer-copy a:hover {
  color: rgba(255, 255, 255, 0.42);
}
/* No main top padding: hero owns header offset so ::before/::after cover one surface (no seam). */
.page-sub.manifesto-page main {
  padding-top: 0;
  padding-bottom: 0;
}
.manifesto-hero {
  position: relative;
  overflow: hidden;
  /* Fixed header (~72px) + prior hero rhythm */
  padding: calc(120px + 16px) 0 64px;
}
.manifesto-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.manifesto-hero::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(15, 23, 42, 0.08), transparent 22%);
}
.manifesto-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
    linear-gradient(
      90deg,
      transparent 0,
      transparent calc(100% - 1px),
      rgba(15, 23, 42, 0.04) calc(100% - 1px)
    );
  background-size:
    26px 26px,
    88px 88px;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, black 0%, transparent 94%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 94%);
  pointer-events: none;
}
.manifesto-shell {
  position: relative;
  z-index: 1;
}
.manifesto-hero__layout {
  max-width: var(--manifesto-hero-column);
  margin-left: auto;
  margin-right: auto;
}
.manifesto-hero__copy {
  max-width: var(--manifesto-hero-column);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.manifesto-hero .badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  margin-bottom: 22px;
  color: rgba(29, 78, 216, 0.85);
  background: rgba(37, 99, 235, 0.08);
}
.manifesto-hero h1 {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 20px;
  color: #0b1e3a;
  max-width: 100%;
}
.manifesto-hero__lead {
  max-width: 100%;
  font-size: 1.22rem;
  line-height: 1.65;
  color: #0b1222;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.manifesto-hero__support {
  max-width: 100%;
}
.manifesto-kicker {
  max-width: var(--manifesto-measure);
  color: var(--manifesto-body);
  font-size: 0.97rem;
  line-height: 1.78;
  margin-top: 0;
  margin-bottom: 0;
}
.manifesto-hero__support .manifesto-kicker {
  max-width: none;
}
.manifesto-hero__copy .manifesto-kicker + .manifesto-kicker {
  margin-top: 1.15em;
}
/* Editorial pull lines: monochrome, no “card” fill — reads like a brief, not UI chrome */
.manifesto-editorial-callout {
  margin: 1.5em auto 0;
  padding: 0.2em 0 0.2em 1.15rem;
  max-width: var(--manifesto-measure-narrow);
  text-align: left;
  border: none;
  border-left: 2px solid rgba(15, 23, 42, 0.32);
  background: none;
  box-shadow: none;
  color: #0f172a;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: -0.021em;
}
/* Flush to the text column (override margin auto from above). */
.manifesto-hero__support .manifesto-editorial-callout,
.manifesto-article .manifesto-editorial-callout {
  margin-left: 0;
  margin-right: 0;
}
.manifesto-editorial-callout--tight {
  margin-top: 1.1em;
  font-size: 1.02rem;
  max-width: var(--manifesto-measure-tight);
  padding-left: 1.05rem;
}
.manifesto-section__head .manifesto-editorial-callout {
  margin-top: 0.85em;
  margin-bottom: 0;
}
.manifesto-operating__closing {
  margin: 1.5rem auto 0;
  max-width: var(--manifesto-measure);
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  color: var(--manifesto-body-soft);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
}
.manifesto-kicker strong {
  color: #0b1e3a;
}
.manifesto-principles {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.manifesto-principles li {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px -22px rgba(15, 23, 42, 0.3);
}
.manifesto-panel {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(165deg, #0f172a 0%, #132a52 56%, #1d4ed8 100%);
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: #eff6ff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 24px 52px -32px rgba(15, 23, 42, 0.42);
}
.manifesto-panel__label,
.manifesto-callout__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.84);
}
.manifesto-panel__label::before,
.manifesto-callout__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(191, 219, 254, 0.9);
}
.manifesto-panel__quote {
  font-size: 1.72rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #fff;
}
.manifesto-panel__body {
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.94rem;
  line-height: 1.7;
}
.manifesto-panel .manifesto-mini-list {
  margin-top: 20px;
}
.manifesto-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.manifesto-panel__item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.manifesto-panel__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.92);
}
.manifesto-panel__item span {
  display: block;
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.85rem;
  line-height: 1.45;
}
.manifesto-content {
  padding-top: 28px;
  /* Clear footer's ::before ramp (up to ~160px) so last section shadows aren't covered */
  padding-bottom: 136px;
}
.manifesto-section {
  padding-bottom: 52px;
}
.manifesto-section + .manifesto-section:not(.manifesto-section--ambition) {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 40px;
}
.manifesto-section--what + .manifesto-section--operating {
  border-top: none;
  padding-top: 56px;
}
.manifesto-section--operating + .manifesto-section--ambition {
  padding-top: 36px;
  margin-top: 12px;
}
.manifesto-section--what {
  margin-top: 4px;
}
.manifesto-section--what .manifesto-section__head,
.manifesto-section--what .manifesto-article,
.manifesto-section--what .manifesto-context-principles {
  max-width: var(--manifesto-measure);
  margin-left: auto;
  margin-right: auto;
}
.manifesto-section--article.manifesto-section--what .container {
  padding: 22px 28px 28px;
  border-radius: 18px;
  border: none;
  background:
    radial-gradient(
      ellipse 120% 80% at 50% 0%,
      rgba(37, 99, 235, 0.06),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #f0f4fc 0%,
      #e9f0f9 48%,
      #e2eaf5 100%
    );
  box-shadow: none;
}
.manifesto-section--operating .manifesto-section__head {
  margin-bottom: 22px;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--manifesto-measure);
}
.manifesto-section--operating .loop-grid--manifesto {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: var(--manifesto-measure);
}
.manifesto-section__intro-line {
  margin: 0 0 6px;
  max-width: var(--manifesto-measure);
  color: #0b1e3a;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.manifesto-section--operating .manifesto-section__intro-line {
  font-weight: 400;
}
.manifesto-section--problem .container {
  padding: 32px 34px 10px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(241, 245, 249, 0.92) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 26px 54px -46px rgba(15, 23, 42, 0.34);
}
.manifesto-section--standard .manifesto-section__head {
  max-width: 40rem;
}
.manifesto-section--article .container {
  padding-top: 8px;
}
.manifesto-section--article .manifesto-section__head {
  max-width: var(--manifesto-measure);
  margin-left: auto;
  margin-right: auto;
}
.manifesto-section__head {
  max-width: var(--manifesto-measure);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: left;
}
.manifesto-section__title {
  font-size: 2.08rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 10px;
  color: #0b1e3a;
}
.manifesto-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 24px;
  align-items: start;
}
.manifesto-body {
  display: grid;
  gap: 18px;
}
.manifesto-stack {
  margin-bottom: 24px;
}
.manifesto-body p {
  color: #334155;
  font-size: 0.99rem;
  line-height: 1.8;
}
.manifesto-section--problem .manifesto-body p:first-child {
  font-size: 1.04rem;
  line-height: 1.78;
  color: #243244;
}
.manifesto-callout {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0b1e3a 0%, #10254a 100%);
  color: #e2e8f0;
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.48);
}
.manifesto-callout__quote {
  font-size: 1.56rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
}
.manifesto-mini-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.manifesto-mini-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(226, 232, 240, 0.84);
  font-size: 0.9rem;
  line-height: 1.55;
}
.manifesto-mini-list strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.manifesto-article {
  max-width: var(--manifesto-measure);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 1.55em;
  text-align: left;
}
.manifesto-article p {
  color: var(--manifesto-body);
  font-size: 0.98rem;
  line-height: 1.82;
}
.manifesto-article .manifesto-editorial-callout {
  margin-top: 0.35em;
  margin-bottom: 0.15em;
}
.manifesto-pullquote {
  margin: 6px 0;
  padding: 8px 0 8px 24px;
  border-left: 3px solid rgba(37, 99, 235, 0.34);
  color: #0b1e3a;
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.03em;
}
.manifesto-pullquote--center {
  max-width: 44rem;
  margin: 24px auto 22px;
}
.manifesto-context-principles {
  list-style: none;
  margin: 36px auto 12px;
  padding: 0;
  max-width: var(--manifesto-measure);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 14px;
}
.manifesto-context-principles__item {
  flex: 1 1 200px;
  max-width: 100%;
  margin: 0;
  padding: 16px 18px 17px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 36px -30px rgba(15, 23, 42, 0.28);
}
.manifesto-context-principles__label {
  display: block;
  margin-bottom: 6px;
  color: #0b1e3a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.manifesto-context-principles__text {
  display: block;
  color: var(--manifesto-body-soft);
  font-size: 0.91rem;
  line-height: 1.52;
  letter-spacing: -0.01em;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.manifesto-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 40px -30px rgba(15, 23, 42, 0.22);
}
.manifesto-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.manifesto-card h3,
.loop-card h3,
.manifesto-checklist h3,
.manifesto-rejects h3 {
  font-size: 1.02rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #0b1e3a;
}
.manifesto-card p,
.loop-card p,
.manifesto-checklist p,
.manifesto-rejects p,
.manifesto-product p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.62;
}
.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.loop-grid--manifesto {
  gap: 14px;
  align-items: stretch;
}
.loop-card:nth-child(4) {
  grid-column: 1;
}
.loop-card:nth-child(5) {
  grid-column: 2;
}
.loop-card {
  position: relative;
  padding: 20px 18px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 14px 34px -28px rgba(15, 23, 42, 0.24);
}
.manifesto-page .loop-grid--manifesto .loop-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 23, 42, 0.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 10px 32px -32px rgba(15, 23, 42, 0.18);
}
.loop-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb 0%, #7dd3fc 100%);
}
.manifesto-page .loop-grid--manifesto .loop-card::before {
  left: 20px;
  top: 18px;
  width: 22px;
  height: 2px;
  opacity: 0.35;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.65) 0%, rgba(125, 211, 252, 0.5) 100%);
}
.loop-card__step {
  display: block;
  margin-top: 14px;
  margin-bottom: 16px;
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.manifesto-page .loop-grid--manifesto .loop-card__step {
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(100, 116, 139, 0.85);
}
.manifesto-page .loop-grid--manifesto .loop-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-bottom: 6px;
  line-height: 1.28;
}
.manifesto-page .loop-grid--manifesto .loop-card p {
  flex-grow: 1;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--manifesto-body-soft);
}
.manifesto-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 28px 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #15346b 100%);
  border: 1px solid rgba(96, 165, 250, 0.16);
  box-shadow: 0 24px 52px -36px rgba(15, 23, 42, 0.45);
}
.manifesto-product__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(191, 219, 254, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.manifesto-product__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(191, 219, 254, 0.95);
}
.manifesto-product h3 {
  font-size: 1.55rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #fff;
}
.manifesto-product p {
  max-width: 46ch;
  color: rgba(226, 232, 240, 0.88);
}
.manifesto-product__metric {
  min-width: 220px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.manifesto-product__metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.92);
}
.manifesto-product__metric span {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.45;
}
.manifesto-checklist,
.manifesto-rejects {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.manifesto-checklist li,
.manifesto-rejects li {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 36px -30px rgba(15, 23, 42, 0.2);
}
.manifesto-checklist li {
  position: relative;
  padding-left: 54px;
}
.manifesto-checklist li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(125, 211, 252, 0.2));
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.18);
}
.manifesto-checklist li::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 27px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #1d4ed8;
  border-bottom: 2px solid #1d4ed8;
  transform: rotate(40deg);
}
.manifesto-rejects li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 252, 0.96));
}
.manifesto-section--boundaries .container {
  padding: 34px 34px 38px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(247, 248, 250, 0.98) 0%,
    rgba(239, 242, 246, 0.94) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 28px 56px -46px rgba(15, 23, 42, 0.28);
}
.manifesto-boundaries {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  align-items: start;
}
.manifesto-boundaries__note {
  padding: 20px 22px 20px 24px;
  border-left: 3px solid rgba(15, 23, 42, 0.2);
  background: rgba(255, 255, 255, 0.56);
  border-radius: 0 18px 18px 0;
}
.manifesto-boundaries__note-label {
  margin-bottom: 12px;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.manifesto-boundaries__note-text {
  color: #0b1e3a;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.02em;
}
.manifesto-boundaries__list {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}
.manifesto-boundaries__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}
.manifesto-boundaries__index {
  color: rgba(15, 23, 42, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.manifesto-boundaries__text {
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.manifesto-section--ambition {
  padding-top: 0;
  padding-bottom: 36px;
  margin-top: 4px;
}
.manifesto-section--ambition .container {
  padding-top: 0;
  padding-bottom: 40px;
  border-top: none;
}
.manifesto-ambition {
  margin: 8px auto 0;
  padding: 40px 36px 36px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid rgba(37, 99, 235, 0.11);
  background: linear-gradient(
    165deg,
    rgba(37, 99, 235, 0.06) 0%,
    rgba(255, 255, 255, 0.72) 44%,
    rgba(248, 250, 252, 0.98) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 24px 52px -42px rgba(15, 23, 42, 0.3);
}
.manifesto-ambition .manifesto-section__head {
  margin-bottom: 22px;
}
.manifesto-section--ambition .manifesto-article {
  max-width: min(43rem, 68ch);
  margin-left: auto;
  margin-right: auto;
}
.manifesto-ambition__lead {
  color: #050a14;
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.032em;
}
.manifesto-section--ambition .manifesto-article p:not(.manifesto-ambition__lead) {
  color: var(--manifesto-body-soft);
  font-size: 0.97rem;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin-top: 48px;
  }
  .hero-card-body {
    height: 260px;
  }
  .radar {
    width: 240px;
    height: 240px;
  }
  .value-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefit-list {
    padding-top: 16px;
  }
  .alert-card-body {
    grid-template-columns: 1fr;
  }
  .alert-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    justify-self: stretch;
  }
  .alert-controls .control-group:last-child {
    grid-column: auto;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .problem-intro {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 48px;
  }
  .problem-visual__diagram {
    max-width: 400px;
    margin: 0 auto;
  }
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .why-card:nth-child(n) {
    grid-column: 1 / -1;
  }
  .career-grid {
    grid-template-columns: 1fr;
  }
  .manifesto-columns,
  .manifesto-product,
  .manifesto-boundaries {
    grid-template-columns: 1fr;
  }
  .loop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .loop-card:nth-child(4),
  .loop-card:nth-child(5) {
    grid-column: auto;
  }
  .manifesto-context-principles__item {
    flex: 1 1 calc(50% - 8px);
  }
  .manifesto-grid,
  .manifesto-checklist,
  .manifesto-rejects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .header-container {
    gap: 16px;
  }
  .site-nav {
    gap: 14px;
  }
  .site-nav__link {
    padding: 2px 0 4px;
    font-size: 0.74rem;
  }
  .hero {
    padding: 140px 0 32px;
  }
  .credibility-strip {
    margin-top: 28px;
    padding-bottom: 12px;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .industries {
    padding: 0 0 90px;
  }
  .industries-separator {
    width: 100%;
    margin-bottom: 32px;
  }
  .section-separator-dark {
    width: 100%;
  }
  .industry-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .value,
  .pilot {
    padding: 72px 0;
  }
  .faq {
    padding: 56px 0 80px;
  }
  .value h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .value .section-sub {
    margin-bottom: 32px;
  }
  .pilot h2,
  .faq h2,
  .industries h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
  .industries .section-sub {
    margin-bottom: 36px;
  }
  .alert-card {
    min-height: 0;
  }
  .alert-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    justify-self: stretch;
  }
  .fit,
  .problem,
  .why {
    padding: 72px 0;
  }
  .problem-intro {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 44px;
  }
  .problem-visual__diagram {
    max-width: 400px;
    margin: 0 auto;
  }
  .fit h2,
  .problem h2,
  .why h2 {
    font-size: 1.6rem;
  }
  .careers-hero h1 {
    font-size: 2.2rem;
  }
  .careers-section__head h2 {
    font-size: 1.55rem;
  }
  .manifesto-hero h1 {
    font-size: 2.45rem;
  }
  .manifesto-section__title {
    font-size: 1.8rem;
  }
  .manifesto-product h3 {
    font-size: 1.35rem;
  }
  .manifesto-ambition {
    margin-top: 20px;
    padding: 32px 22px 32px;
  }
  .manifesto-ambition__lead {
    font-size: 1.16rem;
    line-height: 1.52;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .sectors {
    padding: 72px 0 90px;
  }
  .sectors h2 {
    font-size: 1.6rem;
  }
  .final {
    padding: 80px 0 140px;
  }
  .final h2 {
    font-size: 1.6rem;
  }
  .footer-main {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    gap: 12px;
  }
  .footer-tagline {
    padding-left: 0;
    border-left: none;
  }
}
@media (max-width: 560px) {
  .header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-container > .logo-row,
  .header-container > .site-nav,
  .header-container > .lang-switcher {
    grid-column: auto;
    justify-self: center;
  }
  .logo-row {
    width: 100%;
    justify-content: center;
  }
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }
  .hero {
    padding-top: 176px;
  }
  .page-sub main {
    padding-top: 164px;
  }
  .manifesto-hero {
    padding-top: calc(164px + 16px);
  }
  .manifesto-section--problem .container {
    padding: 26px 20px 8px;
  }
  .manifesto-section--boundaries .container {
    padding: 26px 20px 30px;
  }
  .manifesto-grid,
  .manifesto-checklist,
  .manifesto-rejects,
  .manifesto-panel__grid {
    grid-template-columns: 1fr;
  }
  .manifesto-context-principles__item {
    flex: 1 1 100%;
  }
  .loop-grid {
    grid-template-columns: 1fr;
  }
  .manifesto-boundaries__item {
    gap: 12px;
  }
  .manifesto-boundaries__text {
    font-size: 0.98rem;
  }
}
