:root {
  --bg: #f7fbff;
  --bg-alt: #eef5fd;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-soft: #f2f8ff;
  --text: #101d32;
  --text-strong: #08111f;
  --muted: #60738f;
  --muted-strong: #445871;
  --line: rgba(142, 176, 220, 0.34);
  --line-strong: rgba(94, 141, 205, 0.45);
  --primary: #2b86ff;
  --primary-strong: #124ece;
  --accent: #ff8e2b;
  --accent-soft: rgba(255, 142, 43, 0.18);
  --shadow-lg: 0 36px 90px rgba(27, 67, 118, 0.14);
  --shadow-md: 0 18px 44px rgba(32, 69, 118, 0.12);
  --shadow-sm: 0 12px 24px rgba(32, 69, 118, 0.08);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1280px;
  --header-h: 92px;
  --transition: 260ms cubic-bezier(.2,.8,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 4%, rgba(85, 181, 255, 0.17), transparent 25%),
    radial-gradient(circle at 92% 0%, rgba(255, 165, 82, 0.08), transparent 18%),
    radial-gradient(circle at 84% 34%, rgba(88, 166, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f4f9ff 42%, #f8fbff 100%);
  font-family: Inter, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 153, 71, 0.08), transparent 20%),
    radial-gradient(circle at 72% 60%, rgba(92, 152, 255, 0.08), transparent 18%);
  filter: blur(40px);
}

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

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

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

::selection {
  background: rgba(43, 134, 255, 0.16);
  color: var(--text-strong);
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 116px 0;
  position: relative;
}

.section-tight {
  padding-top: 84px;
}

.surface-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(232, 243, 255, 0.78), rgba(245, 250, 255, 0.9));
  border-top: 1px solid rgba(153, 188, 230, 0.20);
  border-bottom: 1px solid rgba(153, 188, 230, 0.20);
  z-index: -1;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(157, 185, 224, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 185, 224, 0.14) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at center, black 0%, rgba(0, 0, 0, 0.82) 58%, transparent 100%);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--text-strong);
  border: 1px solid var(--line-strong);
  z-index: 2000;
}

.page-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--primary), #6fd9ff, var(--accent));
  z-index: 1200;
  box-shadow: 0 0 16px rgba(43, 134, 255, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(247, 251, 255, 0.78);
  border-bottom-color: rgba(176, 200, 229, 0.42);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(32, 69, 118, 0.08);
}

.nav-wrap {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  flex: none;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text-strong);
}

.brand-tag {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.site-nav a,
.footer-links a {
  position: relative;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-strong);
  background: rgba(43, 134, 255, 0.08);
}

.site-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--text-strong);
}

.site-nav a[aria-current="page"]::after,
.footer-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43, 134, 255, 0), rgba(43, 134, 255, 0.92), rgba(255, 142, 43, 0.82));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
  box-shadow: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(21, 73, 160, 0.12);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #49b6ff 0%, #2b86ff 45%, #144cc8 100%);
  border-color: rgba(23, 93, 204, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(30, 92, 209, 0.24);
}

.btn-secondary {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(176, 200, 229, 0.72);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
  border-color: rgba(43, 134, 255, 0.34);
}

.btn-sm {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(176, 200, 229, 0.7);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  padding: 0;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-strong);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 31px; }

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4377bc;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(43, 134, 255, 0.15), rgba(43, 134, 255, 0.85));
}

.hero {
  padding-top: 34px;
  padding-bottom: 84px;
}

.hero-grid,
.split-grid,
.applications-grid,
.footer-grid {
  display: grid;
  gap: 42px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 5.9vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text-strong);
}

.hero-copy h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #0f3f97 0%, #278aff 58%, #ff8e2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-intro,
.lead,
.copy-block p,
.card p,
.application-card p,
.person-body p,
.footer-copy,
.placeholder-copy {
  color: var(--muted);
}

.hero-intro {
  max-width: 56ch;
  font-size: 1.12rem;
  margin: 0 0 28px;
}

.hero-actions,
.cta-actions,
.placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(191, 214, 244, 0.84);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,250,255,0.96));
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.stat-card:hover,
.stat-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(43, 134, 255, 0.28);
  box-shadow: var(--shadow-md);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 184, 255, 0.18), transparent 72%);
  pointer-events: none;
}

.stat-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6184b0;
}

.stat-value {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.04em;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 28ch;
}

.stat-meter {
  display: block;
  margin-top: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(166, 196, 233, 0.28);
  overflow: hidden;
}

.stat-meter span {
  display: block;
  width: var(--fill, 75%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #77d8ff, var(--accent));
  transition: width 1400ms cubic-bezier(.2,.8,.2,1);
}

.js .stat-meter span {
  width: 0;
}

.stat-card.in-view .stat-meter span {
  width: var(--fill, 75%);
}

.hero-visual {
  position: relative;
}

.hero-stage {
  position: relative;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 34px;
  border: 1px solid rgba(191, 214, 244, 0.9);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 38%), rgba(104, 212, 255, 0.16), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255, 173, 92, 0.10), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(241,248,255,0.96));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(204, 221, 244, 0.84);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 12% auto auto 10%;
  width: 42%;
  height: 42%;
  background: radial-gradient(circle, rgba(255, 142, 43, 0.16), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-illustration {
  width: 100%;
  height: auto;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) scale(1.015);
  transition: transform 180ms ease-out;
  filter: drop-shadow(0 28px 40px rgba(19, 66, 125, 0.08));
}

.orbiter {
  position: absolute;
  z-index: 2;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(198, 216, 238, 0.9);
  box-shadow: 0 12px 24px rgba(23, 73, 148, 0.10);
  font-size: 0.87rem;
  font-weight: 700;
  color: #2b4d7a;
  backdrop-filter: blur(12px);
  animation: float-card 7s ease-in-out infinite;
}

.orbiter-a { top: 10%; left: 3%; }
.orbiter-b { top: 16%; right: 6%; animation-delay: -2.2s; }
.orbiter-c { bottom: 9%; left: 14%; animation-delay: -4.4s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.trusted-strip {
  padding: 8px 0 18px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(191,214,244,0.9);
  box-shadow: var(--shadow-sm);
}

.trusted-label {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--muted-strong);
}

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

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(214, 228, 245, 0.9);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,250,255,0.95));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.logo-card:hover,
.logo-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(43,134,255,0.32);
  box-shadow: var(--shadow-sm);
}

.logo-card img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

.split-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
}

.split-grid-wide {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.copy-block h2,
.section-heading h2,
.cta-copy h2,
.placeholder-wrap h1 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.copy-block p {
  margin: 0 0 20px;
  font-size: 1.02rem;
}

.copy-block .lead,
.section-heading .lead {
  font-size: 1.12rem;
  max-width: 64ch;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading .lead {
  margin: 0;
}

.progress-stack,
.application-stack,
.mini-card-grid {
  display: grid;
  gap: 16px;
}

.progress-card,
.application-card,
.mini-card,
.card,
.person-card,
.cta-panel,
.placeholder-wrap {
  border: 1px solid rgba(191, 214, 244, 0.9);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,249,255,0.98));
  box-shadow: var(--shadow-sm);
}

.progress-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 22px 20px;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.progress-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.progress-card-active {
  border-color: rgba(43, 134, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,246,255,1)),
    radial-gradient(circle at top right, rgba(255,142,43,0.08), transparent 32%);
}

.progress-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(43,134,255,0.12), rgba(255,142,43,0.10));
  color: var(--primary-strong);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.progress-card h3,
.application-card h3,
.mini-card h3,
.card h3,
.person-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--text-strong);
}

.progress-card p,
.application-card p,
.mini-card p,
.card p {
  margin: 0;
  color: var(--muted);
}

.image-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(191, 214, 244, 0.9);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,250,255,0.98));
  box-shadow: var(--shadow-lg);
  transform: translateZ(0);
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-xl) - 12px);
  border: 1px solid rgba(218, 230, 245, 0.9);
  pointer-events: none;
  z-index: 1;
}

.image-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  border-radius: calc(var(--radius-xl) - 16px);
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}

.image-card:hover img {
  transform: scale(1.015);
}

.image-card figcaption {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.5;
}

.image-card-large {
  align-self: stretch;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.card {
  padding: 26px 24px;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 134, 255, 0.32);
  box-shadow: var(--shadow-md);
}

.card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43, 134, 255, 0.09);
  color: var(--primary-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-meta {
  margin-top: 16px !important;
  font-size: 0.9rem;
  color: #51709a !important;
  font-weight: 700;
}

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

.mini-card-grid {
  margin-top: 24px;
}

.mini-card {
  padding: 20px 20px 18px;
  border-radius: var(--radius-md);
}

.applications-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.applications-visual {
  display: grid;
  gap: 18px;
}

.image-card-secondary {
  padding: 14px;
  border-radius: 28px;
}

.application-stack {
  margin-top: 24px;
}

.application-card {
  padding: 22px;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.application-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43,134,255,0.32);
  box-shadow: var(--shadow-md);
}

.chip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip-tags span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(191,214,244,0.9);
  color: #44658c;
  font-size: 0.86rem;
  font-weight: 700;
}

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

.person-card {
  overflow: hidden;
  border-radius: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.person-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43,134,255,0.34);
  box-shadow: var(--shadow-md);
}

.person-image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,142,43,0.16), transparent 30%),
    linear-gradient(180deg, #eef6ff, #ffffff);
}

.person-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

.person-card:hover .person-image-wrap img {
  transform: scale(1.04);
}

.person-body {
  padding: 22px 22px 24px;
}

.person-role {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(43, 134, 255, 0.08);
  color: var(--primary-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  color: #f7fbff;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 161, 94, 0.18), transparent 20%),
    radial-gradient(circle at 20% 24%, rgba(85, 181, 255, 0.2), transparent 18%),
    linear-gradient(135deg, #08111f 0%, #102856 42%, #0f4ab9 100%);
  border-color: rgba(118, 181, 255, 0.22);
  box-shadow: 0 28px 60px rgba(8, 26, 58, 0.26);
}

.cta-copy h2,
.cta-copy p,
.cta-panel .eyebrow,
.site-footer,
.site-footer .brand-name,
.site-footer .brand-tag,
.site-footer a,
.footer-copy,
.footer-meta p {
  color: #f1f7ff;
}

.cta-panel .eyebrow::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.16), rgba(111, 218, 255, 0.92));
}

.cta-copy p {
  margin: 0;
  max-width: 60ch;
  color: rgba(241,247,255,0.82);
}

.site-footer {
  margin-top: 92px;
  padding-top: 52px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 160, 92, 0.10), transparent 18%),
    linear-gradient(180deg, #0a1324 0%, #07101c 100%);
  border-top: 1px solid rgba(118, 181, 255, 0.14);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr) auto;
  align-items: start;
  gap: 28px;
  padding-bottom: 30px;
}

.brand-footer .brand-name,
.brand-footer .brand-tag {
  color: #f1f7ff;
}

.footer-copy {
  margin: 16px 0 0;
  max-width: 50ch;
  color: rgba(241,247,255,0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  color: rgba(241,247,255,0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.footer-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-link {
  color: rgba(241,247,255,0.86);
  font-weight: 700;
}

.footer-meta {
  padding: 18px 0 36px;
  border-top: 1px solid rgba(118,181,255,0.12);
}

.footer-meta p {
  margin: 0;
  color: rgba(241,247,255,0.64);
  font-size: 0.94rem;
}

.placeholder-main {
  min-height: calc(100vh - 260px);
  display: grid;
  align-items: center;
}

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

.placeholder-wrap {
  max-width: 760px;
  padding: 42px;
  border-radius: 34px;
}

.placeholder-wrap h1 {
  margin-bottom: 12px;
}

.placeholder-actions {
  margin-top: 24px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 720ms cubic-bezier(.2,.8,.2,1), transform 720ms cubic-bezier(.2,.8,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

@media (max-width: 1200px) {
  .cards-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-grid,
  .applications-grid,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    max-width: 760px;
    margin-inline: auto;
  }

  .footer-actions {
    justify-items: start;
  }
}

@media (max-width: 980px) {
  :root { --header-h: 82px; }

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

  .nav-cta {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(191,214,244,0.95);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav a[aria-current="page"]::after {
    left: 16px;
    right: auto;
    width: 26px;
    bottom: 8px;
  }

  .stat-row,
  .team-grid,
  .figure-grid {
    grid-template-columns: 1fr;
  }

  .trusted-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .trusted-logos {
    grid-template-columns: 1fr;
  }

  .orbiter {
    font-size: 0.82rem;
  }

  .orbiter-a { top: 9%; left: 4%; }
  .orbiter-b { top: 10%; right: 6%; }
  .orbiter-c { bottom: 8%; left: 8%; }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .copy-block h2,
  .section-heading h2,
  .cta-copy h2,
  .placeholder-wrap h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-intro,
  .lead,
  .copy-block p,
  .card p,
  .application-card p,
  .person-body p,
  .placeholder-copy {
    font-size: 0.98rem;
  }

  .hero-actions,
  .cta-actions,
  .placeholder-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-card,
  .card,
  .application-card,
  .mini-card,
  .progress-card,
  .person-body,
  .placeholder-wrap,
  .cta-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .progress-card {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .progress-step {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .image-card {
    padding: 12px;
    border-radius: 26px;
  }

  .image-card::before {
    inset: 10px;
    border-radius: 18px;
  }

  .site-footer {
    margin-top: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* === Compact light premium homepage refinement === */

:root {
  --container: 1300px;
  --header-h: 88px;
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --shadow-lg: 0 28px 72px rgba(27, 67, 118, 0.12);
  --shadow-md: 0 16px 38px rgba(32, 69, 118, 0.11);
  --shadow-sm: 0 10px 22px rgba(32, 69, 118, 0.08);
}

.compact-home .section {
  padding: 96px 0;
}

.compact-home .hero {
  padding-top: 18px;
  padding-bottom: 64px;
}

.compact-home .hero-grid {
  gap: 34px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.compact-home .hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.95rem, 5.25vw, 4.8rem);
}

.compact-home .hero-intro {
  max-width: 52ch;
  font-size: 1.06rem;
  margin-bottom: 24px;
}

.compact-home .hero-actions {
  gap: 12px;
}

.compact-home .stat-row {
  margin-top: 28px;
  gap: 14px;
}

.compact-home .stat-card {
  padding: 20px 20px 18px;
}

.compact-home .stat-label {
  max-width: none;
  font-size: 0.92rem;
}

.compact-home .hero-stage {
  padding: 18px;
  border-radius: 30px;
}

.compact-home .trusted-strip {
  padding: 0 0 12px;
}

.compact-home .trusted-grid {
  gap: 20px;
  padding: 18px 22px;
  border-radius: 24px;
}

.compact-home .trusted-label {
  font-size: 0.95rem;
}

.compact-home .logo-card {
  min-height: 76px;
  padding: 16px 18px;
}

.compact-home .logo-card img {
  max-height: 30px;
}

.section-shell-wrap {
  padding-top: 26px;
}

.section-shell {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 36px;
  border: 1px solid rgba(191, 214, 244, 0.96);
  background:
    radial-gradient(circle at 0% 0%, rgba(98, 186, 255, 0.10), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(255, 157, 82, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,248,255,0.96));
  box-shadow: var(--shadow-lg);
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(43,134,255,0.03) 0%, transparent 28%, transparent 72%, rgba(255,142,43,0.03) 100%);
  pointer-events: none;
}

.section-shell::after {
  content: "";
  position: absolute;
  inset: auto -12% -32% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 188, 255, 0.16), transparent 72%);
  filter: blur(10px);
  animation: beamShift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes beamShift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
  100% { transform: translate3d(-34px, -22px, 0) scale(1.08); opacity: 1; }
}

.system-top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.compact-home .lead-strong {
  margin-bottom: 16px;
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--text-strong);
  max-width: 36ch;
}

.insight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.insight-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(192, 214, 243, 0.94);
  background: rgba(255,255,255,0.86);
  color: #3f5f87;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.image-card-wide img {
  aspect-ratio: 2.65 / 1;
  object-fit: cover;
}

.image-card-compact img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card {
  isolation: isolate;
}

.image-card::after {
  content: "";
  position: absolute;
  top: -28%;
  left: -42%;
  width: 34%;
  height: 160%;
  background: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,0.42), rgba(255,255,255,0));
  transform: translateX(0) rotate(18deg);
  opacity: 0;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1), opacity 280ms ease;
  pointer-events: none;
  z-index: 3;
}

.image-card:hover::after {
  opacity: 1;
  transform: translateX(360%) rotate(18deg);
}

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

.stack-card {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(191, 214, 244, 0.94);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,249,255,0.98));
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.stack-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43,134,255,0), rgba(43,134,255,0.9), rgba(255,142,43,0.9));
  transform: scaleX(0.34);
  transform-origin: left center;
  transition: transform 360ms ease;
}

.stack-card:hover,
.stack-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(43, 134, 255, 0.28);
  box-shadow: var(--shadow-md);
}

.stack-card:hover::before,
.stack-card.is-active::before {
  transform: scaleX(1);
}

.stack-card-featured {
  background:
    radial-gradient(circle at top right, rgba(255,142,43,0.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(238,246,255,0.98));
  border-color: rgba(43, 134, 255, 0.34);
}

.stack-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(43,134,255,0.12), rgba(255,142,43,0.10));
  color: var(--primary-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.stack-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.24;
  color: var(--text-strong);
}

.stack-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.impact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  margin-top: 22px;
  align-items: start;
}

.impact-points {
  display: grid;
  gap: 14px;
}

.impact-points .mini-card {
  height: 100%;
}

.impact-points .mini-card h3 {
  font-size: 1.05rem;
}

.compact-home .cards-grid-four {
  gap: 16px;
  margin-bottom: 24px;
}

.compact-home .card {
  padding: 22px 20px;
}

.compact-home .card h3 {
  font-size: 1.12rem;
}

.tech-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.image-card-story img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.story-panel,
.platform-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(118, 181, 255, 0.18);
  box-shadow: 0 22px 48px rgba(8, 26, 58, 0.16);
}

.story-panel {
  min-height: 100%;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f3f8ff;
  background:
    linear-gradient(180deg, rgba(8,17,31,0.26) 0%, rgba(8,17,31,0.60) 42%, rgba(8,17,31,0.88) 100%),
    url("../images/fabrication.webp") center center / cover no-repeat;
}

.story-panel::before,
.platform-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(111, 218, 255, 0.16), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(255, 161, 94, 0.14), transparent 22%);
  pointer-events: none;
}

.story-panel > *,
.platform-panel > * {
  position: relative;
  z-index: 1;
}

.story-panel p,
.platform-panel p {
  color: rgba(241,247,255,0.82);
}

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

.story-metrics div {
  padding: 16px 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(160, 206, 255, 0.22);
  background: rgba(7, 17, 32, 0.28);
  backdrop-filter: blur(10px);
}

.story-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.story-metrics span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(241,247,255,0.78);
}

.story-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(160, 206, 255, 0.24);
  background: rgba(7, 17, 32, 0.26);
  color: #dff3ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-panel h3,
.platform-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.story-panel p,
.platform-panel p {
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #f7fbff;
  font-weight: 700;
}

.text-link::after {
  content: "→";
  transition: transform 220ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.apps-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 30px;
  align-items: start;
}

.apps-visual {
  display: grid;
  gap: 18px;
}

.platform-panel {
  padding: 28px 26px;
  color: #f3f8ff;
  background:
    linear-gradient(180deg, rgba(8,17,31,0.28) 0%, rgba(8,17,31,0.60) 42%, rgba(8,17,31,0.88) 100%),
    url("../images/applications-platform.webp") center center / cover no-repeat;
}

.platform-panel .btn-secondary {
  margin-top: 18px;
  background: rgba(255,255,255,0.92);
}

.leadership-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.leadership-heading {
  margin-bottom: 0;
  max-width: 900px;
}

.team-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid-four .person-card {
  border-radius: 26px;
}

.team-grid-four .person-image-wrap {
  aspect-ratio: 4 / 4.7;
}

.person-image-light {
  background:
    radial-gradient(circle at top right, rgba(255,142,43,0.18), transparent 28%),
    linear-gradient(180deg, #eef6ff, #ffffff);
}

.person-image-dark {
  background:
    radial-gradient(circle at top left, rgba(111,218,255,0.16), transparent 28%),
    linear-gradient(180deg, #101928, #1a2435);
}

.person-image-dark img {
  object-position: center top;
}

.person-image-light img {
  object-position: center top;
}

.compact-home .person-body {
  padding: 18px 18px 20px;
}

.compact-home .person-body h3 {
  font-size: 1.06rem;
}

.compact-home .person-body p {
  font-size: 0.92rem;
}

.compact-home .cta-panel {
  padding: 30px;
  gap: 22px;
}

.compact-home .site-footer {
  margin-top: 74px;
  padding-top: 46px;
}

.compact-home .footer-grid {
  gap: 24px;
  padding-bottom: 24px;
}

.compact-home .footer-copy {
  margin-top: 14px;
}

@media (max-width: 1200px) {
  .system-top,
  .impact-band,
  .tech-story-grid,
  .apps-shell,
  .leadership-head {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .compact-home .section {
    padding: 88px 0;
  }

  .compact-home .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .stack-grid,
  .story-metrics {
    grid-template-columns: 1fr;
  }

  .compact-home .trusted-logos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .compact-home .section {
    padding: 76px 0;
  }

  .compact-home .hero {
    padding-top: 10px;
    padding-bottom: 52px;
  }

  .compact-home .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.75rem);
  }

  .section-shell {
    padding: 22px;
    border-radius: 28px;
  }

  .stack-card,
  .story-panel,
  .platform-panel,
  .compact-home .cta-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .team-grid-four {
    grid-template-columns: 1fr;
  }

  .compact-home .logo-card img {
    max-height: 26px;
  }

  .compact-home .site-footer {
    margin-top: 62px;
  }
}

/* === Client feedback refinement v3 === */

.site-header.scrolled {
  background: rgba(249, 252, 255, 0.88);
  border-bottom-color: rgba(176, 200, 229, 0.50);
  box-shadow: 0 14px 34px rgba(32, 69, 118, 0.09);
}

.nav-wrap {
  gap: 16px;
}

.brand-lockup {
  display: grid;
  gap: 6px;
  align-items: start;
}

.brand-lockup .brand-logo {
  width: clamp(148px, 13vw, 176px);
  height: auto;
}

.brand-lockup .brand-tag {
  font-size: 0.67rem;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.brand-footer.brand-lockup .brand-tag {
  color: rgba(241, 247, 255, 0.78);
}

.brand-footer .brand-logo {
  width: clamp(158px, 14vw, 184px);
}

.site-nav {
  gap: 0;
}

.site-nav a,
.footer-links a {
  font-size: 0.9rem;
  padding: 9px 11px;
}

.hero-copy h1 span {
  display: block;
}

.compact-home .section {
  padding: 84px 0;
}

.compact-home .hero {
  padding-top: 12px;
  padding-bottom: 56px;
}

.compact-home .hero-grid {
  gap: 30px;
}

.compact-home .hero-copy h1 {
  max-width: 10.2ch;
  margin-bottom: 16px;
  font-size: clamp(2.85rem, 5.1vw, 4.6rem);
}

.compact-home .hero-intro {
  max-width: 36ch;
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.compact-home .stat-row {
  margin-top: 26px;
  gap: 12px;
}

.compact-home .stat-card {
  padding: 18px 18px 16px;
}

.stat-label {
  line-height: 1.45;
}

.compact-home .trusted-strip {
  padding: 0 0 8px;
}

.compact-home .trusted-grid {
  padding: 16px 20px;
  border-radius: 22px;
}

.compact-home .logo-card {
  min-height: 72px;
}

.section-shell-wrap {
  padding-top: 16px;
}

.section-shell {
  padding: 30px;
  border-radius: 34px;
}

.compact-home .lead-strong {
  margin-bottom: 14px;
  max-width: 33ch;
  font-size: 1.18rem;
}

.copy-block p {
  margin-bottom: 16px;
}

.insight-pills {
  margin-top: 14px;
  gap: 8px;
}

.insight-pills span {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.84rem;
}

.stack-grid {
  gap: 14px;
  margin-top: 18px;
}

.stack-card {
  padding: 20px 18px 18px;
}

.impact-band {
  gap: 18px;
  margin-top: 18px;
}

.impact-points {
  gap: 12px;
}

.impact-points .mini-card {
  padding: 18px 18px 16px;
}

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

.compact-home .cards-grid-four {
  gap: 14px;
  margin-bottom: 18px;
}

.compact-home .card {
  padding: 20px 18px;
}

.card-meta {
  margin-top: 12px !important;
  font-size: 0.88rem;
}

.tech-story-grid {
  gap: 18px;
}

.story-panel,
.platform-panel {
  border-radius: 28px;
}

.story-panel {
  padding: 28px 24px;
}

.story-metrics {
  margin-top: 18px;
}

.apps-shell {
  gap: 24px;
}

.application-stack {
  margin-top: 18px;
  gap: 12px;
}

.application-card {
  padding: 20px 18px;
}

.chip-tags {
  margin-top: 18px;
  gap: 8px;
}

.chip-tags span {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.leadership-head {
  margin-bottom: 22px;
}

.team-grid {
  gap: 16px;
}

.team-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid-four .person-image-wrap {
  aspect-ratio: 4 / 5;
}

.person-image-studio {
  background:
    radial-gradient(circle at 84% 12%, rgba(111, 218, 255, 0.16), transparent 26%),
    radial-gradient(circle at 14% 14%, rgba(255, 161, 94, 0.10), transparent 24%),
    linear-gradient(180deg, #eef5ff 0%, #f7fbff 100%);
}

.person-image-studio img {
  object-position: center center;
}

.compact-home .person-body {
  padding: 18px;
}

.compact-home .cta-panel {
  padding: 28px;
  gap: 20px;
}

.compact-home .site-footer {
  margin-top: 64px;
}

.footer-grid {
  gap: 24px;
}

.hero-stage::after {
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.72; }
  100% { transform: translate3d(18px, 12px, 0) scale(1.08); opacity: 1; }
}

[data-tilt] {
  will-change: transform;
  transform-style: preserve-3d;
  transition:
    transform 280ms cubic-bezier(.2,.8,.2,1),
    box-shadow 280ms cubic-bezier(.2,.8,.2,1),
    border-color 280ms cubic-bezier(.2,.8,.2,1);
}

.hero-stage[data-tilt] {
  transform: perspective(1400px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.image-card[data-tilt],
.story-panel[data-tilt],
.platform-panel[data-tilt],
.cta-panel[data-tilt],
.person-card[data-tilt] {
  transform: perspective(1400px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--tilt-lift, 0px));
}

.image-card[data-tilt]:hover,
.story-panel[data-tilt]:hover,
.platform-panel[data-tilt]:hover,
.cta-panel[data-tilt]:hover,
.person-card[data-tilt]:hover {
  --tilt-lift: -4px;
}

@media (max-width: 1280px) {
  .brand-lockup .brand-tag {
    display: none;
  }

  .brand-lockup .brand-logo {
    width: 154px;
  }

  .site-nav a,
  .footer-links a {
    font-size: 0.88rem;
    padding: 9px 9px;
  }
}

@media (max-width: 980px) {
  .brand-lockup .brand-tag {
    display: none;
  }

  .brand-lockup .brand-logo {
    width: 150px;
  }

  .compact-home .section {
    padding: 78px 0;
  }

  .compact-home .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .brand-lockup .brand-logo {
    width: 142px;
  }

  .compact-home .hero {
    padding-top: 8px;
    padding-bottom: 48px;
  }

  .compact-home .hero-copy h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.6rem);
  }

  .compact-home .hero-intro {
    max-width: none;
  }

  .section-shell {
    padding: 20px;
  }
}


/* === Dark Direction: black base + deep blue accents === */

body.theme-dark {
  /* Sprint 2 quick wins (2026-05-18): logo blue/orange accents + contrast lift per client direction */
  --bg: #050b16;
  --bg-alt: #0a1426;
  --surface: rgba(13, 26, 54, 0.82);
  --surface-strong: #0d1a36;
  --surface-soft: #13264e;
  --text: #c8d4ea;
  --text-strong: #ffffff;
  --muted: #9badcb;
  --muted-strong: #c4d4eb;
  --line: rgba(120, 160, 230, 0.22);
  --line-strong: rgba(120, 160, 230, 0.32);
  --primary: #2b86ff;
  --primary-strong: #6fb0ff;
  --accent: #ff8e2b;
  --accent-soft: rgba(255, 142, 43, 0.16);
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.44);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.34);
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.26);
  color-scheme: dark;
  background:
    radial-gradient(circle at 16% 0%, rgba(38, 88, 255, 0.18), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(59, 203, 255, 0.10), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(7, 26, 58, 0.58), transparent 38%),
    linear-gradient(180deg, #03070f 0%, #050b16 24%, #071120 52%, #050b15 100%);
}

body.theme-dark::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(35, 84, 255, 0.14), transparent 22%),
    radial-gradient(circle at 72% 54%, rgba(72, 220, 255, 0.12), transparent 20%),
    radial-gradient(circle at 52% 96%, rgba(14, 44, 94, 0.22), transparent 28%);
  filter: blur(54px);
}

body.theme-dark .site-bg {
  background-image:
    linear-gradient(rgba(75, 102, 155, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 102, 155, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.68;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.84) 58%, transparent 100%);
}

body.theme-dark .site-bg::after {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 24% 28%, rgba(45, 92, 255, 0.16), transparent 20%),
    radial-gradient(circle at 74% 60%, rgba(75, 220, 255, 0.10), transparent 18%),
    radial-gradient(circle at 52% 40%, rgba(17, 41, 88, 0.18), transparent 26%);
  filter: blur(38px);
  animation: siteDrift 18s ease-in-out infinite alternate;
}

@keyframes siteDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-18px, -10px, 0) scale(1.06); }
}

body.theme-dark ::selection {
  background: rgba(83, 214, 255, 0.18);
  color: #fff;
}

body.theme-dark .page-progress {
  background: linear-gradient(90deg, #2f6cf7, #4ba4ff, #53d6ff);
  box-shadow: 0 0 16px rgba(83, 214, 255, 0.22);
}

body.theme-dark .site-header.scrolled {
  background: rgba(4, 10, 19, 0.84);
  border-bottom-color: rgba(73, 106, 163, 0.24);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

body.theme-dark .brand-lockup .brand-tag,
body.theme-dark .trusted-label,
body.theme-dark .footer-links a,
body.theme-dark .footer-link,
body.theme-dark .footer-meta p,
body.theme-dark .footer-copy,
body.theme-dark .placeholder-copy,
body.theme-dark .copy-block p,
body.theme-dark .card p,
body.theme-dark .application-card p,
body.theme-dark .mini-card p,
body.theme-dark .person-body p,
body.theme-dark .hero-intro,
body.theme-dark .stat-label {
  color: rgba(198, 212, 236, 0.78);
}

body.theme-dark .site-nav a,
body.theme-dark .footer-links a {
  color: rgba(214, 226, 245, 0.76);
}

body.theme-dark .site-nav a:hover,
body.theme-dark .site-nav a:focus-visible,
body.theme-dark .footer-links a:hover,
body.theme-dark .footer-links a:focus-visible {
  color: #fff;
  background: rgba(47, 108, 247, 0.12);
}

body.theme-dark .site-nav a[aria-current="page"],
body.theme-dark .footer-links a[aria-current="page"] {
  color: #fff;
}

body.theme-dark .site-nav a[aria-current="page"]::after,
body.theme-dark .footer-links a[aria-current="page"]::after {
  background: linear-gradient(90deg, rgba(47, 108, 247, 0), rgba(47, 108, 247, 0.96), rgba(83, 214, 255, 0.92));
}

body.theme-dark .btn {
  border-color: rgba(85, 131, 224, 0.26);
  color: var(--text-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

body.theme-dark .btn-primary {
  background: linear-gradient(135deg, #1638a7 0%, #2558ff 48%, #2fb0ff 100%);
  border-color: rgba(102, 151, 245, 0.34);
  box-shadow:
    0 16px 34px rgba(18, 68, 182, 0.32),
    0 0 0 1px rgba(107, 161, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

body.theme-dark .btn-primary:hover,
body.theme-dark .btn-primary:focus-visible {
  box-shadow:
    0 20px 40px rgba(18, 68, 182, 0.42),
    0 0 22px rgba(83, 214, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

body.theme-dark .btn-secondary {
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.86), rgba(4, 11, 21, 0.96));
  border-color: rgba(86, 136, 230, 0.24);
  color: #e4eefc;
}

body.theme-dark .btn-secondary:hover,
body.theme-dark .btn-secondary:focus-visible {
  background: linear-gradient(180deg, rgba(10, 22, 44, 0.92), rgba(5, 11, 22, 0.98));
  border-color: rgba(111, 174, 255, 0.34);
}

body.theme-dark .eyebrow {
  color: #7faeff;
}

body.theme-dark .eyebrow::before {
  background: linear-gradient(90deg, rgba(47, 108, 247, 0.12), rgba(83, 214, 255, 0.96));
}

body.theme-dark .hero-copy h1,
body.theme-dark .copy-block h2,
body.theme-dark .section-heading h2,
body.theme-dark .cta-copy h2,
body.theme-dark .placeholder-wrap h1,
body.theme-dark .stack-card h3,
body.theme-dark .story-panel h3,
body.theme-dark .platform-panel h3,
body.theme-dark .card h3,
body.theme-dark .application-card h3,
body.theme-dark .mini-card h3,
body.theme-dark .person-card h3 {
  color: #f7fbff;
}

body.theme-dark .hero-copy h1 span {
  background: linear-gradient(135deg, #ffffff 0%, #a8c7ff 28%, #6caeff 62%, #5be0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.theme-dark .hero-stage {
  border-color: rgba(79, 116, 182, 0.24);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 38%), rgba(47, 108, 247, 0.20), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(83, 214, 255, 0.14), transparent 20%),
    linear-gradient(rgba(47, 74, 120, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 74, 120, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 18, 35, 0.86), rgba(4, 10, 19, 0.98));
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(88, 130, 221, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

body.theme-dark .hero-stage::before {
  inset: 12px;
  border-color: rgba(77, 108, 166, 0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 26%);
}

body.theme-dark .hero-stage::after {
  inset: auto 9% 8% auto;
  width: 48%;
  height: 44%;
  background: radial-gradient(circle, rgba(83, 214, 255, 0.20), transparent 70%);
  filter: blur(26px);
}

body.theme-dark .hero-illustration {
  filter: drop-shadow(0 28px 54px rgba(12, 52, 136, 0.30));
}

body.theme-dark .orbiter {
  background: linear-gradient(180deg, rgba(10, 20, 39, 0.94), rgba(6, 12, 24, 0.90));
  border-color: rgba(86, 136, 230, 0.22);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.06);
  color: #dce9ff;
}

body.theme-dark .stat-card,
body.theme-dark .progress-card,
body.theme-dark .application-card,
body.theme-dark .mini-card,
body.theme-dark .card,
body.theme-dark .person-card,
body.theme-dark .placeholder-wrap {
  border-color: rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 11, 21, 0.96));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

body.theme-dark .stat-card::before {
  background: radial-gradient(circle, rgba(83, 214, 255, 0.18), transparent 72%);
}

body.theme-dark .stat-kicker,
body.theme-dark .card-meta {
  color: #8aa9d5 !important;
}

body.theme-dark .stat-value {
  color: #f7fbff;
}

body.theme-dark .stat-meter {
  background: rgba(66, 89, 129, 0.44);
}

body.theme-dark .stat-meter span {
  background: linear-gradient(90deg, #2f6cf7, #4fa0ff, #53d6ff);
}

body.theme-dark .trusted-grid {
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.76), rgba(4, 11, 21, 0.96));
  border-color: rgba(74, 106, 162, 0.22);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

body.theme-dark .logo-card {
  border-color: rgba(74, 106, 162, 0.20);
  background: linear-gradient(180deg, rgba(11, 20, 38, 0.70), rgba(6, 12, 24, 0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

body.theme-dark .logo-card:hover,
body.theme-dark .logo-card:focus-visible {
  border-color: rgba(111, 174, 255, 0.30);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(94, 145, 233, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

body.theme-dark .section-shell {
  border-color: rgba(74, 106, 162, 0.22);
  background:
    radial-gradient(circle at 0% 0%, rgba(45, 92, 255, 0.14), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(83, 214, 255, 0.10), transparent 22%),
    linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 10, 19, 0.96));
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

body.theme-dark .section-shell::before {
  background:
    linear-gradient(115deg, rgba(47, 108, 247, 0.06) 0%, transparent 28%, transparent 72%, rgba(83, 214, 255, 0.05) 100%),
    linear-gradient(rgba(60, 82, 120, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 82, 120, 0.08) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
}

body.theme-dark .section-shell::after {
  background: radial-gradient(circle, rgba(47, 108, 247, 0.22), transparent 72%);
  filter: blur(18px);
}

body.theme-dark .surface-section::before {
  background: linear-gradient(180deg, rgba(4, 11, 21, 0.74), rgba(5, 12, 23, 0.94));
  border-top-color: rgba(74, 106, 162, 0.14);
  border-bottom-color: rgba(74, 106, 162, 0.14);
}

body.theme-dark .insight-pills span,
body.theme-dark .chip-tags span {
  border-color: rgba(74, 106, 162, 0.24);
  background: rgba(10, 20, 39, 0.76);
  color: #d6e4fa;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

body.theme-dark .image-card {
  border-color: rgba(77, 108, 166, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.90), rgba(4, 10, 19, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

body.theme-dark .image-card::before {
  border-color: rgba(73, 106, 163, 0.22);
}

body.theme-dark .image-card::after {
  background: linear-gradient(120deg, rgba(255,255,255,0), rgba(160, 233, 255, 0.16), rgba(255,255,255,0));
}

body.theme-dark .image-card figcaption {
  color: rgba(204, 216, 238, 0.70);
}

body.theme-dark .card-tag,
body.theme-dark .person-role,
body.theme-dark .story-label,
body.theme-dark .progress-step,
body.theme-dark .stack-index {
  background: linear-gradient(135deg, rgba(32, 80, 210, 0.24), rgba(83, 214, 255, 0.18));
  color: #e6f0ff;
  border-color: rgba(86, 136, 230, 0.20);
}

body.theme-dark .stack-card {
  border-color: rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 11, 21, 0.96));
}

body.theme-dark .stack-card::before {
  background: linear-gradient(90deg, rgba(47, 108, 247, 0), rgba(47, 108, 247, 0.92), rgba(83, 214, 255, 0.90));
}

body.theme-dark .stack-card-featured {
  background:
    radial-gradient(circle at top right, rgba(83, 214, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(10, 22, 44, 0.92), rgba(5, 12, 24, 0.98));
  border-color: rgba(98, 145, 232, 0.30);
}

body.theme-dark .story-panel,
body.theme-dark .platform-panel {
  border-color: rgba(94, 145, 233, 0.20);
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

body.theme-dark .story-panel {
  background:
    linear-gradient(180deg, rgba(4, 11, 21, 0.16) 0%, rgba(4, 11, 21, 0.62) 44%, rgba(4, 11, 21, 0.90) 100%),
    url("../images/fabrication.webp") center center / cover no-repeat;
}

body.theme-dark .platform-panel {
  background:
    linear-gradient(180deg, rgba(4, 11, 21, 0.16) 0%, rgba(4, 11, 21, 0.62) 44%, rgba(4, 11, 21, 0.90) 100%),
    url("../images/applications-platform.webp") center center / cover no-repeat;
}

body.theme-dark .story-panel::before,
body.theme-dark .platform-panel::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(111, 218, 255, 0.14), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(47, 108, 247, 0.12), transparent 22%);
}

body.theme-dark .story-metrics div {
  border-color: rgba(114, 167, 255, 0.22);
  background: rgba(6, 14, 27, 0.46);
}

body.theme-dark .person-image-wrap,
body.theme-dark .person-image-studio {
  background:
    radial-gradient(circle at 84% 12%, rgba(83, 214, 255, 0.12), transparent 26%),
    radial-gradient(circle at 18% 18%, rgba(47, 108, 247, 0.14), transparent 28%),
    linear-gradient(180deg, #0e1b35 0%, #07101d 100%);
}

body.theme-dark .person-card:hover,
body.theme-dark .application-card:hover,
body.theme-dark .card:hover,
body.theme-dark .stack-card:hover,
body.theme-dark .stack-card.is-active,
body.theme-dark .stat-card:hover,
body.theme-dark .logo-card:hover,
body.theme-dark .mini-card:hover,
body.theme-dark .person-card:focus-within,
body.theme-dark .application-card:focus-within,
body.theme-dark .card:focus-within,
body.theme-dark .stat-card:focus-within {
  border-color: rgba(111, 174, 255, 0.30);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(94, 145, 233, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

body.theme-dark .cta-panel {
  background:
    radial-gradient(circle at 84% 18%, rgba(83, 214, 255, 0.22), transparent 18%),
    radial-gradient(circle at 18% 24%, rgba(47, 108, 247, 0.22), transparent 22%),
    linear-gradient(135deg, #040914 0%, #091428 40%, #102a64 100%);
  border-color: rgba(98, 145, 232, 0.22);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38);
}

body.theme-dark .cta-copy p {
  color: rgba(241, 247, 255, 0.78);
}

body.theme-dark .site-footer {
  background:
    radial-gradient(circle at 80% 18%, rgba(83, 214, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #050b15 0%, #03070f 100%);
  border-top-color: rgba(74, 106, 162, 0.18);
}

body.theme-dark .footer-meta {
  border-top-color: rgba(74, 106, 162, 0.16);
}

body.theme-dark .placeholder-wrap {
  max-width: 760px;
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.90), rgba(4, 11, 21, 0.96));
}

body.theme-dark .placeholder-wrap .eyebrow,
body.theme-dark .placeholder-wrap h1,
body.theme-dark .placeholder-wrap p {
  color: #f2f7ff;
}

body.theme-dark .placeholder-wrap p {
  color: rgba(198, 212, 236, 0.76);
}

body.theme-dark .stat-card[data-tilt],
body.theme-dark .stack-card[data-tilt],
body.theme-dark .card[data-tilt],
body.theme-dark .application-card[data-tilt],
body.theme-dark .mini-card[data-tilt],
body.theme-dark .logo-card[data-tilt] {
  transform: perspective(1400px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--tilt-lift, 0px));
}

body.theme-dark .stat-card[data-tilt]:hover,
body.theme-dark .stack-card[data-tilt]:hover,
body.theme-dark .card[data-tilt]:hover,
body.theme-dark .application-card[data-tilt]:hover,
body.theme-dark .mini-card[data-tilt]:hover,
body.theme-dark .logo-card[data-tilt]:hover {
  --tilt-lift: -4px;
}

body.theme-dark .reveal {
  transition-property: opacity, transform, filter;
}

body.theme-dark .hero-stage,
body.theme-dark .section-shell,
body.theme-dark .cta-panel {
  position: relative;
}

body.theme-dark .hero-stage::before,
body.theme-dark .section-shell::before,
body.theme-dark .cta-panel::before {
  backdrop-filter: blur(0);
}

@media (max-width: 980px) {
  body.theme-dark .hero-stage {
    background-size: auto, auto, 32px 32px, 32px 32px, auto;
  }
}

body.theme-dark.compact-home .hero-copy h1 {
  max-width: 11.6ch;
  font-size: clamp(3.05rem, 5.35vw, 4.95rem);
}

body.theme-dark.compact-home .hero-intro {
  max-width: 38ch;
}

body.theme-dark .logo-card img {
  max-height: 32px;
}


/* === Technology page: light premium direction === */

.compact-tech .section {
  padding: 78px 0;
}

.compact-tech .hero {
  padding-top: 14px;
  padding-bottom: 44px;
}

.tech-hero-grid,
.tech-platform-grid,
.tech-breakthrough-grid,
.tech-structure-grid,
.tech-evolution-top,
.vision-band,
.evolution-cards,
.performance-band {
  display: grid;
  gap: 22px;
}

.tech-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 30px;
}

.tech-hero .hero-copy h1 {
  max-width: 8.6ch;
  margin-bottom: 16px;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
}

.tech-hero .hero-intro {
  max-width: 38ch;
  margin-bottom: 16px;
}

.tech-hero-copy {
  max-width: 58ch;
  margin: 0 0 22px;
  font-size: 1.02rem;
  color: var(--muted);
}

.tech-anchor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tech-anchor-row a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(191, 214, 244, 0.92);
  background: rgba(255,255,255,0.84);
  color: #486789;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.tech-anchor-row a:hover,
.tech-anchor-row a:focus-visible {
  transform: translateY(-2px);
  color: var(--text-strong);
  border-color: rgba(43, 134, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.tech-hero-stage {
  min-height: 100%;
}

.tech-hero-stage .hero-illustration {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px;
}

.tech-float {
  position: absolute;
  z-index: 2;
  min-width: 132px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(198, 216, 238, 0.94);
  box-shadow: 0 16px 28px rgba(23, 73, 148, 0.12);
  backdrop-filter: blur(12px);
  animation: float-card 7s ease-in-out infinite;
}

.tech-float strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.06rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.tech-float span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #4e6890;
  font-weight: 700;
}

.tech-float-a {
  top: 6%;
  left: 4%;
}

.tech-float-b {
  right: 5%;
  top: 16%;
  animation-delay: -2.1s;
}

.tech-float-c {
  bottom: 8%;
  left: 12%;
  animation-delay: -4.2s;
}

.tech-signal-wrap {
  margin-top: 18px;
}

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

.tech-signal-card {
  position: relative;
  overflow: hidden;
  padding: 18px 16px 16px;
  border-radius: 20px;
  border: 1px solid rgba(191,214,244,0.92);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,249,255,0.96));
  box-shadow: var(--shadow-sm);
}

.tech-signal-card::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43,134,255,0), rgba(43,134,255,0.9), rgba(255,142,43,0.82));
}

.tech-signal-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.52rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.tech-signal-card span {
  display: block;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.42;
  font-weight: 700;
}

.tech-platform-wrap .section-shell {
  padding-bottom: 30px;
}

.tech-platform-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.tech-platform-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.platform-constellation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.82fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "materials . fabrication"
    ". core ."
    "structures . integration";
  gap: 18px 20px;
  min-height: 520px;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(191, 214, 244, 0.94);
  background:
    radial-gradient(circle at 50% 50%, rgba(89, 181, 255, 0.12), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255, 164, 92, 0.06), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,249,255,0.98));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.platform-constellation::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(218, 230, 245, 0.88);
  pointer-events: none;
}

.platform-core,
.platform-node {
  position: relative;
  z-index: 2;
}

.platform-core {
  grid-area: core;
  align-self: center;
  justify-self: center;
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 24px 22px 22px;
  border-radius: 28px;
  border: 1px solid rgba(111, 185, 255, 0.32);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 161, 94, 0.16), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(111, 218, 255, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(12, 25, 48, 0.96), rgba(10, 29, 72, 0.96));
  box-shadow: 0 28px 54px rgba(16, 44, 92, 0.22);
  color: #f5f9ff;
  text-align: center;
}

.platform-core::after {
  content: "";
  position: absolute;
  inset: auto 50% -18px auto;
  width: 120px;
  height: 120px;
  transform: translateX(50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 218, 255, 0.18), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.platform-core-kicker {
  display: inline-flex;
  align-self: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(160, 206, 255, 0.24);
  background: rgba(255,255,255,0.08);
  color: #dff3ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-core strong {
  display: block;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.platform-core small {
  display: block;
  color: rgba(241,247,255,0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.platform-node {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(191, 214, 244, 0.94);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,250,255,0.98));
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.platform-node:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 134, 255, 0.28);
  box-shadow: var(--shadow-md);
}

.platform-node h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.22;
  color: var(--text-strong);
}

.platform-node p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.node-materials { grid-area: materials; align-self: start; }
.node-fabrication { grid-area: fabrication; align-self: start; }
.node-structures { grid-area: structures; align-self: end; }
.node-integration { grid-area: integration; align-self: end; }

.platform-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43,134,255,0.08), rgba(43,134,255,0.7), rgba(255,142,43,0.55));
  box-shadow: 0 0 18px rgba(89, 181, 255, 0.18);
  transform-origin: left center;
}

.platform-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #77d8ff;
  box-shadow: 0 0 0 6px rgba(119, 216, 255, 0.14), 0 0 18px rgba(119, 216, 255, 0.42);
  animation: platformPulse 3.8s ease-in-out infinite;
}

.line-a {
  top: 38%;
  left: 35%;
  width: 138px;
  transform: rotate(-151deg);
}

.line-b {
  top: 37%;
  left: 54%;
  width: 132px;
  transform: rotate(-28deg);
}

.line-c {
  top: 62%;
  left: 34%;
  width: 138px;
  transform: rotate(152deg);
}

.line-d {
  top: 63%;
  left: 55%;
  width: 130px;
  transform: rotate(28deg);
}

.line-b::after { animation-delay: -0.9s; }
.line-c::after { animation-delay: -1.8s; }
.line-d::after { animation-delay: -2.7s; }

@keyframes platformPulse {
  0%, 100% { transform: translateY(-50%) scale(0.92); opacity: 0.9; }
  50% { transform: translateY(-50%) scale(1.12); opacity: 1; }
}

.tech-breakthrough-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.tech-panel {
  padding: 28px 26px;
  border-radius: 30px;
  border: 1px solid rgba(191,214,244,0.94);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,249,255,0.98));
  box-shadow: var(--shadow-sm);
}

.tech-panel-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43, 134, 255, 0.09);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-panel h3,
.vision-band h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.tech-panel p {
  margin: 0;
  color: var(--muted);
}

.metric-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.metric-tile {
  padding: 16px 14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(191,214,244,0.94);
  background: rgba(255,255,255,0.82);
}

.metric-tile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.metric-tile span {
  display: block;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.42;
  font-weight: 700;
}

.tech-process-panel {
  min-height: 100%;
  justify-content: flex-start;
}

.process-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 18px 0 16px;
}

.process-side {
  padding: 16px 14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(160, 206, 255, 0.2);
  background: rgba(7, 17, 32, 0.24);
  backdrop-filter: blur(10px);
}

.process-side.featured {
  background: rgba(255,255,255,0.12);
  border-color: rgba(111, 218, 255, 0.24);
}

.process-label {
  display: block;
  margin-bottom: 14px;
  color: #f5f9ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.process-side li {
  display: grid;
  gap: 4px;
}

.process-side li strong {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.process-side li span {
  color: rgba(241,247,255,0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.process-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(160, 206, 255, 0.22);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 10px 22px rgba(8, 26, 58, 0.18);
}

.process-arrow span {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
}

.process-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.process-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(160, 206, 255, 0.22);
  background: rgba(255,255,255,0.10);
  color: #eff7ff;
  font-size: 0.84rem;
  font-weight: 700;
}

.tech-structure-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.structure-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.structure-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(191,214,244,0.92);
  color: #426082;
  font-size: 0.86rem;
  font-weight: 700;
}

.structure-stack {
  display: grid;
  gap: 14px;
}

.structure-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(191,214,244,0.92);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,249,255,0.98));
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.structure-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 134, 255, 0.28);
  box-shadow: var(--shadow-md);
}

.structure-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(43,134,255,0.12), rgba(255,142,43,0.1));
  color: var(--primary-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.structure-card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--text-strong);
}

.structure-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.performance-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.performance-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(191,214,244,0.92);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,249,255,0.96));
  box-shadow: var(--shadow-sm);
}

.performance-card::before {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 188, 255, 0.14), transparent 72%);
}

.performance-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--text-strong);
}

.performance-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 800;
}

.performance-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.tech-vision-shell {
  padding-bottom: 30px;
}

.tech-evolution-top {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 2px;
}

.evolution-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.vision-band {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 24px 24px 22px;
  margin-top: 18px;
  border-radius: 28px;
  border: 1px solid rgba(191,214,244,0.96);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 164, 92, 0.12), transparent 24%),
    radial-gradient(circle at 16% 20%, rgba(111, 218, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,247,255,0.98));
  box-shadow: var(--shadow-sm);
}

.vision-band p {
  margin: 0;
  color: var(--muted);
}

.vision-quote {
  max-width: 14ch;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-strong) !important;
}

.tech-final-cta {
  padding-top: 6px;
}

@media (max-width: 1280px) {
  .tech-signal-grid,
  .performance-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-constellation {
    min-height: 500px;
  }

  .line-a,
  .line-c {
    width: 124px;
  }

  .line-b,
  .line-d {
    width: 118px;
  }
}

@media (max-width: 1200px) {
  .tech-hero-grid,
  .tech-platform-grid,
  .tech-breakthrough-grid,
  .tech-structure-grid,
  .tech-evolution-top,
  .vision-band {
    grid-template-columns: 1fr;
  }

  .performance-band,
  .evolution-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-evolution-top {
    align-items: start;
  }
}

@media (max-width: 980px) {
  .compact-tech .section {
    padding: 70px 0;
  }

  .compact-tech .hero {
    padding-top: 10px;
    padding-bottom: 36px;
  }

  .tech-hero .hero-copy h1 {
    max-width: none;
  }

  .platform-constellation {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "core"
      "materials"
      "fabrication"
      "structures"
      "integration";
    padding: 18px;
  }

  .platform-line {
    display: none;
  }

  .metric-tiles,
  .process-comparison,
  .performance-band,
  .evolution-cards {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    justify-self: center;
  }

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

  .tech-float {
    min-width: 118px;
    padding: 10px 12px;
  }

  .tech-float strong {
    font-size: 0.98rem;
  }

  .vision-quote {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .compact-tech .section {
    padding: 64px 0;
  }

  .compact-tech .hero {
    padding-top: 8px;
    padding-bottom: 34px;
  }

  .tech-hero .hero-copy h1 {
    font-size: clamp(2.3rem, 10.8vw, 3.8rem);
  }

  .tech-signal-grid,
  .performance-band {
    grid-template-columns: 1fr;
  }

  .tech-panel,
  .vision-band,
  .platform-core,
  .platform-node,
  .structure-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .platform-core {
    padding-top: 22px;
  }

  .structure-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .structure-index {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .tech-float {
    position: static;
    margin-top: 10px;
    min-width: 0;
  }

  .tech-float-a,
  .tech-float-b,
  .tech-float-c {
    animation: none;
  }

  .tech-hero-stage {
    display: grid;
    gap: 10px;
  }

  .tech-anchor-row {
    gap: 8px;
  }

  .tech-anchor-row a,
  .structure-tags span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}




/* === RD2 additions: updated dark home + technology === */

.hero-support {
  max-width: 60ch;
  margin: 0 0 24px;
  font-size: 1.02rem;
}

.brand-logo-dark {
  image-rendering: -webkit-optimize-contrast;
}

.story-panel-plain,
.platform-panel-plain {
  background:
    linear-gradient(180deg, rgba(7, 15, 28, 0.86), rgba(4, 10, 18, 0.96)) !important;
}

.story-panel-plain::before,
.platform-panel-plain::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(111, 218, 255, 0.10), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(47, 108, 247, 0.09), transparent 22%) !important;
}

.story-panel-plain p,
.platform-panel-plain p,
.hero-support,
.tech-hero-copy {
  color: var(--muted);
}

.plain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.plain-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(84, 110, 162, 0.22);
  background: rgba(10, 20, 39, 0.76);
  color: #d6e4fa;
  font-size: 0.86rem;
  font-weight: 700;
}

body.theme-dark.dark-minimal {
  background:
    radial-gradient(circle at 18% 0%, rgba(39, 95, 255, 0.10), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(83, 214, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #03070f 0%, #050c16 28%, #06111f 60%, #03070e 100%);
}

body.theme-dark.dark-minimal::before {
  background:
    radial-gradient(circle at 16% 16%, rgba(35, 84, 255, 0.10), transparent 20%),
    radial-gradient(circle at 78% 48%, rgba(72, 220, 255, 0.07), transparent 18%),
    radial-gradient(circle at 50% 94%, rgba(14, 44, 94, 0.14), transparent 24%);
  filter: blur(64px);
}

body.theme-dark.dark-minimal .site-bg {
  opacity: 0.46;
  background-size: 82px 82px;
}

body.theme-dark.dark-minimal .site-bg::after {
  opacity: 0.62;
  filter: blur(44px);
}

body.theme-dark.dark-minimal .page-progress {
  box-shadow: 0 0 12px rgba(83, 214, 255, 0.14);
}

body.theme-dark.dark-minimal .site-header.scrolled {
  background: rgba(4, 10, 19, 0.86);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

body.theme-dark.dark-minimal .btn-primary {
  background: linear-gradient(135deg, #1842c6 0%, #2558ff 58%, #4cb9ff 100%);
  box-shadow:
    0 14px 28px rgba(18, 68, 182, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

body.theme-dark.dark-minimal .btn-primary:hover,
body.theme-dark.dark-minimal .btn-primary:focus-visible {
  box-shadow:
    0 18px 36px rgba(18, 68, 182, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

body.theme-dark.dark-minimal .btn-secondary {
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 10, 19, 0.98));
}

body.theme-dark.dark-minimal .hero-stage,
body.theme-dark.dark-minimal .section-shell,
body.theme-dark.dark-minimal .image-card,
body.theme-dark.dark-minimal .story-panel,
body.theme-dark.dark-minimal .platform-panel,
body.theme-dark.dark-minimal .cta-panel,
body.theme-dark.dark-minimal .trusted-grid,
body.theme-dark.dark-minimal .stat-card,
body.theme-dark.dark-minimal .card,
body.theme-dark.dark-minimal .application-card,
body.theme-dark.dark-minimal .mini-card,
body.theme-dark.dark-minimal .person-card,
body.theme-dark.dark-minimal .progress-card,
body.theme-dark.dark-minimal .performance-card,
body.theme-dark.dark-minimal .tech-panel,
body.theme-dark.dark-minimal .structure-card,
body.theme-dark.dark-minimal .metric-tile,
body.theme-dark.dark-minimal .tech-signal-card,
body.theme-dark.dark-minimal .platform-node,
body.theme-dark.dark-minimal .vision-band,
body.theme-dark.dark-minimal .process-side {
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

body.theme-dark.dark-minimal .hero-stage {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 38%), rgba(47, 108, 247, 0.14), transparent 26%),
    linear-gradient(rgba(47, 74, 120, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 74, 120, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 18, 35, 0.88), rgba(4, 10, 19, 0.98));
  background-size: auto, 46px 46px, 46px 46px, auto;
}

body.theme-dark.dark-minimal .hero-stage::after {
  width: 42%;
  height: 38%;
  background: radial-gradient(circle, rgba(83, 214, 255, 0.12), transparent 70%);
  filter: blur(18px);
}

body.theme-dark.dark-minimal .hero-illustration {
  filter: drop-shadow(0 18px 36px rgba(12, 52, 136, 0.22));
}

body.theme-dark.dark-minimal .orbiter {
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

body.theme-dark.dark-minimal .section-shell {
  background:
    linear-gradient(180deg, rgba(8, 18, 35, 0.86), rgba(4, 10, 19, 0.98));
}

body.theme-dark.dark-minimal .section-shell::before {
  background:
    linear-gradient(115deg, rgba(47, 108, 247, 0.04) 0%, transparent 30%, transparent 70%, rgba(83, 214, 255, 0.04) 100%),
    linear-gradient(rgba(60, 82, 120, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 82, 120, 0.06) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}

body.theme-dark.dark-minimal .section-shell::after {
  opacity: 0.5;
}

body.theme-dark.dark-minimal .surface-section::before {
  background: linear-gradient(180deg, rgba(4, 11, 21, 0.58), rgba(5, 12, 23, 0.9));
}

body.theme-dark.dark-minimal .story-panel,
body.theme-dark.dark-minimal .platform-panel {
  background:
    linear-gradient(180deg, rgba(6, 14, 26, 0.88), rgba(4, 10, 19, 0.98));
}

body.theme-dark.dark-minimal .platform-panel-plain .plain-list span,
body.theme-dark.dark-minimal .plain-list span {
  border-color: rgba(74, 106, 162, 0.22);
  background: rgba(10, 20, 39, 0.68);
}

body.theme-dark.dark-minimal .team-grid-four .person-card {
  overflow: hidden;
}

body.theme-dark.dark-minimal .tech-hero-copy,
body.theme-dark.dark-minimal .hero-support,
body.theme-dark.dark-minimal .platform-node p,
body.theme-dark.dark-minimal .performance-card p,
body.theme-dark.dark-minimal .metric-tile span,
body.theme-dark.dark-minimal .structure-card p,
body.theme-dark.dark-minimal .vision-band p,
body.theme-dark.dark-minimal .tech-signal-card span,
body.theme-dark.dark-minimal .process-side span,
body.theme-dark.dark-minimal .tech-anchor-row a,
body.theme-dark.dark-minimal .process-label {
  color: rgba(205, 218, 238, 0.78);
}

body.theme-dark.dark-minimal .tech-anchor-row a {
  border-color: rgba(74, 106, 162, 0.24);
  background: rgba(10, 20, 39, 0.70);
}

body.theme-dark.dark-minimal .tech-anchor-row a:hover,
body.theme-dark.dark-minimal .tech-anchor-row a:focus-visible {
  border-color: rgba(98, 145, 232, 0.28);
  background: rgba(10, 22, 44, 0.88);
  color: #fff;
}

body.theme-dark.dark-minimal .tech-float,
body.theme-dark.dark-minimal .tech-signal-card,
body.theme-dark.dark-minimal .metric-tile,
body.theme-dark.dark-minimal .structure-card,
body.theme-dark.dark-minimal .performance-card,
body.theme-dark.dark-minimal .platform-node,
body.theme-dark.dark-minimal .vision-band,
body.theme-dark.dark-minimal .tech-panel {
  border-color: rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 11, 21, 0.96));
}

body.theme-dark.dark-minimal .tech-signal-card strong,
body.theme-dark.dark-minimal .metric-tile strong,
body.theme-dark.dark-minimal .performance-card strong,
body.theme-dark.dark-minimal .tech-float strong,
body.theme-dark.dark-minimal .platform-core strong,
body.theme-dark.dark-minimal .vision-quote {
  color: #f7fbff;
}

body.theme-dark.dark-minimal .platform-core {
  background:
    radial-gradient(circle at 50% 0%, rgba(83, 214, 255, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(8, 18, 35, 0.92), rgba(4, 11, 21, 0.98));
  border-color: rgba(86, 136, 230, 0.24);
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

body.theme-dark.dark-minimal .platform-line {
  background: linear-gradient(90deg, rgba(47, 108, 247, 0.16), rgba(83, 214, 255, 0.30));
}

body.theme-dark.dark-minimal .process-arrow span {
  color: #9fc5ff;
}

body.theme-dark.dark-minimal .process-side.featured {
  border-color: rgba(98, 145, 232, 0.3);
  background:
    radial-gradient(circle at top right, rgba(83, 214, 255, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(8, 18, 35, 0.86), rgba(4, 11, 21, 0.98));
}

body.theme-dark.dark-minimal .vision-band {
  align-items: center;
}

body.theme-dark.dark-minimal .vision-quote {
  color: #f3f8ff;
}

body.theme-dark.dark-minimal .cta-panel {
  background:
    linear-gradient(135deg, #050b15 0%, #081325 54%, #0d2245 100%);
}

@media (max-width: 980px) {
  .hero-support {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .plain-list {
    gap: 8px;
  }

  .plain-list span {
    min-height: 36px;
    padding: 0 12px;
  }
}


/* =============================
   Client comment round updates
   ============================= */
.section-heading-tight {
  margin-bottom: 26px;
}

.home-story-top,
.tech-story-top {
  max-width: 960px;
}

.hero-intro-compact {
  max-width: 780px;
}

.hero-progression-wrap {
  margin-top: 34px;
}

.hero-progression-shell,
.tech-feature-shell {
  display: grid;
  gap: 30px;
  padding: 32px;
}

.hero-progression-figure,
.tech-feature-figure {
  overflow: hidden;
}

.hero-progression-figure img,
.tech-feature-figure img {
  width: 100%;
}

.hero-progression-figure {
  position: relative;
}

.hero-progression-figure::after,
.tech-feature-figure::after {
  content: "";
  position: absolute;
  inset: auto 12% -10% 12%;
  height: 22%;
  background: radial-gradient(circle, rgba(48, 118, 255, 0.18), transparent 68%);
  filter: blur(26px);
  pointer-events: none;
}

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

.power-stage-card {
  min-height: 100%;
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 11, 21, 0.96));
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.power-stage-card:hover,
.power-stage-card:focus-within {
  border-color: rgba(95, 146, 255, 0.34);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.28);
}

.power-stage-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(98, 145, 232, 0.28);
  background: rgba(10, 22, 44, 0.88);
  color: #f6fbff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.power-stage-card p {
  margin: 0;
  color: rgba(229, 237, 251, 0.88);
}

.home-narrative {
  padding-top: 54px;
}

.narrative-grid,
.tech-foundation-grid,
.tech-impact-grid {
  display: grid;
  gap: 26px;
}

.narrative-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.narrative-side {
  display: grid;
  gap: 18px;
}

.narrative-card,
.pillar-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 11, 21, 0.96));
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.narrative-card:hover,
.pillar-card:hover {
  border-color: rgba(95, 146, 255, 0.34);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.28);
}

.narrative-card h3,
.pillar-card h3,
.impact-right h3 {
  margin: 0 0 10px;
  color: #f6fbff;
  font-size: 1.18rem;
}

.narrative-card p,
.pillar-card p,
.pillar-card li,
.impact-note,
.impact-right li {
  color: rgba(229, 237, 251, 0.84);
}

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

.metric-band-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(7, 16, 32, 0.92), rgba(4, 10, 20, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.metric-band-card:hover {
  border-color: rgba(95, 146, 255, 0.34);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.26);
}

.metric-band-card strong {
  display: block;
  margin-bottom: 7px;
  color: #f7fbff;
  font-size: 1.16rem;
  line-height: 1.15;
}

.metric-band-card span {
  display: block;
  color: rgba(203, 219, 244, 0.82);
  font-size: 0.94rem;
}

.metric-band-card-large strong {
  font-size: 1.7rem;
}

.narrative-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.narrative-closing {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(74, 106, 162, 0.18);
}

.narrative-closing p {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 700;
  color: #f5faff;
}

.tech-story-hero {
  padding-bottom: 52px;
}

.tech-foundation {
  padding-top: 54px;
}

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

.foundation-metrics {
  margin-top: 24px;
}

.tech-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.pillar-card ul,
.impact-right ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.pillar-card li + li,
.impact-right li + li {
  margin-top: 8px;
}

.tech-impact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.impact-right {
  display: grid;
  gap: 18px;
}

.impact-note {
  margin-top: 18px;
}

.compact-stage-grid .power-stage-card {
  padding-block: 22px;
}

.doc-aligned-home .hero,
.tech-doc-aligned .hero {
  padding-top: 34px;
}

.doc-aligned-home .applications-grid {
  align-items: center;
}

body.theme-dark .power-stage-card,
body.theme-dark .narrative-card,
body.theme-dark .pillar-card,
body.theme-dark .metric-band-card {
  border-color: rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 11, 21, 0.96));
}

body.theme-dark .power-stage-card p strong,
body.theme-dark .narrative-closing p,
body.theme-dark .metric-band-card strong {
  color: #f7fbff;
}

@media (max-width: 1180px) {
  .narrative-grid,
  .tech-foundation-grid,
  .tech-impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .power-stage-grid,
  .metric-band-grid,
  .tech-pillars-grid {
    grid-template-columns: 1fr;
  }

  .hero-progression-shell,
  .tech-feature-shell {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .home-story-hero,
  .tech-story-hero {
    padding-bottom: 38px;
  }

  .hero-progression-shell,
  .tech-feature-shell,
  .power-stage-card,
  .narrative-card,
  .pillar-card,
  .metric-band-card {
    border-radius: 18px;
  }

  .power-stage-card,
  .narrative-card,
  .pillar-card {
    padding: 20px;
  }
}


/* =============================
   Technology page refinement v3
   ============================= */
body.tech-refined-v3 .section {
  padding: 82px 0;
}

body.tech-refined-v3 .hero {
  padding-top: 34px;
  padding-bottom: 56px;
}

body.tech-refined-v3 .section-tight {
  padding-top: 72px;
}

body.tech-refined-v3 .section-shell {
  padding: 30px;
  border-radius: 30px;
}

body.tech-refined-v3 .image-card {
  padding: 14px;
}

.tech-refresh-hero-shell,
.tech-refresh-split,
.tech-performance-top,
.tech-visual-duo {
  display: grid;
  gap: 24px;
  align-items: start;
}

.tech-refresh-hero-shell {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.tech-refresh-split,
.tech-performance-top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tech-visual-duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.tech-refresh-hero .hero-copy {
  max-width: 560px;
}

.tech-refresh-hero .hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 16px;
}

.tech-refresh-hero .hero-intro {
  max-width: 32ch;
  margin-bottom: 14px;
}

.tech-refresh-hero .hero-support-text {
  margin: 0 0 24px;
  max-width: 54ch;
  color: rgba(213, 225, 244, 0.78);
}

.tech-refresh-hero-visual,
.tech-visual-card,
.tech-performance-figure {
  height: 100%;
  align-self: stretch;
}

.tech-refresh-hero-visual img,
.tech-visual-card img,
.tech-performance-figure img {
  width: 100%;
  background: #050b15;
  object-fit: cover;
}

.tech-refresh-hero-visual img {
  aspect-ratio: 1.48 / 1;
}

.tech-visual-card img,
.tech-performance-figure img {
  aspect-ratio: 1.5 / 1;
}

.tech-refresh-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.tech-refresh-copy h2,
.tech-performance-copy h2 {
  margin: 0;
}

.tech-inline-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.tech-inline-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(229, 237, 251, 0.86);
}

.tech-inline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5ba4ff, #5edcff);
}

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

.tech-module-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 11, 21, 0.96));
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.tech-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 146, 255, 0.34);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.28);
}

.tech-module-card h3 {
  margin: 0;
  color: #f6fbff;
  font-size: 1.18rem;
  line-height: 1.3;
}

.tech-module-card ul,
.tech-more-body ul {
  margin: 0;
  padding-left: 20px;
}

.tech-module-card ul {
  display: grid;
  gap: 8px;
}

.tech-module-card li,
.tech-more-body li,
.tech-more-body p {
  color: rgba(229, 237, 251, 0.84);
}

.tech-more {
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(74, 106, 162, 0.16);
}

.tech-more summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 106, 162, 0.22);
  background: rgba(10, 20, 39, 0.72);
  color: #f3f8ff;
  cursor: pointer;
  font-weight: 700;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.tech-more summary::-webkit-details-marker {
  display: none;
}

.tech-more summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(93, 181, 255, 0.14);
  color: #8fd0ff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.tech-more summary:hover,
.tech-more summary:focus-visible,
.tech-more[open] summary {
  border-color: rgba(95, 146, 255, 0.34);
  background: rgba(10, 22, 44, 0.88);
  transform: translateY(-1px);
}

.tech-more[open] summary::after {
  content: "–";
}

.tech-more-body {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.tech-more-body p {
  margin: 0;
}

.tech-kpi-grid,
.tech-outcomes {
  display: grid;
  gap: 14px;
}

.tech-kpi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0 18px;
}

.tech-kpi-card,
.tech-outcome {
  border-radius: 20px;
  border: 1px solid rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 11, 21, 0.96));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.20);
}

.tech-kpi-card {
  padding: 18px 18px 16px;
}

.tech-kpi-card strong {
  display: block;
  margin-bottom: 8px;
  color: #f7fbff;
  font-size: 1.6rem;
  line-height: 1.05;
}

.tech-kpi-card span {
  display: block;
  color: rgba(203, 219, 244, 0.82);
  font-size: 0.94rem;
}

.tech-outcomes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tech-outcome {
  padding: 16px 18px;
  color: #edf6ff;
  font-weight: 700;
  text-align: center;
}

.tech-refresh-stage-grid {
  margin-top: 24px;
}

.tech-refresh-stage-grid .power-stage-card {
  min-height: 0;
  padding-block: 22px;
}

.tech-refresh-stage-grid .power-stage-card p {
  font-size: 0.98rem;
}

@media (max-width: 1180px) {
  .tech-refresh-hero-shell,
  .tech-refresh-split,
  .tech-performance-top {
    grid-template-columns: 1fr;
  }

  .tech-refresh-hero .hero-copy,
  .tech-refresh-hero .hero-copy h1,
  .tech-refresh-hero .hero-intro {
    max-width: none;
  }
}

@media (max-width: 980px) {
  body.tech-refined-v3 .section {
    padding: 72px 0;
  }

  .tech-visual-duo,
  .tech-module-grid,
  .tech-kpi-grid,
  .tech-outcomes,
  .tech-refresh-stage-grid {
    grid-template-columns: 1fr;
  }

  .tech-refresh-hero-visual img,
  .tech-visual-card img,
  .tech-performance-figure img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  body.tech-refined-v3 .hero {
    padding-top: 26px;
    padding-bottom: 42px;
  }

  body.tech-refined-v3 .section {
    padding: 60px 0;
  }

  body.tech-refined-v3 .section-shell,
  body.tech-refined-v3 .tech-module-card {
    border-radius: 22px;
  }

  body.tech-refined-v3 .section-shell,
  body.tech-refined-v3 .tech-module-card {
    padding: 22px;
  }

  .tech-more summary {
    width: 100%;
    justify-content: space-between;
  }
}

body.tech-refined-v3 .tech-refresh-hero .hero-copy h1 span { background: none; -webkit-text-fill-color: #f7fbff; color: #f7fbff; }
body.tech-refined-v3 .tech-refresh-hero-visual, body.tech-refined-v3 .tech-visual-card, body.tech-refined-v3 .tech-performance-figure { height: auto; align-self: start; }

/* =========================
   Applications page — creative dark variation
   ========================= */

.applications-page-creative .hero {
  padding-bottom: 44px;
}

.apps-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.apps-hero-copy {
  max-width: 640px;
}

.apps-hero-copy .lead {
  max-width: 60ch;
}

.apps-chip-tags {
  margin-top: 24px;
}

.apps-orbit-shell {
  position: relative;
  min-height: 580px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(74, 106, 162, 0.22);
  background:
    radial-gradient(circle at 50% 46%, rgba(93, 181, 255, 0.18), transparent 20%),
    radial-gradient(circle at 16% 18%, rgba(55, 105, 230, 0.16), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(73, 227, 255, 0.10), transparent 18%),
    linear-gradient(180deg, rgba(6, 14, 28, 0.94) 0%, rgba(4, 10, 19, 0.98) 100%);
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.apps-orbit-shell::before,
.apps-orbit-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.apps-orbit-shell::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(111, 218, 255, 0.08), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(47, 108, 247, 0.08), transparent 42%);
  opacity: 0.9;
}

.apps-orbit-shell::after {
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(74, 106, 162, 0.18);
}

.apps-orbit-grid,
.apps-orbit-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.apps-orbit-grid {
  background-image:
    linear-gradient(rgba(71, 107, 168, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 107, 168, 0.14) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, black 55%, transparent 100%);
  opacity: 0.42;
}

.apps-orbit-glow {
  background:
    radial-gradient(circle at 50% 48%, rgba(112, 220, 255, 0.28), transparent 16%),
    radial-gradient(circle at 50% 48%, rgba(48, 109, 247, 0.18), transparent 32%);
  animation: appsPulse 5.8s ease-in-out infinite;
}

.apps-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(46vw, 380px);
  max-width: 380px;
  aspect-ratio: 1 / 0.84;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.35));
}

.apps-orbit-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 26px;
}

.apps-orbit-layer-top {
  width: 72%;
  height: 20%;
  top: 10%;
  background:
    linear-gradient(180deg, rgba(162, 188, 228, 0.34), rgba(33, 50, 86, 0.86)),
    linear-gradient(135deg, #6cc5ff, #1e4d9e);
  border: 1px solid rgba(182, 210, 255, 0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.apps-orbit-layer-mid {
  top: 27%;
  width: 58%;
  height: 26%;
  display: grid;
  place-items: center;
  gap: 6px;
  text-align: center;
  color: #f8fbff;
  border: 1px solid rgba(101, 153, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(15, 49, 102, 0.74), rgba(9, 20, 43, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 0 36px rgba(86, 211, 255, 0.22);
}

.apps-orbit-layer-mid strong {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  letter-spacing: 0.02em;
}

.apps-orbit-layer-mid span {
  font-size: 0.82rem;
  color: rgba(215, 229, 249, 0.82);
}

.apps-orbit-layer-bottom {
  top: 50%;
  width: 92%;
  height: 24%;
  background:
    linear-gradient(180deg, rgba(66, 115, 212, 0.20), rgba(15, 27, 52, 0.86)),
    linear-gradient(135deg, rgba(78, 230, 255, 0.12), transparent 62%);
  border: 1px solid rgba(101, 153, 255, 0.18);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(73, 198, 255, 0.14);
}

.apps-orbit-layer-bottom::before {
  content: "";
  position: absolute;
  inset: 12% 7%;
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(129, 173, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 173, 255, 0.16) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.85;
}

.apps-orbit-card {
  position: absolute;
  width: clamp(170px, 19vw, 220px);
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(82, 119, 180, 0.26);
  background:
    linear-gradient(180deg, rgba(10, 21, 42, 0.88), rgba(5, 11, 22, 0.96));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.03);
  transform-origin: center;
  animation: appsFloat 8s ease-in-out infinite;
}

.apps-orbit-card::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(112, 220, 255, 0.65), rgba(112, 220, 255, 0));
  top: 50%;
}

.apps-orbit-card span {
  display: block;
  margin-bottom: 8px;
  color: #f6fbff;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.apps-orbit-card p {
  margin: 0;
  color: rgba(205, 220, 243, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
}

.orbit-ai {
  top: 64px;
  left: 34px;
  animation-delay: -1.6s;
}

.orbit-ai::after {
  right: -58px;
  transform: rotate(10deg);
}

.orbit-packaging {
  top: 86px;
  right: 34px;
  animation-delay: -0.3s;
}

.orbit-packaging::after {
  left: -58px;
  transform: rotate(170deg);
}

.orbit-edge {
  bottom: 78px;
  left: 38px;
  animation-delay: -2.2s;
}

.orbit-edge::after {
  right: -58px;
  transform: rotate(-10deg);
}

.orbit-electrification {
  right: 34px;
  bottom: 72px;
  animation-delay: -0.8s;
}

.orbit-electrification::after {
  left: -58px;
  transform: rotate(190deg);
}

.apps-markets-section {
  padding-top: 18px;
}

.apps-markets-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
  align-items: start;
}

.apps-market-figure {
  position: sticky;
  top: 104px;
}

.apps-market-grid {
  display: grid;
  gap: 18px;
}

.apps-market-card {
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.86), rgba(4, 11, 21, 0.96));
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.24);
}

.apps-market-card h3,
.apps-tab-panel h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #f6fbff;
  font-size: 1.2rem;
}

.apps-market-card p,
.apps-tab-panel p {
  margin: 0;
  color: rgba(224, 234, 248, 0.78);
}

.apps-market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 6px;
}

.apps-market-tags span,
.apps-unified-pill span {
  color: rgba(208, 221, 241, 0.78);
}

.apps-market-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(74, 106, 162, 0.20);
  background: rgba(9, 18, 35, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
}

.apps-market-card .tech-more {
  margin-top: 16px;
}

.apps-explorer-shell {
  padding: 28px;
}

.apps-explorer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 1.46fr);
  gap: 24px;
  align-items: start;
}

.apps-tabs {
  display: grid;
  gap: 12px;
}

.apps-tab {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  width: 100%;
  padding: 16px 16px 15px;
  border-radius: 20px;
  border: 1px solid rgba(74, 106, 162, 0.20);
  background: rgba(8, 18, 35, 0.62);
  color: #d9e6f8;
  cursor: pointer;
  text-align: left;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.apps-tab:hover,
.apps-tab:focus-visible,
.apps-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(95, 146, 255, 0.32);
  background: linear-gradient(180deg, rgba(10, 22, 44, 0.88), rgba(4, 11, 21, 0.96));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.apps-tab-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(94, 145, 233, 0.28);
  background: rgba(111, 218, 255, 0.08);
  color: #98d8ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.apps-tab-copy {
  color: #eff6ff;
  font-weight: 750;
  line-height: 1.4;
}

.apps-panel-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 20px;
  align-items: start;
}

.apps-panel-stack {
  position: relative;
  min-height: 100%;
}

.apps-tab-panel {
  display: grid;
  gap: 14px;
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(74, 106, 162, 0.22);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.86), rgba(4, 11, 21, 0.96));
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.24);
}

.apps-tab-panel ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.apps-tab-panel li {
  color: rgba(224, 234, 248, 0.82);
}

.js .apps-tab-panel {
  display: none;
}

.js .apps-tab-panel.is-active {
  display: grid;
}

.apps-unified-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.apps-unified-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.apps-unified-pill {
  padding: 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(74, 106, 162, 0.20);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.82), rgba(4, 11, 21, 0.96));
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}

.apps-unified-pill strong {
  display: block;
  margin-bottom: 8px;
  color: #f6fbff;
  font-size: 1.04rem;
}

.apps-cta-section {
  padding-top: 8px;
}

.applications-page-creative .cta-panel {
  gap: 24px;
}

@keyframes appsFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes appsPulse {
  0%, 100% {
    opacity: 0.62;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@media (max-width: 1180px) {
  .apps-hero-grid,
  .apps-markets-layout,
  .apps-explorer-layout,
  .apps-panel-stage,
  .apps-unified-grid {
    grid-template-columns: 1fr;
  }

  .apps-market-figure {
    position: relative;
    top: auto;
  }

  .apps-orbit-shell {
    min-height: 640px;
  }

  .apps-orbit-core {
    width: min(58vw, 400px);
  }
}

@media (max-width: 820px) {
  .apps-orbit-shell {
    min-height: 700px;
    padding: 28px 20px 24px;
  }

  .apps-orbit-core {
    top: 48%;
    width: min(70vw, 360px);
  }

  .apps-orbit-card {
    width: min(44vw, 210px);
  }

  .orbit-ai {
    top: 30px;
    left: 20px;
  }

  .orbit-packaging {
    top: 52px;
    right: 20px;
  }

  .orbit-edge {
    bottom: 44px;
    left: 20px;
  }

  .orbit-electrification {
    right: 20px;
    bottom: 28px;
  }

  .apps-tab {
    grid-template-columns: 34px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .apps-orbit-shell {
    min-height: 0;
    display: grid;
    gap: 16px;
    padding: 22px;
  }

  .apps-orbit-grid,
  .apps-orbit-glow {
    display: none;
  }

  .apps-orbit-core {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    max-width: none;
    margin: 4px auto 8px;
  }

  .apps-orbit-card {
    position: relative;
    inset: auto;
    width: 100%;
    animation: none;
  }

  .apps-orbit-card::after {
    display: none;
  }

  .apps-explorer-shell {
    padding: 22px;
  }

  .apps-tabs {
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    padding-bottom: 6px;
  }

  .apps-unified-rail {
    grid-template-columns: 1fr;
  }
}

/* === Contact page: compact dark direction === */

.contact-page .section {
  padding: 78px 0 84px;
}

.contact-main {
  min-height: calc(100vh - var(--header-h));
}

.contact-shell {
  padding: 38px;
}

.contact-shell::after {
  inset: auto -8% -28% auto;
  width: 320px;
  height: 320px;
  opacity: 0.62;
}

.contact-top-grid,
.contact-bottom-grid {
  display: grid;
  gap: 28px;
}

.contact-top-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
}

.contact-copy h1 {
  max-width: 10.2ch;
  margin: 0 0 16px;
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #f7fbff;
}

.contact-lead {
  margin: 0 0 14px;
  max-width: 37ch;
  color: rgba(235, 243, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.72;
}

.contact-intro {
  max-width: 42ch;
  margin: 0;
  color: rgba(198, 212, 236, 0.78);
}

.contact-copy .hero-actions {
  margin-top: 24px;
}

.contact-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 106, 162, 0.24);
  background: rgba(10, 20, 39, 0.72);
  color: #dce9ff;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact-visual-wrap {
  min-width: 0;
}

.contact-visual-stage {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(87, 128, 196, 0.20);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 42%), rgba(47, 108, 247, 0.16), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(83, 214, 255, 0.12), transparent 22%),
    linear-gradient(rgba(60, 82, 120, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 82, 120, 0.10) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 18, 35, 0.92), rgba(4, 10, 19, 0.99));
  background-size: auto, auto, 46px 46px, 46px 46px, auto;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact-visual-stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  border: 1px solid rgba(77, 108, 166, 0.20);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 26%);
  pointer-events: none;
}

.contact-visual-stage::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 42%;
  height: 38%;
  background: radial-gradient(circle, rgba(83, 214, 255, 0.12), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.contact-illustration {
  width: 100%;
  aspect-ratio: 1.26 / 1;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 22px 46px rgba(12, 52, 136, 0.22));
}

.contact-float-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(110, 168, 255, 0.24);
  background: rgba(7, 16, 31, 0.82);
  backdrop-filter: blur(10px);
  color: #eff7ff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.contact-float-card-top {
  top: 26px;
  left: 26px;
  animation: contactFloatA 7s ease-in-out infinite;
}

.contact-float-card-right {
  top: 88px;
  right: 26px;
  animation: contactFloatB 8s ease-in-out infinite;
}

.contact-float-card-bottom {
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  animation: contactFloatC 8.8s ease-in-out infinite;
}

.contact-bottom-grid {
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  align-items: start;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(74, 106, 162, 0.18);
}

.contact-side-column {
  display: grid;
  gap: 14px;
}

.contact-method-card,
.contact-form-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(74, 106, 162, 0.20);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.80), rgba(4, 10, 19, 0.96));
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact-method-card {
  display: block;
  padding: 22px 22px 20px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-method-card:hover,
.contact-method-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(111, 174, 255, 0.28);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.contact-method-card strong {
  display: block;
  margin: 0 0 10px;
  color: #f7fbff;
  font-size: 1.14rem;
  line-height: 1.28;
}

.contact-method-card p {
  margin: 0;
  color: rgba(198, 212, 236, 0.76);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-method-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(86, 136, 230, 0.18);
  background: linear-gradient(135deg, rgba(32, 80, 210, 0.22), rgba(83, 214, 255, 0.14));
  color: #e6f0ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-shell {
  padding: 26px 26px 22px;
}

.contact-form-head h2 {
  margin: 10px 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #f7fbff;
}

.contact-form-head p:last-child {
  margin: 0 0 20px;
  color: rgba(198, 212, 236, 0.76);
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

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

.contact-form label span {
  color: #dbe8fb;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(74, 106, 162, 0.22);
  border-radius: 16px;
  background: rgba(8, 18, 35, 0.72);
  color: #f7fbff;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(176, 196, 226, 0.56);
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(111, 174, 255, 0.34);
  background: rgba(10, 22, 42, 0.84);
  box-shadow: 0 0 0 4px rgba(47, 108, 247, 0.12);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-textarea {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-form-note {
  margin: 0;
  color: rgba(176, 196, 226, 0.72);
  font-size: 0.92rem;
}

.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  font-size: 0.92rem;
  color: #8fd5ff;
}

.form-status.is-error {
  color: #ffb88f;
}

.contact-page .site-footer {
  margin-top: 0;
}

@keyframes contactFloatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes contactFloatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 10px, 0); }
}

@keyframes contactFloatC {
  0%, 100% { transform: translate3d(-50%, 0, 0); }
  50% { transform: translate3d(-50%, -7px, 0); }
}

@media (max-width: 1120px) {
  .contact-top-grid,
  .contact-bottom-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy h1 {
    max-width: 9.8ch;
  }

  .contact-visual-stage {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .contact-page .section {
    padding: 54px 0 62px;
  }

  .contact-shell {
    padding: 24px;
    border-radius: 28px;
  }

  .contact-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-visual-stage {
    border-radius: 26px;
  }

  .contact-visual-stage::before {
    inset: 10px;
    border-radius: 20px;
  }

  .contact-float-card {
    font-size: 0.76rem;
    min-height: 38px;
    padding: 0 12px;
  }

  .contact-float-card-right {
    top: 68px;
    right: 18px;
  }

  .contact-float-card-top {
    top: 18px;
    left: 18px;
  }

  .contact-float-card-bottom {
    bottom: 18px;
    width: calc(100% - 36px);
    justify-content: center;
    text-align: center;
  }

  .contact-form-shell {
    padding: 22px 20px 20px;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-float-card,
  .contact-visual-stage,
  .contact-method-card {
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   Sprint 11 (2026-05-19) — Round 2 feedback
   Global theme: small section labels white → blue for consistency
   ============================================================ */

/* Technology: "Bsat" preserves mixed case (physics notation) — eyebrow is otherwise ALL CAPS like the other pillars.
   Use inline display so the span flows naturally within the eyebrow text. */
.preserve-case {
  display: inline;
  text-transform: none !important;
  letter-spacing: inherit;
  font: inherit;
  color: inherit;
}

/* Make sure the modules card eyebrow renders consistently with the other 3 cards.
   The .eyebrow base style is inline-flex which doesn't wrap multi-line text gracefully —
   force block + center align like the other eyebrows look in the screenshots. */
.tech-refresh-modules .feature-grid .feature-card .eyebrow {
  display: block;
  text-align: left;
  align-items: flex-start;
}
.tech-refresh-modules .feature-grid .feature-card .eyebrow::before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 3px;
}

/* About Us — Interdisciplinary block: restructure to stacked layout (one block per row).
   Three blocks vertically: main approach card → first card (platform) → second card (mission). */
.about-principles-shell {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
}
.about-principles-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.about-principles-main .about-principles-copy {
  max-width: 72ch;
}
@media (max-width: 880px) {
  .about-principles-side {
    grid-template-columns: 1fr;
  }
}

/* Technology intro: progressive color highlights on three "highlights" cards (mirror Home's discrete→embedded→vertical) */
.tech-refresh-intro .card-stack .stack-card:nth-child(1) {
  border-color: rgba(43, 134, 255, 0.34);
  background: linear-gradient(180deg, rgba(43, 134, 255, 0.08), rgba(4, 11, 21, 0.96));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(111, 176, 255, 0.10);
}
.tech-refresh-intro .card-stack .stack-card:nth-child(2) {
  border-color: rgba(120, 160, 230, 0.36);
  background: linear-gradient(180deg, rgba(19, 38, 78, 0.55), rgba(4, 11, 21, 0.96));
}
.tech-refresh-intro .card-stack .stack-card:nth-child(3) {
  border-color: rgba(255, 142, 43, 0.40);
  background: linear-gradient(180deg, rgba(255, 142, 43, 0.10), rgba(4, 11, 21, 0.96));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 178, 103, 0.12);
}

/* Technology Performance stats: same blue / neutral / orange progression */
.tech-refresh-performance .metric-band-grid .metric-band-card:nth-child(1) {
  border-color: rgba(43, 134, 255, 0.42);
  background: linear-gradient(180deg, rgba(43, 134, 255, 0.10), rgba(4, 10, 20, 0.98));
}
.tech-refresh-performance .metric-band-grid .metric-band-card:nth-child(1) strong { color: #6fb0ff; }

.tech-refresh-performance .metric-band-grid .metric-band-card:nth-child(2) {
  border-color: rgba(120, 160, 230, 0.34);
  background: linear-gradient(180deg, rgba(19, 38, 78, 0.55), rgba(4, 10, 20, 0.98));
}

.tech-refresh-performance .metric-band-grid .metric-band-card:nth-child(3) {
  border-color: rgba(255, 142, 43, 0.40);
  background: linear-gradient(180deg, rgba(255, 142, 43, 0.10), rgba(4, 10, 20, 0.98));
}
.tech-refresh-performance .metric-band-grid .metric-band-card:nth-child(3) strong { color: #ffb267; }

/* Technology Performance: right content blocks contrast */
.tech-performance-grid .card-stack .stack-card {
  border-color: rgba(120, 160, 230, 0.30);
  background: linear-gradient(180deg, rgba(13, 26, 54, 0.85), rgba(5, 11, 22, 0.96));
}

/* About Us: Matt Wilkowski photo alignment fix — push image down a touch so his face/shoulders align with the others */
.about-person-image img[src*="matt-wilkowski"] {
  object-position: center 28%;
  transform: scale(1.08) translateY(8px);
}
.about-person-card:hover .about-person-image img[src*="matt-wilkowski"],
.about-person-card:focus-within .about-person-image img[src*="matt-wilkowski"] {
  transform: scale(1.10) translateY(8px);
}

/* Media: hero pills larger with category color */
.chip-tags-media-hero { gap: 12px; margin-top: 18px; }
.chip-tags-media-hero .chip-cat {
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 999px;
  border: 1px solid rgba(120, 160, 230, 0.30);
  background: rgba(13, 26, 54, 0.85);
}
.chip-tags-media-hero .chip-cat-news { color: #6fb0ff; border-color: rgba(43, 134, 255, 0.55); }
.chip-tags-media-hero .chip-cat-perspectives { color: #ffffff; border-color: rgba(120, 160, 230, 0.50); }
.chip-tags-media-hero .chip-cat-papers { color: #ffb267; border-color: rgba(255, 142, 43, 0.55); }

/* Media explorer cards: subtle category-themed background */
.feature-card-cat-news {
  background:
    linear-gradient(180deg, rgba(43, 134, 255, 0.06), rgba(7, 16, 32, 0.96)),
    linear-gradient(180deg, rgba(13, 26, 54, 0.85), rgba(5, 11, 22, 0.96));
}
.feature-card-cat-perspectives {
  background:
    linear-gradient(180deg, rgba(19, 38, 78, 0.50), rgba(5, 11, 22, 0.96));
}
.feature-card-cat-papers {
  background:
    linear-gradient(180deg, rgba(255, 142, 43, 0.06), rgba(7, 16, 32, 0.96)),
    linear-gradient(180deg, rgba(13, 26, 54, 0.85), rgba(5, 11, 22, 0.96));
}

/* About Us: Partners visual — ensure EnaChip hub bubble sits ON TOP of node bubbles */
.about-ecosystem-hub {
  z-index: 5 !important;
}
.about-ecosystem-node {
  z-index: 3 !important;
}

/* Media article — restructured: hero is title/eyebrow/image only.
   The subtitle "lead" and the Back/Talk buttons moved into the article body. */
.media-article-lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text-strong);
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(120, 160, 230, 0.22);
  font-weight: 500;
}
.media-article-footer-actions {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(120, 160, 230, 0.18);
  gap: 14px;
}

/* About Us: Partners — add subtle color accents to break up nodes */
.about-ecosystem-node.node-a span,
.about-ecosystem-node.node-c span {
  border-color: rgba(43, 134, 255, 0.45);
  color: #6fb0ff;
}
.about-ecosystem-node.node-b span,
.about-ecosystem-node.node-e span {
  border-color: rgba(255, 142, 43, 0.45);
  color: #ffb267;
}
.about-ecosystem-node.node-d span {
  border-color: rgba(120, 160, 230, 0.40);
}



/* Eyebrow color tightened to logo blue */
body.theme-dark .eyebrow {
  color: #6fb0ff !important;
}

/* Uppercase pill / story labels — make clearly blue, not white */
body.theme-dark .story-label,
body.theme-dark .power-stage-label,
body.theme-dark .progress-step,
body.theme-dark .stack-index,
body.theme-dark .person-role,
body.theme-dark .feature-card-pill,
body.theme-dark .trusted-label,
body.theme-dark .eyebrow-inline,
body.theme-dark .brand-tag {
  color: #6fb0ff;
}

/* Per-card category accents (preserved) override the generic blue above */
body.theme-dark .feature-card-cat-news .feature-card-pill { color: #6fb0ff; }
body.theme-dark .feature-card-cat-papers .feature-card-pill { color: #ffb267; }

/* Power-stage label progression on Home: blue/blue/orange (Sprint 3 reaffirmed) */
body.theme-dark .power-stage-grid .power-stage-card:nth-child(3) .power-stage-label { color: #ffb267; }

/* Home: See Applications CTA — bright blue per client request */
.platform-panel .btn-secondary.btn-sm {
  background: linear-gradient(135deg, #49b6ff 0%, #2b86ff 45%, #144cc8 100%);
  border-color: rgba(23, 93, 204, 0.32);
  color: #ffffff;
}
.platform-panel .btn-secondary.btn-sm:hover {
  border-color: rgba(43, 134, 255, 0.55);
  box-shadow: 0 18px 34px rgba(30, 92, 209, 0.32);
}

/* ============================================================
   Sprint 12 (2026-05-20) — Round 3 refinements
   ============================================================ */

/* Home leadership: remove blank gap above team photos */
.person-card-tight {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.person-card-tight .person-image-tight {
  margin: 0;
  padding: 0;
}
.person-card-tight .person-image-tight img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

/* Centered section headings (used by Discrete→Vertical + Leadership) */
.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
  text-align: center;
}
.section-heading-centered .eyebrow {
  justify-content: center;
}
.leadership-head-centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.leadership-head-cta {
  margin-top: 22px;
}

/* Orange-accent CTA variant (See Applications) */
.btn-accent-orange {
  color: #ffffff;
  background: linear-gradient(135deg, #ffb267 0%, #ff8e2b 50%, #d96e10 100%);
  border: 1px solid rgba(255, 142, 43, 0.55);
  box-shadow: 0 14px 28px rgba(255, 142, 43, 0.28);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.btn-accent-orange:hover,
.btn-accent-orange:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 142, 43, 0.85);
  box-shadow: 0 18px 32px rgba(255, 142, 43, 0.40);
}
.platform-panel-cta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

/* Bio modal */
.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.bio-modal[hidden] { display: none; }
.bio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.78);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.bio-modal-panel {
  position: relative;
  max-width: 760px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 42px 38px;
  border-radius: 28px;
  border: 1px solid rgba(120, 160, 230, 0.35);
  background:
    radial-gradient(circle at 12% 0%, rgba(43, 134, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(13, 26, 54, 0.97), rgba(5, 11, 22, 0.99));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  color: var(--text);
}
.bio-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(120, 160, 230, 0.45);
  background: rgba(13, 26, 54, 0.95);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition), transform 120ms;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
.bio-modal-close:hover { border-color: rgba(255, 142, 43, 0.55); background: rgba(28, 18, 12, 0.92); }
.bio-modal-close:active { transform: scale(0.94); }
.bio-modal-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(120, 160, 230, 0.20);
}
.bio-modal-photo {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(120, 160, 230, 0.30);
}
.bio-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-modal-meta .person-role {
  display: inline-block;
  margin-bottom: 6px;
  color: #6fb0ff;
}
.bio-modal-meta h3 {
  margin: 0;
  font-size: 1.6rem;
  color: #ffffff;
}
.bio-modal-body p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--text);
}
.bio-modal-body p:last-child { margin-bottom: 0; }

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

@media (max-width: 720px) {
  .bio-modal-panel { padding: 28px 22px 26px; }
  .bio-modal-head { flex-direction: column; text-align: center; gap: 14px; }
  .bio-modal-photo { width: 96px; height: 96px; }
}

/* Footer single-line nav per client (move Contact up onto one line) */
.footer-links-single-line {
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 880px) {
  .footer-links-single-line { flex-wrap: wrap; white-space: normal; }
}

/* ============================================================
   Sprint 9 (2026-05-18) — Contact page simplification
   ============================================================ */
.form-optional {
  margin-left: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}
.contact-info-stack-simple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
  max-width: 460px;
}
.contact-info-stack-simple .feature-card { padding: 22px 24px; }
.contact-info-stack-simple .feature-card h3 { margin: 6px 0 10px; font-size: 1.25rem; }
.contact-info-stack-simple .feature-card a { color: #6fb0ff; }
.contact-info-card-accent {
  border-color: rgba(43, 134, 255, 0.40) !important;
  background:
    linear-gradient(180deg, rgba(43, 134, 255, 0.08), rgba(5, 11, 22, 0.96)),
    linear-gradient(180deg, rgba(13, 26, 54, 0.85), rgba(5, 11, 22, 0.96));
}
.contact-info-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(120, 160, 230, 0.18);
  font-size: 0.94rem;
  color: var(--text);
}

/* ============================================================
   Sprint 8 (2026-05-18) — Media page refinements
   ============================================================ */
.feature-card-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(120, 160, 230, 0.30);
  background: rgba(13, 26, 54, 0.85);
  color: #c8d4ea;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.feature-card-cat-news .feature-card-pill {
  color: #6fb0ff;
  border-color: rgba(43, 134, 255, 0.50);
}
.feature-card-cat-news { border-color: rgba(43, 134, 255, 0.34); }

.feature-card-cat-perspectives .feature-card-pill {
  color: #ffffff;
  border-color: rgba(120, 160, 230, 0.40);
}

.feature-card-cat-papers .feature-card-pill {
  color: #ffb267;
  border-color: rgba(255, 142, 43, 0.45);
}
.feature-card-cat-papers { border-color: rgba(255, 142, 43, 0.30); }

.media-feature-compact { padding-top: 32px; padding-bottom: 32px; }
.cta-panel-compact { padding: 32px 36px; gap: 18px; }
.cta-panel-compact h2 { font-size: 1.5rem; line-height: 1.2; }

/* ============================================================
   Sprint 7 (2026-05-18) — Careers page layout
   ============================================================ */
.careers-hero { padding-top: 60px; }
/* Hero now uses the standard .container > .section-heading pattern (same as Why EnaChip / Seeking Builders).
   The .careers-hero-copy class only refines typography — no width/margin overrides that would shift alignment. */
.careers-hero-copy { max-width: 920px; }  /* matches other careers section width */
.careers-hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 12px 0 22px;
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}
.careers-hero-copy h1 span {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}
.careers-hero-copy .hero-intro { margin: 0 0 14px; color: var(--text); }
.careers-hero-copy .hero-actions { margin-top: 26px; }
.careers-hero .hero-intro { margin: 0 0 14px; color: var(--text); }
.careers-hero .hero-actions { margin-top: 26px; }

.careers-why { padding-top: 72px; padding-bottom: 56px; }
.careers-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.careers-pillar {
  padding: 28px 26px;
  border-radius: 22px;
  border: 1px solid rgba(120, 160, 230, 0.28);
  background: linear-gradient(180deg, rgba(13, 26, 54, 0.85), rgba(5, 11, 22, 0.96));
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.careers-pillar:hover { border-color: rgba(43, 134, 255, 0.45); }
.careers-pillar h3 { margin: 0 0 10px; font-size: 1.12rem; color: #6fb0ff; }
.careers-pillar p { margin: 0; color: var(--text); }

/* Pillar color escalation: blue → blue → orange */
.careers-pillar.careers-pillar-1 { border-color: rgba(43, 134, 255, 0.34); }
.careers-pillar.careers-pillar-2 { border-color: rgba(120, 160, 230, 0.34); }
.careers-pillar.careers-pillar-3 {
  border-color: rgba(255, 142, 43, 0.40);
  background:
    linear-gradient(180deg, rgba(255, 142, 43, 0.07), rgba(5, 11, 22, 0.96)),
    linear-gradient(180deg, rgba(13, 26, 54, 0.85), rgba(5, 11, 22, 0.96));
}
.careers-pillar.careers-pillar-3 h3 { color: #ffb267; }

/* Simplified role cards — title + Apply Now only */
.careers-roles-simple {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.careers-role-card-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(120, 160, 230, 0.28);
  background: linear-gradient(180deg, rgba(13, 26, 54, 0.85), rgba(5, 11, 22, 0.96));
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.careers-role-card-simple:hover { border-color: rgba(43, 134, 255, 0.48); }
.careers-role-card-simple h3 { margin: 0; font-size: 1.18rem; color: #ffffff; }
.careers-role-card-simple .btn { flex-shrink: 0; }

@media (max-width: 720px) {
  .careers-roles-simple { grid-template-columns: 1fr; }
  .careers-role-card-simple { flex-direction: column; align-items: flex-start; gap: 14px; }
}

.careers-openings { padding-top: 56px; }
.careers-roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}
.careers-role-card {
  padding: 32px 30px;
  border-radius: 26px;
  border: 1px solid rgba(120, 160, 230, 0.26);
  background:
    radial-gradient(circle at 12% 0%, rgba(43, 134, 255, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(13, 26, 54, 0.85), rgba(5, 11, 22, 0.96));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.careers-role-card:hover { border-color: rgba(255, 142, 43, 0.40); }
.careers-role-head h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: #ffffff;
}
.careers-role-overview { margin: 0 0 22px; color: var(--text); }
.careers-role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(120, 160, 230, 0.18);
}
.careers-role-col h4 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6fb0ff;
}
.careers-role-col ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}
.careers-role-col li { margin: 6px 0; line-height: 1.55; }
.careers-role-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(120, 160, 230, 0.18);
}

@media (max-width: 880px) {
  .careers-pillars { grid-template-columns: 1fr; }
  .careers-role-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   Sprint 3 (2026-05-18) — Home page visual contrast enhancements
   Client direction: add contrast between the three Power Delivery
   metric items + reinforce left → right progression on the
   Discrete → Embedded → Vertical stages.
   ============================================================ */

/* Three metric band cards (Fsw>10MHz / Package + Chip / Lower Loss) */
.narrative-metrics .metric-band-card:nth-child(1) {
  border-color: rgba(43, 134, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(43, 134, 255, 0.10), rgba(4, 10, 20, 0.98)),
    linear-gradient(180deg, rgba(7, 16, 32, 0.92), rgba(4, 10, 20, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(111, 176, 255, 0.10);
}
.narrative-metrics .metric-band-card:nth-child(1) strong {
  color: #6fb0ff;
}

.narrative-metrics .metric-band-card:nth-child(2) {
  border-color: rgba(120, 160, 230, 0.34);
  background:
    linear-gradient(180deg, rgba(19, 38, 78, 0.55), rgba(4, 10, 20, 0.98));
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.narrative-metrics .metric-band-card:nth-child(3) {
  border-color: rgba(255, 142, 43, 0.40);
  background:
    linear-gradient(180deg, rgba(255, 142, 43, 0.10), rgba(4, 10, 20, 0.98)),
    linear-gradient(180deg, rgba(7, 16, 32, 0.92), rgba(4, 10, 20, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 178, 103, 0.12);
}
.narrative-metrics .metric-band-card:nth-child(3) strong {
  color: #ffb267;
}

/* Three power-stage cards (Discrete → Embedded → Vertical progression) */
.power-stage-grid .power-stage-card:nth-child(1) {
  border-color: rgba(120, 160, 230, 0.24);
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.72), rgba(4, 11, 21, 0.94));
}
.power-stage-grid .power-stage-card:nth-child(1) .power-stage-label {
  color: rgba(198, 215, 242, 0.92);
  border-color: rgba(120, 160, 230, 0.32);
}

.power-stage-grid .power-stage-card:nth-child(2) {
  border-color: rgba(43, 134, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(43, 134, 255, 0.07), rgba(4, 11, 21, 0.96)),
    linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 11, 21, 0.96));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(111, 176, 255, 0.10);
}
.power-stage-grid .power-stage-card:nth-child(2) .power-stage-label {
  color: #6fb0ff;
  border-color: rgba(43, 134, 255, 0.45);
  background: rgba(13, 26, 54, 0.95);
}

.power-stage-grid .power-stage-card:nth-child(3) {
  border-color: rgba(43, 134, 255, 0.50);
  background:
    linear-gradient(180deg, rgba(255, 142, 43, 0.08), rgba(4, 11, 21, 0.98)),
    linear-gradient(180deg, rgba(43, 134, 255, 0.10), rgba(4, 11, 21, 0.98)),
    linear-gradient(180deg, rgba(8, 18, 35, 0.84), rgba(4, 11, 21, 0.96));
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 178, 103, 0.10);
}
.power-stage-grid .power-stage-card:nth-child(3) .power-stage-label {
  color: #ffb267;
  border-color: rgba(255, 142, 43, 0.50);
  background: rgba(28, 18, 12, 0.92);
}

/* Subtle directional arrow accent on stage cards 2 + 3 to reinforce left → right flow */
@media (min-width: 880px) {
  .power-stage-grid .power-stage-card:nth-child(2)::before,
  .power-stage-grid .power-stage-card:nth-child(3)::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, rgba(43, 134, 255, 0), rgba(111, 176, 255, 0.55));
    transform: translateY(-50%);
    pointer-events: none;
  }
  .power-stage-grid .power-stage-card:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(43, 134, 255, 0), rgba(255, 178, 103, 0.55));
  }
  .power-stage-grid .power-stage-card {
    position: relative;
  }
}

/* ============================================================
   Sprint 14 (2026-05-21) — Cross-page font + section sizing normalization
   Client: "Font/section sizing inconsistent across several pages"
   Hero h1: clamp(3rem, 5.9vw, 5rem) — intentionally larger
   All other section H2s: unified size below
   ============================================================ */

/* HARD UNIFICATION of every section H2 - all share one scale */
.section h2,
.section-heading h2,
.copy-block h2,
.cta-copy h2,
.leadership-head h2,
.section-shell h2,
.tech-band-shell h2,
.platform-panel h2,
.story-panel h2,
.placeholder-wrap h1,
.hero-progression-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 18px !important;
  color: var(--text-strong);
}

/* Hero h1 keeps its own intentional larger size */
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem) !important;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

/* All H2 sitewide pure white (client: "looks light blue vs white" on some sections) */
.section h2,
.section-heading h2,
.copy-block h2,
.cta-copy h2,
.cta-panel h2,
.leadership-head h2,
.media-feature-copy h2,
.media-news-feature-body h2,
.media-list-card h2,
.media-blog-card h2 {
  color: #ffffff !important;
}

/* ============================================================
   v10 (2026-05-25) — ABSOLUTE h2 sizing standardization
   Client feedback after 4 rounds: section sizing still inconsistent.
   This rule catches EVERY h2 inside a .section across the entire site.
   Hero h1 stays larger via separate .hero-copy h1 rule.
   ============================================================ */
section.section h2,
section.hero h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 18px !important;
  color: #ffffff !important;
}
/* Card titles never get the section h2 size — keep them smaller */
.feature-card h3,
.application-card h3,
.person-card h3,
.careers-pillar h3,
.about-principle-side h3,
.power-stage-card h3,
.platform-panel h3 {
  font-size: 1.18rem !important;
  line-height: 1.25 !important;
}
/* Bio modal h3 stays scoped to itself */
.bio-modal-meta h3 {
  font-size: 1.5rem !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
}

/* Media page hero — white + larger to match other heroes (per 5/25 client feedback) */
.media-landing-hero .media-page-hero-copy h1,
.media-page-hero-copy h1 {
  color: #ffffff !important;
  font-size: clamp(2.4rem, 5vw, 4.2rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;
}
.media-landing-hero .media-page-hero-copy h1 span,
.media-page-hero-copy h1 span {
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}

/* Standardize section eyebrows */
.eyebrow,
.eyebrow-inline {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Standardize lead paragraph under headings */
.section-heading .lead,
.hero-copy .lead {
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 64ch;
}

/* Unified section padding (overrides page-specific values where they drifted) */
.section { padding: 96px 0; }
.section-tight { padding-top: 72px; padding-bottom: 96px; }

/* Card body text size unified */
.feature-card p,
.application-card p,
.stack-card p,
.power-stage-card p,
.metric-band-card span,
.person-body p {
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Card titles unified */
.feature-card h3,
.application-card h3,
.person-card h3,
.careers-pillar h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin: 0 0 8px;
}

/* ============================================================
   Sprint 13 (2026-05-20) — Full responsive layer
   Breakpoints: 1280 (laptop) · 1024 (tablet L) · 880 (tablet P) · 640 (mobile L) · 420 (mobile)
   ============================================================ */

/* Universal safety: prevent horizontal overflow on small screens */
html, body { max-width: 100vw; }
img, svg, video { max-width: 100%; height: auto; }

/* ---------- Laptops (≤ 1280px) ---------- */
@media (max-width: 1280px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 96px 0; }
  .hero { padding-bottom: 64px; }
  .feature-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Tablet landscape (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .hero { padding-bottom: 56px; }

  /* Two-column hero/content grids stack */
  .two-col-hero-grid,
  .two-col-content-grid,
  .careers-hero-grid,
  .media-page-hero-grid,
  .home-narrative .narrative-grid,
  .home-story-top,
  .applications-grid,
  .tech-performance-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  /* Three-card grids drop to 2 */
  .narrative-metrics,
  .metric-band-grid,
  .feature-grid-three,
  .careers-pillars,
  .power-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Hero typography scales */
  h1 { font-size: clamp(2rem, 4vw, 2.8rem) !important; line-height: 1.1; }

  /* Footer columns relax */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .footer-links-single-line { flex-wrap: wrap; white-space: normal; gap: 12px 18px; }
}

/* ---------- Tablet portrait (≤ 880px) ---------- */
@media (max-width: 880px) {
  /* Mobile nav panel: dark theme override (the base CSS uses a light bg) */
  body.theme-dark .site-nav {
    background: rgba(13, 26, 54, 0.96);
    border-color: rgba(120, 160, 230, 0.32);
  }
  body.theme-dark .site-nav a {
    color: #c8d4ea;
  }
  body.theme-dark .site-nav a:hover,
  body.theme-dark .site-nav a:focus-visible,
  body.theme-dark .site-nav a[aria-current="page"] {
    color: #ffffff;
    background: rgba(43, 134, 255, 0.18);
  }

  /* Mobile hamburger color in dark theme */
  body.theme-dark .menu-toggle span {
    background: #ffffff;
  }

  /* Header: shrink + keep tagline visible (compact) */
  :root { --header-h: 72px; }
  .brand img { width: 36px; height: 36px; }
  .brand-tag {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-top: 2px;
  }
  .brand-name { font-size: 0.98rem; }

  /* Stacking + grids */
  .narrative-metrics,
  .metric-band-grid,
  .feature-grid-three,
  .feature-grid-four,
  .careers-pillars,
  .careers-roles-simple,
  .power-stage-grid,
  .team-grid-four,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Section padding tighter */
  .section { padding: 64px 0; }
  .section-tight { padding-top: 48px; }
  h1 { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
  h2 { font-size: clamp(1.5rem, 5.5vw, 2.2rem) !important; }
  h3 { font-size: clamp(1.15rem, 4.5vw, 1.4rem) !important; }

  /* Hero/CTA actions stack */
  .hero-actions { flex-wrap: wrap; gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }
  .cta-panel { grid-template-columns: 1fr !important; gap: 18px; }
  .cta-actions { flex-wrap: wrap; }
  .cta-actions .btn { flex: 1 1 auto; justify-content: center; }

  /* Bio modal mobile tightening */
  .bio-modal { padding: 12px; }
  .bio-modal-panel { padding: 24px 18px 22px; max-height: 92vh; }
  .bio-modal-head { flex-direction: column; align-items: flex-start; gap: 12px; padding-bottom: 16px; margin-bottom: 16px; }
  .bio-modal-photo { width: 72px; height: 72px; }
  .bio-modal-meta h3 { font-size: 1.35rem; }

  /* Person cards (home leadership) */
  .person-card-tight .person-image-tight img {
    aspect-ratio: 1 / 1;
    object-position: center 20%;
  }

  /* Careers role cards: title above button */
  .careers-role-card-simple {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .careers-role-card-simple .btn { width: 100%; justify-content: center; }

  /* Tech intro highlights stay readable */
  .tech-refresh-intro .card-stack { gap: 12px; }

  /* Applications page feature cards */
  .feature-card { padding: 22px 20px; }

  /* Contact form: full-width inputs */
  .contact-info-stack-simple { max-width: 100%; }
  .contact-form-panel { padding: 24px 20px; }
  .form-optional { display: inline-block; }

  /* Media hero pills wrap */
  .chip-tags-media-hero { flex-wrap: wrap; }

  /* Tables / wide content scroll horizontally if needed */
  .plain-list { flex-wrap: wrap; gap: 8px; }
}

/* ---------- Mobile large (≤ 640px) ---------- */
@media (max-width: 640px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .section { padding: 52px 0; }

  /* Headings */
  h1 { font-size: 1.7rem !important; line-height: 1.15; }
  h2 { font-size: 1.4rem !important; line-height: 1.2; }
  h3 { font-size: 1.1rem !important; }

  /* Larger buttons for thumbs */
  .btn { padding: 12px 18px; min-height: 44px; font-size: 0.95rem; }
  .btn-sm { padding: 10px 16px; min-height: 40px; }

  /* Hide directional connector lines between stage cards on small screens */
  .power-stage-grid .power-stage-card:nth-child(2)::before,
  .power-stage-grid .power-stage-card:nth-child(3)::before {
    display: none;
  }

  /* Centered section padding reduced */
  .section-heading-centered { padding: 0 6px; }
  .section-heading-centered h2 { font-size: 1.5rem !important; }

  /* Hero progression caption */
  .hero-progression-figure figcaption { font-size: 0.86rem; }

  /* Footer */
  .site-footer { padding: 36px 0 28px; }
  .footer-brand { text-align: left; }
  .footer-copy { font-size: 0.92rem; }
  .footer-links-single-line { gap: 10px 16px; font-size: 0.92rem; }

  /* Bio modal full-screen feel */
  .bio-modal-panel { border-radius: 18px; max-height: 94vh; }
  .bio-modal-body p { font-size: 0.96rem; line-height: 1.65; }

  /* Form fields */
  .contact-php-form input,
  .contact-php-form textarea {
    font-size: 1rem; /* prevents iOS zoom on focus */
  }

  /* Media category card padding */
  .feature-card-cat { padding: 22px 18px; }

  /* Hero pills smaller */
  .chip-tags-media-hero .chip-cat { padding: 8px 14px; font-size: 0.85rem; }

  /* Investor trusted strip */
  .trusted-logos img { max-height: 32px; width: auto; }
}

/* ---------- Mobile (≤ 420px) ---------- */
@media (max-width: 420px) {
  .container { width: min(calc(100% - 16px), var(--container)); }
  .section { padding: 44px 0; }

  h1 { font-size: 1.5rem !important; }
  h2 { font-size: 1.3rem !important; }

  .nav-cta { display: none; }
  .brand img { width: 32px; height: 32px; }

  /* Apps explorer tabs stack */
  .applications-tab-list { flex-direction: column; }

  /* Bio modal padding minimal */
  .bio-modal { padding: 8px; }
  .bio-modal-panel { padding: 20px 16px; }
  .bio-modal-close { top: 10px; right: 10px; width: 44px; height: 44px; font-size: 1.5rem; }
}

/* ---------- Landscape phone (height-constrained) ---------- */
@media (max-height: 480px) and (orientation: landscape) {
  .hero { padding-top: 24px; padding-bottom: 32px; }
  .section { padding: 36px 0; }
  .bio-modal-panel { max-height: 92vh; }
}

/* ---------- Touch device accessibility ---------- */
@media (hover: none) and (pointer: coarse) {
  .btn:hover, .feature-card:hover, .person-card:hover {
    transform: none !important;
  }
  /* Bigger tap targets for nav links */
  .site-nav a { padding: 14px 16px; }
  /* Disable tilt on touch */
  [data-tilt] { transform: none !important; }
}


