/* Defentect.AI — company page CSS
 * Concatenation of every <style> block from company.html (head + body).
 * Enqueued conditionally for /ai/company via
 * dftc_ai_page_enqueue() in functions.php (frontend) and
 * dftc_ai_editor_enqueue() (block editor preview).
 */

/* ============================================================
 * WORDPRESS BLOCK ALIGNMENT — force full-bleed for our page blocks
 * ============================================================ */
main#main-content { width: 100%; }
.alignfull,
[class*="wp-block-defentect-page-"] {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
[class*="wp-block-defentect-page-"] > *:first-child { margin-top: 0; }
[class*="wp-block-defentect-page-"] > *:last-child { margin-bottom: 0; }

/* Editor canvas alignment — kill the default content-width constraint inside our blocks */
.editor-styles-wrapper [class*="wp-block-defentect-page-"] {
    max-width: none !important;
    margin: 0 !important;
}

:root {
  --void: #050810;
  --abyss: #080c18;
  --deep: #0c1224;
  --hull: #131a30;
  --hull-2: #1a2240;
  --hull-3: #232c50;
  --hairline: rgba(165, 195, 255, 0.08);
  --hairline-strong: rgba(165, 195, 255, 0.16);
  --hairline-glow: rgba(91, 142, 255, 0.32);

  --ice: #f0f4ff;
  --ice-soft: #e1e8f7;
  --text: #b4bccf;
  --text-muted: #7d869c;
  --text-faint: #545c70;

  --azure: #5b8eff;
  --azure-glow: rgba(91, 142, 255, 0.5);
  --azure-deep: #3d6fde;
  --cyan: #a4d4ff;
  --signal: #4ade80;
  --critical: #ff5476;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "ss02", "cv01", "cv11";
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(91, 142, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(164, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(91, 142, 255, 0.05) 0%, transparent 60%),
    var(--void);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 13% 27%, rgba(255, 255, 255, 0.4) 0.5px, transparent 1px),
    radial-gradient(circle at 67% 41%, rgba(255, 255, 255, 0.3) 0.5px, transparent 1px),
    radial-gradient(circle at 89% 73%, rgba(255, 255, 255, 0.5) 0.5px, transparent 1px),
    radial-gradient(circle at 23% 89%, rgba(255, 255, 255, 0.3) 0.5px, transparent 1px),
    radial-gradient(circle at 41% 11%, rgba(255, 255, 255, 0.4) 0.5px, transparent 1px),
    radial-gradient(circle at 95% 17%, rgba(255, 255, 255, 0.3) 0.5px, transparent 1px),
    radial-gradient(circle at 6% 56%, rgba(255, 255, 255, 0.4) 0.5px, transparent 1px),
    radial-gradient(circle at 51% 67%, rgba(255, 255, 255, 0.3) 0.5px, transparent 1px);
  background-size: 300px 300px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

a { color: var(--azure); text-decoration: none; transition: color .15s; }
a:hover { color: var(--ice); }
img { max-width: 100%; display: block; }

.signal-pulse {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}
.signal-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--signal);
  opacity: 0;
  animation: ringpulse 2.4s ease-out infinite;
}
@keyframes ringpulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.4); }
}

/* UTILITY */
.utility {
  background: rgba(8, 12, 24, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  padding: 9px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  z-index: 5;
}
.utility-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility .left { display: flex; align-items: center; gap: 12px; color: var(--text); }
.utility .right { display: flex; gap: 24px; }
.utility a { color: var(--text-muted); }
.utility a:hover { color: var(--ice); }

/* NAV */
.nav {
  background: rgba(5, 8, 16, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.025em;
  color: var(--ice);
}
.logo-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.logo .ai { color: var(--azure); font-weight: 400; }

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all .15s;
}
.nav-links a:hover {
  color: var(--ice);
  background: rgba(91, 142, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 11px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s ease;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--azure) 0%, var(--azure-deep) 100%);
  color: var(--void);
  font-weight: 600;
  border-color: var(--azure);
  box-shadow: 0 0 0 1px rgba(91, 142, 255, 0.3), 0 8px 24px -8px rgba(91, 142, 255, 0.5);
}
.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(91, 142, 255, 0.5), 0 12px 32px -8px rgba(91, 142, 255, 0.7);
  transform: translateY(-1px);
  color: var(--void);
}
.btn-ghost {
  background: rgba(165, 195, 255, 0.04);
  color: var(--ice);
  border-color: var(--hairline-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(165, 195, 255, 0.08);
  border-color: var(--azure);
  color: var(--ice);
}

/* HERO */
.hero {
  position: relative;
  padding: 112px 0 40px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(91, 142, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  margin-bottom: 36px;
  background: rgba(91, 142, 255, 0.06);
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ice-soft);
}
.hero-tag .em { color: var(--cyan); font-weight: 600; }

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: var(--ice);
  margin-bottom: 32px;
}
.hero h1 .accent {
  font-weight: 500;
  background: linear-gradient(135deg, var(--azure) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lede {
  font-size: 24px;
  line-height: 1.5;
  color: var(--text);
  max-width: 56ch;
  margin-bottom: 40px;
  font-weight: 300;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  background: linear-gradient(180deg, rgba(91, 142, 255, 0.06) 0%, rgba(91, 142, 255, 0.02) 100%);
  border: 1px solid var(--hairline-strong);
  border-radius: 16px;
  padding: 32px 32px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 24px 64px -24px rgba(91, 142, 255, 0.3);
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 30%; right: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azure), transparent);
}
.hero-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.hero-card-meta .left { display: flex; align-items: center; gap: 8px; color: var(--azure); }
.pull-quote {
  font-family: 'Sora', sans-serif;
  font-size: 21px;
  line-height: 1.4;
  color: var(--ice);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.attribution {
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.attr-name {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ice);
  margin-bottom: 2px;
}
.attr-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.attr-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  padding: 4px 10px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
}

/* ORBITAL TICKER */






.orbital-num .accent {
  background: linear-gradient(135deg, var(--azure) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.orbital-num .unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 0;
}

/* SECTIONS */
section { padding: 120px 0; position: relative; z-index: 1; }
.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 20px;
  padding: 7px 16px;
  background: rgba(91, 142, 255, 0.12);
  border: 1px solid rgba(164, 212, 255, 0.25);
  border-radius: 100px;
}
.section-head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ice);
  max-width: 22ch;
  margin-bottom: 24px;
}
.section-head h2 .accent {
  font-weight: 500;
  background: linear-gradient(135deg, var(--azure) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head .sub {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  line-height: 1.55;
  color: var(--text);
  max-width: 64ch;
  font-weight: 300;
}

/* PLATFORM */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pcard {
  background: linear-gradient(180deg, rgba(91, 142, 255, 0.06) 0%, rgba(91, 142, 255, 0.01) 100%);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 36px 32px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  transition: all .3s ease;
  overflow: hidden;
}
.pcard::before {
  content: "";
  position: absolute;
  top: 0; left: 30%; right: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-glow), transparent);
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  box-shadow: 0 24px 48px -16px rgba(91, 142, 255, 0.25);
}
.pcard-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 28px;
  padding: 5px 12px;
  background: rgba(91, 142, 255, 0.08);
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
}
.pcard.kyvoo .pcard-tag {
  color: var(--cyan);
  background: rgba(164, 212, 255, 0.08);
}
.pcard h3 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--ice);
  margin-bottom: 6px;
  line-height: 1.05;
}
.pcard .subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
.pcard p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 300;
}
.pcard-spec { display: flex; flex-direction: column; gap: 10px; }
.pcard-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.pcard-spec-row .k { color: var(--text-muted); text-transform: uppercase; }
.pcard-spec-row .v { color: var(--ice); font-weight: 500; }

/* INTEGRATION */
.int-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: center;
}
.int-text .section-eyebrow { margin-bottom: 24px; }
.int-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ice);
  margin-bottom: 28px;
}
.int-text h2 .accent {
  font-weight: 500;
  background: linear-gradient(135deg, var(--azure) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 56ch;
  font-weight: 300;
}

.diagram {
  position: relative;
  background: linear-gradient(180deg, rgba(91, 142, 255, 0.04) 0%, rgba(91, 142, 255, 0.01) 100%);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(20px);
  aspect-ratio: 1.05 / 1;
  overflow: hidden;
}
.diagram::before {
  content: "";
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azure-glow), transparent);
}
.diagram-meta {
  position: absolute;
  top: 16px; left: 20px; right: 20px;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  z-index: 2;
}
.diagram-meta .em { color: var(--azure); }
.diagram-svg { width: 100%; height: 100%; display: block; }

/* INDUSTRIES */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ind-card {
  background: linear-gradient(180deg, rgba(91, 142, 255, 0.05) 0%, rgba(91, 142, 255, 0.01) 100%);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.ind-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--azure-glow), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}
.ind-card:hover {
  transform: translateY(-2px);
  border-color: var(--hairline-strong);
  box-shadow: 0 16px 32px -12px rgba(91, 142, 255, 0.25);
}
.ind-card:hover::before { opacity: 0.5; }
.ind-card:hover .ind-arrow { background: var(--azure); color: var(--void); border-color: var(--azure); }
.ind-card-content { position: relative; z-index: 1; }
.ind-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 14px;
  display: inline-block;
}
.ind-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ice);
  margin-bottom: 12px;
  line-height: 1.15;
  max-width: 18ch;
}
.ind-card p {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 300;
  max-width: 42ch;
}
.ind-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice);
  font-size: 14px;
  transition: all .2s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* CAPABILITIES */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cap-card {
  background: linear-gradient(180deg, rgba(91, 142, 255, 0.05) 0%, rgba(91, 142, 255, 0.01) 100%);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 36px 32px 32px;
  backdrop-filter: blur(20px);
  position: relative;
  transition: all .3s ease;
}
.cap-card:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  box-shadow: 0 24px 48px -16px rgba(91, 142, 255, 0.2);
}
.cap-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 142, 255, 0.08);
  margin-bottom: 24px;
  position: relative;
}
.cap-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 12px;
}
.cap-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ice);
  margin-bottom: 14px;
  line-height: 1.2;
  max-width: 18ch;
}
.cap-card p {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 300;
}
.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.cap-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ice-soft);
  padding: 6px 12px;
  background: rgba(91, 142, 255, 0.06);
  border: 1px solid var(--hairline);
  border-radius: 100px;
}

/* PARTNERS */
.partners {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.partners-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
}
.partners-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.partners-head .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
}
.partners-head .count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: linear-gradient(180deg, rgba(91, 142, 255, 0.04) 0%, rgba(91, 142, 255, 0.01) 100%);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.partner {
  padding: 32px 20px;
  border-right: 1px solid var(--hairline);
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  transition: all .15s ease;
}
.partner:last-child { border-right: 0; }
.partner:hover {
  background: rgba(91, 142, 255, 0.08);
  color: var(--azure);
}
.partner .em {
  font-weight: 500;
  background: linear-gradient(135deg, var(--azure) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DEMO */
.demo-card-outer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
}
.demo-card {
  background:
    radial-gradient(ellipse at top right, rgba(91, 142, 255, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, rgba(91, 142, 255, 0.08) 0%, rgba(91, 142, 255, 0.02) 100%);
  border: 1px solid var(--hairline-strong);
  border-radius: 24px;
  padding: 80px 64px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.demo-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azure), transparent);
}
.demo-card::after {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--azure-glow) 0%, transparent 70%);
  pointer-events: none;
}
.demo-text { position: relative; z-index: 1; }
.demo-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  background: rgba(91, 142, 255, 0.1);
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.demo h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ice);
  margin-bottom: 28px;
}
.demo h2 .accent {
  font-weight: 500;
  background: linear-gradient(135deg, var(--azure) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.demo .lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 50ch;
  font-weight: 300;
}
.demo-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.checklist {
  background: rgba(8, 12, 24, 0.5);
  border: 1px solid var(--hairline-strong);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.checklist::before {
  content: "";
  position: absolute;
  top: 0; left: 30%; right: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azure), transparent);
}
.checklist-head {
  padding: 16px 24px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.checklist-head .left { display: flex; align-items: center; gap: 10px; color: var(--ice); }
.checklist-head .right { color: var(--text-muted); }
.checklist ul { list-style: none; padding: 8px 0; }
.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 300;
}
.checklist li:last-child { border-bottom: 0; }
.checklist li .check {
  width: 20px; height: 20px;
  border: 1px solid var(--azure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 142, 255, 0.1);
  color: var(--azure);
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(91, 142, 255, 0.4);
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 16, 0.9) 30%);
  border-top: 1px solid var(--hairline);
  padding: 96px 0 32px;
  position: relative;
  z-index: 1;
  margin-top: 96px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer-brand .logo { margin-bottom: 22px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 42ch;
  font-weight: 300;
}
.footer-brand .contact {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.9;
  color: var(--text-muted);
}
.footer-brand .contact a { color: var(--ice); }
.footer-brand .contact a:hover { color: var(--azure); }
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}
.footer-col a {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  font-weight: 300;
}
.footer-col a:hover { color: var(--ice); }

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 36px 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a { color: var(--text-faint); }
.footer-bottom .legal a:hover { color: var(--ice); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner, .int-inner, .demo-card { grid-template-columns: 1fr; gap: 56px; padding: 56px 32px; }
  .platform-cards, .cap-grid, .ind-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .utility-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .nav-inner, .hero-inner, .section-inner, .int-inner, .demo-card-outer, .partners-inner, 
  .partners-grid { grid-template-columns: 1fr 1fr; }
  
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
  .demo-card { padding: 48px 24px; }
  section { padding: 80px 0; }
}
/* ============================================================
   defentect/section — wrapper for arbitrary inner blocks
   Style core/* blocks dropped inside so the design stays consistent.
   ============================================================ */
.defentect-section { color: var(--ice); }
.defentect-section .defentect-section-body { display: flex; flex-direction: column; gap: 24px; }

/* Core paragraph */
.defentect-section .defentect-section-body p:not(.has-text-color) {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  font-family: 'Manrope', sans-serif;
}

/* Core headings */
.defentect-section .defentect-section-body h1,
.defentect-section .defentect-section-body h2,
.defentect-section .defentect-section-body h3,
.defentect-section .defentect-section-body h4 {
  color: var(--ice);
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.defentect-section .defentect-section-body h2 { font-size: clamp(28px, 3.4vw, 44px); }
.defentect-section .defentect-section-body h3 { font-size: 26px; font-weight: 400; }
.defentect-section .defentect-section-body h4 { font-size: 20px; font-weight: 400; }

/* Core list */
.defentect-section .defentect-section-body ul,
.defentect-section .defentect-section-body ol {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  padding-left: 22px;
}
.defentect-section .defentect-section-body li { margin-bottom: 8px; }
.defentect-section .defentect-section-body li::marker { color: var(--azure); }

/* Core blockquote */
.defentect-section .defentect-section-body blockquote {
  border-left: 2px solid var(--azure);
  padding-left: 24px;
  font-family: 'Sora', sans-serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ice);
  margin: 0;
}

/* Core image */
.defentect-section .defentect-section-body .wp-block-image img {
  border-radius: 12px;
  display: block;
  max-width: 100%;
  height: auto;
}
.defentect-section .defentect-section-body .wp-block-image figcaption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Core columns / column gap */
.defentect-section .defentect-section-body .wp-block-columns { gap: 24px; }
.defentect-section .defentect-section-body .wp-block-column { display: flex; flex-direction: column; gap: 24px; }

/* Core button */
.defentect-section .defentect-section-body .wp-block-button__link {
  background: var(--azure);
  color: #fff;
  border-radius: 6px;
  padding: 12px 22px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.defentect-section .defentect-section-body .wp-block-button__link:hover { background: #4a7be8; }
.defentect-section .defentect-section-body .is-style-outline .wp-block-button__link {
  background: transparent;
  border: 1px solid rgba(165,195,255,0.3);
  color: var(--ice);
}
.defentect-section .defentect-section-body .is-style-outline .wp-block-button__link:hover {
  border-color: var(--azure);
  background: rgba(91,142,255,0.06);
}

/* Core separator */
.defentect-section .defentect-section-body hr,
.defentect-section .defentect-section-body .wp-block-separator {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

/* Core spacer adapts naturally */

/* Section variant — panel */
.defentect-section--panel { border-radius: 14px; }

/* When feature cards live in a columns block, fill the column */
.defentect-section .wp-block-column .defentect-feature-card { height: 100%; }

/* ============================================================
   Card / Card Grid layout — front-end centering
   v3 of this fix: uses <section> + max-width inner container
   pattern (same shape as imported sections that center reliably).
   !important defeats any cached rules that previously won.
   ============================================================ */

/* CARD GRID block — full-width section, max-width inner */
.defentect-cgblock {
  display: block !important;
  width: 100% !important;
  margin: 56px 0 !important;
  box-sizing: border-box;
}
.defentect-cgblock-inner {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 36px !important;
  box-sizing: border-box;
}

/* Standalone Card — outer wrapper centers it */
.defentect-feature-card-outer {
  display: block !important;
  width: 100% !important;
  max-width: 720px !important;
  margin: 56px auto !important;
  padding: 0 36px !important;
  box-sizing: border-box;
}

/* Card inside a Card Grid — wrapper goes flat so article fills cell */
.defentect-card-grid > .defentect-feature-card-outer {
  display: contents !important;
}

/* Inside a Defentect Section: parent already constrains, so flatten */
.defentect-section .defentect-cgblock,
.defentect-section .defentect-feature-card-outer,
.defentect-section-inner .defentect-cgblock,
.defentect-section-inner .defentect-feature-card-outer,
.section-inner .defentect-cgblock,
.section-inner .defentect-feature-card-outer {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}
.defentect-section .defentect-cgblock-inner,
.defentect-section-inner .defentect-cgblock-inner,
.section-inner .defentect-cgblock-inner {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Inside a core/column: column controls width, flatten everything */
.wp-block-column .defentect-cgblock,
.wp-block-column .defentect-feature-card-outer,
.wp-block-column .defentect-cgblock-inner {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

/* Edge case: only 1 card on a row should not stretch */
.defentect-card-grid > .defentect-feature-card:only-child {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   v1.4: Tighten vertical rhythm between adjacent Defentect blocks.
   Each block carries its own internal padding so the page-content
   wrapper shouldn't add 80px+border between every sibling.
   ============================================================ */

.page-content > .defentect-cgblock + *,
.page-content > .defentect-feature-card-outer + *,
.page-content > .defentect-section + * {
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.page-content > .defentect-cgblock,
.page-content > .defentect-feature-card-outer,
.page-content > .defentect-section {
  margin-top: 0 !important;
}

/* ============================================================
   v1.5.0: Footer Socials column + parity with .com architecture.
   ============================================================ */

.footer-inner {
  /* Add a 5th column for Socials. Existing was brand + 3 cols. */
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr !important;
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr !important;
  }
}

.footer-col-socials .social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-col-socials .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
  text-decoration: none;
}
.footer-col-socials .social-icon:hover,
.footer-col-socials .social-icon:focus {
  color: var(--cyan, #a4d4ff);
  border-color: var(--cyan, #a4d4ff);
  background: rgba(91, 142, 255, 0.16);
}
.footer-col-socials .social-icon svg {
  display: block;
}

/* ============================================================
   v1.5.2: Leadership card collapsible bio.
   ============================================================ */
.leader-bio {
  margin-top: 12px;
}
.leader-bio .leader-bio-text {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: none;
}
.leader-bio[data-expanded="true"] .leader-bio-text {
  display: block;
  -webkit-line-clamp: unset;
}
.leader-bio-toggle {
  margin-top: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan, #a4d4ff);
  font-weight: 500;
  transition: color 160ms ease;
}
.leader-bio-toggle:hover,
.leader-bio-toggle:focus {
  color: #fff;
  outline: none;
}
.leader-bio-toggle span {
  display: inline-block;
  transition: transform 160ms ease;
  margin-left: 4px;
}
.leader-bio[data-expanded="true"] .leader-bio-toggle span {
  transform: rotate(90deg);
}

  
/* ============================================================
 * Responsive nav: graceful collapse at narrow widths
 * ============================================================ */
@media (max-width: 1100px) {
  .nav-inner { padding-left: 24px; padding-right: 24px; gap: 16px; }
  .logo { font-size: 17px; gap: 12px; }
  .logo-mark { width: 40px; height: 40px; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 8px 12px; font-size: 15px; }
  .nav-cta-text { display: none; }
}
@media (max-width: 900px) {
  .logo { font-size: 16px; gap: 10px; }
  .logo-mark { width: 36px; height: 36px; }
  .nav-links { display: none; }
  .nav .btn-primary { padding: 9px 16px; font-size: 14px; white-space: nowrap; }
}
@media (max-width: 640px) {
  .logo span:first-of-type { font-size: 15px; }
}


/* Pipeline 4-card variant — match cap-grid but allow 4-up */
.cap-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .cap-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cap-grid-4 { grid-template-columns: 1fr; } }

/* Dual-bias industry rows on home */
.bias-row { margin-top: 56px; }
.bias-row:first-of-type { margin-top: 32px; }
.bias-head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.bias-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 10px;
}
.bias-title {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin-bottom: 6px;
}
.bias-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 60ch;
}
.ind-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) { .ind-grid-2 { grid-template-columns: 1fr; } }


@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .attribution { grid-template-columns: 1fr !important; gap: 8px; }
  .platform-cards { grid-template-columns: 1fr !important; gap: 20px; }
  .int-inner { grid-template-columns: 1fr !important; gap: 24px; }
  .ind-card { grid-template-columns: 1fr !important; gap: 12px; }
  .cap-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .ind-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
  
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 24px; }
  .demo-card { grid-template-columns: 1fr !important; gap: 24px; }
  li[style*="grid-template-columns"] { grid-template-columns: 28px 1fr !important; }
}
@media (max-width: 640px) {
  .partners-grid { grid-template-columns: 1fr !important; }
  
  .footer-inner { grid-template-columns: 1fr !important; gap: 32px; }
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink, #fff);
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-cta-mobile { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 12, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 80px 24px 24px;
    z-index: 1000;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-links li {
    list-style: none;
  }
  .nav-links li a {
    font-size: 24px;
    font-weight: 300;
    color: var(--ink, #fff);
  }
  .nav-cta-mobile { display: list-item; margin-top: 24px; }
  .nav-cta-mobile a { font-size: 16px !important; }
}

.pcard-horizontal {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #ffc850;
  border-radius: 8px;
  padding: 32px 36px;
}
.pcard-horizontal-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .pcard-horizontal-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pcard-horizontal {
    padding: 24px 20px;
  }
}

@media (max-width: 900px) {
}
@media (max-width: 600px) {
}

@media (max-width: 1100px) {
}
@media (max-width: 900px) {
}
@media (max-width: 600px) {
}

/* CLEAN ORBITAL — final */
.orbital {
  background: rgba(7, 12, 30, 0.6);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.orbital-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.orbital-cell {
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid var(--hairline);
  text-align: center;
}
.orbital-cell:first-child { border-left: 1px solid transparent; }
@media (max-width: 1100px) {
  .orbital-inner { grid-template-columns: repeat(3, 1fr) !important; }
  .orbital-cell { border-bottom: 1px solid var(--hairline); }
  .orbital-cell:nth-child(3n+1) { border-left: 1px solid transparent !important; }
  .orbital-cell:not(:nth-child(3n+1)) { border-left: 1px solid var(--hairline) !important; }
}
@media (max-width: 900px) {
  .orbital-inner { grid-template-columns: repeat(2, 1fr) !important; }
  .orbital-cell:nth-child(2n+1) { border-left: 1px solid transparent !important; }
  .orbital-cell:nth-child(2n) { border-left: 1px solid var(--hairline) !important; }
  .orbital-cell:last-child:nth-child(odd) { grid-column: 1 / -1; border-bottom: 0; }
}
@media (max-width: 600px) {
  .orbital-inner { grid-template-columns: 1fr !important; }
  .orbital-cell { border-left: 1px solid transparent !important; }
}
.orbital-label {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}
.orbital-num {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.01em;
  color: var(--ice, #f0f4ff);
  line-height: 1.15;
}

/* ---- next style block ---- */

/* INDUSTRIES + PARTNERS - V2-grade depth patterns */

.industry-deep {
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
}
.industry-deep:nth-of-type(even) {
  background: linear-gradient(180deg, transparent, rgba(91,142,255,0.04));
}
.industry-deep .section-head-meta {
  display: inline-flex;
  gap: 18px;
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9d1e3;
  align-self: flex-start;
  font-weight: 500;
}
.industry-deep .section-head-meta span:first-child {
  color: var(--cyan, #5b8eff);
  font-weight: 500;
}
.industry-deep .section-head {
  align-items: flex-start;
  text-align: left;
}
.industry-deep .section-head h2 {
  text-align: left;
  margin-left: 0;
  max-width: 28ch;
}

.industry-deep .section-lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 300;
  max-width: 70ch;
  margin: 24px 0 48px;
}
.industry-deep-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.industry-deep-cases {
  display: grid;
  gap: 32px;
}
.industry-case {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}
.industry-case:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.industry-case-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--cyan, #5b8eff);
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.industry-case-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ice);
  margin-bottom: 12px;
  line-height: 1.2;
}
.industry-case-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 300;
}
.industry-deep-deploy {
  border: 1px solid var(--hairline-strong, rgba(164, 212, 255, 0.25));
  border-radius: 12px;
  padding: 32px 28px;
  background: rgba(91,142,255,0.03);
  position: sticky;
  top: 32px;
}
.industry-deep-deploy-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan, #5b8eff);
  margin-bottom: 24px;
}
.industry-deep-deploy dl {
  margin: 0;
  display: grid;
  gap: 0;
}
.industry-deep-deploy .row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
}
.industry-deep-deploy .row:first-child {
  padding-top: 0;
  border-top: 0;
}
.industry-deep-deploy dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint, #a4adc6);
  margin: 0;
}
.industry-deep-deploy dd {
  margin: 0;
  font-size: 15px;
  color: var(--ice);
  font-weight: 400;
  line-height: 1.4;
}

/* Bias bucket strip eyebrows fix - inline-block so they don't stretch */
.bias-bucket-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan, #5b8eff);
  font-weight: 500;
  margin-bottom: 20px;
  padding: 7px 16px;
  background: rgba(91, 142, 255, 0.12);
  border: 1px solid rgba(164, 212, 255, 0.25);
  border-radius: 100px;
}

/* PARTNERS card pattern */
.partner-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.partner-card {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 32px 28px;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.partner-card:hover {
  border-color: var(--hairline-strong, rgba(164, 212, 255, 0.4));
  background: rgba(91,142,255,0.02);
}
.partner-card-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan, #5b8eff);
  margin-bottom: 16px;
}
.partner-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ice);
  line-height: 1.1;
  margin: 0 0 6px 0;
}
.partner-card-subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-faint, #a4adc6);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.partner-card-body {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 24px;
}
.partner-card-specs {
  margin: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  display: grid;
  gap: 0;
}
.partner-card-specs .row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--hairline);
}
.partner-card-specs .row:first-child {
  padding-top: 0;
  border-top: 0;
}
.partner-card-specs dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint, #a4adc6);
  margin: 0;
}
.partner-card-specs dd {
  margin: 0;
  font-size: 14.5px;
  color: var(--ice);
  font-weight: 400;
  line-height: 1.4;
}
.partner-card-specs dd a {
  color: var(--cyan, #5b8eff);
  text-decoration: none;
}
.partner-card-specs dd a:hover {
  text-decoration: underline;
}
.partner-card.partner-card-new {
  border-color: var(--cyan, #5b8eff);
  background: linear-gradient(180deg, rgba(91,142,255,0.06) 0%, rgba(91,142,255,0.02) 100%);
}

@media (max-width: 900px) {
  .industry-deep-grid { grid-template-columns: 1fr; gap: 40px; }
  .industry-deep-deploy { position: static; }
  .partner-cards-grid { grid-template-columns: 1fr; }
}

.partner-wordmark {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
  line-height: 1.1;
}
.partner-card.partner-card-new .partner-wordmark {
  border-bottom-color: var(--cyan, #5b8eff);
}

/* ---- next style block ---- */

.legal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5, 8, 16, 0.78);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 64px 24px; overflow-y: auto;
}
.legal-overlay.is-open { display: flex; }
.legal-modal {
  width: 100%; max-width: 760px;
  background: var(--abyss);
  border: 1px solid var(--hairline-strong);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(91, 142, 255, 0.06);
}
.legal-modal-head {
  padding: 28px 36px 20px;
  border-bottom: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.legal-modal-head h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px; font-weight: 400; letter-spacing: -0.02em;
  color: var(--ice); margin: 0;
}
.legal-modal-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--azure); margin-bottom: 6px; display: block;
}
.legal-modal-close {
  background: transparent; border: 1px solid var(--hairline-strong);
  color: var(--text); width: 32px; height: 32px; border-radius: 4px;
  font-size: 18px; line-height: 1; cursor: pointer; flex-shrink: 0;
  transition: color .15s, border-color .15s, background .15s;
}
.legal-modal-close:hover { color: var(--ice); border-color: var(--azure); background: rgba(91, 142, 255, 0.08); }
.legal-modal-body {
  padding: 24px 36px 36px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; line-height: 1.65; color: var(--text);
}
.legal-modal-body h4 {
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--ice); text-transform: uppercase;
  margin: 24px 0 8px;
}
.legal-modal-body h4:first-child { margin-top: 4px; }
.legal-modal-body p { margin-bottom: 12px; }
.legal-modal-body p:last-child { margin-bottom: 0; }
.legal-modal-body a { color: var(--azure); }
.legal-modal-body strong { color: var(--ice-soft); font-weight: 500; }
.legal-modal-meta {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--hairline);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--text-muted); letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .legal-overlay { padding: 24px 12px; }
  .legal-modal-head, .legal-modal-body { padding-left: 22px; padding-right: 22px; }
  .legal-modal-head h3 { font-size: 18px; }
}

/* ============================================================
 * DEFENSIVE OVERRIDES — last 30 lines.
 *
 * If for any reason the .com style.css leaks onto a /ai page (plugin
 * re-enqueue, custom hook, browser cache mid-deploy, etc.), these rules
 * keep the .ai colors stable. Scoped under `body` so they do not affect
 * any non-/ai context if this stylesheet is ever loaded elsewhere.
 * ============================================================ */
body .hero h1 { color: var(--ice) !important; }
body .hero h2,
body .hero p,
body .hero-lede { color: var(--text) !important; }
body .hero h1 .accent {
	-webkit-text-fill-color: transparent !important;
	background: linear-gradient(135deg, var(--azure) 0%, var(--cyan) 100%) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
}

/* Re-pin the .ai variables in case .com's :root was applied later in the
 * cascade. Higher specificity than :root via html selector. */
html body {
	--ice: #f0f4ff;
	--ice-soft: #e1e8f7;
	--text: #b4bccf;
	--text-muted: #7d869c;
	--text-faint: #545c70;
	--azure: #5b8eff;
	--cyan: #a4d4ff;
	--void: #050810;
}

/* ============================================================
 * Mobile hamburger overlay fix v2 (max 900px) — bulletproof
 *
 * Targets .nav-links.open directly with HIGH specificity
 * (`body nav.nav .nav-links.open`) so it can't lose to .com
 * style.css or any cached rule. Locks every overlay property
 * with !important — does not rely on inheritance from
 * non-.open .nav-links rules (those are what was getting
 * un-cascaded somewhere downstream).
 * ============================================================ */
@media (max-width: 900px) {
	body nav.nav .nav-links.open,
	body .nav-links.open {
		display: flex !important;
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		background: #0a1428 !important;
		z-index: 9998 !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 32px !important;
		padding: 80px 24px 24px !important;
		margin: 0 !important;
	}
	body nav.nav .nav-links.open li,
	body .nav-links.open li {
		list-style: none !important;
	}
	body nav.nav .nav-links.open li a,
	body .nav-links.open li a {
		color: var(--ice) !important;
		font-size: 24px !important;
		font-weight: 300 !important;
	}
	body nav.nav .nav-toggle.open,
	body .nav-toggle.open {
		position: fixed !important;
		top: 22px !important;
		right: 24px !important;
		z-index: 9999 !important;
	}
}
