﻿/* v0.1.2 — skip-link + #main-content + color-scheme at top; about-bundle reset deduped; tech minified reset block removed (see file comments) */
/* === from index.html === */
/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark:    #080c14;
  --dark2:   #0d1221;
  --cyan:    #00d4ff;
  --cyan2:   #0099cc;
  --red:     #ff2d3d;
  --green:   #2ed573;
  --orange:  #ff9800;
  --white:   #ffffff;
  --sans:    'Sora', sans-serif;
  --mono:    'JetBrains Mono', monospace;
  --serif:   'Fraunces', serif;
  --max-w:   1200px;
  --midnight-navy: #080c14;
  --nav-h:   68px;
  --gutter:  clamp(20px, 5%, 80px);
  --s-pad-x: clamp(20px, 4vw, 40px);
  --muted-red: #b84a52;
  --muted-red-dim: rgba(184, 74, 82, 0.88);
  --page-hero-next-pt: clamp(36px, 8vw, 56px);
}

@media (min-width: 640px) {
  :root {
    --page-hero-next-pt: clamp(48px, 10vw, 80px);
  }
}

@media (min-width: 900px) {
  :root {
    --page-hero-next-pt: clamp(80px, 20vw, 80px);
  }
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  /* Always reserve vertical scrollbar width so fixed nav/footer do not shift between pages */
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
body {
  background: var(--dark); color: var(--white);
  font-family: var(--sans); overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Visible on focus — keyboard / screen-reader users */
.skip-link {
  position: fixed;
  top: -120px;
  left: 12px;
  z-index: 300;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans);
  color: var(--dark);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: calc(var(--nav-h) + 8px);
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
}

#main-content {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

/* Global typography: narrative headings + brand names â†’ Sora; technical data / stats / mono bullets â†’ JetBrains Mono */
.s-heading,
.closing-heading,
.hero-product,
.card-title,
.threat-title,
.footer-logo,
.certainty-audit-heading,
.section-title {
  font-family: var(--sans);
}

/* ANIMATIONS */
@keyframes blink     { 0%,100%{opacity:1} 50%{opacity:0.2} }
@keyframes s-dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
  50% { opacity: 0.55; box-shadow: 0 0 10px 1px rgba(0, 212, 255, 0.4); }
}
@keyframes fadeUp    { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse-glow { 0%,100%{text-shadow:0 0 2px transparent} 50%{text-shadow:0 0 10px var(--cyan)} }
@keyframes glowPulse { 0%,100%{opacity:0.05} 50%{opacity:0.09} }
@keyframes num-card-scan {
  0% { top: 0; }
  100% { top: calc(100% - 1px); }
}
@keyframes num-glow-lock {
  0% { text-shadow: 0 0 0 transparent; }
  40% { text-shadow: 0 0 20px var(--cyan); }
  100% { text-shadow: 0 0 5px var(--cyan); }
}

/* â”€â”€ NAV â”€â”€ (mobile-first: overlay + hamburger <900px; horizontal bar >=900px) */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; white-space: nowrap; }
.logo-sep  { display: none; }
.logo-tag  {
  display: none;
  font-family: var(--mono); font-size: 9.5px; color: rgba(255,255,255,0.6); font-weight: 500;
  white-space: nowrap; letter-spacing: 0px;
}
@media (min-width: 640px) {
  .logo-tag { display: block; }
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 40px;
  overflow-y: auto;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-links.is-open {
  display: flex;
  animation: fadeUp 0.2s ease both;
}
.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links li:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding-top: 8px;
}
.nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-size: 15px !important;
  border-radius: 10px;
}

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  display: none;
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; opacity: 0.5; flex-shrink: 0;
}

.nav-dropdown .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  padding-top: 0;
  min-width: 0;
  box-shadow: none;
}
.nav-dropdown .dropdown-menu-box {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0 8px;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 6px; }

.btn-nav {
  font-family: var(--sans); font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav:hover { box-shadow: 0 0 32px rgba(0,212,255,0.38); transform: translateY(-1px); }

@media (min-width: 900px) {
  .nav-hamburger { display: none; }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    z-index: auto;
    border-top: none;
  }
  .nav-links.is-open {
    animation: none;
  }
  .nav-links li {
    width: auto;
    border-bottom: none;
  }
  .nav-links li:last-child {
    margin-top: 0;
    padding-top: 0;
  }
  .nav-links a {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); }
  .nav-links .btn-nav {
    width: auto;
    text-align: center;
    padding: 8px 18px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 13px !important;
    border-radius: 8px;
  }

  .nav-dropdown > a::after { display: block; }

  .nav-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 176px;
    z-index: 300;
    transition: opacity 0.15s, visibility 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown .dropdown-menu-box {
    background: rgba(8,12,24,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    backdrop-filter: blur(24px);
  }
  .nav-dropdown .dropdown-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 9px 14px;
  }
  .nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
}

/* â”€â”€ HERO â”€â”€ */
.hero {
  min-height: auto;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  z-index: 1;
  background: var(--dark);
  padding: calc(var(--nav-h) + 40px) var(--gutter) 32px;
}
@media (min-width: 640px) {
  .hero {
    padding: calc(var(--nav-h) + 64px) var(--gutter) 36px;
  }
}
.hero .s-inner { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.016;
  background-image: linear-gradient(rgba(0,212,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  display: none;
  position: absolute; top: 5%; left: 15%; width: 900px; height: 800px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(0,212,255,0.055) 0%, transparent 65%);
  animation: glowPulse 7s ease-in-out infinite;
}
@media (min-width: 640px) {
  .hero-glow {
    display: block;
  }
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr;
  gap: 36px; align-items: start;
  position: relative; z-index: 2;
  padding: 0 clamp(16px, 2vw, 40px);
}
@media (min-width: 640px) {
  .hero-inner {
    gap: 44px;
  }
}
@media (max-width: 899px) {
  .hero .hero-inner {
    gap: 24px;
  }
}
@media (max-width: 899px) and (min-width: 640px) {
  .hero .hero-inner {
    gap: 30px;
  }
}
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 52% 48%;
    gap: 0;
    column-gap: 40px;
    row-gap: 16px;
    align-items: start;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
  }
  .hero-ctas {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-top: 0;
    margin-bottom: 0;
  }
  .hero-microline {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    margin-top: 0;
  }
  .hero-panel {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    max-width: none;
    width: 100%;
  }
}

/* LEFT â€” copy */
.hero-copy {
  display: flex; flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.hero-copy .s-label { align-self: flex-start; }
.hero-microline {
  font-family: var(--mono);
  font-size: clamp(10px, 2.8vw, 11px);
  font-weight: 500;
  color: rgba(255,255,255,0.28);
  margin-top: 16px;
  letter-spacing: 0.3px;
}

.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--cyan);
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.22);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
  animation: fadeUp 0.8s 0s ease both;
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; animation: blink 2s ease-in-out infinite; }
.hero-badge-text { text-align: left; }

@media (min-width: 900px) {
  .hero-badge .hero-badge-text br {
    display: none;
  }
  .hero-badge .hero-badge-text {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .hero-badge {
    align-items: flex-start;
  }
  .hero-badge .hero-badge-text {
    display: block;
    text-align: left;
    line-height: 1.35;
  }
  .hero-badge .hero-badge-line2 {
    display: none;
  }
}

.hero-contrast {
  font-size: clamp(11px, 2.65vw, 18px); font-weight: 400; line-height: 1.55;
  margin-bottom: 16px; animation: fadeUp 0.8s 0.08s ease both;
  white-space: nowrap;
}
.hero-contrast-line {
  display: inline-block;
  white-space: nowrap;
}
.contrast-them { color: rgba(255,255,255,0.65); }
.contrast-we   { color: var(--cyan); font-weight: 700; }

.hero-product {
  font-family: var(--sans);
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 16px;
  animation: fadeUp 0.8s 0.16s ease both;
}
@media (min-width: 900px) {
  .hero-product {
    font-size: clamp(36px, 4.5vw, 62px);
    letter-spacing: -3px;
    white-space: nowrap;
  }
}
.hero-what {
  font-size: clamp(15px, 2.8vw, 26px);
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.2px;
  max-width: none;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.24s ease both;
}
@media (min-width: 900px) {
  .hero-what {
    font-size: clamp(14px, 1.65vw, 26px);
    white-space: nowrap;
  }
}
.hero-what strong { color: rgba(255,255,255,0.85); font-weight: 600; }

@media (max-width: 899px) {
  .hero .hero-copy .hero-what {
    margin-bottom: 20px;
  }
}
@media (min-width: 900px) {
  .hero .hero-copy .hero-what {
    margin-bottom: 8px;
  }
}

.hero-ctas {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 20px; animation: fadeUp 0.8s 0.32s ease both;
}
.hero .hero-inner > .hero-ctas {
  margin-top: 0;
  margin-bottom: 0;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  color: var(--dark); letter-spacing: -0.2px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 13px 24px; border-radius: 9px; border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 0 28px rgba(0,212,255,0.28); transition: box-shadow 0.22s, transform 0.22s;
}
.btn-primary:hover { box-shadow: 0 0 48px rgba(0,212,255,0.48); transform: translateY(-2px); }
.btn-primary svg { width: 15px; height: 15px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.72); background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 13px 24px; border-radius: 9px; cursor: pointer; text-decoration: none;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
}
.btn-secondary:hover { border-color: rgba(0,212,255,0.35); color: var(--white); background: rgba(0,212,255,0.05); }

/* RIGHT â€” panel */
.hero-panel {
  position: relative;
  animation: fadeUp 0.8s 0.28s ease both;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 640px) {
  .hero-panel {
    max-width: 520px;
    overflow: hidden;
  }
}
@media (min-width: 900px) {
  .hero-panel {
    overflow: hidden;
  }
}

.panel-live-badge {
  position: absolute; top: -14px; right: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan);
  background: var(--dark); border: 1px solid rgba(0,212,255,0.28);
  padding: 4px 12px; border-radius: 100px;
  box-shadow: 0 0 16px rgba(0,212,255,0.12);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px rgba(46,213,115,0.8); animation: blink 1.4s ease-in-out infinite;
}

.r-panel {
  background: rgba(10,15,30,0.98);
  border: 1px solid rgba(0,212,255,0.2); border-radius: 16px; padding: 20px 24px 16px;
  font-family: var(--mono);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative; overflow: visible;
}
.r-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,0.18) 50%, transparent 100%);
}
.r-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.r-title-block { display: flex; flex-direction: column; gap: 3px; }
.r-title { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.75); letter-spacing: 2.5px; text-transform: uppercase; }
.r-id   { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.65); }
.r-time { font-size: 11px; font-weight: 600; color: var(--cyan); letter-spacing: 0.5px; margin-top: 2px; }

.r-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.045); font-size: 12px;
}
.r-row:last-of-type { border-bottom: none; }
.r-key   { color: rgba(255,255,255,0.72); font-size: 11px; }
.v-block { color: #ff4757; background: rgba(255,71,87,0.12); border: 1px solid rgba(255,71,87,0.22); padding: 2px 10px; border-radius: 5px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; }
.v-cyan  { color: var(--cyan); font-weight: 700; font-size: 13px; }
.v-white { color: rgba(255,255,255,0.88); font-weight: 500; }
.v-muted { color: rgba(255,255,255,0.62); font-size: 11px; }
.v-green { color: var(--green); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

.certainty-bar { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); }
.c-labels { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.c-label-text { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 2px; }
.c-value { font-size: 14px; font-weight: 700; color: var(--cyan); }
.c-track { height: 3px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.c-fill  { height: 100%; width: 99.97%; background: linear-gradient(90deg, rgba(0,100,180,0.7), var(--cyan)); box-shadow: 0 0 12px rgba(0,212,255,0.5); border-radius: 3px; }

.panel-proof-tag {
  margin-top: 14px; margin-bottom: 0;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  color: rgba(0,212,255,0.65); letter-spacing: 1.2px; text-align: center;
}

/* Hero Reasoning Score panel â€” ~20% shorter vertically (index hero only) */
.hero .r-panel {
  padding: 19px;
  min-width: 300px;
}
@media (min-width: 900px) {
  .hero .r-panel {
    min-width: 0;
  }
}
.hero .r-header {
  padding-bottom: 10px;
  margin-bottom: 3px;
}
.hero .r-title-block {
  gap: 2px;
}
.hero .r-title {
  font-size: 8px;
  letter-spacing: 2px;
}
.hero .r-id {
  font-size: 10px;
}
.hero .r-time {
  font-size: 10px;
  margin-top: 1px;
}
.hero .r-row {
  padding: 6px 0;
  font-size: 11px;
}
.hero .r-key {
  font-size: 10px;
}
.hero .v-block {
  font-size: 10px;
  padding: 1px 8px;
  letter-spacing: 1.2px;
}
.hero .v-muted {
  font-size: 10px;
}
.hero .v-green {
  gap: 4px;
}
.hero .r-panel .v-green svg {
  width: 9px;
  height: 9px;
}
.hero .certainty-bar {
  margin-top: 13px;
  padding-top: 13px;
}
.hero .c-labels {
  margin-bottom: 6px;
}
.hero .c-label-text {
  font-size: 8px;
  letter-spacing: 1.6px;
}
.hero .c-value {
  font-size: 12px;
}
.hero .c-track {
  height: 2px;
}
.hero .panel-proof-tag {
  margin-top: 12px;
  font-size: 9px;
  letter-spacing: 1px;
}

/* â”€â”€ CARDS STRIP â”€â”€ */
.cards-strip {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding: 24px var(--gutter) 48px;
  background: transparent;
  border: none;
}
.cards-strip-inner {
  max-width: min(1200px, 100%);
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 32px 20px 36px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
@media (min-width: 900px) {
  .cards-strip {
    margin-top: 0;
  }
  .cards-strip-inner {
    padding: 28px 28px 44px;
  }
}

.mission-line {
  font-size: clamp(16px, 1.6vw, 20px); font-weight: 600;
  color: rgba(255,255,255,0.82); text-align: center;
  letter-spacing: -0.3px; white-space: nowrap;
  margin-bottom: 0;
  max-width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}
@media (min-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hcard {
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease; cursor: default;
}
.hcard:hover { transform: translateY(-4px); }

.hcard-cyan   { background: linear-gradient(140deg, rgba(0,212,255,0.07) 0%, rgba(0,153,204,0.03) 100%); border: 1px solid rgba(0,212,255,0.18); box-shadow: 0 8px 32px rgba(0,212,255,0.05); }
.hcard-orange { background: linear-gradient(140deg, rgba(255,152,0,0.07) 0%, rgba(255,100,0,0.03) 100%); border: 1px solid rgba(255,152,0,0.18); box-shadow: 0 8px 32px rgba(255,152,0,0.05); }
.hcard-green  { background: linear-gradient(140deg, rgba(46,213,115,0.07) 0%, rgba(0,180,80,0.03) 100%); border: 1px solid rgba(46,213,115,0.18); box-shadow: 0 8px 32px rgba(46,213,115,0.05); }

.hcard-cyan:hover   { box-shadow: 0 16px 48px rgba(0,212,255,0.1); }
.hcard-orange:hover { box-shadow: 0 16px 48px rgba(255,152,0,0.1); }
.hcard-green:hover  { box-shadow: 0 16px 48px rgba(46,213,115,0.1); }

.hcard-cyan   .card-icon  { color: var(--cyan);   background: rgba(0,212,255,0.1);  border-color: rgba(0,212,255,0.18); }
.hcard-orange .card-icon  { color: var(--orange); background: rgba(255,152,0,0.1); border-color: rgba(255,152,0,0.18); }
.hcard-green  .card-icon  { color: var(--green);  background: rgba(46,213,115,0.1); border-color: rgba(46,213,115,0.18); }
.hcard-cyan   .card-title { color: var(--cyan); }
.hcard-orange .card-title { color: var(--orange); }
.hcard-green  .card-title { color: var(--green); }
.hcard-cyan   .card-tag   { border-color: rgba(0,212,255,0.22);  color: rgba(0,212,255,0.8); }
.hcard-orange .card-tag   { border-color: rgba(255,152,0,0.22);  color: rgba(255,152,0,0.8); }
.hcard-green  .card-tag   { border-color: rgba(46,213,115,0.22); color: rgba(46,213,115,0.8); }

.card-icon { width: 42px; height: 42px; border-radius: 11px; border: 1px solid; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-icon svg { width: 20px; height: 20px; }
.card-header { display: flex; align-items: center; gap: 14px; }
.card-title { font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: -0.4px; line-height: 1.2; }
.card-text  { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.6); line-height: 1.65; flex: 1; }
.card-tag   { display: inline-flex; align-self: flex-start; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: 1px solid; border-radius: 100px; padding: 3px 10px; }

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}


/* === from index.html === */
/* â”€â”€ SHARED SECTION SYSTEM â”€â”€ */
.s-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--s-pad-x); }
.s-inner > .s-label { margin-bottom: 20px; }
.s-label-wrap { margin-bottom: 20px; }
.s-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--cyan);
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.2);
  padding: 5px 14px; border-radius: 100px;
}
.s-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.s-label .s-dot { animation: s-dot-pulse 5s ease-in-out infinite; }
.s-heading {
  font-family: var(--sans);
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.1; margin-bottom: 16px; color: var(--white);
  text-align: left;
  white-space: normal;
}
.s-heading-center { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -2px; line-height: 1.08; margin-bottom: 16px; color: var(--white); text-align: center; }
.s-sub { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 600px; line-height: 1.75; margin-bottom: 56px; }
.s-sub-single { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 48px; font-weight: 400; text-align: left; max-width: 52rem; }
.s-science .s-sub-single { margin-bottom: 40px; }
.s-sub-center { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 580px; line-height: 1.75; margin: 0 auto 48px; text-align: center; }

/* â”€â”€ SECTION 3 - COUNTER â”€â”€ */
.s-counter {
  background: #05080f;
  text-align: center; position: relative; overflow: hidden;
  z-index: 3;
}
.s-counter .s-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.s-counter .s-label { align-self: center; }
.counter-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 400px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(255,45,61,0.07) 0%, transparent 70%);
}
.counter-label-top { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.counter-wrap { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 16px; }
.counter-dollar { font-size: clamp(16px, 2.5vw, 36px); font-weight: 800; color: rgba(255,255,255,0.4); letter-spacing: -1px; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.counter-billion { font-size: clamp(16px, 2vw, 28px); font-weight: 800; color: rgba(255,255,255,0.4); letter-spacing: -0.5px; margin-left: 10px; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.counter-num { font-size: clamp(28px, 4.5vw, 56px); font-weight: 800; font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--red); letter-spacing: -3px; line-height: 1; }
#mainNum,
#sinceNum,
.num-big {
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
}
#sinceNum {
  font-weight: 700;
  color: var(--red);
}
.counter-persec { font-family: var(--mono); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.45); margin-bottom: 14px; letter-spacing: 0.5px; }
.counter-since { font-family: var(--mono); font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 12px; font-weight: 600; }
.counter-since-num { font-size: 22px; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.counter-warning { font-family: var(--serif); font-style: italic; font-size: 20px; font-weight: 300; color: rgba(255,255,255,0.45); letter-spacing: -0.3px; }
.counter-strip { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.cs-dot { color: rgba(255,255,255,0.18); }
.counter-strip span:last-child { color: rgba(0,212,255,0.6); }

/* â”€â”€ SECTION 4 - THREAT â”€â”€ */
.s-threat { background: #080c14; position: relative; z-index: 4; }
.threat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
@media (min-width: 641px) {
  .threat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 721px) {
  .threat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1101px) {
  .threat-grid { grid-template-columns: repeat(5, 1fr); }
}
.threat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  min-width: 0;
  padding: 1.2rem;
  background: #080c14;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.threat-card:hover {
  border-color: #ff0000;
  background: rgba(8, 12, 20, 0.98);
  box-shadow:
    0 0 0 1px rgba(255, 0, 0, 0.5),
    0 0 32px rgba(255, 0, 0, 0.55),
    0 12px 40px rgba(255, 0, 0, 0.28);
  transform: translateY(-10px);
}
.threat-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  flex-shrink: 0;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
}
.threat-num { display: none; }
.threat-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,45,61,0.1);
  border: 1px solid rgba(255,45,61,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5566;
  padding: 7px;
}
.threat-icon svg { width: 18px; height: 18px; }
.threat-label { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.threat-title {
  flex: 1;
  min-width: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.35px;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.2;
  align-self: center;
}
.threat-line {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin: 0 0 0;
  flex: 1 1 auto;
  min-height: 0;
}
.threat-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 10px;
  margin-top: auto;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: center;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    text-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.threat-footer span:not(.threat-footer-sep) {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}
.threat-footer-sep {
  opacity: 0.45;
  font-weight: 500;
  padding: 0 0.15em;
}
.threat-card:hover .threat-footer {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 14px rgba(255, 60, 60, 0.55), 0 0 24px rgba(255, 255, 255, 0.15);
}

/* â”€â”€ SOFT BLEED (index â€” overlaps previous band; glass fade at top) â”€â”€ */
.section-soft-bleed-top {
  position: relative;
  isolation: isolate;
  margin-top: -80px;
  background: transparent;
}
.section-soft-bleed-top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  mask-image: linear-gradient(to bottom, transparent 0%, black 80px, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 80px, black 100%);
}
.section-soft-bleed-top > .counter-glow {
  z-index: 1;
}
.section-soft-bleed-top > .s-inner {
  position: relative;
  z-index: 2;
}
.section-soft-bleed-top > .sim-inner {
  position: relative;
  z-index: 2;
}

/* Proof page â€” same hero shell as industries.html; stack above simulator bleed */
.proof-page .page-hero {
  position: relative;
  z-index: 3;
  padding-bottom: 40px;
}
.proof-page .page-hero p em {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}
.s-simulator.section-soft-bleed-top {
  background: transparent;
  z-index: 1;
}
/* Restore vertical rhythm: bleed overlap — full rules with Task 4 tiers near EOF (after TASK 4 block) */

.s-roi.section-soft-bleed-top .s-sub-single {
  margin-bottom: 16px;
}

/* Index soft-bleed bands: typography / spacing aligned with technology.html */
.section-soft-bleed-top .s-heading:not(.s-heading--roi):not(.s-heading--stacked) {
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.section-soft-bleed-top .s-sub-single {
  margin-bottom: 40px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

.s-transition { background: transparent; text-align: center; border: none; position: relative; z-index: 5; }
.s-transition .s-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* â”€â”€ SECTOR PROTECTION (index) â€” unified Midnight Navy band â”€â”€ */
.s-sector-grid {
  background: #000000;
  text-align: left;
  border: none;
  position: relative;
  z-index: 10;
}
.s-sector-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}
.s-sector-grid .s-heading {
  width: 100%;
  text-align: left;
  align-self: flex-start;
  margin-bottom: 0;
}
.s-sector-grid .sector-cta {
  align-self: center;
}
.sector-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 12px 16px;
  width: 100%;
  max-width: 1200px;
}
.sector-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  flex: 1 1 auto;
  min-width: 0;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.sector-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.sector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.sector-icon svg {
  width: 20px;
  height: 20px;
}
.sector-name {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}
.sector-promise {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.sector-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(0,212,255,0.45);
  padding: 4px 2px;
  border: none;
  background: transparent;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.sector-cta:hover {
  color: #ffffff;
  text-decoration-color: var(--cyan);
}
@media (min-width: 900px) {
  .sector-grid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .sector-item {
    flex: 1;
  }
}
.trans-quote-wrap { position: relative; max-width: min(1200px, 100%); width: 100%; margin: 0 auto 16px; text-align: center; padding: 0 var(--s-pad-x); box-sizing: border-box; }
.trans-q-mark { font-family: var(--serif); font-size: clamp(16px, 1.8vw, 22px); color: rgba(255,255,255,0.25); line-height: 1; font-style: italic; display: block; margin-bottom: 4px; }
.trans-quote-line {
  display: block; text-align: center;
  font-size: clamp(8px, 2.1vw, 22px);
  line-height: 1.5;
  white-space: nowrap;
}
.trans-q-close { text-align: right; }
.trans-quote { font-family: var(--serif); font-style: italic; font-size: inherit; color: rgba(255,255,255,0.5); line-height: 1.75; letter-spacing: -0.2px; margin: -12px 0; text-align: center; }
.trans-response {
  font-size: clamp(24px, 3.5vw, 48px); font-weight: 800; color: var(--white);
  letter-spacing: -1.5px; line-height: 1; text-align: center; margin-top: 32px;
  white-space: nowrap;
}
.trans-proof em { color: var(--cyan); font-style: normal; }

/* â”€â”€ SECTION 5 - CE â”€â”€ */
.s-ce { background: #080c14; position: relative; z-index: 6; }
.s-ce .s-label { margin-bottom: 28px; }
.ce-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: start; }
.ce-definition { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 24px; font-weight: 400; }
.ce-name { color: var(--white); }
.ce-bold { font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; color: var(--white); letter-spacing: -1.5px; line-height: 1.2; margin-bottom: 24px; }
.ce-meta { font-family: var(--mono); font-size: 11px; color: rgba(0,212,255,0.6); letter-spacing: 1px; font-weight: 600; }
.ce-table { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 13px; }
.ce-th-bad { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 12px 16px; text-align: left; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 600; }
.ce-th-good { background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); padding: 12px 16px; text-align: left; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.ce-td-bad { padding: 13px 16px; border: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.45); font-size: 12px; background: rgba(255,255,255,0.02); }
.ce-td-good { padding: 13px 16px; border: 1px solid rgba(0,212,255,0.1); color: rgba(255,255,255,0.85); font-size: 12px; background: rgba(0,212,255,0.03); font-weight: 500; }
.x-mark { color: var(--red); margin-right: 8px; font-weight: 700; }
.check-mark { color: var(--green); margin-right: 8px; font-weight: 700; }

/* â”€â”€ SECTION 6 - PROTECTION LIFECYCLE â”€â”€ */
.s-protection { background: var(--dark2); }
.lifecycle-wrap {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
  align-items: stretch; gap: 0; margin: 56px 0 48px;
}
.lifecycle-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 24px 18px;
  transition: border-color 0.22s, transform 0.22s, background 0.22s;
  display: flex; flex-direction: column; gap: 12px;
}
.lifecycle-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-4px); background: rgba(0,212,255,0.03); }
.lc-featured { background: rgba(0,212,255,0.05); border-color: rgba(0,212,255,0.2); }
.lifecycle-connector { display: flex; align-items: center; justify-content: center; }
.lc-line { width: 100%; height: 1px; background: linear-gradient(90deg, rgba(0,212,255,0.2), rgba(0,212,255,0.05)); }
.lc-stage { font-family: var(--mono); font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 2px; }
.lc-stage-cyan { color: rgba(0,212,255,0.6) !important; }
.lc-title { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; line-height: 1.3; }
.lc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.lc-list li { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5; padding-left: 12px; position: relative; }
.lc-list li::before { content: "\00B7"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.lc-footer {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 24px 40px; flex-wrap: wrap;
}
.lc-footer-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 40px; }
.lc-footer-num { font-size: clamp(24px, 2.5vw, 32px); font-weight: 800; color: var(--cyan); letter-spacing: -1.5px; line-height: 1; }
.lc-footer-label { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 1.5px; text-transform: uppercase; }
.lc-footer-div { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

/* â”€â”€ SECTION 7 - NUMBERS â”€â”€ */
.s-numbers { background: #080c14; position: relative; z-index: 7; }
.s-numbers .s-inner { text-align: center; }
.s-numbers .s-numbers-tagline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 52rem;
}
.s-numbers-tagline-line1,
.s-numbers-tagline-line2 {
  display: block;
}
.s-numbers-tagline-line2 {
  margin-top: 0.25em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.s-numbers-tagline {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s ease 0.18s, transform 0.65s ease 0.18s;
}
.s-numbers--shown .s-numbers-tagline {
  opacity: 1;
  transform: translateY(0);
}
.s-numbers-sub { font-size: 16px; color: rgba(255,255,255,0.5); text-align: left; margin-bottom: 56px; line-height: 1.7; max-width: 52rem; }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.num-card {
  --num-icon-size: 36px;
  --num-icon-gap: 12px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 18px 16px 16px;
  text-align: left;
  display: grid;
  grid-template-columns: var(--num-icon-size) 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--num-icon-gap);
  row-gap: 6px;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.22s, box-shadow 0.22s;
}
.num-card > * {
  position: relative;
  z-index: 3;
}
.num-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.35), transparent);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.12);
  opacity: 0.75;
  animation: num-card-scan 3.5s linear infinite;
}
.num-card:hover {
  border-color: rgba(0, 212, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 212, 255, 0.04);
}
.num-card.num-card--locked .num-big {
  animation: num-glow-lock 0.75s ease-out forwards;
}
.num-icon {
  grid-column: 1;
  grid-row: 1;
  width: var(--num-icon-size);
  height: var(--num-icon-size);
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--cyan);
  flex-shrink: 0;
}
.num-icon svg { width: 17px; height: 17px; }
.num-big {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
  text-align: left;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.05;
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
}
.num-label {
  grid-column: 1 / -1;
  grid-row: 2;
  padding-left: calc(var(--num-icon-size) + var(--num-icon-gap));
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
}
.num-vs { display: none; }
.num-context { display: none; }

/* â”€â”€ SECTION 8 - BATTLEFIELD â”€â”€ */
.s-battlefield { background: var(--dark); }
.bf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.bf-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 36px 28px;
  transition: border-color 0.22s, transform 0.22s;
}
.bf-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-3px); }
.bf-number { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--cyan); letter-spacing: 2px; margin-bottom: 16px; opacity: 0.6; }
.bf-title { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; color: var(--white); letter-spacing: -0.8px; margin-bottom: 20px; }
.bf-quote { font-family: var(--serif); font-style: italic; font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; padding-left: 16px; border-left: 2px solid rgba(255,255,255,0.1); }
.bf-answer { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.75; }

/* â”€â”€ SECTION 9 - SCIENCE â”€â”€ */
.s-science {
  background: #000000;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.s-heading--science {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -1.2px;
}
.science-glow {
  position: absolute; top: 0; right: -200px; width: 600px; height: 600px; pointer-events: none;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 65%);
}
.science-left {
  min-width: 0;
  max-width: none;
  text-align: left;
}
.science-body { max-width: none; margin-bottom: 8px; }
.science-body p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 20px; }
.science-body p:last-child { margin-bottom: 0; }
.science-body em { color: rgba(255,255,255,0.85); font-style: italic; }
.science-kicker { font-size: 18px !important; font-weight: 700 !important; color: var(--white) !important; letter-spacing: -0.3px; }
.science-kicker-muted { margin-top: 16px; color: rgba(255,255,255,0.45) !important; font-size: 14px !important; font-weight: 400 !important; letter-spacing: 0 !important; }
.pull-quote { max-width: 820px; margin: 0 auto 64px;
  background: rgba(0,212,255,0.04); border: 1px solid rgba(0,212,255,0.14);
  border-radius: 16px; padding: 40px 48px; margin-bottom: 64px; position: relative;
}
.pq-mark { display: none; }
.pq-inline-mark { font-family: var(--serif); font-style: normal; font-size: 1em; color: rgba(0,212,255,0.6); }
.pq-text { font-family: var(--serif); font-style: italic; font-size: clamp(16px, 1.8vw, 22px); color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 24px; letter-spacing: -0.2px; }
.pq-attr { font-family: var(--mono); font-size: 11px; color: rgba(0,212,255,0.6); letter-spacing: 1px; font-weight: 600; }
.science-stats-header { font-family: var(--sans); font-size: 18px; font-weight: 700; font-style: normal; color: rgba(255,255,255,0.75); margin-top: 0; margin-bottom: 22px; letter-spacing: -0.3px; text-align: left; }
.science-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 16px; }
.sci-stat { border-left: 2px solid rgba(0,212,255,0.2); padding-left: 20px; }
/* Index science-stats: compact row (metric | title) + smaller type — scoped so technology .sci-stats cards unchanged */
.science-stats .sci-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  min-width: 0;
}
.science-stats .sci-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.science-stats .sci-num {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 0;
  flex-shrink: 0;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}
.science-stats .sci-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}
.science-stats .sci-ctx {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255,255,255,0.4);
}
.sci-num { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--cyan); letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.sci-label { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.sci-ctx { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.ieee-badge { display: flex; align-items: flex-start; gap: 16px; padding: 24px 0; text-decoration: none; }
.ieee-badge:hover { opacity: 0.75; }
.ieee-icon { width: 32px; height: 32px; color: rgba(0,212,255,0.6); flex-shrink: 0; }
.ieee-icon svg { width: 100%; height: 100%; }
.ieee-top { font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--cyan); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.ieee-title { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 4px; font-style: italic; }
.ieee-doi { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.35); }
.science-next {
  font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.45); letter-spacing: -0.3px; line-height: 1.6;
}
.science-next span { color: rgba(255,255,255,0.82); font-weight: 400; display: block; margin-top: 4px; }

.science-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 36px;
}

@media (min-width: 1024px) {
  .science-layout {
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
    align-items: start;
  }
}

.science-right {
  position: static;
  padding-left: 0;
  box-sizing: border-box;
  min-width: 0;
}

@media (min-width: 1024px) {
  .science-right {
    position: relative;
    top: auto;
    padding-left: 0;
    text-align: left;
    width: 100%;
    min-width: 0;
  }
}

.pull-quote-box {
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.science-quote-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.science-quote-accent {
  display: block;
  width: 2px;
  min-width: 2px;
  height: 40px;
  flex-shrink: 0;
  background: #00f2f2;
}

.science-quote-copy {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.pqb-mark {
  font-family: var(--serif);
  font-size: 72px;
  color: rgba(0,212,255,0.2);
  line-height: 0.8;
  margin-bottom: 16px;
}

.pqb-text {
  font-family: var(--sans);
  font-style: italic;
  /* Pull quote: match .science-body p (16px) with a slight cap, not oversized vs section body */
  font-size: clamp(16px, 1.25vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  letter-spacing: -0.2px;
  text-align: left;
}

.pqb-attr {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: left;
  color: var(--cyan);
}

/* â”€â”€ SECTION 10 - COMPARISON â”€â”€ */
.s-comparison { background: #080c14; position: relative; z-index: 8; }
.comp-wrap { overflow-x: auto; margin-top: 36px; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.comp-table th,
.comp-table td { vertical-align: top; }
.comp-th-dim { padding: 14px 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; text-align: left; font-family: var(--mono); }
.comp-th-bad { padding: 14px 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.45); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; text-align: left; font-family: var(--mono); }
.comp-th-us  { padding: 14px 20px; background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); color: var(--cyan); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; text-align: left; font-family: var(--mono); font-weight: 700; }
.comp-row-label { padding: 14px 20px; border: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.65); font-weight: 600; font-size: 13px; white-space: nowrap; font-family: var(--sans); }
.comp-bad { padding: 14px 20px; border: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.01); font-family: var(--mono); font-size: 12px; }
.comp-mid { padding: 14px 20px; border: 1px solid rgba(255,255,255,0.05); color: rgba(255,200,100,0.65); background: rgba(255,255,255,0.01); font-family: var(--mono); font-size: 12px; }
.comp-us  { padding: 14px 20px; border: 1px solid rgba(0,212,255,0.1); color: rgba(255,255,255,0.9); background: rgba(0,212,255,0.04); font-family: var(--mono); font-size: 12px; font-weight: 600; }
.comp-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* Comparison matrix: ≤900px — full width, fixed columns, wrap (no wide min-width scroll) */
@media (max-width: 900px) {
  .pull-quote-box {
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }
  .pqb-attr { margin-top: 8px; }
  .s-comparison .table-scroll {
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
  }
  .s-comparison .comp-table {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    table-layout: fixed;
    font-size: 11px;
  }
  .s-comparison .comp-col-cap { width: 26%; }
  .s-comparison .comp-col-rule { width: 20%; }
  .s-comparison .comp-col-genml { width: 24%; }
  .s-comparison .comp-col-us-col { width: 30%; }
  .s-comparison .comp-th-dim,
  .s-comparison .comp-th-bad,
  .s-comparison .comp-th-us {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 9px;
    letter-spacing: 0.1em;
    line-height: 1.4;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    vertical-align: top;
  }
  .s-comparison .comp-th-us {
    letter-spacing: 0.05em;
  }
  .s-comparison .comp-row-label {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    font-weight: 600;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.4;
    vertical-align: top;
  }
  .s-comparison .comp-bad,
  .s-comparison .comp-mid,
  .s-comparison .comp-us {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 11px;
    line-height: 1.4;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    vertical-align: top;
  }
  .s-comparison .comp-us {
    font-weight: 600;
  }

  .pricing-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .pt-tiers { grid-template-columns: repeat(2,1fr); }

  .closing-choice {
    align-items: center;
    text-align: center;
  }
  .closing-choice-main {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .closing-heading-wrap {
    justify-content: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .closing-heading {
    font-size: clamp(28px, 3.5vw, 46px);
    text-align: center;
  }
  .battle-card-inner {
    grid-template-columns: 1fr;
  }
  .battle-col--industry {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .team-header { grid-template-columns: 1fr; gap: 36px; }

  .sci-cols { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .kf-grid { grid-template-columns: repeat(2, 1fr); }
  .sci-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .docs-content { padding: 32px var(--gutter); }
}

/* â”€â”€ SECTION 11 - INDUSTRIES â”€â”€ */
.s-industries { background: var(--dark2); }
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.ind-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.22s, transform 0.22s;
}
.ind-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-3px); }
.ind-title { font-size: 16px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.ind-body  { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; flex: 1; }
.ind-risks { display: flex; flex-wrap: wrap; gap: 6px; }
.ind-risks span { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(0,212,255,0.7); background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.15); padding: 3px 8px; border-radius: 100px; }
.ind-link { font-size: 13px; font-weight: 600; color: var(--cyan); cursor: pointer; transition: opacity 0.18s; }
.ind-link:hover { opacity: 0.75; }


/* â”€â”€ ROI CALCULATOR â”€â”€ */
.s-roi { background: #000000; position: relative; z-index: 11; }
.s-roi .s-inner { text-align: left; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.s-roi .s-heading,
.s-heading--roi {
  font-size: clamp(28px, 3.5vw, 46px);
  white-space: normal;
  text-align: left;
}
.s-heading--stacked {
  line-height: 1.15;
}
.s-trial .s-heading {
  white-space: normal;
  text-align: left;
}
.s-roi .s-sub-single { margin-bottom: 16px; }
.s-roi .s-roi-note { margin-top: 0; margin-bottom: 28px; }
.s-roi-title {
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -2px;
  color: #fff; margin-bottom: 16px; line-height: 1.1;
}
.s-roi-lead { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 0 16px; line-height: 1.75; text-align: left; }
.s-roi-note { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.28); margin-bottom: 28px; letter-spacing: 0.5px; }
.s-roi-cta-wrap { margin-top: 8px; }
.s-roi-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 12px 22px;
  border-radius: 9px;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.28);
  transition: box-shadow 0.22s, transform 0.22s;
}
.s-roi-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.15;
  text-align: center;
}
.s-roi-cta-line {
  display: block;
}
.s-roi-cta:hover {
  box-shadow: 0 0 48px rgba(0, 212, 255, 0.48);
  transform: translateY(-2px);
}
.roi-cyan { color: var(--cyan); }
.roi-inputs { display: flex; flex-direction: column; gap: 20px; }
.roi-field { display: flex; flex-direction: column; gap: 8px; }
.roi-label { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.roi-input {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px 18px; font-family: var(--mono); font-size: 15px;
  color: var(--white); outline: none; transition: border-color 0.22s, background 0.22s;
  width: 100%;
}
.roi-input::placeholder { color: rgba(255,255,255,0.2); }
.roi-input:focus { border-color: rgba(0,212,255,0.4); background: rgba(0,212,255,0.04); }
.roi-btn {
  box-sizing: border-box; width: 100%; min-height: 52px; height: 52px; display: inline-flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2)); color: var(--dark);
  border: none; border-radius: 9px; padding: 0 20px; font-family: var(--sans);
  font-size: 14px; font-weight: 700; cursor: pointer; letter-spacing: -0.3px; line-height: 1.2;
  box-shadow: 0 0 32px rgba(0,212,255,0.25); transition: box-shadow 0.22s, transform 0.22s;
}
.roi-btn:hover { box-shadow: 0 0 52px rgba(0,212,255,0.45); transform: translateY(-2px); }
.roi-results {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px; min-height: 360px; display: flex; align-items: center; justify-content: center;
}
.roi-results-empty { text-align: center; }
.roi-results-empty p { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
.roi-results-data { width: 100%; display: flex; flex-direction: column; gap: 0; }
.roi-result-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); gap: 16px; }
.roi-result-row:last-child { border-bottom: none; }
.roi-highlight { background: rgba(46,213,115,0.05); border-radius: 8px; padding: 16px 12px; border-bottom: none; margin-bottom: 8px; }
.roi-result-label { font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,0.55); }
.roi-result-val { font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--white); white-space: nowrap; }
.roi-val-green { color: var(--green); }
.roi-val-red { color: var(--red); }
.roi-val-cyan { color: var(--cyan); }
.roi-net-row { margin-top: 8px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: none; }
.roi-net-label { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--white); }
.roi-net-val { font-size: 22px; }
.roi-cta-row { display: flex; align-items: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.roi-cta-note { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; }

/* â”€â”€ SECTION 12 - TRIAL â”€â”€ */
.s-trial { background: #000000; position: relative; overflow: hidden; z-index: 12; }
.s-trial .s-inner { text-align: left; }
.s-trial .trial-boxes { justify-content: center; }
.s-trial .trial-proof,
.s-trial .trial-note,
.s-trial .trial-no-risk { text-align: center; max-width: 40rem; margin-left: auto; margin-right: auto; }
.s-trial .trial-no-risk:last-child {
  margin-bottom: 0;
}
.trial-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(0,212,255,0.06) 0%, transparent 65%);
}
.trial-boxes { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
@media (min-width: 641px) {
  .trial-boxes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }
}
.trial-box {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 28px 36px; text-align: center; min-width: 140px;
}
.trial-box-num { font-size: 32px; font-weight: 800; color: var(--cyan); letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.trial-box-label { font-family: var(--mono); font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; }
@media (min-width: 641px) {
  .trial-boxes .trial-box {
    min-width: 0;
  }
}
.trial-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trial-proof { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.trial-proof strong { color: rgba(255,255,255,0.85); }
.trial-note { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 1px; }

.trial-no-risk {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 42rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}
.trial-no-risk li {
  position: relative;
  padding-left: 1.15em;
}
.trial-no-risk li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.85em;
}
.trial-no-risk--card {
  margin-bottom: 22px;
}
.btn-primary-lg .cta-mono-meter {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.92em;
}

/* â”€â”€ SECTION 13 - PRICING â”€â”€ */
.s-pricing { background: var(--dark2); }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 48px 0 24px; }
.price-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px 24px; display: flex; flex-direction: column; gap: 12px;
  position: relative; transition: border-color 0.22s, transform 0.22s;
}
.price-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-3px); }
.price-featured {
  position: relative;
  background: rgba(0,212,255,0.06); border-color: rgba(0,212,255,0.25);
  box-shadow: 0 0 40px rgba(0,212,255,0.08);
}
.price-popular { font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px; }
.price-tier { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: -0.2px; }
.price-amount { font-size: 42px; font-weight: 800; color: var(--white); letter-spacing: -2px; line-height: 1; }
.price-custom { font-size: 32px; }
.price-unit { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.35); }
.price-volume { font-family: var(--mono); font-size: clamp(11px, 0.2rem + 1.8vw, 12px); color: rgba(255,255,255,0.50); letter-spacing: 0.5px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); line-height: 1.5; }
.price-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.price-features li { font-size: 13px; color: rgba(255,255,255,0.6); padding-left: 16px; position: relative; }
.price-features li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-size: 11px; font-weight: 700; }
.price-btn-pri { display: block; text-align: center; background: linear-gradient(135deg, var(--cyan), var(--cyan2)); color: var(--dark); font-weight: 700; font-size: 13px; padding: 11px 0; border-radius: 8px; text-decoration: none; transition: box-shadow 0.22s; }
.price-btn-pri:hover { box-shadow: 0 0 28px rgba(0,212,255,0.35); }
.price-btn-sec { display: block; text-align: center; background: transparent; color: rgba(255,255,255,0.65); font-weight: 600; font-size: 13px; padding: 11px 0; border-radius: 8px; text-decoration: none; border: 1px solid rgba(255,255,255,0.12); transition: border-color 0.22s, color 0.22s; }
.price-btn-sec:hover { border-color: rgba(0,212,255,0.3); color: var(--white); }
.all-plans {
  margin-top: 32px;
  padding: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
}
.all-plans-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.all-plans-grid { display: grid; grid-template-columns: 1fr; gap: 10px 24px; }
.all-plans-grid span { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.45); padding-left: 14px; position: relative; }
.all-plans-grid span::before { content: "\00B7"; position: absolute; left: 0; color: var(--cyan); }


/* â”€â”€ PRICING TEASER â”€â”€ */
.s-pricing-teaser { background: var(--dark2); }
.pricing-teaser-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.pt-heading { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -2px; line-height: 1.08; color: var(--white); margin-bottom: 16px; }
.pt-sub { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 360px; }
.pt-tiers { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px; }
.pt-tier {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 16px 12px; display: flex; flex-direction: column; gap: 4px;
  position: relative; transition: border-color 0.22s;
}
.pt-tier:hover { border-color: rgba(255,255,255,0.15); }
.pt-tier-featured { background: rgba(0,212,255,0.05); border-color: rgba(0,212,255,0.2); }
.pt-tier-badge { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 2px; }
.pt-tier-name { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6); }
.pt-tier-price { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -1px; line-height: 1.1; }
.pt-tier-price span { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.4); letter-spacing: 0; }
.pt-custom { font-size: 16px !important; }
.pt-tier-vol { font-family: var(--mono); font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; }
.pt-link { font-size: 14px; font-weight: 600; color: var(--cyan); text-decoration: none; transition: opacity 0.18s; }
.pt-link:hover { opacity: 0.75; }

/* â”€â”€ SECTION 14 - CLOSING (index) â”€â”€ */
.s-closing {
  background: #000000;
  position: relative;
  overflow: hidden;
  z-index: 13;
}

.s-closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.closing-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(28px, 4vw, 40px);
  margin-bottom: clamp(40px, 6vw, 64px);
  text-align: center;
}
.closing-heading-wrap {
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.closing-heading {
  font-family: var(--sans);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: none;
  text-align: center;
}

.closing-heading--stacked {
  font-family: var(--sans);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.12;
  text-transform: uppercase;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
}
.closing-heading--stacked .closing-heading-line {
  display: block;
  text-align: center;
}

.closing-choice-main {
  padding: 0;
  min-width: 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 901px) {
  .closing-choice {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(32px, 5vw, 56px);
    text-align: left;
  }
  .closing-choice-main {
    flex: 1 1 52%;
    min-width: 0;
    max-width: 640px;
    margin: 0 0 0 auto;
  }
  .closing-heading-wrap {
    flex: 0 1 42%;
    min-width: 220px;
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    width: auto;
  }
  .closing-heading {
    text-align: center;
  }
}

.closing-battle-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 901px) {
  .closing-choice .closing-battle-card {
    margin-left: auto;
    margin-right: 0;
  }
}

.closing-battle-card.closing-battle-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.battle-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  overflow: hidden;
  background: rgba(8, 12, 20, 0.95);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.battle-col {
  padding: clamp(20px, 3vw, 28px) clamp(18px, 2.5vw, 24px);
}

.battle-col--industry {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  box-shadow: none;
}

.battle-col--st {
  background: #080c14;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}

.battle-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.battle-col--industry .battle-label {
  color: rgba(255, 255, 255, 0.45);
}

.battle-col--st .battle-label {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 14px;
}

.battle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.battle-list li {
  position: relative;
  padding-left: 18px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.battle-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
}

.battle-list--industry li {
  color: rgba(255, 255, 255, 0.62);
}

.battle-list--industry li::before {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.battle-list--st li {
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
}

.battle-list--st li::before {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.45);
}

.certainty-audit-card {
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
  background: linear-gradient(165deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 0, 0, 0.65) 45%);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.certainty-audit-heading {
  font-family: var(--sans);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
  line-height: 1.1;
  max-width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}
.certainty-audit-heading-line1,
.certainty-audit-heading-line2 {
  display: block;
}

.certainty-audit-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  max-width: 640px;
  margin: 0 auto 28px;
}

.certainty-audit-card .certainty-audit-sub {
  margin-bottom: 18px;
}

@keyframes btn-breath {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0), 0 0 0 0 rgba(0, 212, 255, 0);
  }
  50% {
    box-shadow: 0 0 28px 4px rgba(0, 212, 255, 0.28), 0 0 0 1px rgba(0, 212, 255, 0.15);
  }
}

.btn-certainty-audit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  background: var(--cyan);
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  animation: btn-breath 5.5s ease-in-out infinite;
}

.btn-certainty-audit:hover {
  animation: none;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.35), 0 0 42px 8px rgba(0, 212, 255, 0.45);
}

.btn-certainty-audit:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .closing-battle-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-certainty-audit {
    animation: none;
  }
  .s-label .s-dot {
    animation: none;
  }
}

/* â”€â”€ FINAL CTA (pricing & other pages) â”€â”€ */
.s-final { background: var(--dark); position: relative; overflow: hidden; }
.s-final .s-inner { position: relative; z-index: 2; text-align: center; }
.final-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(0,212,255,0.06) 0%, transparent 65%);
}
.final-heading { font-size: clamp(42px, 5.5vw, 72px); font-weight: 800; color: var(--white); letter-spacing: -3px; line-height: 1.05; margin-bottom: 24px; }
.final-sub { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 620px; line-height: 1.75; margin: 0 auto 40px; }
.final-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.final-teaser { font-family: var(--serif); font-style: italic; font-size: 15px; color: rgba(255,255,255,0.35); max-width: 560px; margin: 0 auto 16px; line-height: 1.7; }
.final-seed { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.52); letter-spacing: 1px; }

/* SHARED BUTTONS */
.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--dark);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 15px 30px; border-radius: 10px; border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 0 32px rgba(0,212,255,0.28); transition: box-shadow 0.22s, transform 0.22s;
}
.btn-primary-lg:hover { box-shadow: 0 0 52px rgba(0,212,255,0.48); transform: translateY(-2px); }
.btn-secondary-lg {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.72);
  background: transparent; border: 1px solid rgba(255,255,255,0.16);
  padding: 15px 30px; border-radius: 10px; cursor: pointer; text-decoration: none;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
}
.btn-secondary-lg:hover { border-color: rgba(0,212,255,0.35); color: var(--white); background: rgba(0,212,255,0.05); }

/* â”€â”€ FOOTER â”€â”€ */
.site-footer {
  background: #000000;
  padding: 40px 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--s-pad-x); display: flex; flex-direction: row; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-inner .footer-left { flex: 1 1 auto; min-width: 200px; }
.footer-inner .footer-links { flex: 0 1 auto; margin-left: auto; display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
.footer-logo { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-tag { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.footer-copy { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--white); }

/* â”€â”€ RESPONSIVE â”€â”€ */
/* === from about.html === */
/* Deduped: reset, :root, html/body, blink/fadeUp — see top of file */

/* NAV — sync with index bundle (mobile-first) */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; white-space: nowrap; }
.logo-sep  { display: none; }
.logo-tag  {
  display: none;
  font-family: var(--mono); font-size: 9.5px; color: rgba(255,255,255,0.6); font-weight: 500;
  white-space: nowrap; letter-spacing: 0px;
}
@media (min-width: 640px) {
  .logo-tag { display: block; }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 40px;
  overflow-y: auto;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-links.is-open {
  display: flex;
  animation: fadeUp 0.2s ease both;
}
.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links li:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding-top: 8px;
}
.nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-size: 15px !important;
  border-radius: 10px;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  display: none;
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; opacity: 0.5; flex-shrink: 0;
}
.nav-dropdown .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  padding-top: 0;
  min-width: 0;
  box-shadow: none;
}
.nav-dropdown .dropdown-menu-box {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0 8px;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 6px; }
.btn-nav {
  font-family: var(--sans); font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav:hover { box-shadow: 0 0 32px rgba(0,212,255,0.38); transform: translateY(-1px); }
@media (min-width: 900px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    z-index: auto;
    border-top: none;
  }
  .nav-links.is-open { animation: none; }
  .nav-links li { width: auto; border-bottom: none; }
  .nav-links li:last-child { margin-top: 0; padding-top: 0; }
  .nav-links a {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); }
  .nav-links .btn-nav {
    width: auto;
    text-align: center;
    padding: 8px 18px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 13px !important;
    border-radius: 8px;
  }
  .nav-dropdown > a::after { display: block; }
  .nav-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 176px;
    z-index: 300;
    transition: opacity 0.15s, visibility 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown .dropdown-menu-box {
    background: rgba(8,12,24,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    backdrop-filter: blur(24px);
  }
  .nav-dropdown .dropdown-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 9px 14px;
  }
  .nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
}

/* SHARED */
.s-inner { max-width: var(--max-w); margin: 0 auto; }
.s-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.2); padding: 5px 14px; border-radius: 100px; }
.s-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.s-label .s-dot { animation: s-dot-pulse 5s ease-in-out infinite; }
.s-heading { font-family: var(--sans); font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -2px; line-height: 1.08; text-align: left; white-space: normal; color: var(--white); }
.section-eyebrow { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.50); margin-bottom: 10px; }
.section-title { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -1.8px; line-height: 1.1; margin-bottom: 0; color: var(--white); }

/* HERO */
.page-hero { padding: calc(var(--nav-h) + 48px) var(--gutter) 40px; position: relative; overflow: hidden; }
@media (min-width: 640px) {
  .page-hero { padding: calc(var(--nav-h) + 64px) var(--gutter) 48px; }
}
@media (min-width: 900px) {
  .page-hero { padding: calc(var(--nav-h) + 64px) var(--gutter) 56px; }
}
.hero-glow { display: none; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; pointer-events: none; background: radial-gradient(ellipse, rgba(0,212,255,0.055) 0%, transparent 65%); }
@media (min-width: 640px) {
  .hero-glow { display: block; }
}
.page-hero .hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; animation: fadeUp 0.7s ease both; display: block; }
.hero-inner h1 { font-size: clamp(24px, 6.5vw, 42px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; max-width: 780px; }
@media (min-width: 900px) {
  .hero-inner h1 { font-size: clamp(26px, 3.5vw, 50px); letter-spacing: -2px; }
}
.hero-inner p { font-size: clamp(14px, 2.8vw, 16px); color: rgba(255,255,255,0.5); max-width: 500px; line-height: 1.75; }
@media (min-width: 640px) {
  .hero-inner p { font-size: clamp(15px, 1.8vw, 16px); }
}

/* ORIGIN */
.s-origin { background: var(--dark2); text-align: left; }
.s-origin .section-eyebrow { text-align: left; }
.origin-layout { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: start; margin-top: 36px; }
.origin-left { min-width: 0; }
.origin-pull { font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.8vw, 22px); font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 22px; letter-spacing: -0.3px; }
.origin-body p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 14px; }
.origin-body p:last-child { margin-bottom: 0; }
.origin-body p strong { color: rgba(255,255,255,0.82); font-weight: 600; }
.origin-right { display: flex; flex-direction: column; gap: 10px; }
.origin-stat { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 22px 26px; transition: border-color 0.22s; }
.origin-stat:hover { border-color: rgba(0,212,255,0.18); }
.origin-stat-num { font-size: clamp(26px, 2.8vw, 40px); font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 4px; color: var(--white); }
.origin-stat-num span { color: var(--cyan); }
.origin-stat-label { font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 5px; }
.origin-stat-context { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.5; }
.origin-stats-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.55); margin-bottom: 14px; letter-spacing: -0.2px; }
.origin-stat-bold { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.82); margin-bottom: 3px; }



/* TEAM */
.s-team { background: var(--dark2); text-align: left; }
.s-team .section-eyebrow,
.s-team .section-title { text-align: left; }
.team-header { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; margin-top: 24px; margin-bottom: 28px; }
.team-header-text p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 14px; }
.team-header-text p:last-child { margin-bottom: 0; }
.team-header-text p strong { color: rgba(255,255,255,0.82); font-weight: 600; }
.team-header-quote { border-left: 2px solid rgba(0,212,255,0.3); padding-left: 28px; padding-top: 4px; }
.shannon-quote { font-family: var(--serif); font-style: italic; font-size: clamp(16px, 1.6vw, 20px); font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.5; margin-bottom: 14px; letter-spacing: -0.2px; }
.shannon-attr { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); line-height: 1.6; }
.shannon-attr span { color: rgba(0,212,255,0.65); display: block; margin-bottom: 2px; font-size: 10px; }
.meet-the-team { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; }

.team-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.team-grid--divisions { grid-template-columns: repeat(2, 1fr); }
.team-grid--three {
  grid-template-columns: 1fr !important;
}

@media (min-width: 640px) {
  .team-grid--three {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 900px) {
  .team-grid--three {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
.team-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 26px 22px; transition: border-color 0.22s, transform 0.22s; }
.team-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-2px); }
.team-card.featured { background: rgba(0,212,255,0.04); border-color: rgba(0,212,255,0.18); }
.team-avatar { width: 36px; height: 36px; border-radius: 9px; background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight:700; color: var(--cyan); margin-bottom: 14px; font-family: var(--mono); }
.team-avatar--icon { font-size: 0; line-height: 0; color: var(--cyan); }
.team-avatar--icon svg { width: 20px; height: 20px; flex-shrink: 0; }
.card-header-top { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.card-header-top .team-avatar { margin-bottom: 0; }
.card-header-top .team-name { margin-bottom: 0; flex: 1; min-width: 0; }
.team-name { font-size: 14px; font-weight: 800; letter-spacing: -0.3px; color: var(--white); margin-bottom: 3px; }
.team-role { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); margin-bottom: 11px; line-height: 1.5; }
.team-bio { font-size: 12px; color: rgba(255,255,255,0.46); line-height: 1.7; }
.team-ieee { display: inline-flex; align-items: center; gap: 5px; margin-top: 11px; font-family: var(--mono); font-size: 9px; font-weight: 700; color: rgba(0,212,255,0.65); background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.16); padding: 3px 9px; border-radius: 5px; text-decoration: none; transition: background 0.18s; }
.team-ieee:hover { background: rgba(0,212,255,0.13); }

.expertise-strip { margin-top: 24px; padding: 24px 28px; background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; }
.expertise-label { font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 14px; text-align: left; }
.expertise-pills { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 7px; }
.expertise-pill { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 4px 13px; border-radius: 100px; transition: border-color 0.18s, color 0.18s; cursor: default; }
.expertise-pill:hover { border-color: rgba(0,212,255,0.25); color: rgba(255,255,255,0.72); }

/* About page â€” AI beat strip (was inline; keeps desktop scale, mobile unified in v0.3.2) */
.about-ai-strip {
  padding: 32px var(--gutter);
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.about-ai-strip-inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.about-ai-lead {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.about-ai-body {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

/* CTA */
.s-cta { background: var(--dark); text-align: center; }
.s-cta h2 { font-size: clamp(24px, 3.2vw, 44px); font-weight: 800; letter-spacing: -2px; margin-bottom: 12px; }
.s-cta p { font-size: 15px; color: rgba(255,255,255,0.42); max-width: 400px; margin: 0 auto 28px; line-height: 1.7; }
.cta-btns { display: flex; flex-direction: column; justify-content: center; gap: 12px; flex-wrap: wrap; }
@media (min-width: 640px) {
  .cta-btns { flex-direction: row; }
}

/* FOOTER */
.site-footer { background: #000000; padding: 40px var(--gutter); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-tag  { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.32); }
.footer-copy { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.2); margin-top: 3px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--white); }

@media (max-width: 640px) {
  .team-grid--divisions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .team-grid--divisions .team-card {
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .team-grid--divisions .card-header-top {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    min-height: 42px;
  }
  .team-grid--divisions .team-avatar {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    flex-shrink: 0;
  }
  .team-grid--divisions .team-avatar--icon svg {
    width: 16px;
    height: 16px;
  }
  .team-grid--divisions .team-name {
    font-size: 11px;
    line-height: 1.22;
    min-width: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .team-grid--divisions .team-role {
    font-size: 7.5px;
    letter-spacing: 0.45px;
    line-height: 1.22;
    margin-bottom: 8px;
    min-height: calc(7.5px * 1.22 * 3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .team-grid--divisions .team-bio {
    font-size: 11px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
  .team-grid--divisions .team-ieee {
    display: none;
  }
  .team-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .expertise-pills { gap: 6px; }
  .team-grid:not(.team-grid--divisions) { grid-template-columns: 1fr; }
}

/* === from contact.html === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --dark:#080c14;--dark2:#0d1221;
  --cyan:#00d4ff;--cyan2:#0099cc;
  --red:#ff2d3d;--green:#2ed573;--orange:#ff9800;--white:#ffffff;
  --sans:'Sora',sans-serif;--mono:'JetBrains Mono',monospace;--serif:'Fraunces',serif;
  --max-w:1200px;--nav-h:68px;--gutter:clamp(20px,5%,80px);
  --page-hero-next-pt:clamp(36px,8vw,56px);
}
@media (min-width:640px){:root{--page-hero-next-pt:clamp(48px,10vw,80px);}}
@media (min-width:900px){:root{--page-hero-next-pt:clamp(80px,20vw,80px);}}
html{scroll-behavior:smooth}
body{background:var(--dark);color:var(--white);font-family:var(--sans);overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased;min-height:100vh}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}
@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}

/* NAV — sync with index bundle (mobile-first) */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; white-space: nowrap; }
.logo-sep  { display: none; }
.logo-tag  {
  display: none;
  font-family: var(--mono); font-size: 9.5px; color: rgba(255,255,255,0.6); font-weight: 500;
  white-space: nowrap; letter-spacing: 0px;
}
@media (min-width: 640px) {
  .logo-tag { display: block; }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 40px;
  overflow-y: auto;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-links.is-open {
  display: flex;
  animation: fadeUp 0.2s ease both;
}
.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links li:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding-top: 8px;
}
.nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-size: 15px !important;
  border-radius: 10px;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  display: none;
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; opacity: 0.5; flex-shrink: 0;
}
.nav-dropdown .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  padding-top: 0;
  min-width: 0;
  box-shadow: none;
}
.nav-dropdown .dropdown-menu-box {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0 8px;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 6px; }
.btn-nav {
  font-family: var(--sans); font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav:hover { box-shadow: 0 0 32px rgba(0,212,255,0.38); transform: translateY(-1px); }
@media (min-width: 900px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    z-index: auto;
    border-top: none;
  }
  .nav-links.is-open { animation: none; }
  .nav-links li { width: auto; border-bottom: none; }
  .nav-links li:last-child { margin-top: 0; padding-top: 0; }
  .nav-links a {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); }
  .nav-links .btn-nav {
    width: auto;
    text-align: center;
    padding: 8px 18px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 13px !important;
    border-radius: 8px;
  }
  .nav-dropdown > a::after { display: block; }
  .nav-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 176px;
    z-index: 300;
    transition: opacity 0.15s, visibility 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown .dropdown-menu-box {
    background: rgba(8,12,24,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    backdrop-filter: blur(24px);
  }
  .nav-dropdown .dropdown-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 9px 14px;
  }
  .nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
}

/* â”€â”€â”€ HERO â”€â”€â”€ */
.page-hero{padding:calc(var(--nav-h) + 48px) var(--gutter) 36px;text-align:left;position:relative;overflow:hidden}
@media (min-width:640px){
  .page-hero{padding:calc(var(--nav-h) + 64px) var(--gutter) 44px}
}
@media (min-width:900px){
  .page-hero{padding:calc(var(--nav-h) + 64px) var(--gutter) 48px}
}
.hero-glow{display:none;position:absolute;top:0;left:50%;transform:translateX(-50%);width:700px;height:400px;background:radial-gradient(ellipse,rgba(0,212,255,0.05) 0%,transparent 65%);pointer-events:none}
@media (min-width:640px){
  .hero-glow{display:block}
}
.s-dot{width:5px;height:5px;border-radius:50%;background:var(--cyan);flex-shrink:0}.s-label .s-dot{animation:s-dot-pulse 5s ease-in-out infinite}
.s-badge{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:10px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--cyan);background:rgba(0,212,255,0.07);border:1px solid rgba(0,212,255,0.2);padding:5px 14px;border-radius:100px;margin-bottom:24px}
.hero-h1{font-size:clamp(26px,5.5vw,52px);font-weight:800;letter-spacing:-2px;line-height:1.06;margin-bottom:16px}
@media (min-width:900px){
  .hero-h1{font-size:clamp(30px,4vw,52px)}
}
.hero-h1 span{color:var(--cyan)}
.page-hero-inner .hero-sub{font-size:clamp(15px, 1.8vw, 16px);color:rgba(255,255,255,0.5);max-width:800px;margin:0;line-height:1.75}
@media (min-width:640px){
  .page-hero-inner .hero-sub{font-size:clamp(15px, 1.8vw, 16px)}
}
.hero-sub{font-size:clamp(15px, 1.8vw, 16px);color:rgba(255,255,255,0.5);max-width:480px;margin:0 auto;line-height:1.75}
@media (min-width:640px){
  .hero-sub{font-size:clamp(15px, 1.8vw, 16px)}
}
@media (min-width:900px){
  .hero-sub{font-size:clamp(15px, 1.8vw, 16px)}
}

/* â”€â”€â”€ DEPARTMENT SELECTOR â”€â”€â”€ */
.dept-section{padding:0 var(--gutter) 64px;max-width:var(--max-w);margin:0 auto}
.dept-label{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,0.25);text-align:center;margin-bottom:20px}
.dept-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-bottom:48px}
@media (min-width:640px){.dept-grid{grid-template-columns:repeat(3,1fr);gap:10px}}
@media (min-width:900px){.dept-grid{grid-template-columns:repeat(6,1fr)}}
.dept-btn{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.08);border-radius:12px;padding:18px 12px;min-height:44px;box-sizing:border-box;cursor:pointer;transition:all 0.2s;text-align:center;display:flex;flex-direction:column;align-items:center;gap:10px}
.dept-btn:hover{border-color:rgba(0,212,255,0.25);background:rgba(0,212,255,0.04)}
.dept-btn.active{border-color:rgba(0,212,255,0.4);background:rgba(0,212,255,0.07)}
.dept-icon{width:36px;height:36px;border-radius:9px;background:rgba(255,255,255,0.05);display:flex;align-items:center;justify-content:center;transition:background 0.2s}
.dept-btn.active .dept-icon{background:rgba(0,212,255,0.12)}
.dept-icon svg{width:15px;height:15px;stroke:rgba(255,255,255,0.4);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;transition:stroke 0.2s}
.dept-btn.active .dept-icon svg,.dept-btn:hover .dept-icon svg{stroke:var(--cyan)}
.dept-name{font-family:var(--mono);font-size:10px;font-weight:600;color:rgba(255,255,255,0.5);line-height:1.35;letter-spacing:0.02em;transition:color 0.2s}
.dept-btn.active .dept-name,.dept-btn:hover .dept-name{color:var(--white)}
.dept-btn--live{align-items:center;gap:6px;padding-bottom:14px}
.dept-live-caption{display:flex;align-items:center;justify-content:center;gap:6px;flex-wrap:wrap;font-family:var(--mono);font-size:8px;font-weight:500;letter-spacing:0.04em;color:rgba(46,213,115,0.85);line-height:1.35;max-width:100%;text-align:center;margin-top:-2px}
.dept-live-pulse{width:6px;height:6px;border-radius:50%;background:var(--green);flex-shrink:0;box-shadow:0 0 0 0 rgba(46,213,115,0.5);animation:dept-live-pulse 2s ease-in-out infinite}
@keyframes dept-live-pulse{0%,100%{box-shadow:0 0 0 0 rgba(46,213,115,0.45)}50%{box-shadow:0 0 0 6px rgba(46,213,115,0)}}

.contact-page .page-hero{position:relative;z-index:3;padding-bottom:32px}
.contact-page .page-hero .hero-sub{font-size:clamp(15px, 1.8vw, 16px)}
.contact-page .dept-section.section-soft-bleed-top{padding:calc(24px + 28px) var(--gutter) 64px}
.dept-section.section-soft-bleed-top{position:relative;z-index:1;max-width:none;width:100%;box-sizing:border-box;padding:calc(80px + 28px) var(--gutter) 64px;margin-left:auto;margin-right:auto}
.dept-section.section-soft-bleed-top > *{position:relative;z-index:2;max-width:var(--max-w);margin-left:auto;margin-right:auto}
.dept-section.section-soft-bleed-top > .dept-label{text-align:center}

.dept-governance-note{font-family:var(--mono);font-size:11px;line-height:1.65;color:rgba(255,255,255,0.42);padding:14px 16px;border-radius:10px;border:1px solid rgba(255,255,255,0.08);background:rgba(0,212,255,0.04);margin-bottom:24px}
.dept-deep-dive{margin-bottom:28px;padding:18px 18px 16px;border-radius:12px;border:1px solid rgba(0,212,255,0.18);background:linear-gradient(145deg,rgba(0,212,255,0.06),rgba(255,255,255,0.02))}
.dept-deep-dive-label{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:1.8px;text-transform:uppercase;color:var(--cyan);margin-bottom:8px}
.dept-deep-dive-text{font-size:13px;color:rgba(255,255,255,0.55);line-height:1.65;margin:0}

.phd-hook{
  margin-bottom:24px;padding:20px;background:rgba(0,255,242,0.03);border:1px solid rgba(0,255,242,0.15);border-radius:12px;
  position:relative;overflow:hidden;display:none;animation:fadeIn 0.4s ease-out
}
.phd-hook::before{
  content:"EXPERT ACCESS";position:absolute;top:0;right:0;background:var(--cyan);color:#000;font-size:10px;font-weight:800;
  padding:4px 12px;border-bottom-left-radius:8px;letter-spacing:0.05em
}
.phd-icon{margin-bottom:12px;color:var(--cyan);display:flex}
.phd-icon svg{display:block}
.phd-title{font-family:'Sora',sans-serif;font-weight:700;font-size:18px;margin-bottom:8px;color:#fff}
.phd-text{font-size:14px;line-height:1.6;color:rgba(255,255,255,0.7)}
.phd-sub-note{font-size:11px;line-height:1.55;color:rgba(255,255,255,0.42);margin-top:10px;max-width:38ch}

.btn-phd-direct{
  display:inline-block;margin-top:16px;padding:12px 24px;
  background:rgba(0,255,242,0.05);border:1px solid var(--cyan);color:var(--cyan);
  font-family:'JetBrains Mono',monospace;font-size:13px;font-weight:700;text-decoration:none;
  border-radius:4px;letter-spacing:0.1em;transition:all 0.3s ease;position:relative;overflow:hidden;
}
.btn-phd-direct::after{
  content:'';position:absolute;left:0;right:0;height:2px;
  background:linear-gradient(90deg,transparent,rgba(0,255,242,1),transparent);
  box-shadow:0 0 10px rgba(0,255,242,0.85);
  top:0;opacity:0;pointer-events:none;
}
.btn-phd-direct:hover{
  background:var(--cyan);color:#000;box-shadow:0 0 25px rgba(0,255,242,0.5);
  animation:glitch-flicker 2.4s ease-in-out infinite;
}
.btn-phd-direct:hover::after{
  opacity:1;animation:phd-scan-sweep 1.15s ease-in-out infinite;
}
@keyframes glitch-flicker{
  0%,100%{opacity:0.88;filter:brightness(0.92)}
  50%{opacity:1;filter:brightness(1.06)}
}
@keyframes phd-scan-sweep{
  0%{top:0}
  100%{top:calc(100% - 2px)}
}

.phd-form-or{
  align-items:center;gap:14px;margin:0 0 18px;padding:0;
  font-family:var(--mono);font-size:10px;font-weight:600;letter-spacing:0.35em;text-transform:uppercase;
  color:rgba(255,255,255,0.35);opacity:0.55;
}
@media (min-width:900px){.phd-form-or{margin-bottom:22px}}
.phd-form-or .phd-or-line{flex:1;height:1px;background:rgba(255,255,255,0.1);min-width:12px}
.phd-form-or .phd-or-text{flex-shrink:0;opacity:0.7}

@keyframes fadeIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}

.contact-left{display:flex;flex-direction:column;min-width:0}
.form-group--phd{margin-bottom:16px}
.form-checkbox-label{display:flex;align-items:flex-start;gap:10px;cursor:pointer;font-size:13px;line-height:1.5;color:rgba(255,255,255,0.65);user-select:none}
.form-checkbox-label .form-checkbox{margin-top:3px;flex-shrink:0;width:16px;height:16px;accent-color:var(--cyan);cursor:pointer}

/* â”€â”€â”€ CONTACT WRAP â”€â”€â”€ */
.contact-wrap{display:grid;grid-template-columns:1fr;gap:clamp(24px,5vw,36px);align-items:start;animation:fadeUp 0.35s ease both}
@media (min-width:900px){.contact-wrap{grid-template-columns:1fr 1.4fr;gap:40px}}
#deptInfo{display:none;order:1}
#deptInfoInner{order:1}
@media (min-width:768px){#deptInfo{display:flex;flex-direction:column}}
.phd-hook{order:0}
.dept-info-badge{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--cyan);background:rgba(0,212,255,0.07);border:1px solid rgba(0,212,255,0.15);padding:4px 12px;border-radius:100px;margin-bottom:18px}
.dept-title{font-size:clamp(20px,2.2vw,28px);font-weight:800;letter-spacing:-0.8px;margin-bottom:12px;line-height:1.15}
.dept-desc{font-size:14px;color:rgba(255,255,255,0.5);line-height:1.8;margin-bottom:28px}
.dept-details{display:flex;flex-direction:column;gap:12px;margin-bottom:28px}
.dept-detail{display:flex;align-items:center;gap:12px;font-size:13px;color:rgba(255,255,255,0.5)}
.dept-detail svg{width:14px;height:14px;stroke:var(--cyan);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.dept-detail a{color:rgba(255,255,255,0.5);text-decoration:none;transition:color 0.15s}
.dept-detail a:hover{color:var(--cyan)}
.response-note{display:flex;align-items:center;gap:8px;font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.25);letter-spacing:0.3px;padding-top:20px;border-top:1px solid rgba(255,255,255,0.06)}
.response-dot{width:7px;height:7px;border-radius:50%;background:var(--green);flex-shrink:0}

/* â”€â”€â”€ FORM â”€â”€â”€ */
.contact-form-wrap{background:rgba(13,18,33,0.72);backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);border:1px solid rgba(255,255,255,0.1);border-radius:16px;padding:12px;box-shadow:0 24px 48px rgba(0,0,0,0.25);order:2}
@media (min-width:640px){.contact-form-wrap{padding:24px}}
@media (min-width:900px){.contact-form-wrap{padding:32px}}
.form-title{font-size:16px;font-weight:800;letter-spacing:-0.3px;margin-bottom:4px}
.form-sub{font-size:12px;color:rgba(255,255,255,0.38);margin-bottom:24px}
.form-row{display:grid;grid-template-columns:1fr;gap:16px;margin-bottom:16px}
@media (min-width:640px){.form-row{grid-template-columns:1fr 1fr}}
.form-group{margin-bottom:16px}
.form-label{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,0.35);display:block;margin-bottom:7px}
.contact-form-wrap .form-input{width:100%;min-height:44px;box-sizing:border-box;background:rgba(255,255,255,0.06);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,0.12);border-radius:10px;padding:14px 18px;font-family:var(--sans);font-size:14px;color:var(--white);outline:none;transition:border-color 0.22s,background 0.22s}
.contact-form-wrap .form-input::placeholder{color:rgba(255,255,255,0.2)}
.contact-form-wrap .form-input:focus{border-color:rgba(0,212,255,0.4);background:rgba(0,212,255,0.05)}
.contact-form-wrap .form-input.error{border-color:rgba(255,45,61,0.5)}
.form-textarea{resize:vertical;min-height:max(110px,44px);font-family:var(--sans);line-height:1.6;box-sizing:border-box}
.form-error{font-size:11px;color:var(--red);margin-top:4px;display:none;font-family:var(--mono)}
.btn-submit{width:100%;min-height:44px;box-sizing:border-box;background:linear-gradient(135deg,var(--cyan),var(--cyan2));color:var(--dark);border:none;border-radius:9px;padding:14px;font-family:var(--sans);font-size:14px;font-weight:700;cursor:pointer;box-shadow:0 0 28px rgba(0,212,255,0.2);transition:all 0.2s;margin-top:4px}
.btn-submit:hover{box-shadow:0 0 48px rgba(0,212,255,0.4);transform:translateY(-1px)}
.btn-submit:disabled{opacity:0.6;cursor:not-allowed;transform:none}
.form-privacy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.18);text-align:center;margin-top:12px;line-height:1.6;padding-left:12px;padding-right:12px;box-sizing:border-box}
.form-privacy a{color:rgba(255,255,255,0.3);text-decoration:none}

/* â”€â”€â”€ CONFIRMATION â”€â”€â”€ */
.confirmation{display:none;text-align:center;animation:fadeUp 0.35s ease both}
.conf-icon{width:56px;height:56px;border-radius:50%;background:rgba(46,213,115,0.1);border:1px solid rgba(46,213,115,0.2);display:flex;align-items:center;justify-content:center;margin:0 auto 20px}
.conf-icon svg{width:24px;height:24px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.conf-title{font-size:20px;font-weight:800;letter-spacing:-0.5px;margin-bottom:8px}
.conf-sub{font-size:12px;color:rgba(255,255,255,0.45);line-height:1.75;margin-bottom:24px;width:100%;min-width:0;margin-left:auto;margin-right:auto}
.conf-back{display:inline-block;font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;padding:10px 20px;border:1px solid rgba(255,255,255,0.1);border-radius:8px;transition:all 0.18s}
.conf-back:hover{color:var(--white);border-color:rgba(255,255,255,0.2)}

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
.site-footer{background:#000000;padding:40px var(--gutter);margin-top:80px}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px}
.footer-logo{font-size:14px;font-weight:700;color:var(--white);margin-bottom:4px}
.footer-tag{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.35)}
.footer-copy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.25);margin-top:4px}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.18s}
.footer-links a:hover{color:var(--white)}

/* === from pricing.html === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --dark:#080c14;--dark2:#0d1221;--cyan:#00d4ff;--cyan2:#0099cc;
  --red:#ff2d3d;--green:#2ed573;--orange:#ff9800;--white:#ffffff;
  --sans:'Sora',sans-serif;--mono:'JetBrains Mono',monospace;
  --serif:'Fraunces',serif;--max-w:1200px;--nav-h:68px;--gutter:clamp(20px,5%,80px);
}
html{scroll-behavior:smooth;font-size:16px}
body{background:var(--dark);color:var(--white);font-family:var(--sans);overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}
@keyframes glowPulse{0%,100%{opacity:0.05}50%{opacity:0.09}}

/* NAV — sync with index bundle (mobile-first) */
nav{position:fixed;top:0;left:0;right:0;height:var(--nav-h);z-index:200;background:#050505;border-bottom:1px solid rgba(255,255,255,0.08)}
.nav-inner{max-width:var(--max-w);margin:0 auto;height:100%;display:flex;align-items:center;justify-content:space-between;padding:0 var(--gutter)}
.logo-wrap{display:flex;flex-direction:column;gap:2px;text-decoration:none;flex-shrink:0}
.logo-name{font-size:15px;font-weight:700;color:var(--white);letter-spacing:-0.3px;white-space:nowrap}
.logo-sep{display:none}
.logo-tag{display:none;font-family:var(--mono);font-size:9.5px;color:rgba(255,255,255,0.6);font-weight:500;white-space:nowrap;letter-spacing:0}
@media (min-width:640px){.logo-tag{display:block}}
.nav-hamburger{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;width:40px;height:40px;background:none;border:1px solid rgba(255,255,255,0.12);border-radius:8px;cursor:pointer;padding:8px;z-index:201;flex-shrink:0}
.nav-hamburger span{display:block;width:18px;height:1.5px;background:rgba(255,255,255,0.75);border-radius:2px;transition:transform 0.25s ease,opacity 0.25s ease}
.nav-hamburger.is-open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.nav-hamburger.is-open span:nth-child(2){opacity:0}
.nav-hamburger.is-open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
.nav-links{list-style:none;display:none;flex-direction:column;align-items:flex-start;gap:0;position:fixed;top:var(--nav-h);left:0;right:0;bottom:0;background:rgba(5,5,5,0.98);backdrop-filter:blur(20px);padding:24px 24px 40px;overflow-y:auto;z-index:199;border-top:1px solid rgba(255,255,255,0.07)}
.nav-links.is-open{display:flex;animation:fadeUp 0.2s ease both}
.nav-links li{width:100%;border-bottom:1px solid rgba(255,255,255,0.06)}
.nav-links li:last-child{border-bottom:none;margin-top:16px;padding-top:8px}
.nav-links a{display:block;font-size:16px;font-weight:500;padding:14px 4px;color:rgba(255,255,255,0.75);text-decoration:none;transition:color 0.18s}
.nav-links a:hover,.nav-links a.active{color:var(--white)}
.nav-links .btn-nav{width:100%;text-align:center;padding:16px;box-sizing:border-box;display:block;font-size:15px!important;border-radius:10px}
.nav-dropdown{position:relative}
.nav-dropdown>a{display:flex;align-items:center;gap:6px;cursor:pointer}
.nav-dropdown>a::after{display:none;content:'';width:5px;height:5px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);margin-top:-2px;opacity:0.5;flex-shrink:0}
.nav-dropdown .dropdown-menu{visibility:visible;opacity:1;pointer-events:auto;position:static;transform:none;padding-top:0;min-width:0;box-shadow:none}
.nav-dropdown .dropdown-menu-box{background:rgba(255,255,255,0.04);border:none;border-radius:8px;padding:4px 8px;margin:4px 0 8px}
.nav-dropdown .dropdown-menu a{display:block;font-size:13px;font-weight:500;color:rgba(255,255,255,0.45);text-decoration:none;padding:8px 10px;border-radius:7px;transition:color 0.15s,background 0.15s;white-space:nowrap}
.nav-dropdown .dropdown-menu a:hover{color:var(--white);background:rgba(255,255,255,0.07)}
.dropdown-divider{height:1px;background:rgba(255,255,255,0.07);margin:4px 6px}
.btn-nav{font-family:var(--sans);font-size:13px!important;font-weight:700!important;color:var(--dark)!important;background:linear-gradient(135deg,var(--cyan),var(--cyan2));padding:8px 18px;border-radius:8px;white-space:nowrap;box-shadow:0 0 20px rgba(0,212,255,0.2);transition:box-shadow 0.2s,transform 0.2s}
.btn-nav:hover{box-shadow:0 0 32px rgba(0,212,255,0.38);transform:translateY(-1px)}
@media (min-width:900px){
.nav-hamburger{display:none}
.nav-links{display:flex;flex-direction:row;align-items:center;gap:28px;position:static;top:auto;left:auto;right:auto;bottom:auto;background:transparent;backdrop-filter:none;padding:0;overflow-y:visible;z-index:auto;border-top:none}
.nav-links.is-open{animation:none}
.nav-links li{width:auto;border-bottom:none}
.nav-links li:last-child{margin-top:0;padding-top:0}
.nav-links a{display:inline;font-size:13px;font-weight:500;padding:0;color:rgba(255,255,255,0.6);text-decoration:none;transition:color 0.18s}
.nav-links a:hover,.nav-links a.active{color:var(--white)}
.nav-links .btn-nav{width:auto;text-align:center;padding:8px 18px;box-sizing:border-box;display:inline-block;font-size:13px!important;border-radius:8px}
.nav-dropdown>a::after{display:block}
.nav-dropdown .dropdown-menu{visibility:hidden;opacity:0;pointer-events:none;position:absolute;top:100%;left:50%;transform:translateX(-50%);padding-top:10px;min-width:176px;z-index:300;transition:opacity 0.15s,visibility 0.15s}
.nav-dropdown:hover .dropdown-menu,.nav-dropdown .dropdown-menu:hover{visibility:visible;opacity:1;pointer-events:auto}
.nav-dropdown .dropdown-menu-box{background:rgba(8,12,24,0.98);border:1px solid rgba(255,255,255,0.1);border-radius:12px;padding:8px;margin:0;box-shadow:0 16px 48px rgba(0,0,0,0.5);backdrop-filter:blur(24px)}
.nav-dropdown .dropdown-menu a{font-size:12px;font-weight:500;color:rgba(255,255,255,0.55);padding:9px 14px}
.nav-dropdown .dropdown-menu a:hover{color:var(--white);background:rgba(255,255,255,0.07)}
}

/* SHARED */
.s-inner{max-width:var(--max-w);margin:0 auto;padding:0 var(--gutter)}
.s-label{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:10px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--cyan);background:rgba(0,212,255,0.07);border:1px solid rgba(0,212,255,0.2);padding:5px 14px;border-radius:100px}
.s-dot{width:5px;height:5px;border-radius:50%;background:var(--cyan);flex-shrink:0}.s-label .s-dot{animation:s-dot-pulse 5s ease-in-out infinite}
.btn-primary{display:inline-flex;align-items:center;font-family:var(--sans);font-size:15px;font-weight:700;color:var(--dark);background:linear-gradient(135deg,var(--cyan),var(--cyan2));padding:15px 30px;border-radius:10px;border:none;cursor:pointer;text-decoration:none;box-shadow:0 0 32px rgba(0,212,255,0.28);transition:box-shadow 0.22s,transform 0.22s}
.btn-primary:hover{box-shadow:0 0 52px rgba(0,212,255,0.48);transform:translateY(-2px)}
.btn-secondary{display:inline-flex;align-items:center;font-family:var(--sans);font-size:15px;font-weight:600;color:rgba(255,255,255,0.72);background:transparent;border:1px solid rgba(255,255,255,0.16);padding:15px 30px;border-radius:10px;cursor:pointer;text-decoration:none;transition:border-color 0.22s,color 0.22s}
.btn-secondary:hover{border-color:rgba(0,212,255,0.35);color:var(--white)}

.pricing-hero-footer{text-align:center;position:relative;z-index:2;margin-top:4px}
.phf-line1{font-family:var(--mono);font-size:12px;font-weight:600;color:rgba(255,255,255,0.5);letter-spacing:1px;margin-bottom:8px;text-transform:uppercase}
.phf-line2{font-size:14px;color:rgba(255,255,255,0.4);line-height:1.7;max-width:560px;margin:0 auto}

/* PRICING CARDS */
.s-pricing-full{background:var(--dark2);display:flex;flex-direction:column;align-items:center}
.pricing-billing-toggle{display:flex;align-items:center;justify-content:center;gap:14px;margin-bottom:32px;margin-top:0;flex-wrap:wrap}
.pricing-billing-label{font-family:var(--mono);font-size:11px;font-weight:600;color:rgba(255,255,255,0.45);letter-spacing:0.5px}
.pricing-switch{position:relative;width:48px;height:26px;flex-shrink:0;cursor:pointer;display:block}
.pricing-switch input{position:absolute;opacity:0;width:100%;height:100%;margin:0;cursor:pointer;z-index:2}
.pricing-switch input:focus-visible + .pricing-switch-slider{outline:2px solid var(--cyan);outline-offset:3px}
.pricing-switch-slider{position:absolute;inset:0;background:rgba(255,255,255,0.1);border-radius:100px;border:1px solid rgba(255,255,255,0.12);transition:background 0.2s,border-color 0.2s;pointer-events:none}
.pricing-switch-slider::after{content:'';position:absolute;top:3px;left:4px;width:18px;height:18px;background:var(--white);border-radius:50%;transition:transform 0.2s;box-shadow:0 1px 4px rgba(0,0,0,0.35)}
.pricing-switch input:checked + .pricing-switch-slider{background:rgba(0,212,255,0.12);border-color:rgba(0,212,255,0.35)}
.pricing-switch input:checked + .pricing-switch-slider::after{transform:translateX(22px)}
.s-pricing-full .s-inner{margin:0 auto;width:100%;max-width:var(--max-w);display:flex;flex-direction:column;align-items:center}
.pricing-grid{display:grid;grid-template-columns:1fr;gap:16px;margin:0 auto 24px;width:100%;max-width:var(--max-w)}
.price-card{background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.08);border-radius:16px;padding:32px 24px;display:flex;flex-direction:column;gap:14px;position:relative;transition:border-color 0.22s,transform 0.22s}
.price-card:hover{border-color:rgba(255,255,255,0.15);transform:translateY(-4px)}
.price-btn-sec,.price-btn-pri{box-sizing:border-box;width:100%;min-height:56px;height:56px;display:inline-flex;align-items:center;justify-content:center;text-align:center;padding:0 16px;font-size:14px;line-height:1.2;border-radius:9px;text-decoration:none;transition:background 0.22s,border-color 0.22s,box-shadow 0.22s,color 0.22s}
.price-featured{position:relative;background:rgba(0,212,255,0.06);border-color:rgba(0,212,255,0.25);box-shadow:0 0 40px rgba(0,212,255,0.08)}
.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.price-card-header{min-height:72px;display:flex;flex-direction:column;justify-content:flex-end;gap:8px;box-sizing:border-box;padding-bottom:12px;margin-bottom:6px;border-bottom:1px solid rgba(255,255,255,0.06)}
.price-card-header .price-volume{padding-top:0;border-top:none;margin:0}
.price-tier{font-size:15px;font-weight:700;color:rgba(255,255,255,0.8)}
.price-amount{font-size:46px;font-weight:800;color:rgba(255,255,255,0.92);letter-spacing:-2.5px;line-height:1;min-height:56px;display:flex;align-items:flex-end;flex-wrap:nowrap;font-variant-numeric:tabular-nums}
.price-amount strong{font-weight:800;color:var(--white);font-variant-numeric:tabular-nums}
.price-amount.custom{font-size:32px;font-weight:800;color:var(--white);align-items:flex-end;font-variant-numeric:tabular-nums}
.price-unit{font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.35)}
.price-volume{font-family:var(--mono);font-size:clamp(11px,0.2rem + 1.8vw,12px);color:rgba(255,255,255,0.50);line-height:1.5}
.price-features{list-style:none;flex:1;display:flex;flex-direction:column;gap:9px}
.price-features li{font-size:13px;color:rgba(255,255,255,0.6);padding-left:18px;position:relative;line-height:1.5}
.price-features li::before{content:"\2713";position:absolute;left:0;color:var(--green);font-size:11px;font-weight:700}
.price-btn-pri{background:linear-gradient(135deg,var(--cyan),var(--cyan2));color:var(--dark);font-weight:700;border:none}
.price-btn-pri:hover{box-shadow:0 0 28px rgba(0,212,255,0.35)}
.price-btn-sec{background:transparent;color:rgba(255,255,255,0.65);font-weight:600;border:1px solid rgba(255,255,255,0.12)}
.price-btn-sec:hover{border-color:rgba(0,212,255,0.3);color:var(--white)}

/* Pricing page: same height per row + CTAs aligned to card bottom */
.s-pricing-full .pricing-grid{align-items:stretch}
.s-pricing-full .pricing-grid > .price-card{align-self:stretch;box-sizing:border-box;min-height:0}
.s-pricing-full .pricing-grid .price-features{flex:1 1 auto;min-height:0}
.s-pricing-full .pricing-grid > .price-card > .price-btn-sec,
.s-pricing-full .pricing-grid > .price-card > .price-btn-pri{margin-top:auto;flex-shrink:0}

.price-free-banner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 20px;
  background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(0,212,255,0.02));
  border: 1.5px dashed rgba(0,212,255,0.3);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  transition: border-color 0.22s;
}
.price-free-banner:hover {
  border-color: rgba(0,212,255,0.55);
}
.price-free-banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.price-free-banner-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}
.price-free-banner-mid {
  flex: 1;
  min-width: 200px;
}
.price-free-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
}
.price-free-heading {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1.15;
}
.price-free-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.price-free-hook {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}
.price-free-no-cc {
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}
.price-btn-free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background: var(--cyan);
  color: #080c14;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.price-btn-free:hover { opacity: 0.85; }
@media (min-width: 640px) {
  .price-btn-free {
    width: auto;
  }
}

@media (min-width: 900px) {
  .price-free-banner {
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
  }
  .price-free-banner-right {
    width: auto;
  }
}

/* ALL PLANS */
.all-plans {
  margin-top: 32px;
  padding: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
}
.all-plans-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.all-plans-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 48px;
}
.all-plans-group{display:flex;flex-direction:column;gap:12px}
.all-plans-group-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,212,255,0.65);
  text-align: center;
  margin-bottom: 8px;
}
.all-plans-group-items{display:flex;flex-direction:column;gap:10px}
.all-plans-group-items span{font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.45);text-align:left;display:block;position:relative;padding-left:16px;margin-bottom:8px}
.all-plans-group-items span::before{content:"\00B7";color:var(--cyan);flex-shrink:0;position:absolute;left:0}
.all-plans-grid{display:grid;grid-template-columns:1fr;gap:10px 24px}
.all-plans-grid span{font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.45);padding-left:14px;position:relative;text-align:center;padding-left:0;display:flex;align-items:center;justify-content:center;gap:6px}
.all-plans-grid span::before{content:"\00B7";position:static;color:var(--cyan)}

/* FAQ */
.s-faq{background:var(--dark2);border-top:1px solid rgba(255,255,255,0.06)}
.faq-wrap{margin:0 auto;width:100%;display:flex;flex-direction:column;align-items:flex-start}
.faq-wrap>.s-label{margin-bottom:24px}
.s-faq .faq-wrap .faq-heading{font-size:clamp(32px,4.5vw,58px);font-weight:800;letter-spacing:-2.5px;line-height:1.05;margin-bottom:48px;color:var(--white);width:100%;text-align:left}
.s-faq .faq-wrap .faq-heading span{color:var(--cyan)}
.faq-list{display:flex;flex-direction:column;gap:0;width:100%;align-self:stretch;margin:0 auto}
.faq-item{border-bottom:1px solid rgba(255,255,255,0.07);overflow:hidden}
.faq-q{font-family:'JetBrains Mono',monospace;font-size:16px;font-weight:600;color:var(--white);padding:22px 0;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:16px;letter-spacing:-0.3px;user-select:none;transition:color 0.18s}
.faq-q:hover{color:var(--cyan)}
.faq-q-icon{width:20px;height:20px;flex-shrink:0;color:rgba(255,255,255,0.4);transition:transform 0.3s,color 0.18s}
.faq-item.open .faq-q{color:var(--cyan)}
.faq-item.open .faq-q-icon{transform:rotate(45deg);color:var(--cyan)}
.faq-a{font-size:14px;color:rgba(255,255,255,0.55);line-height:1.85;max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.3s ease;padding:0}
.faq-item.open .faq-a{max-height:560px;padding:0 0 22px 0}
.faq-a strong{color:rgba(255,255,255,0.82)}

/* FINAL CTA */
.s-final{background:var(--dark);padding:72px var(--gutter);text-align:center;position:relative;overflow:hidden}
.final-glow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:800px;height:600px;pointer-events:none;background:radial-gradient(ellipse,rgba(0,212,255,0.06) 0%,transparent 65%)}
.final-heading{font-size:clamp(28px,3.5vw,46px);font-weight:800;letter-spacing:-2px;line-height:1.08;color:var(--white);margin-bottom:16px;position:relative;z-index:2}
.final-line1{font-family:var(--mono);font-size:12px;font-weight:600;color:rgba(255,255,255,0.5);letter-spacing:1px;text-transform:uppercase;margin:12px 0 6px;position:relative;z-index:2}
.final-line2{font-size:14px;color:rgba(255,255,255,0.4);line-height:1.7;max-width:560px;margin:0 auto 36px;position:relative;z-index:2}
.final-sub{font-size:16px;color:rgba(255,255,255,0.55);max-width:500px;margin:0 auto 40px;line-height:1.75;position:relative;z-index:2}
.final-ctas{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;position:relative;z-index:2}

/* FOOTER */
.site-footer{background:#000000;padding:40px var(--gutter)}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:24px}
.footer-logo{font-size:15px;font-weight:700;color:var(--white);margin-bottom:4px}
.footer-tag{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.35);margin-bottom:8px}
.footer-copy{font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.25)}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.18s}
.footer-links a:hover{color:var(--white)}

/* === from demo.html === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --dark:#080c14;--dark2:#0d1221;
  --cyan:#00d4ff;--cyan2:#0099cc;
  --red:#ff2d3d;--green:#2ed573;--orange:#ff9800;--white:#ffffff;
  --sans:'Sora',sans-serif;--mono:'JetBrains Mono',monospace;--serif:'Fraunces',serif;
  --max-w:1200px;--nav-h:68px;--gutter:clamp(20px,5%,80px);
}
html{scroll-behavior:smooth}
body{background:var(--dark);color:var(--white);font-family:var(--sans);overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased;min-height:100vh}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

/* NAV — sync with index bundle (mobile-first) */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; white-space: nowrap; }
.logo-sep  { display: none; }
.logo-tag  {
  display: none;
  font-family: var(--mono); font-size: 9.5px; color: rgba(255,255,255,0.6); font-weight: 500;
  white-space: nowrap; letter-spacing: 0px;
}
@media (min-width: 640px) {
  .logo-tag { display: block; }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 40px;
  overflow-y: auto;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-links.is-open {
  display: flex;
  animation: fadeUp 0.2s ease both;
}
.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links li:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding-top: 8px;
}
.nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-size: 15px !important;
  border-radius: 10px;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  display: none;
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; opacity: 0.5; flex-shrink: 0;
}
.nav-dropdown .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  padding-top: 0;
  min-width: 0;
  box-shadow: none;
}
.nav-dropdown .dropdown-menu-box {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0 8px;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 6px; }
.btn-nav {
  font-family: var(--sans); font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav:hover { box-shadow: 0 0 32px rgba(0,212,255,0.38); transform: translateY(-1px); }
@media (min-width: 900px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    z-index: auto;
    border-top: none;
  }
  .nav-links.is-open { animation: none; }
  .nav-links li { width: auto; border-bottom: none; }
  .nav-links li:last-child { margin-top: 0; padding-top: 0; }
  .nav-links a {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); }
  .nav-links .btn-nav {
    width: auto;
    text-align: center;
    padding: 8px 18px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 13px !important;
    border-radius: 8px;
  }
  .nav-dropdown > a::after { display: block; }
  .nav-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 176px;
    z-index: 300;
    transition: opacity 0.15s, visibility 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown .dropdown-menu-box {
    background: rgba(8,12,24,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    backdrop-filter: blur(24px);
  }
  .nav-dropdown .dropdown-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 9px 14px;
  }
  .nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
}

/* â”€â”€â”€ PAGE LAYOUT â”€â”€â”€ */
.page-wrap{min-height:100vh;padding-top:var(--nav-h);display:grid;grid-template-columns:1fr}
.page-left{background:var(--dark);padding:48px var(--gutter);display:flex;flex-direction:column;justify-content:flex-start;position:relative;overflow:hidden}
.page-left-glow{display:none;position:absolute;top:-100px;right:-100px;width:500px;height:500px;background:radial-gradient(ellipse,rgba(0,212,255,0.04) 0%,transparent 65%);pointer-events:none}
.page-right{background:rgba(13,18,33,0.72);backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);padding:48px var(--gutter);display:flex;flex-direction:column;justify-content:flex-start;border-top:1px solid rgba(255,255,255,0.06);border-left:none}
@media (min-width:640px){
  .page-left-glow{display:block}
}
@media (min-width:900px){
  .page-wrap{grid-template-columns:1fr 1fr}
  .page-left{padding:64px var(--gutter) 64px 80px}
  .page-right{padding:64px 80px 64px var(--gutter);border-left:1px solid rgba(255,255,255,0.06);border-top:none}
}

/* â”€â”€â”€ LEFT SIDE â”€â”€â”€ */
.s-dot{width:5px;height:5px;border-radius:50%;background:var(--cyan);flex-shrink:0}.s-label .s-dot{animation:s-dot-pulse 5s ease-in-out infinite}
.s-badge{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:10px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--cyan);background:rgba(0,212,255,0.07);border:1px solid rgba(0,212,255,0.2);padding:5px 14px;border-radius:100px;margin-bottom:28px}
.left-h1{font-size:clamp(32px, 5vw, 56px);font-weight:800;letter-spacing:-1px;line-height:1.06;margin-bottom:20px}
.left-h1 span{color:var(--cyan)}
.left-sub{font-size:14px;color:rgba(255,255,255,0.5);line-height:1.8;margin-bottom:26px;max-width:440px}
@media (min-width:900px){
  .left-h1{font-size:clamp(32px, 5vw, 56px);letter-spacing:-2px}
}
.left-sub em{font-family:var(--serif);font-style:italic;color:rgba(255,255,255,0.7)}

/* What happens in the demo */
.demo-agenda{display:flex;flex-direction:column;gap:0;margin-bottom:28px;border:1px solid rgba(255,255,255,0.07);border-radius:14px;overflow:hidden}
.agenda-header{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.28);padding:14px 20px;background:rgba(255,255,255,0.02);border-bottom:1px solid rgba(255,255,255,0.07)}
.agenda-item{display:flex;align-items:flex-start;gap:14px;padding:16px 20px;border-bottom:1px solid rgba(255,255,255,0.05)}
.agenda-item:last-child{border-bottom:none}
.agenda-icon{width:28px;height:28px;border-radius:7px;background:rgba(0,212,255,0.1);border:1px solid rgba(0,212,255,0.22);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;box-shadow:0 0 18px rgba(0,212,255,0.28),0 0 0 1px rgba(0,212,255,0.08)}
.agenda-text{font-size:13px;color:rgba(255,255,255,0.55);line-height:1.6}
.agenda-text strong{color:var(--white);font-weight:600}
.demo-bullets-lead{font-size:13px;font-weight:600;color:rgba(255,255,255,0.55);margin-top:32px;margin-bottom:10px;letter-spacing:-0.2px}
.demo-bullets{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:24px}
.demo-bullets li{font-size:14px;color:rgba(255,255,255,0.65);padding-left:16px;position:relative;line-height:1.5}
.demo-bullets li strong{color:var(--white);font-weight:700}
.demo-bullets li::before{content:"\00B7";position:absolute;left:0;color:var(--cyan);font-weight:700;font-size:18px;line-height:1.2}
.demo-hook{font-size:15px;font-weight:700;color:rgba(255,255,255,0.75);line-height:1.6;margin-bottom:20px;letter-spacing:-0.3px}

/* Quote â€” researcher's note */
.left-quote-wrap{margin-bottom:28px}
.left-quote-kicker{display:block;font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.28);margin-bottom:8px;padding-left:16px}
.left-quote{font-family:var(--serif);font-style:italic;font-size:17px;font-weight:400;color:rgba(255,255,255,0.52);line-height:1.7;padding-left:16px;border-left:2px solid rgba(0,212,255,0.3);margin:0}

/* Express lane (demo â€” CTO / Head of Risk) */
.demo-express-lane{margin-top:-4px;margin-bottom:20px;padding:14px 16px;background:rgba(0,212,255,0.06);border:1px solid rgba(0,212,255,0.22);border-radius:10px}
.demo-express-lane-text{font-size:13px;color:rgba(255,255,255,0.72);line-height:1.55;margin:0}
.demo-express-lane-text strong{color:rgba(255,255,255,0.92);font-weight:700}
.demo-express-lane-link{color:var(--cyan);font-weight:600;text-decoration:none;border-bottom:1px solid rgba(0,212,255,0.35);transition:opacity 0.18s,color 0.18s}
.demo-express-lane-link:hover{color:var(--white);border-bottom-color:rgba(255,255,255,0.35)}
.form-hint{font-size:11px;color:rgba(255,255,255,0.45);margin-top:6px;line-height:1.45;font-family:var(--mono);letter-spacing:0.2px;padding-left:12px;padding-right:12px;box-sizing:border-box}

/* â”€â”€â”€ RIGHT SIDE â€” FORM â”€â”€â”€ */
.form-title{font-size:18px;font-weight:800;letter-spacing:-0.5px;color:var(--white);margin-bottom:6px}
.form-sub{font-size:12px;color:rgba(255,255,255,0.4);margin-bottom:32px;line-height:1.6}

.form-group{margin-bottom:26px}
.form-row{display:grid;grid-template-columns:1fr;gap:16px;margin-bottom:20px}
@media (min-width:640px){.form-row{grid-template-columns:1fr 1fr}}
.form-label{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,0.4);display:block;margin-bottom:8px}
.form-input{width:100%;min-height:44px;box-sizing:border-box;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);border-radius:10px;padding:14px 18px;font-family:var(--sans);font-size:14px;color:var(--white);outline:none;transition:border-color 0.22s,background 0.22s}
.form-input::placeholder{color:rgba(255,255,255,0.2)}
.form-input:focus{border-color:rgba(0,212,255,0.4);background:rgba(0,212,255,0.03)}
.form-input.error{border-color:rgba(255,45,61,0.5)}
.form-textarea{resize:vertical;min-height:max(100px,44px);font-family:var(--sans);line-height:1.6;box-sizing:border-box}
.form-select{width:100%;min-height:44px;box-sizing:border-box;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);border-radius:10px;padding:14px 18px;font-family:var(--sans);font-size:14px;color:var(--white);outline:none;transition:border-color 0.22s;cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center;padding-right:40px}
.form-select:focus{border-color:rgba(0,212,255,0.4)}
.form-select option{background:var(--dark2);color:var(--white)}
.form-error{font-size:11px;color:var(--red);margin-top:5px;display:none;font-family:var(--mono)}

.btn-submit{width:100%;min-height:44px;box-sizing:border-box;background:linear-gradient(135deg,var(--cyan),var(--cyan2));color:var(--dark);border:none;border-radius:10px;padding:16px;font-family:var(--sans);font-size:15px;font-weight:700;cursor:pointer;box-shadow:0 0 32px rgba(0,212,255,0.25);transition:all 0.22s;margin-top:8px}
.btn-submit:hover{box-shadow:0 0 52px rgba(0,212,255,0.45);transform:translateY(-2px)}
.btn-submit:disabled{opacity:0.6;cursor:not-allowed;transform:none}

.form-footer{display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start;margin-top:16px;flex-wrap:wrap;gap:12px}
@media (min-width:640px){.form-footer{flex-direction:row;align-items:center;justify-content:space-between;gap:10px}}
.form-privacy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.2);line-height:1.6;padding-left:12px;padding-right:12px;box-sizing:border-box}
.form-privacy a{color:rgba(255,255,255,0.35);text-decoration:none}
.form-alt{font-size:12px;color:rgba(255,255,255,0.35)}
.form-alt a{color:var(--cyan);text-decoration:none;font-weight:600}
.form-alt a:hover{text-decoration:underline}

/* â”€â”€â”€ CONFIRMATION â”€â”€â”€ */
.confirmation{display:none;text-align:center;animation:fadeUp 0.4s ease both}
.conf-icon{width:64px;height:64px;border-radius:50%;background:rgba(0,212,255,0.08);border:1px solid rgba(0,212,255,0.2);display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
.conf-icon svg{width:28px;height:28px;stroke:var(--cyan);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.conf-title{font-size:22px;font-weight:800;letter-spacing:-0.5px;margin-bottom:10px}
.conf-sub{font-size:12px;color:rgba(255,255,255,0.5);line-height:1.75;margin-bottom:28px;width:100%;min-width:0;margin-left:auto;margin-right:auto}
.conf-what{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.07);border-radius:12px;padding:20px;margin-bottom:28px;text-align:left}
.conf-what-title{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.28);margin-bottom:12px}
.conf-what-item{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:rgba(255,255,255,0.55);margin-bottom:8px;line-height:1.5}
.conf-what-item:last-child{margin-bottom:0}
.conf-what-item::before{content:"\2713";color:var(--green);font-weight:700;flex-shrink:0}
.conf-links{display:flex;flex-direction:column;gap:10px}
.conf-btn-secondary{display:block;text-align:center;color:rgba(255,255,255,0.45);font-size:13px;text-decoration:none;padding:10px;transition:color 0.18s}
.conf-btn-secondary:hover{color:var(--white)}
.conf-btn-trial{display:block;text-align:center;background:transparent;color:rgba(255,255,255,0.6);font-weight:600;font-size:13px;padding:13px;border-radius:10px;text-decoration:none;border:1px solid rgba(255,255,255,0.12);transition:all 0.22s}
.conf-btn-trial:hover{border-color:rgba(0,212,255,0.3);color:var(--white)}

/* Footer */
.site-footer{background:#000000;padding:40px var(--gutter)}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px}
.footer-logo{font-size:14px;font-weight:700;color:var(--white);margin-bottom:4px}
.footer-tag{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.35)}
.footer-copy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.25);margin-top:4px}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.18s}
.footer-links a:hover{color:var(--white)}

/* === from trial.html === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --dark:#080c14;--dark2:#0d1221;
  --cyan:#00d4ff;--cyan2:#0099cc;
  --red:#ff2d3d;--green:#2ed573;--orange:#ff9800;--white:#ffffff;
  --sans:'Sora',sans-serif;--mono:'JetBrains Mono',monospace;--serif:'Fraunces',serif;
  --max-w:1200px;--nav-h:68px;--gutter:clamp(20px,5%,80px);
}
html{scroll-behavior:smooth}
body{background:var(--dark);color:var(--white);font-family:var(--sans);overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased;min-height:100vh}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes shimmer{0%{background-position:-200% center}100%{background-position:200% center}}

/* NAV — sync with index bundle (mobile-first) */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; white-space: nowrap; }
.logo-sep  { display: none; }
.logo-tag  {
  display: none;
  font-family: var(--mono); font-size: 9.5px; color: rgba(255,255,255,0.6); font-weight: 500;
  white-space: nowrap; letter-spacing: 0px;
}
@media (min-width: 640px) {
  .logo-tag { display: block; }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 40px;
  overflow-y: auto;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-links.is-open {
  display: flex;
  animation: fadeUp 0.2s ease both;
}
.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links li:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding-top: 8px;
}
.nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-size: 15px !important;
  border-radius: 10px;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  display: none;
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; opacity: 0.5; flex-shrink: 0;
}
.nav-dropdown .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  padding-top: 0;
  min-width: 0;
  box-shadow: none;
}
.nav-dropdown .dropdown-menu-box {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0 8px;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 6px; }
.btn-nav {
  font-family: var(--sans); font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav:hover { box-shadow: 0 0 32px rgba(0,212,255,0.38); transform: translateY(-1px); }
@media (min-width: 900px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    z-index: auto;
    border-top: none;
  }
  .nav-links.is-open { animation: none; }
  .nav-links li { width: auto; border-bottom: none; }
  .nav-links li:last-child { margin-top: 0; padding-top: 0; }
  .nav-links a {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); }
  .nav-links .btn-nav {
    width: auto;
    text-align: center;
    padding: 8px 18px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 13px !important;
    border-radius: 8px;
  }
  .nav-dropdown > a::after { display: block; }
  .nav-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 176px;
    z-index: 300;
    transition: opacity 0.15s, visibility 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown .dropdown-menu-box {
    background: rgba(8,12,24,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    backdrop-filter: blur(24px);
  }
  .nav-dropdown .dropdown-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 9px 14px;
  }
  .nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
}

/* â”€â”€â”€ PAGE LAYOUT â”€â”€â”€ */
.page-wrap{min-height:100vh;padding-top:var(--nav-h);display:grid;grid-template-columns:1fr}
.page-left{background:var(--dark);padding:48px var(--gutter);display:flex;flex-direction:column;justify-content:flex-start;position:relative;overflow:hidden}
.page-left-glow{display:none;position:absolute;top:-100px;left:-100px;width:500px;height:500px;background:radial-gradient(ellipse,rgba(0,212,255,0.05) 0%,transparent 65%);pointer-events:none}
.page-right{background:rgba(13,18,33,0.72);backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);padding:48px var(--gutter);display:flex;flex-direction:column;justify-content:flex-start;border-top:1px solid rgba(255,255,255,0.06);border-left:none}
@media (min-width:640px){
  .page-left-glow{display:block}
}
@media (min-width:900px){
  .page-wrap{grid-template-columns:1fr 1fr}
  .page-left{padding:64px var(--gutter) 64px 80px}
  .page-right{padding:64px 80px 64px var(--gutter);border-left:1px solid rgba(255,255,255,0.06);border-top:none}
}

/* â”€â”€â”€ LEFT SIDE â”€â”€â”€ */
.s-dot{width:5px;height:5px;border-radius:50%;background:var(--cyan);flex-shrink:0}.s-label .s-dot{animation:s-dot-pulse 5s ease-in-out infinite}
.s-badge{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:10px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--cyan);background:rgba(0,212,255,0.07);border:1px solid rgba(0,212,255,0.2);padding:5px 14px;border-radius:100px;margin-bottom:28px}
.left-h1{font-size:clamp(32px, 5vw, 56px);font-weight:800;letter-spacing:-1px;line-height:1.06;margin-bottom:20px}
.left-h1 span{color:var(--cyan)}
.left-sub{font-size:14px;color:rgba(255,255,255,0.5);line-height:1.8;margin-bottom:26px;max-width:440px}
@media (min-width:900px){
  .left-h1{font-size:clamp(32px, 5vw, 56px);letter-spacing:-2px}
}
.left-sub em{font-family:var(--serif);font-style:italic;color:rgba(255,255,255,0.7)}

/* What you get list */
.what-you-get{display:flex;flex-direction:column;gap:16px;margin-bottom:40px}
.wyg-item{display:flex;align-items:flex-start;gap:14px}
.wyg-icon{width:36px;height:36px;border-radius:9px;background:rgba(0,212,255,0.08);border:1px solid rgba(0,212,255,0.15);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.wyg-icon svg{width:15px;height:15px;stroke:var(--cyan);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.wyg-title{font-size:14px;font-weight:700;color:var(--white);margin-bottom:2px}
.wyg-desc{font-size:14px;color:rgba(255,255,255,0.42);line-height:1.5}

/* Reassurance strip */
.reassurance{display:flex;gap:20px;flex-wrap:wrap;padding-top:28px;border-top:1px solid rgba(255,255,255,0.06)}
.re-item{display:flex;align-items:center;gap:7px;font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.3);letter-spacing:0.3px}
.re-item svg{width:12px;height:12px;stroke:var(--green);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}

/* â”€â”€â”€ RIGHT SIDE â€” FORM â”€â”€â”€ */
.form-title{font-size:18px;font-weight:800;letter-spacing:-0.5px;color:var(--white);margin-bottom:6px}
.form-sub{font-size:12px;color:rgba(255,255,255,0.4);margin-bottom:32px;line-height:1.6}

.form-group{margin-bottom:26px}
.form-row{display:grid;grid-template-columns:1fr;gap:16px;margin-bottom:20px}
@media (min-width:640px){.form-row{grid-template-columns:1fr 1fr}}
.form-label{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,0.4);display:block;margin-bottom:8px}
.form-input{width:100%;min-height:44px;box-sizing:border-box;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);border-radius:10px;padding:14px 18px;font-family:var(--sans);font-size:14px;color:var(--white);outline:none;transition:border-color 0.22s,background 0.22s}
.form-input::placeholder{color:rgba(255,255,255,0.2)}
.form-input:focus{border-color:rgba(0,212,255,0.4);background:rgba(0,212,255,0.03)}
.form-input.error{border-color:rgba(255,45,61,0.5)}
.form-select{width:100%;min-height:44px;box-sizing:border-box;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);border-radius:10px;padding:14px 18px;font-family:var(--sans);font-size:14px;color:var(--white);outline:none;transition:border-color 0.22s;cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center;padding-right:40px}
.form-select:focus{border-color:rgba(0,212,255,0.4)}
.form-select option{background:var(--dark2);color:var(--white)}
.form-error{font-size:11px;color:var(--red);margin-top:5px;display:none;font-family:var(--mono)}
.form-email-hint{font-size:11px;color:rgba(255,255,255,0.42);margin-top:8px;line-height:1.45;font-family:var(--mono);min-height:0}
.form-email-hint:not(:empty){min-height:1.45em}

.btn-submit{position:relative;overflow:hidden;width:100%;min-height:44px;box-sizing:border-box;background:linear-gradient(135deg,var(--cyan),var(--cyan2));color:var(--dark);border:none;border-radius:10px;padding:16px;font-family:var(--sans);font-size:15px;font-weight:700;cursor:pointer;box-shadow:0 0 32px rgba(0,212,255,0.25);transition:all 0.22s;margin-top:8px;letter-spacing:-0.2px}
.btn-submit::before{content:'';position:absolute;inset:0;background:linear-gradient(105deg,transparent 35%,rgba(255,255,255,0.22) 50%,transparent 65%);background-size:220% 100%;animation:shimmer 2.8s ease-in-out infinite;pointer-events:none;opacity:0.85}
.btn-submit:hover{box-shadow:0 0 52px rgba(0,212,255,0.45);transform:translateY(-2px)}
.btn-submit:disabled{opacity:0.6;cursor:not-allowed;transform:none}
.btn-submit:disabled::before{animation:none}

.provision-terminal{text-align:left;border-radius:12px;border:1px solid rgba(0,212,255,0.15);background:rgba(0,0,0,0.45);padding:20px 22px;min-height:200px}
.provision-terminal-label{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.35);margin-bottom:14px}
.provision-terminal-body{font-family:var(--mono);font-size:12px;font-weight:500;line-height:1.85;color:rgba(0,212,255,0.92);margin:0;white-space:pre-wrap;word-break:break-word}

.form-privacy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.2);text-align:center;margin-top:14px;line-height:1.6;letter-spacing:0.2px;padding-left:12px;padding-right:12px;box-sizing:border-box}
.form-privacy a{color:rgba(255,255,255,0.35);text-decoration:none}

/* â”€â”€â”€ CONFIRMATION STATE â”€â”€â”€ */
.confirmation{display:none;text-align:center;animation:fadeUp 0.4s ease both}
.conf-icon{width:64px;height:64px;border-radius:50%;background:rgba(46,213,115,0.1);border:1px solid rgba(46,213,115,0.25);display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
.conf-icon svg{width:28px;height:28px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.conf-title{font-size:22px;font-weight:800;letter-spacing:-0.5px;margin-bottom:10px}
.conf-sub{font-size:12px;color:rgba(255,255,255,0.5);line-height:1.75;margin-bottom:32px;width:100%;min-width:0;margin-left:auto;margin-right:auto}
.conf-steps{display:flex;flex-direction:column;gap:14px;text-align:left;margin-bottom:32px}
.conf-step{display:flex;align-items:flex-start;gap:14px}
.conf-step-num{width:28px;height:28px;border-radius:50%;background:rgba(0,212,255,0.08);border:1px solid rgba(0,212,255,0.2);display:flex;align-items:center;justify-content:center;font-family:var(--mono);font-size:11px;font-weight:700;color:var(--cyan);flex-shrink:0}
.conf-step-text{font-size:13px;color:rgba(255,255,255,0.6);line-height:1.6;padding-top:4px}
.conf-step-text strong{color:var(--white)}
.conf-links{display:flex;flex-direction:column;gap:10px}
.conf-btn-primary{display:block;text-align:center;background:linear-gradient(135deg,var(--cyan),var(--cyan2));color:var(--dark);font-weight:700;font-size:14px;padding:14px;border-radius:10px;text-decoration:none;box-shadow:0 0 28px rgba(0,212,255,0.25);transition:all 0.22s}
.conf-btn-primary:hover{box-shadow:0 0 48px rgba(0,212,255,0.45);transform:translateY(-2px)}
.conf-btn-primary--lead{font-size:15px;padding:16px 18px;box-shadow:0 0 36px rgba(0,212,255,0.35)}
.conf-btn-primary--lead:hover{box-shadow:0 0 56px rgba(0,212,255,0.5)}
.conf-btn-secondary{display:block;text-align:center;color:rgba(255,255,255,0.5);font-size:13px;text-decoration:none;padding:10px;transition:color 0.18s}
.conf-btn-secondary:hover{color:var(--white)}
.conf-btn-proof-sim{font-family:var(--mono);font-size:12px;padding:12px;border:1px solid rgba(255,255,255,0.1);border-radius:10px;color:rgba(255,255,255,0.55)}
.conf-btn-proof-sim:hover{color:rgba(255,255,255,0.85);border-color:rgba(0,212,255,0.25)}

/* Footer */
.site-footer{background:#000000;padding:40px var(--gutter)}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px}
.footer-logo{font-size:14px;font-weight:700;color:var(--white);margin-bottom:4px}
.footer-tag{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.35)}
.footer-copy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.25);margin-top:4px}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.18s}
.footer-links a:hover{color:var(--white)}

/* === from proof.html === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --dark:#080c14;--dark2:#0d1221;--dark3:#111827;
  --cyan:#00d4ff;--cyan2:#0099cc;
  --red:#ff2d3d;--green:#2ed573;--orange:#ff9800;--white:#ffffff;
  --sans:'Sora',sans-serif;--mono:'JetBrains Mono',monospace;--serif:'Fraunces',serif;
  --max-w:1200px;--nav-h:68px;--gutter:clamp(20px,5%,80px);
}
html{scroll-behavior:smooth}
body{background:var(--dark);color:var(--white);font-family:var(--sans);overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.4}}
@keyframes scan{0%{transform:translateY(-100%)}100%{transform:translateY(400%)}}
@keyframes typeIn{from{width:0}to{width:100%}}
@keyframes spinIn{from{opacity:0;transform:rotate(-10deg) scale(0.95)}to{opacity:1;transform:rotate(0) scale(1)}}

/* NAV — sync with index bundle (mobile-first) */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; white-space: nowrap; }
.logo-sep  { display: none; }
.logo-tag  {
  display: none;
  font-family: var(--mono); font-size: 9.5px; color: rgba(255,255,255,0.6); font-weight: 500;
  white-space: nowrap; letter-spacing: 0px;
}
@media (min-width: 640px) {
  .logo-tag { display: block; }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 40px;
  overflow-y: auto;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-links.is-open {
  display: flex;
  animation: fadeUp 0.2s ease both;
}
.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links li:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding-top: 8px;
}
.nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-size: 15px !important;
  border-radius: 10px;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  display: none;
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; opacity: 0.5; flex-shrink: 0;
}
.nav-dropdown .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  padding-top: 0;
  min-width: 0;
  box-shadow: none;
}
.nav-dropdown .dropdown-menu-box {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0 8px;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 6px; }
.btn-nav {
  font-family: var(--sans); font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav:hover { box-shadow: 0 0 32px rgba(0,212,255,0.38); transform: translateY(-1px); }
@media (min-width: 900px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    z-index: auto;
    border-top: none;
  }
  .nav-links.is-open { animation: none; }
  .nav-links li { width: auto; border-bottom: none; }
  .nav-links li:last-child { margin-top: 0; padding-top: 0; }
  .nav-links a {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); }
  .nav-links .btn-nav {
    width: auto;
    text-align: center;
    padding: 8px 18px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 13px !important;
    border-radius: 8px;
  }
  .nav-dropdown > a::after { display: block; }
  .nav-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 176px;
    z-index: 300;
    transition: opacity 0.15s, visibility 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown .dropdown-menu-box {
    background: rgba(8,12,24,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    backdrop-filter: blur(24px);
  }
  .nav-dropdown .dropdown-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 9px 14px;
  }
  .nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
}
.s-hero{text-align:center;position:relative;overflow:hidden}
.hero-glow{display:none;position:absolute;top:0;left:50%;transform:translateX(-50%);width:1000px;height:500px;pointer-events:none;background:radial-gradient(ellipse,rgba(0,212,255,0.07) 0%,transparent 65%)}
@media (min-width:640px){
  .hero-glow{display:block}
}
.s-badge{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:10px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--cyan);background:rgba(0,212,255,0.07);border:1px solid rgba(0,212,255,0.2);padding:5px 14px;border-radius:100px;margin-bottom:24px}
.s-dot{width:5px;height:5px;border-radius:50%;background:var(--cyan);flex-shrink:0}.s-label .s-dot{animation:s-dot-pulse 5s ease-in-out infinite}
.hero-h1{font-size:clamp(26px,5vw,52px);font-weight:800;letter-spacing:-2.5px;line-height:1.05;margin-bottom:16px}
@media (min-width:900px){
  .hero-h1{font-size:clamp(28px,4vw,52px)}
}
.hero-h1 span{color:var(--cyan)}
.hero-sub{font-size:clamp(15px, 1.8vw, 16px);color:rgba(255,255,255,0.5);max-width:580px;margin:0 auto 48px;line-height:1.75}
@media (min-width:640px){
  .hero-sub{font-size:clamp(15px, 1.8vw, 16px)}
}
.hero-sub em{font-family:var(--serif);font-style:italic;color:rgba(255,255,255,0.7)}

/* â”€â”€â”€ SCENARIO PICKER â”€â”€â”€ */
.s-simulator{position:relative;z-index:2}
.sim-inner{width:100%;margin:0 auto;box-sizing:border-box}
.scenario-label{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,0.55);margin-bottom:8px;text-align:center}
.inline-disclaimer{font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.45);text-align:center;margin-bottom:20px;letter-spacing:0.3px}
.scenario-grid{display:grid;grid-template-columns: 1fr;gap:12px;margin-bottom:40px}
.scenario-card{display:flex;flex-direction:column;height:100%;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.08);border-radius:14px;padding:20px 16px;cursor:pointer;transition:all 0.2s;text-align:left;position:relative;overflow:hidden}
.sc-head{display:flex;align-items:center;gap:10px}
.scenario-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,212,255,0.06),transparent);opacity:0;transition:opacity 0.2s}
.scenario-card:hover{border-color:rgba(0,212,255,0.25);transform:translateY(-2px)}
.scenario-card:hover::before{opacity:1}
.scenario-card.active{border-color:var(--cyan);background:rgba(0,212,255,0.06)}
.scenario-card.active::before{opacity:1}
.sc-icon{flex-shrink:0;width:36px;height:36px;border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:18px;background:rgba(0,212,255,0.1)}
.sc-name{flex:1;min-width:0;font-size:13px;font-weight:700;color:var(--white);letter-spacing:-0.3px;white-space:nowrap}
.sc-desc{flex:1;min-height:0;margin-top:12px;margin-bottom:12px;font-size:11px;color:rgba(255,255,255,0.4);line-height:1.5;overflow-y:auto}
.sc-badge{display:inline-flex;flex-shrink:0;margin-top:auto;align-self:flex-start;font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:2px 8px;border-radius:100px}
.sc-badge-ato{color:var(--red);background:rgba(255,45,61,0.1);border:1px solid rgba(255,45,61,0.2)}
.sc-badge-bonus{color:var(--orange);background:rgba(255,152,0,0.1);border:1px solid rgba(255,152,0,0.2)}
.sc-badge-synth{color:#a78bfa;background:rgba(139,92,246,0.1);border:1px solid rgba(139,92,246,0.2)}
.sc-badge-payment{color:var(--green);background:rgba(46,213,115,0.1);border:1px solid rgba(46,213,115,0.2)}

/* â”€â”€â”€ RUN BUTTON â”€â”€â”€ */
.run-wrap{text-align:center;margin-bottom:48px}
.btn-run{display:inline-flex;align-items:center;gap:10px;min-height:44px;font-family:var(--sans);font-size:15px;font-weight:700;color:var(--dark);background:linear-gradient(135deg,var(--cyan),var(--cyan2));padding:16px 36px;border-radius:12px;border:none;cursor:pointer;box-shadow:0 0 40px rgba(0,212,255,0.3);transition:all 0.22s;letter-spacing:-0.3px}
.btn-run:hover{box-shadow:0 0 60px rgba(0,212,255,0.5);transform:translateY(-2px)}
.btn-run:disabled{opacity:0.6;cursor:not-allowed;transform:none}
.btn-run svg{width:16px;height:16px}
.proof-page .btn-run {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  justify-content: center;
  padding: 16px 24px;
}
@media (min-width: 640px) {
  .proof-page .btn-run {
    width: auto;
    min-height: 44px;
    padding: 16px 36px;
  }
}

/* â”€â”€â”€ PROOF OUTPUT â”€â”€â”€ */
.proof-wrap{display:none;animation:fadeUp 0.4s ease both}
.proof-wrap.visible{display:block}
.proof-layout{display:grid;grid-template-columns: 1fr;gap:20px;align-items:start}

/* Processing state */
.processing{background:var(--dark2);border:1px solid rgba(0,212,255,0.15);border-radius:16px;padding:40px;text-align:center;display:none}
.processing.visible{display:block}
.proc-scanner{width:48px;height:48px;border-radius:50%;border:2px solid rgba(0,212,255,0.2);border-top-color:var(--cyan);animation:spin 0.8s linear infinite;margin:0 auto 16px}
@keyframes spin{to{transform:rotate(360deg)}}
.proc-text{font-family:var(--mono);font-size:12px;color:rgba(255,255,255,0.4);letter-spacing:1px}
.proc-steps{display:flex;flex-direction:column;gap:6px;margin-top:16px;text-align:left;width:min(280px,100%);margin-left:auto;margin-right:auto;box-sizing:border-box}
.proc-step{font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.25);display:flex;align-items:center;gap:8px;transition:color 0.2s, text-shadow 0.2s}
.proc-step.done{color:var(--cyan)}
.proc-step.proc-step-current{color:rgba(255,255,255,0.85)}
.proc-step#step2.proc-step-current{color:var(--cyan)}
@keyframes proc-step-pulse{
  0%,100%{opacity:1;filter:drop-shadow(0 0 0 transparent)}
  50%{opacity:1;filter:drop-shadow(0 0 10px rgba(0,212,255,0.65))}
}
.proc-step#step2.proc-step-current .proc-step-dot{
  animation:proc-step-pulse 1.1s ease-in-out infinite;
  background:var(--cyan);
  box-shadow:0 0 0 2px rgba(0,212,255,0.25);
}
.proc-step-dot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,0.15);flex-shrink:0}
.proc-step.done .proc-step-dot{background:var(--cyan)}
.proc-step.proc-step-current:not(.done) .proc-step-dot{background:rgba(0,212,255,0.55)}
@keyframes proc-step-green-flicker{
  0%,100%{color:var(--cyan);text-shadow:none}
  35%{color:var(--green);text-shadow:0 0 12px rgba(46,213,115,0.55)}
  70%{color:var(--cyan);text-shadow:0 0 8px rgba(0,212,255,0.35)}
}
.proc-step.proc-step-flash{animation:proc-step-green-flicker 0.38s ease}
.proc-step.proc-step-flash .proc-step-dot{animation:none;background:var(--green);box-shadow:0 0 10px rgba(46,213,115,0.45)}

/* Decision card */
.decision-card{
  background:rgba(13,18,33,0.72);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 24px 48px rgba(0,0,0,0.35),inset 0 1px 0 rgba(255,255,255,0.06)
}
.decision-header{padding:20px 24px;border-bottom:1px solid rgba(255,255,255,0.06);display:flex;align-items:center;justify-content:space-between}
.decision-title{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.35)}
.decision-ms{font-family:var(--mono);font-size:11px;color:var(--cyan)}
.decision-verdict-grid{display:grid;grid-template-columns:1fr;gap:16px 20px;align-items:start;padding:24px;border-bottom:1px solid rgba(255,255,255,0.06)}
.decision-verdict-col{text-align:center}
.decision-verdict{padding:0;text-align:center;border-bottom:none}
.math-reasoning-box{
  font-family:var(--mono);
  font-size:11px;
  line-height:1.55;
  color:rgba(165,214,255,0.92);
  background:rgba(121,192,255,0.06);
  border:1px solid rgba(121,192,255,0.22);
  border-radius:12px;
  padding:14px 16px;
  align-self:stretch;
  min-height:100%
}
.math-reasoning-box::before{
  content:"Mathematical reasoning";
  display:block;
  font-size:9px;
  font-weight:700;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:rgba(121,192,255,0.55);
  margin-bottom:8px
}
.vls-aha{
  font-family:var(--serif);
  font-size:12px;
  font-style:italic;
  color:rgba(255,255,255,0.52);
  line-height:1.55;
  margin-top:12px;
  max-width:32em;
  margin-left:auto;
  margin-right:auto
}
.verdict-word{font-size:clamp(28px,6vw,42px);font-weight:800;letter-spacing:-2px;line-height:1}
.verdict-block{color:var(--red)}
.verdict-approve{color:var(--green)}
.verdict-review{color:var(--orange)}
.verdict-certainty{font-family:var(--mono);font-size:13px;color:rgba(255,255,255,0.45);margin-top:8px}
.verdict-certainty span{color:var(--cyan);font-weight:700}
.decision-rows{padding:0 24px}
.d-row{display:flex;align-items:flex-start;justify-content:space-between;padding:14px 0;border-bottom:1px solid rgba(255,255,255,0.05);gap:16px}
.d-row:last-child{border-bottom:none}
.d-label{font-size:12px;color:rgba(255,255,255,0.4);flex-shrink:0}
.d-val{font-family:var(--mono);font-size:12px;color:var(--white);text-align:right;line-height:1.4}
.d-val-red{color:var(--red)}
.d-val-green{color:var(--green)}
.d-val-cyan{color:var(--cyan)}
.d-val-orange{color:var(--orange)}

/* Proof chain */
.proof-chain{
  background:rgba(13,18,33,0.72);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  overflow:visible;
  box-shadow:0 24px 48px rgba(0,0,0,0.35),inset 0 1px 0 rgba(255,255,255,0.06);
  padding-bottom:24px;
}
.sequence-rhythm{padding:0 0 16px;margin-bottom:16px;border-bottom:1px solid rgba(255,255,255,0.06)}
.rhythm-label{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,0.32);margin-bottom:10px}
.rhythm-nodes{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:6px;margin-bottom:12px}
.rhythm-node{width:10px;height:10px;border-radius:50%;flex-shrink:0;border:1px solid transparent}
.rhythm-node--green{background:rgba(46,213,115,0.35);border-color:rgba(46,213,115,0.5);box-shadow:0 0 8px rgba(46,213,115,0.2)}
.rhythm-node--red{background:rgba(255,45,61,0.45);border-color:rgba(255,45,61,0.65);box-shadow:0 0 12px rgba(255,45,61,0.35)}
.rhythm-formula{font-family:var(--mono);font-size:11px;line-height:1.75;color:rgba(255,255,255,0.55);padding-top:4px;word-break:break-word}
.chain-header{padding:20px 24px;border-bottom:1px solid rgba(255,255,255,0.06);display:flex;align-items:center;gap:10px}
.chain-dot{width:8px;height:8px;border-radius:50%;background:var(--green);animation:pulse 2s infinite}
.chain-title{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.35)}
.chain-body{padding:20px 24px 32px;font-family:var(--mono);font-size:12px;line-height:1.9;color:rgba(255,255,255,0.55);overflow-x:auto;display:flow-root}
.c-key{color:#ff7b72}
.c-str{color:#a5d6ff}
.c-num{color:#79c0ff}
.c-cyan{color:var(--cyan)}
.c-green{color:var(--green)}
.c-red{color:var(--red)}
.c-orange{color:#ffa657}
.c-comment{color:rgba(255,255,255,0.22)}

/* Regulator strip */
.regulator-strip{margin-top:16px;background:rgba(46,213,115,0.05);border:1px solid rgba(46,213,115,0.15);border-radius:12px;padding:16px 20px;display:flex;flex-direction:column;align-items:flex-start;gap:16px}
.proof-chain > .regulator-strip{margin-top:20px;margin-left:24px;margin-right:24px;margin-bottom:24px}
.regulator-strip--academic{
  background:rgba(121,192,255,0.06);
  border:1px solid rgba(121,192,255,0.22)
}
.regulator-strip--academic .reg-icon{background:rgba(0,212,255,0.1)}
.regulator-strip--academic .reg-icon svg{stroke:var(--cyan)}
.regulator-strip--academic .reg-text strong{color:#79c0ff}
.reg-icon{width:36px;height:36px;border-radius:9px;background:rgba(46,213,115,0.12);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.reg-icon svg{width:16px;height:16px;stroke:var(--green);fill:none}
.reg-text{flex:1;min-width:0;font-size:13px;color:rgba(255,255,255,0.7);line-height:1.5}
.reg-text strong{color:var(--green);font-weight:700}

/* Disclaimer bar */
.disclaimer-bar{display:flex;align-items:flex-start;gap:10px;background:rgba(255,152,0,0.06);border:1px solid rgba(255,152,0,0.2);border-radius:10px;padding:14px 18px;margin-top:24px;font-size:13px;color:rgba(255,255,255,0.55);line-height:1.6}
.disclaimer-bar svg{stroke:var(--orange);flex-shrink:0;margin-top:2px}
.disclaimer-bar strong{color:rgba(255,255,255,0.8);font-weight:600}
.disclaimer-bar a{color:var(--cyan);text-decoration:none;font-weight:600}
.disclaimer-bar a:hover{text-decoration:underline}

/* CTA strip */
.cta-strip{width:100%;margin:48px auto 0;background:var(--dark2);border:1px solid rgba(255,255,255,0.07);border-radius:16px;padding:32px 40px;display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;box-sizing:border-box}
.cta-strip-left h3{font-size:20px;font-weight:800;letter-spacing:-0.5px;margin-bottom:6px}
.cta-strip-left p{font-size:14px;color:rgba(255,255,255,0.5);line-height:1.6}
.cta-or{font-size:13px!important;color:rgba(255,255,255,0.35)!important;margin-top:10px;font-style:italic}
.cta-strip-right{display:flex;align-items:flex-start;gap:16px;flex-wrap:wrap;flex-shrink:0}
.cta-demo-block{display:flex;flex-direction:column;gap:8px}
.cta-demo-note{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.3);line-height:1.5;max-width:220px;letter-spacing:0.2px}
.cta-book-link{font-family:var(--mono);font-size:11px;font-weight:700;color:var(--cyan);text-decoration:none;letter-spacing:0.3px;transition:opacity 0.18s}
.cta-book-link:hover{opacity:0.7}
.btn-primary{display:inline-flex;align-items:center;font-size:14px;font-weight:700;color:var(--dark);background:linear-gradient(135deg,var(--cyan),var(--cyan2));padding:13px 26px;border-radius:10px;text-decoration:none;box-shadow:0 0 28px rgba(0,212,255,0.25);transition:all 0.22s}
.btn-primary:hover{box-shadow:0 0 48px rgba(0,212,255,0.45);transform:translateY(-2px)}
.btn-secondary{display:inline-flex;align-items:center;font-size:14px;font-weight:600;color:rgba(255,255,255,0.72);background:transparent;border:1px solid rgba(255,255,255,0.16);padding:13px 26px;border-radius:10px;text-decoration:none;transition:all 0.22s}
.btn-secondary:hover{border-color:rgba(0,212,255,0.35);color:var(--white)}

/* Proof page â€” post-proof CTA pair (equal pills, cyan aura primary, hairline ghost secondary) */
.proof-page .cta-strip-right {
  align-items: stretch;
  gap: 10px;
}
.proof-page .cta-strip-right .btn-primary {
  flex: 1;
  min-width: 0;
  justify-content: center;
  text-align: center;
  border-radius: 14px;
  min-height: 48px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
  color: #050505;
  letter-spacing: -0.02em;
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.42), 0 0 48px rgba(0, 212, 255, 0.18);
}
.proof-page .cta-strip-right .btn-primary:hover {
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.55), 0 0 64px rgba(0, 212, 255, 0.22);
  transform: translateY(-1px);
}
.proof-page .cta-strip-right .cta-demo-block {
  flex: 1;
  min-width: 0;
  display: flex;
}
.proof-page .cta-strip-right .btn-secondary {
  flex: 1;
  width: 100%;
  min-width: 0;
  justify-content: center;
  text-align: center;
  border-radius: 14px;
  min-height: 48px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
}
.proof-page .cta-strip-right .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

/* Footer */
.site-footer{background:#000000;padding:40px var(--gutter)}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px}
.footer-logo{font-size:14px;font-weight:700;color:var(--white);margin-bottom:4px}
.footer-tag{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.35)}
.footer-copy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.25);margin-top:4px}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.18s}
.footer-links a:hover{color:var(--white)}

/* === from api-docs.html === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --dark:#080c14;--dark2:#0d1221;--dark3:#0a0f1e;
  --cyan:#00d4ff;--cyan2:#0099cc;
  --red:#ff2d3d;--green:#2ed573;--orange:#ff9800;--white:#ffffff;
  --sans:'Sora',sans-serif;--mono:'JetBrains Mono',monospace;
  --nav-h:68px;--sidebar-w:260px;--max-w:1200px;--gutter:clamp(20px,5%,80px);
}
html{scroll-behavior:smooth}
body{background:var(--dark);color:var(--white);font-family:var(--sans);overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}

/* NAV — sync with index bundle (mobile-first) */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; white-space: nowrap; }
.logo-sep  { display: none; }
.logo-tag  {
  display: none;
  font-family: var(--mono); font-size: 9.5px; color: rgba(255,255,255,0.6); font-weight: 500;
  white-space: nowrap; letter-spacing: 0px;
}
@media (min-width: 640px) {
  .logo-tag { display: block; }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 40px;
  overflow-y: auto;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-links.is-open {
  display: flex;
  animation: fadeUp 0.2s ease both;
}
.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links li:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding-top: 8px;
}
.nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-size: 15px !important;
  border-radius: 10px;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  display: none;
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; opacity: 0.5; flex-shrink: 0;
}
.nav-dropdown .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  padding-top: 0;
  min-width: 0;
  box-shadow: none;
}
.nav-dropdown .dropdown-menu-box {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0 8px;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 6px; }
.btn-nav {
  font-family: var(--sans); font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav:hover { box-shadow: 0 0 32px rgba(0,212,255,0.38); transform: translateY(-1px); }
@media (min-width: 900px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    z-index: auto;
    border-top: none;
  }
  .nav-links.is-open { animation: none; }
  .nav-links li { width: auto; border-bottom: none; }
  .nav-links li:last-child { margin-top: 0; padding-top: 0; }
  .nav-links a {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); }
  .nav-links .btn-nav {
    width: auto;
    text-align: center;
    padding: 8px 18px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 13px !important;
    border-radius: 8px;
  }
  .nav-dropdown > a::after { display: block; }
  .nav-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 176px;
    z-index: 300;
    transition: opacity 0.15s, visibility 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown .dropdown-menu-box {
    background: rgba(8,12,24,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    backdrop-filter: blur(24px);
  }
  .nav-dropdown .dropdown-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 9px 14px;
  }
  .nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
}
.docs-wrap{display:flex;padding-top:var(--nav-h);min-height:100vh}

/* â”€â”€â”€ SIDEBAR â”€â”€â”€ */
.sidebar{width:var(--sidebar-w);flex-shrink:0;position:sticky;top:var(--nav-h);height:calc(100vh - var(--nav-h));overflow-y:auto;background:var(--dark2);border-right:1px solid rgba(255,255,255,0.06);padding:32px 0}
.sidebar::-webkit-scrollbar{width:4px}
.sidebar::-webkit-scrollbar-track{background:transparent}
.sidebar::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.1);border-radius:2px}
.sidebar-section{margin-bottom:28px}
.sidebar-label{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.25);padding:0 24px;margin-bottom:8px}
.sidebar-link{display:block;font-size:13px;color:rgba(255,255,255,0.5);text-decoration:none;padding:7px 24px;transition:color 0.15s,background 0.15s;border-left:2px solid transparent}
.sidebar-link:hover{color:rgba(255,255,255,0.85);background:rgba(255,255,255,0.03)}
.sidebar-link.active{color:var(--cyan);border-left-color:var(--cyan);background:rgba(0,212,255,0.04)}
.sidebar-trial{margin:24px 16px 0;background:rgba(0,212,255,0.06);border:1px solid rgba(0,212,255,0.15);border-radius:10px;padding:14px 16px}
.sidebar-trial p{font-size:12px;color:rgba(255,255,255,0.5);line-height:1.5;margin-bottom:10px}
.sidebar-trial a{display:block;text-align:center;font-size:12px;font-weight:700;color:var(--dark);background:linear-gradient(135deg,var(--cyan),var(--cyan2));padding:8px;border-radius:7px;text-decoration:none}

/* â”€â”€â”€ CONTENT â”€â”€â”€ */
.docs-content{flex:1;min-width:0;padding:48px 64px;max-width:860px}
.docs-section{margin-bottom:72px;scroll-margin-top:calc(var(--nav-h) + 24px)}
.docs-h1{font-size:32px;font-weight:800;letter-spacing:-1.5px;line-height:1.1;margin-bottom:12px}
.docs-h1 span{color:var(--cyan)}
.docs-lead{font-size:16px;color:rgba(255,255,255,0.55);line-height:1.75;margin-bottom:0;max-width:620px}
.docs-divider{height:1px;background:rgba(255,255,255,0.06);margin:48px 0}
.docs-h2{font-size:22px;font-weight:800;letter-spacing:-0.8px;margin-bottom:12px;padding-top:8px}
.docs-h3{font-size:15px;font-weight:700;letter-spacing:-0.3px;margin-bottom:10px;color:rgba(255,255,255,0.85)}
.docs-p{font-size:14px;color:rgba(255,255,255,0.55);line-height:1.85;margin-bottom:16px}
.docs-p strong{color:rgba(255,255,255,0.85)}
.docs-p a{color:var(--cyan);text-decoration:none}
.docs-p a:hover{text-decoration:underline}

/* â”€â”€â”€ MOBILE TOC (API docs â€” sidebar hidden below 768px) â”€â”€â”€ */
.docs-mobile-toc{display:none}

/* â”€â”€â”€ CALLOUTS â”€â”€â”€ */
.callout{display:flex;gap:14px;padding:16px 20px;border-radius:10px;margin-bottom:24px;font-size:13px;line-height:1.65}
.callout svg{width:16px;height:16px;flex-shrink:0;margin-top:1px}
.callout-tip{background:rgba(0,212,255,0.05);border:1px solid rgba(0,212,255,0.15);color:rgba(255,255,255,0.6)}
.callout-tip svg{stroke:var(--cyan);fill:none}
.callout-warn{background:rgba(255,152,0,0.05);border:1px solid rgba(255,152,0,0.2);color:rgba(255,255,255,0.6)}
.callout-warn svg{stroke:var(--orange);fill:none}

/* â”€â”€â”€ CODE BLOCKS â”€â”€â”€ */
.code-wrap{margin-bottom:24px}
.code-header{display:flex;align-items:center;justify-content:space-between;background:#05080f;border:1px solid rgba(255,255,255,0.08);border-bottom:1px solid rgba(255,255,255,0.05);border-radius:10px 10px 0 0;padding:10px 16px}
.code-dots{display:flex;gap:5px}
.code-dot{width:9px;height:9px;border-radius:50%}
.code-dot-r{background:#ff5f57}.code-dot-y{background:#febc2e}.code-dot-g{background:#28c840}
.code-lang{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.3);letter-spacing:1px}
.code-copy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.3);cursor:pointer;transition:color 0.15s;background:none;border:none;letter-spacing:0.5px}
.code-copy:hover{color:var(--cyan)}
.code-body{background:#05080f;border:1px solid rgba(255,255,255,0.08);border-top:none;border-radius:0 0 10px 10px;padding:20px 24px;font-family:var(--mono);font-size:12px;line-height:1.9;overflow-x:auto}
.c-comment{color:rgba(255,255,255,0.22)}
.c-key{color:#ff7b72}
.c-str{color:#a5d6ff}
.c-num{color:#79c0ff}
.c-cyan{color:var(--cyan)}
.c-green{color:var(--green)}
.c-purple{color:#d2a8ff}
.c-orange{color:#ffa657}

/* â”€â”€â”€ TABLES â”€â”€â”€ */
.docs-table{width:100%;border-collapse:collapse;margin-bottom:24px;font-size:13px}
.docs-table th{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,0.35);text-align:left;padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.02)}
.docs-table td{padding:11px 14px;border-bottom:1px solid rgba(255,255,255,0.05);color:rgba(255,255,255,0.6);vertical-align:top;line-height:1.5}
.docs-table tr:last-child td{border-bottom:none}
.docs-table code{font-family:var(--mono);font-size:11px;color:var(--cyan);background:rgba(0,212,255,0.06);padding:2px 7px;border-radius:4px}
.docs-table .req{color:var(--red);font-size:10px;font-family:var(--mono);font-weight:700}
.docs-table .opt{color:rgba(255,255,255,0.3);font-size:10px;font-family:var(--mono)}

/* â”€â”€â”€ INLINE CODE â”€â”€â”€ */
code{font-family:var(--mono);font-size:12px;color:var(--cyan);background:rgba(0,212,255,0.06);padding:2px 8px;border-radius:4px}

/* â”€â”€â”€ METHOD BADGES â”€â”€â”€ */
.method{display:inline-flex;font-family:var(--mono);font-size:11px;font-weight:700;padding:3px 10px;border-radius:5px;margin-right:10px}
.method-post{background:rgba(46,213,115,0.12);color:var(--green)}
.method-get{background:rgba(0,212,255,0.1);color:var(--cyan)}
.endpoint-row{display:flex;align-items:center;background:var(--dark2);border:1px solid rgba(255,255,255,0.07);border-radius:10px;padding:14px 18px;margin-bottom:16px;font-family:var(--mono);font-size:13px;color:rgba(255,255,255,0.7)}

/* â”€â”€â”€ TABS â”€â”€â”€ */
.tabs{display:flex;gap:0;margin-bottom:0;border-bottom:1px solid rgba(255,255,255,0.08)}
.tab{font-family:var(--mono);font-size:11px;font-weight:600;letter-spacing:0.5px;color:rgba(255,255,255,0.35);padding:8px 16px;cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-1px;transition:all 0.15s;background:none;border-top:none;border-left:none;border-right:none}
.tab:hover{color:rgba(255,255,255,0.65)}
.tab.active{color:var(--cyan);border-bottom-color:var(--cyan)}
.tab-content{display:none}
.tab-content.active{display:block}

/* â”€â”€â”€ RESPONSE FIELDS â”€â”€â”€ */
.field-group{margin-bottom:20px}
.field-row{display:flex;align-items:flex-start;gap:16px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,0.05)}
.field-row:last-child{border-bottom:none}
.field-name{font-family:var(--mono);font-size:12px;color:var(--cyan);flex-shrink:0;width:200px}
.field-type{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.3);flex-shrink:0;width:60px;padding-top:1px}
.field-desc{font-size:13px;color:rgba(255,255,255,0.5);line-height:1.5}

/* â”€â”€â”€ ERROR CODES â”€â”€â”€ */
.error-row{display:flex;align-items:flex-start;gap:16px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,0.05)}
.error-row:last-child{border-bottom:none}
.error-code{font-family:var(--mono);font-size:12px;font-weight:700;flex-shrink:0;width:80px}
.error-4xx{color:var(--orange)}
.error-5xx{color:var(--red)}
.error-desc{font-size:13px;color:rgba(255,255,255,0.5);line-height:1.5}

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
.site-footer{background:#000000;padding:40px var(--gutter)}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px}
.footer-logo{font-size:14px;font-weight:700;color:var(--white);margin-bottom:4px}
.footer-tag{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.35)}
.footer-copy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.25);margin-top:4px}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.18s}
.footer-links a:hover{color:var(--white)}

@media (max-width: 640px) {
  .field-row,
  .error-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .field-name,
  .field-type,
  .error-code {
    width: auto;
    max-width: 100%;
    padding-top: 0;
  }
  .endpoint-row {
    flex-wrap: wrap;
    row-gap: 8px;
    word-break: break-word;
  }
  .docs-wrap {
    display: grid;
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
  .docs-mobile-toc {
    display: block;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .docs-toc-label {
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 10px;
  }
  .docs-toc-select {
    width: 100%;
    box-sizing: border-box;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 12px 14px;
    min-height: 48px;
    cursor: pointer;
    outline: none;
  }
  .docs-toc-select:focus {
    border-color: rgba(0, 212, 255, 0.45);
  }
  .code-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* === from technology.html === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --dark:#080c14;--dark2:#0d1221;
  --cyan:#00d4ff;--cyan2:#0099cc;
  --red:#ff2d3d;--green:#2ed573;--orange:#ff9800;--white:#ffffff;
  --sans:'Sora',sans-serif;--mono:'JetBrains Mono',monospace;--serif:'Fraunces',serif;
  --max-w:1200px;--nav-h:68px;--gutter:clamp(20px,5%,80px);
}
html{scroll-behavior:smooth}
body{background:var(--dark);color:var(--white);font-family:var(--sans);overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}

/* NAV — sync with index bundle (mobile-first) */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; white-space: nowrap; }
.logo-sep  { display: none; }
.logo-tag  {
  display: none;
  font-family: var(--mono); font-size: 9.5px; color: rgba(255,255,255,0.6); font-weight: 500;
  white-space: nowrap; letter-spacing: 0px;
}
@media (min-width: 640px) {
  .logo-tag { display: block; }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 40px;
  overflow-y: auto;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-links.is-open {
  display: flex;
  animation: fadeUp 0.2s ease both;
}
.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links li:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding-top: 8px;
}
.nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-size: 15px !important;
  border-radius: 10px;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  display: none;
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; opacity: 0.5; flex-shrink: 0;
}
.nav-dropdown .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  padding-top: 0;
  min-width: 0;
  box-shadow: none;
}
.nav-dropdown .dropdown-menu-box {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0 8px;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 6px; }
.btn-nav {
  font-family: var(--sans); font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav:hover { box-shadow: 0 0 32px rgba(0,212,255,0.38); transform: translateY(-1px); }
@media (min-width: 900px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    z-index: auto;
    border-top: none;
  }
  .nav-links.is-open { animation: none; }
  .nav-links li { width: auto; border-bottom: none; }
  .nav-links li:last-child { margin-top: 0; padding-top: 0; }
  .nav-links a {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); }
  .nav-links .btn-nav {
    width: auto;
    text-align: center;
    padding: 8px 18px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 13px !important;
    border-radius: 8px;
  }
  .nav-dropdown > a::after { display: block; }
  .nav-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 176px;
    z-index: 300;
    transition: opacity 0.15s, visibility 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown .dropdown-menu-box {
    background: rgba(8,12,24,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    backdrop-filter: blur(24px);
  }
  .nav-dropdown .dropdown-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 9px 14px;
  }
  .nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
}
/* â”€â”€â”€ SHARED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s-inner{max-width:var(--max-w);margin:0 auto;padding:0 var(--gutter)}

/* Section header â€” identical on every section */
.s-eyebrow{font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,0.50);margin-bottom:10px}
.s-title{font-size:clamp(28px,3.5vw,46px);font-weight:800;letter-spacing:-1px;line-height:1.1;color:var(--white);margin:0 0 12px}
.s-subtitle{font-size:16px;color:rgba(255,255,255,0.5);line-height:1.75;max-width:640px;margin-bottom:40px}

/* Buttons */
.btn-primary{display:inline-flex;align-items:center;font-size:15px;font-weight:700;color:var(--dark);background:linear-gradient(135deg,var(--cyan),var(--cyan2));padding:15px 30px;border-radius:10px;border:none;cursor:pointer;text-decoration:none;box-shadow:0 0 32px rgba(0,212,255,0.28);transition:box-shadow 0.22s,transform 0.22s}
.btn-primary:hover{box-shadow:0 0 52px rgba(0,212,255,0.48);transform:translateY(-2px)}
.btn-secondary{display:inline-flex;align-items:center;font-size:15px;font-weight:600;color:rgba(255,255,255,0.72);background:transparent;border:1px solid rgba(255,255,255,0.16);padding:15px 30px;border-radius:10px;cursor:pointer;text-decoration:none;transition:border-color 0.22s,color 0.22s}
.btn-secondary:hover{border-color:rgba(0,212,255,0.35);color:var(--white)}

/* Badge */
.s-badge{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:10px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--cyan);background:rgba(0,212,255,0.07);border:1px solid rgba(0,212,255,0.2);padding:5px 14px;border-radius:100px}
.s-dot{width:5px;height:5px;border-radius:50%;background:var(--cyan);flex-shrink:0}.s-label .s-dot{animation:s-dot-pulse 5s ease-in-out infinite}

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-glow{display:none;position:absolute;top:0;left:50%;transform:translateX(-50%);width:900px;height:600px;pointer-events:none;background:radial-gradient(ellipse,rgba(0,212,255,0.06) 0%,transparent 65%)}
@media (min-width:640px){
  .hero-glow{display:block}
}
.s-hero .hero-inner{max-width:var(--max-w);margin:0 auto;padding:0 var(--gutter);position:relative;z-index:2;display:block}
.hero-h1{font-size:clamp(26px,5vw,48px);font-weight:800;letter-spacing:-2.5px;line-height:1.05;margin:16px 0 20px}
@media (min-width:900px){
  .hero-h1{font-size:clamp(28px,3.5vw,48px)}
}
.hero-h1 span{color:var(--cyan)}
.hero-layout{display:flex;flex-direction:column;gap:16px;align-items:stretch}
@media (min-width:640px){
  .hero-layout{gap:40px}
}
@media (min-width:900px){
  .hero-layout{flex-direction:row;gap:56px;align-items:stretch}
}
.hero-left{flex:2;display:flex;flex-direction:column}
.hero-why-label{font-size:clamp(15px,1.6vw,18px);font-weight:500;letter-spacing:-0.3px;color:rgba(255,255,255,0.7);margin:32px 0 14px;line-height:1.2}
.hero-vision{font-family:var(--serif);font-style:italic;font-size:clamp(15px,1.4vw,18px);font-weight:300;color:rgba(255,255,255,0.72);margin-bottom:16px;line-height:1.5}
.hero-vision-attribution{font-family:var(--mono);font-style:normal;font-size:clamp(9px,1.8vw,10px);font-weight:600;letter-spacing:0.5px;color:rgba(0,212,255,0.55);white-space:nowrap}
.hero-body p{font-size:14px;color:rgba(255,255,255,0.55);line-height:1.85;margin-bottom:12px}
.hero-body p:last-child{margin-bottom:0}
.hero-body strong{color:rgba(255,255,255,0.85);font-weight:700}
.hero-ctas{display:flex;flex-direction:column;gap:12px;flex-wrap:wrap;margin-top:28px}
@media (min-width:640px){
  .hero-ctas{flex-direction:row}
}
.hero-right{flex:1;display:flex;flex-direction:column}
.why-label{font-size:12px;font-weight:600;color:rgba(255,255,255,0.45);margin-bottom:14px}
.why-cards{display:flex;flex-direction:column;gap:10px;flex:1}
.why-card{border-radius:12px;padding:20px;border:1px solid;flex:1}
.why-card-proof{background:rgba(0,212,255,0.04);border-color:rgba(0,212,255,0.18)}
.why-card-speed{background:rgba(255,152,0,0.04);border-color:rgba(255,152,0,0.18)}
.why-card-auto{background:rgba(46,213,115,0.04);border-color:rgba(46,213,115,0.18)}
.why-card-hd{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.why-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.why-icon svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.why-icon-proof{background:rgba(0,212,255,0.12);color:var(--cyan)}
.why-icon-speed{background:rgba(255,152,0,0.12);color:var(--orange)}
.why-icon-auto{background:rgba(46,213,115,0.12);color:var(--green)}
.why-title-proof{font-size:12px;font-weight:800;color:var(--cyan)}
.why-title-speed{font-size:12px;font-weight:800;color:var(--orange)}
.why-title-auto{font-size:12px;font-weight:800;color:var(--green)}
.why-body{font-size:11px;color:rgba(255,255,255,0.48);line-height:1.65;margin-bottom:10px}
.why-tag{display:inline-flex;align-self:flex-start;font-family:var(--mono);font-size:9px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:3px 9px;border-radius:100px}
.why-tag-proof{color:var(--cyan);background:rgba(0,212,255,0.08);border:1px solid rgba(0,212,255,0.18)}
.why-tag-speed{color:var(--orange);background:rgba(255,152,0,0.08);border:1px solid rgba(255,152,0,0.18)}
.why-tag-auto{color:var(--green);background:rgba(46,213,115,0.08);border:1px solid rgba(46,213,115,0.18)}

/* â”€â”€â”€ KEY FEATURES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s-features{padding:80px var(--gutter);background:var(--dark)}
.kf-grid{display:grid;grid-template-columns: 1fr;gap:14px;margin-bottom:48px}
.kf-card{background:rgba(0,153,204,0.07);border:1px solid rgba(0,212,255,0.15);border-radius:14px;padding:28px 22px}
.kf-icon{width:36px;height:36px;border-radius:9px;background:rgba(0,153,204,0.15);display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.kf-icon svg{width:16px;height:16px;stroke:var(--cyan);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.kf-num{font-size:32px;font-weight:800;color:var(--cyan);line-height:1;margin-bottom:8px;letter-spacing:-1px}
.kf-label{font-size:13px;font-weight:700;color:rgba(255,255,255,0.85);margin-bottom:4px}
.kf-sub{font-size:12px;color:rgba(255,255,255,0.38)}
.kf-updates{background:var(--dark2);border:1px solid rgba(255,255,255,0.07);border-radius:14px;padding:40px}
.kf-updates .kf-model-title{margin-top:10px;margin-bottom:12px;font-size:clamp(15px,3.9vw,18px);font-weight:700;letter-spacing:-0.45px;line-height:1.15;white-space:nowrap;word-break:normal;overflow-wrap:normal}
.kf-updates .kf-model-title .kf-model-title__inner{white-space:nowrap;display:inline}
.kf-updates-split{display:flex;flex-direction:column;gap:24px}
.kf-updates-body{font-size:14px;color:rgba(255,255,255,0.5);line-height:1.65;margin-bottom:40px;max-width:620px}
.kf-updates-split .kf-updates-body{margin-bottom:0;max-width:none}
.kf-flow{display:flex;align-items:center}
@media (min-width: 900px) {
  .kf-updates-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px 32px;
    align-items: center;
  }
  .kf-updates-split .kf-updates-body {
    margin-bottom: 0;
    align-self: center;
  }
  .kf-updates-split .kf-flow {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
  .kf-updates {
    padding: 28px 36px;
  }
}
.kf-step{display:flex;flex-direction:column;align-items:center;gap:12px;flex:1}
.kf-step-icon{width:56px;height:56px;border-radius:12px;display:flex;align-items:center;justify-content:center}
.kf-step-icon svg{width:22px;height:22px;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.kf-step-icon-cyan{background:rgba(0,153,204,0.12)}
.kf-step-icon-orange{background:rgba(255,152,0,0.12)}
.kf-step-icon-green{background:rgba(46,213,115,0.12)}
.kf-step-label{font-size:13px;font-weight:700;color:rgba(255,255,255,0.85)}
.kf-step-sub{font-size:12px;color:rgba(255,255,255,0.38);text-align:center}
.kf-arrow{font-size:20px;color:rgba(0,212,255,0.35);padding:0 16px;margin-top:-24px}

/* Model lifecycle graphic (.kf-updates): smaller, one row, title under icon only */
.kf-updates .kf-flow {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.kf-updates .kf-step {
  gap: 6px;
  flex: 0 1 auto;
  min-width: 0;
}
.kf-updates .kf-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
}
.kf-updates .kf-step-icon svg {
  width: 16px;
  height: 16px;
}
.kf-updates .kf-step-label {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  max-width: 92px;
}
.kf-updates .kf-arrow {
  font-size: 13px;
  padding: 0 4px;
  margin-top: 0;
  align-self: center;
  flex-shrink: 0;
  line-height: 1;
}

@media (min-width: 900px) {
  .kf-updates .kf-flow {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 8px;
  }
  .kf-updates .kf-step {
    flex: 1 1 0;
    min-width: 0;
    gap: 14px;
  }
  .kf-updates .kf-step-icon {
    width: 76px;
    height: 76px;
    border-radius: 16px;
  }
  .kf-updates .kf-step-icon svg {
    width: 32px;
    height: 32px;
  }
  .kf-updates .kf-step-label {
    font-size: 13px;
    line-height: 1.3;
    max-width: 12em;
  }
  .kf-updates .kf-arrow {
    font-size: clamp(22px, 2.2vw, 32px);
    padding: 0 clamp(8px, 1.5vw, 24px);
    color: rgba(0, 212, 255, 0.5);
    flex-shrink: 0;
  }
}

/* â”€â”€â”€ SCIENCE (technology.html â€” layout tokens; section shell: .s-science in main index block) â”€â”€â”€ */
.sci-quote{font-family:var(--serif);font-style:italic;font-size:clamp(16px,1.6vw,20px);font-weight:300;color:rgba(255,255,255,0.6);margin-bottom:40px;line-height:1.5}
.sci-cols{display:grid;grid-template-columns:1fr 1fr;gap:48px;margin-bottom:40px}
.sci-col-label{font-family:var(--mono);font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.45);margin-bottom:14px}
.sci-col-body{font-size:14px;color:rgba(255,255,255,0.55);line-height:1.85}
@media (max-width: 640px) {
  body.page-technology .s-science .sci-cols > div:first-child {
    display: none !important;
  }
  /* Single column was still 2-track in some cases — span full width of .s-inner */
  body.page-technology .s-science .sci-cols {
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: none;
  }
  body.page-technology .s-science .sci-cols > div:nth-child(2) {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  body.page-technology .s-science .sci-col-body {
    max-width: none;
    width: 100%;
  }
}
.sci-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-bottom:32px}
.sci-stat{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.07);border-radius:14px;padding:24px}
.sci-stat-num{font-size:28px;font-weight:800;color:var(--cyan);line-height:1;margin-bottom:10px;letter-spacing:-1px}
.sci-stat-label{font-size:13px;color:rgba(255,255,255,0.45);line-height:1.6}
.sci-ieee{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.22);padding-top:24px;border-top:1px solid rgba(255,255,255,0.06);letter-spacing:0.5px}
.sci-star{color:var(--cyan);font-size:10px}

/* â”€â”€â”€ FOUR STEPS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s-steps{background:var(--dark)}
.steps-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-bottom:12px}
@media (max-width: 640px) {
  body.page-technology .s-steps .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  body.page-technology .s-steps .steps-strip {
    display: none !important;
  }
  body.page-technology .s-steps .steps-footnote {
    margin-bottom: 0;
  }
  body.page-technology .s-steps .step-card {
    padding-left: calc(24px * 0.7);
    padding-right: calc(24px * 0.7);
    height: 100%;
    min-height: 0;
  }
  body.page-technology .s-steps .step-tag {
    display: none !important;
  }
  body.page-technology .s-steps .step-hd {
    margin-bottom: 10px;
    gap: 8px;
  }
  body.page-technology .s-steps .step-num {
    font-size: 8px;
    margin-bottom: 1px;
  }
  body.page-technology .s-steps .step-name {
    font-size: 11px;
  }
  body.page-technology .s-steps .step-body {
    font-size: 10px;
    line-height: 1.4;
    margin-bottom: 0;
    flex: 1;
  }
}
.step-card{background:var(--dark2);border:1px solid rgba(255,255,255,0.07);border-radius:14px;padding:24px;display:flex;flex-direction:column}
.step-hd{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.step-icon{width:32px;height:32px;border-radius:8px;background:rgba(0,212,255,0.1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.step-icon svg{width:15px;height:15px;stroke:var(--cyan);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.step-num{font-family:var(--mono);font-size:9px;color:rgba(255,255,255,0.50);margin-bottom:2px}
.step-name{font-size:12px;font-weight:700;color:var(--white)}
.step-body{font-size:12px;color:rgba(255,255,255,0.45);line-height:1.45;flex:1;margin-bottom:16px}
.step-tag{font-family:var(--mono);font-size:10px;color:var(--cyan);background:rgba(0,212,255,0.05);border:1px solid rgba(0,212,255,0.12);border-radius:6px;padding:8px 10px}
.steps-footnote{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.22);margin-bottom:24px;padding-left:2px}
.steps-footnote span{color:var(--cyan)}
.steps-strip{display:flex;align-items:center;justify-content:center;background:var(--dark2);border:1px solid rgba(255,255,255,0.07);border-radius:12px;padding:16px 24px}
.steps-strip-item{display:flex;align-items:center;gap:8px;font-size:13px;color:rgba(255,255,255,0.45);padding:0 28px}
.steps-strip-item:first-child{border-right:1px solid rgba(255,255,255,0.07)}
.steps-strip-item svg{width:15px;height:15px;stroke:var(--cyan);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.steps-strip-item strong{color:rgba(255,255,255,0.8);font-weight:700}

/* technology.html — Science → Coverage bridge */
.tech-stage-bridge {
  padding: 48px var(--gutter);
  background: var(--dark);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.tech-stage-bridge__text {
  margin: 0;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 640px) {
  .tech-stage-bridge {
    padding: 24px var(--gutter);
  }
}

/* â”€â”€â”€ COVERAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s-coverage{padding:80px var(--gutter);background:var(--dark2)}
.coverage-tagline{font-family:var(--mono);font-size:12px;color:var(--cyan);letter-spacing:0.5px;margin-bottom:36px}
.coverage-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;grid-auto-rows:1fr}
@media (max-width:900px){
  .coverage-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
.cov-card{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.07);border-radius:12px;padding:16px;display:grid;grid-template-columns:auto 1fr;column-gap:10px;row-gap:8px;align-items:start}
.cov-icon{width:28px;height:28px;border-radius:7px;background:rgba(0,212,255,0.1);display:flex;align-items:center;justify-content:center;margin-bottom:0;flex-shrink:0;grid-column:1;grid-row:1;align-self:start}
.cov-icon svg{width:13px;height:13px;stroke:var(--cyan);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.cov-title{font-size:12px;font-weight:700;color:var(--white);margin-bottom:0;line-height:1.35;min-width:0;grid-column:2;grid-row:1;align-self:start}
.cov-list{list-style:none;display:flex;flex-direction:column;gap:4px;grid-column:1/-1;grid-row:2}
.cov-list li{font-size:12px;color:rgba(255,255,255,0.45);padding-left:10px;position:relative;line-height:1.4}
.cov-list li span{position:absolute;left:0;color:var(--cyan)}

/* â”€â”€â”€ API â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s-api{padding:80px var(--gutter);background:var(--dark)}
.api-layout{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;margin-top:48px}
@media (max-width:640px){
  .api-layout{grid-template-columns:1fr;gap:32px;margin-top:36px}
}
.api-features{display:flex;flex-direction:column;gap:20px}
.api-feat{display:flex;gap:16px;align-items:flex-start}
.api-feat-icon{width:40px;height:40px;border-radius:10px;background:rgba(0,212,255,0.08);border:1px solid rgba(0,212,255,0.18);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.api-feat-icon svg{width:18px;height:18px;stroke:var(--cyan);fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.api-feat-title{font-size:15px;font-weight:700;color:var(--white);margin-bottom:4px;letter-spacing:-0.3px}
.api-feat-sub{font-size:14px;color:rgba(255,255,255,0.5);line-height:1.6}
.code-block{background:#05080f;border:1px solid rgba(255,255,255,0.08);border-radius:14px;overflow:hidden}
.code-header{display:flex;align-items:center;justify-content:space-between;padding:12px 20px;border-bottom:1px solid rgba(255,255,255,0.06)}
.code-dots{display:flex;gap:6px}
.code-dot{width:10px;height:10px;border-radius:50%}
.code-dot-r{background:#ff5f57}
.code-dot-y{background:#febc2e}
.code-dot-g{background:#28c840}
.code-lang{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.3);letter-spacing:1px}
.code-body{padding:24px;font-family:var(--mono);font-size:12px;line-height:1.8;overflow-x:auto}
.c-comment{color:rgba(255,255,255,0.25)}
.c-key{color:#ff7b72}
.c-str{color:#a5d6ff}
.c-num{color:#79c0ff}
.c-cyan{color:var(--cyan)}
.c-green{color:var(--green)}

/* â”€â”€â”€ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.s-cta{padding:96px var(--gutter);background:var(--dark2);text-align:center}
.s-cta .s-subtitle{margin-left:auto;margin-right:auto;text-align:center}
.cta-btns{display:flex;flex-direction:column;justify-content:center;gap:12px;flex-wrap:wrap}
@media (min-width:640px){.cta-btns{flex-direction:row}}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer{background:#000000;padding:40px var(--gutter)}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px}
.footer-logo{font-size:14px;font-weight:700;color:var(--white);margin-bottom:4px}
.footer-tag{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.35);letter-spacing:0.5px}
.footer-copy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.25);margin-top:4px}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.18s}
.footer-links a:hover{color:var(--white)}

body.page-technology .u-br-mobile {
  display: none;
}
@media (max-width: 640px) {
  .sci-stats { grid-template-columns: 1fr; }
  .kf-updates {
    padding: 22px 12px;
  }
  .kf-updates .kf-model-title {
    font-size: clamp(14px, 3.5vw, 17px) !important;
    letter-spacing: -0.45px !important;
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .kf-updates .kf-model-title .kf-model-title__inner {
    white-space: nowrap !important;
  }
  .kf-updates .kf-flow {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 4px 6px;
  }
  .kf-updates .kf-arrow {
    transform: none;
    margin: 0;
    padding: 0 2px;
    align-self: center;
  }
  .steps-strip { flex-direction: column; gap: 12px; }
  .steps-strip-item { border-right: none !important; }

  .s-features-kicker__b {
    display: block;
    margin-top: 0.15em;
  }
  .kf-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    row-gap: 4px;
    padding: 16px 12px;
    align-items: start;
  }
  .kf-icon {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    align-self: center;
  }
  .kf-num {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    align-self: center;
    font-size: clamp(18px, 5.5vw, 24px);
    letter-spacing: -0.5px;
    min-width: 0;
  }
  .kf-label {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .kf-sub {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  body.page-technology .s-api .api-layout {
    gap: 36px !important;
  }
  body.page-technology .s-api .api-features {
    gap: 28px;
    width: 100%;
  }
  body.page-technology .s-api .api-feat {
    width: 100%;
    align-items: flex-start;
  }
  body.page-technology .s-api .api-feat > div:last-child {
    min-width: 0;
    flex: 1;
  }
  body.page-technology .s-api .code-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  body.page-technology .s-api .code-body {
    overflow-x: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 11px;
  }
  body.page-technology .u-br-mobile {
    display: inline;
  }
}
/* === from industries.html === */
/* Deduped minified reset/:root/skip-link — see top of file */

/* NAV — sync with index bundle (mobile-first) */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; white-space: nowrap; }
.logo-sep  { display: none; }
.logo-tag  {
  display: none;
  font-family: var(--mono); font-size: 9.5px; color: rgba(255,255,255,0.6); font-weight: 500;
  white-space: nowrap; letter-spacing: 0px;
}
@media (min-width: 640px) {
  .logo-tag { display: block; }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 40px;
  overflow-y: auto;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-links.is-open {
  display: flex;
  animation: fadeUp 0.2s ease both;
}
.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links li:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding-top: 8px;
}
.nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-size: 15px !important;
  border-radius: 10px;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  display: none;
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; opacity: 0.5; flex-shrink: 0;
}
.nav-dropdown .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  padding-top: 0;
  min-width: 0;
  box-shadow: none;
}
.nav-dropdown .dropdown-menu-box {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0 8px;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 6px; }
.btn-nav {
  font-family: var(--sans); font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav:hover { box-shadow: 0 0 32px rgba(0,212,255,0.38); transform: translateY(-1px); }
@media (min-width: 900px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    z-index: auto;
    border-top: none;
  }
  .nav-links.is-open { animation: none; }
  .nav-links li { width: auto; border-bottom: none; }
  .nav-links li:last-child { margin-top: 0; padding-top: 0; }
  .nav-links a {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); }
  .nav-links .btn-nav {
    width: auto;
    text-align: center;
    padding: 8px 18px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 13px !important;
    border-radius: 8px;
  }
  .nav-dropdown > a::after { display: block; }
  .nav-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 176px;
    z-index: 300;
    transition: opacity 0.15s, visibility 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown .dropdown-menu-box {
    background: rgba(8,12,24,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    backdrop-filter: blur(24px);
  }
  .nav-dropdown .dropdown-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 9px 14px;
  }
  .nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
}
/* SHARED */
.s-inner{max-width:var(--max-w);margin:0 auto;padding:0 var(--gutter)}
.s-label{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:10px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--cyan);background:rgba(0,212,255,0.07);border:1px solid rgba(0,212,255,0.2);padding:5px 14px;border-radius:100px}
.s-dot{width:5px;height:5px;border-radius:50%;background:var(--cyan);flex-shrink:0}.s-label .s-dot{animation:s-dot-pulse 5s ease-in-out infinite}

/* HERO */
.page-hero{padding:calc(var(--nav-h) + 48px) var(--gutter) 40px;background:var(--dark);position:relative;overflow:hidden;text-align:left}
@media (min-width:640px){
  .page-hero{padding:calc(var(--nav-h) + 64px) var(--gutter) 52px}
}
@media (min-width:900px){
  .page-hero{padding:calc(var(--nav-h) + 80px) var(--gutter) 64px}
}
.hero-glow{display:none;position:absolute;top:0;left:20%;width:800px;height:500px;pointer-events:none;background:radial-gradient(ellipse,rgba(0,212,255,0.055) 0%,transparent 65%)}
@media (min-width:640px){
  .hero-glow{display:block}
}
.page-hero-inner{max-width:var(--max-w);margin:0 auto;position:relative;z-index:2;text-align:left}
.page-hero-inner>.s-label,.page-hero-inner>.s-badge{margin-bottom:24px}
.page-hero-inner h1 .about-hero-accent{display:block}
@media (min-width:900px){
  .page-hero-inner h1 .about-hero-accent{display:inline}
}
.page-hero h1{font-size:clamp(32px, 5vw, 56px);font-weight:800;letter-spacing:-1px;line-height:1.05;margin-bottom:20px;animation:fadeUp 0.8s ease both;text-align:left}
@media (min-width:900px){
  .page-hero h1{font-size:clamp(32px, 5vw, 56px);letter-spacing:-2.5px}
}
.page-hero h1 span{color:var(--cyan)}
.page-hero p{font-size:clamp(15px, 1.8vw, 16px);color:rgba(255,255,255,0.55);max-width:800px;margin-left:0;margin-right:0;line-height:1.75;animation:fadeUp 0.8s 0.1s ease both;text-align:left}
@media (min-width:640px){
  .page-hero p{font-size:clamp(15px, 1.8vw, 16px)}
}
@media (min-width:900px){
  .page-hero p{font-size:clamp(15px, 1.8vw, 16px)}
}

/* INDUSTRIES GRID */
.s-ind-full{background:var(--dark2);display:flex;justify-content:center}
.s-ind-full .s-inner{margin:0 auto;width:100%;max-width:var(--max-w);display:flex;flex-direction:column;align-items:center}
.ind-grid-full{display:grid;grid-template-columns: 1fr;gap:24px;margin:48px auto 0;width:100%}
.ind-card-full{background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.07);border-radius:16px;padding:32px;display:flex;flex-direction:column;gap:16px;transition:border-color 0.22s,transform 0.22s}
.ind-card-full:hover{border-color:rgba(0,212,255,0.25);transform:translateY(-3px)}
.ind-card-header{display:flex;align-items:center;gap:16px}
.ind-card-icon{width:44px;height:44px;border-radius:10px;background:rgba(0,212,255,0.08);border:1px solid rgba(0,212,255,0.2);display:flex;align-items:center;justify-content:center;color:var(--cyan);flex-shrink:0;margin-bottom:0}
.ind-card-icon svg{width:22px;height:22px}
.ind-card-header .ind-card-title{flex:1;min-width:0}
.ind-card-title{font-size:20px;font-weight:800;letter-spacing:-0.5px;color:var(--white)}
.ind-card-body{font-size:14px;color:rgba(255,255,255,0.5);line-height:1.75;flex:1}
.ind-card-risks{display:flex;flex-wrap:wrap;gap:6px}
.ind-card-risks span{font-family:var(--mono);font-size:9px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:rgba(0,212,255,0.7);background:rgba(0,212,255,0.07);border:1px solid rgba(0,212,255,0.15);padding:3px 8px;border-radius:100px}
.ind-card-stat{font-family:var(--mono);font-size:11px;font-weight:700;color:rgba(0,212,255,0.7);letter-spacing:0.5px;padding:10px 0;border-top:1px solid rgba(255,255,255,0.06);margin-top:4px}
.ind-card-stat strong{color:var(--white);font-weight:800}
.ind-card-cta{font-size:13px;font-weight:600;color:var(--cyan);text-decoration:none;transition:opacity 0.18s;margin-top:auto}
.ind-card-cta:hover{opacity:0.7}
.ind-card-accent{color:var(--cyan);font-weight:600}
.ind-card-full .ind-card-btn{margin-top:auto}
.ind-card-full .price-btn-sec.ind-card-btn{box-sizing:border-box;width:100%;min-height:56px;height:56px;display:inline-flex;align-items:center;justify-content:center;padding:0 16px;font-size:14px;line-height:1.2;border-radius:9px}

/* BOTTOM CTA */
.s-ind-cta{text-align:center;background:var(--dark)}
.s-ind-cta h2{font-size:clamp(28px,3.5vw,46px);font-weight:800;letter-spacing:-2px;margin-bottom:16px;line-height:1.1}
.s-ind-cta p{font-size:16px;color:rgba(255,255,255,0.5);margin:0 auto 40px;line-height:1.75}
.btn-primary-lg{display:inline-flex;align-items:center;gap:8px;font-size:15px;font-weight:700;color:var(--dark);background:linear-gradient(135deg,var(--cyan),var(--cyan2));padding:16px 36px;border-radius:10px;text-decoration:none;box-shadow:0 0 32px rgba(0,212,255,0.28);transition:box-shadow 0.22s,transform 0.22s}
.btn-primary-lg:hover{box-shadow:0 0 48px rgba(0,212,255,0.45);transform:translateY(-2px)}
.btn-secondary-lg{display:inline-flex;align-items:center;gap:8px;font-size:15px;font-weight:600;color:rgba(255,255,255,0.7);border:1px solid rgba(255,255,255,0.16);padding:16px 36px;border-radius:10px;text-decoration:none;transition:border-color 0.22s,color 0.22s}
.btn-secondary-lg:hover{border-color:rgba(0,212,255,0.35);color:var(--white)}
.cta-btns{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap}
@media (min-width:640px){.cta-btns{flex-direction:row}}

.sources-list{max-width:var(--max-w);margin:0 auto;padding:20px var(--gutter);font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.38);line-height:1.5;background:var(--dark)}

/* FOOTER */
.site-footer{background:#000000;padding:32px var(--gutter)}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:24px}
.footer-logo{font-size:15px;font-weight:700;color:var(--white);margin-bottom:4px}
.footer-tag{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.35);margin-bottom:8px}
.footer-copy{font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.25)}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.18s}
.footer-links a:hover{color:var(--white)}

/* === from roi.html === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --dark:#080c14;--dark2:#0d1221;
  --cyan:#00d4ff;--cyan2:#0099cc;
  --red:#ff2d3d;--green:#2ed573;--orange:#ff9800;--white:#ffffff;
  --sans:'Sora',sans-serif;--mono:'JetBrains Mono',monospace;--serif:'Fraunces',serif;
  --max-w:1200px;--nav-h:68px;--gutter:clamp(20px,5%,80px);
}
html{scroll-behavior:smooth}
body{background:var(--dark);color:var(--white);font-family:var(--sans);overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

/* NAV — sync with index bundle (mobile-first) */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; white-space: nowrap; }
.logo-sep  { display: none; }
.logo-tag  {
  display: none;
  font-family: var(--mono); font-size: 9.5px; color: rgba(255,255,255,0.6); font-weight: 500;
  white-space: nowrap; letter-spacing: 0px;
}
@media (min-width: 640px) {
  .logo-tag { display: block; }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 24px 40px;
  overflow-y: auto;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-links.is-open {
  display: flex;
  animation: fadeUp 0.2s ease both;
}
.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links li:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding-top: 8px;
}
.nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  width: 100%;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-size: 15px !important;
  border-radius: 10px;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown > a::after {
  display: none;
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -2px; opacity: 0.5; flex-shrink: 0;
}
.nav-dropdown .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
  transform: none;
  padding-top: 0;
  min-width: 0;
  box-shadow: none;
}
.nav-dropdown .dropdown-menu-box {
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0 8px;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 6px; }
.btn-nav {
  font-family: var(--sans); font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.2); transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav:hover { box-shadow: 0 0 32px rgba(0,212,255,0.38); transform: translateY(-1px); }
@media (min-width: 900px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    z-index: auto;
    border-top: none;
  }
  .nav-links.is-open { animation: none; }
  .nav-links li { width: auto; border-bottom: none; }
  .nav-links li:last-child { margin-top: 0; padding-top: 0; }
  .nav-links a {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); }
  .nav-links .btn-nav {
    width: auto;
    text-align: center;
    padding: 8px 18px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 13px !important;
    border-radius: 8px;
  }
  .nav-dropdown > a::after { display: block; }
  .nav-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 176px;
    z-index: 300;
    transition: opacity 0.15s, visibility 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown .dropdown-menu-box {
    background: rgba(8,12,24,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    backdrop-filter: blur(24px);
  }
  .nav-dropdown .dropdown-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 9px 14px;
  }
  .nav-dropdown .dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
}
/* â”€â”€â”€ ROI HERO (page-hero--roi) â”€â”€â”€ */
.page-hero.page-hero--roi{padding:calc(var(--nav-h) + 48px) var(--gutter) 40px;background:var(--dark);text-align:left;position:relative;overflow:hidden}
@media (min-width:640px){
  .page-hero.page-hero--roi{padding:calc(var(--nav-h) + 64px) var(--gutter) 52px}
}
@media (min-width:900px){
  .page-hero.page-hero--roi{padding:calc(var(--nav-h) + 80px) var(--gutter) 64px}
}
.page-hero.page-hero--roi .page-hero-inner{max-width:var(--max-w);margin:0 auto}
.page-hero.page-hero--roi .hero-sub{font-size:clamp(15px, 1.8vw, 16px);color:rgba(255,255,255,0.5);max-width:800px;margin:0 0 12px;line-height:1.75;text-align:left}
.page-hero.page-hero--roi .hero-note{font-family:var(--mono);font-size:clamp(10px,2.5vw,11px);color:rgba(255,255,255,0.25);letter-spacing:0.5px;text-align:left}
@media (min-width: 900px) {
  .page-hero.page-hero--roi .hero-sub,
  .page-hero.page-hero--roi .hero-note {
    white-space: nowrap;
  }
}

/* â”€â”€â”€ CALCULATOR â”€â”€â”€ */
.s-calc{position:relative;z-index:2;display:flex;justify-content:center}
.calc-inner{margin:0 auto;width:100%;display:flex;flex-direction:column;align-items:center;box-sizing:border-box}
.calc-layout{display:grid;grid-template-columns: 1fr;gap:24px;align-items:start;width:100%;min-width:0;margin:0 auto;box-sizing:border-box}

/* Inputs */
.calc-inputs{background:var(--dark2);border:1px solid rgba(255,255,255,0.08);border-radius:16px;padding:20px 16px;min-width:0;box-sizing:border-box}
.calc-inputs-title{font-size:13px;font-weight:700;color:rgba(255,255,255,0.5);letter-spacing:0.5px;margin-bottom:24px;font-family:var(--mono);text-transform:uppercase;font-size:10px;letter-spacing:2px}
.roi-field{display:flex;flex-direction:column;gap:8px;margin-bottom:20px}
.roi-field:last-of-type{margin-bottom:28px}
.roi-label{font-family:var(--mono);font-size:11px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:rgba(255,255,255,0.45)}
.roi-input{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);border-radius:10px;padding:14px 18px;font-family:var(--mono);font-size:16px;color:var(--white);outline:none;transition:border-color 0.22s,background 0.22s;width:100%}
.roi-input::placeholder{color:rgba(255,255,255,0.18)}
.roi-input:focus{border-color:rgba(0,212,255,0.4);background:rgba(0,212,255,0.03)}
.roi-btn{box-sizing:border-box;width:100%;min-height:52px;height:52px;display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--cyan),var(--cyan2));color:var(--dark);border:none;border-radius:9px;padding:0 20px;font-family:var(--sans);font-size:14px;font-weight:700;cursor:pointer;box-shadow:0 0 32px rgba(0,212,255,0.25);transition:box-shadow 0.22s,transform 0.22s;line-height:1.2}
.roi-btn:hover{box-shadow:0 0 52px rgba(0,212,255,0.45);transform:translateY(-2px)}

/* Results */
.calc-results{background:var(--dark2);border:1px solid rgba(255,255,255,0.08);border-radius:16px;padding:20px 16px;min-width:0;animation:fadeUp 0.4s ease both;box-sizing:border-box}
.results-title{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,0.28);margin-bottom:24px}
.roi-result-row{display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start;padding:13px 0;border-bottom:1px solid rgba(255,255,255,0.05);gap:8px}
.roi-result-row:last-of-type{border-bottom:none}
.roi-highlight{background:rgba(46,213,115,0.05);border-radius:10px;padding:16px 14px;border-bottom:none;margin-bottom:8px}
.roi-highlight .roi-result-label,.roi-highlight .roi-result-val{font-size:1.5rem;font-weight:700}
.roi-result-label{font-size:13px;color:rgba(255,255,255,0.5)}
.roi-result-val{font-family:var(--mono);font-size:15px;font-weight:700;color:var(--white)}
.roi-val-green{color:var(--green)}
.roi-val-red{color:var(--red)}
.roi-val-cyan{color:var(--cyan)}
.roi-net-row{margin-top:8px;padding-top:16px;border-top:2px solid rgba(255,255,255,0.08)!important;border-bottom:none!important}
.roi-net-row .roi-net-label,.roi-net-row .roi-net-val{font-size:1.5rem;font-weight:700}
.roi-net-label{font-size:14px;font-weight:700;color:var(--white)}
.roi-cost-note{font-family:var(--sans);font-size:11px;color:rgba(255,255,255,0.35);line-height:1.45;margin:-4px 0 8px;padding:0 0 4px;border-bottom:1px solid rgba(255,255,255,0.05)}
.roi-emotional{font-family:var(--serif);font-style:italic;font-size:14px;color:rgba(255,255,255,0.4);margin-top:16px;line-height:1.6;padding-top:16px;border-top:1px solid rgba(255,255,255,0.06)}

/* CTA — below results card; stacked buttons under 900px; side-by-side buttons on desktop */
.s-calc .roi-cta {
  width: 100%;
  max-width: var(--max-w);
  box-sizing: border-box;
}
.roi-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
}
.roi-cta .price-btn-pri,
.roi-cta .price-btn-sec {
  box-sizing: border-box;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  min-height: 44px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 12px;
  font-size: clamp(14px, 2.5vw, 15px);
  line-height: 1.2;
  border-radius: 9px;
}
.roi-cta .price-btn-pri:hover{box-shadow:0 0 28px rgba(0,212,255,0.35);transform:translateY(-2px)}
.roi-cta .cta-note {
  flex: 1 1 100%;
  margin-top: 6px;
}
@media (max-width: 899px) {
  .roi-cta {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: stretch;
  }
  .roi-cta .price-btn-pri,
  .roi-cta .price-btn-sec {
    flex: none;
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    font-size: 14px;
  }
  .roi-cta .cta-note {
    flex: none;
    margin-top: 0;
  }
}
@media (min-width: 900px) {
  .s-calc .roi-cta {
    margin-top: 40px;
    margin-bottom: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .s-calc .roi-cta .price-btn-pri,
  .s-calc .roi-cta .price-btn-sec {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
    min-height: 56px;
    height: auto;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 9px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.22s, border-color 0.22s, box-shadow 0.22s, color 0.22s, transform 0.22s;
  }
  .s-calc .roi-cta .price-btn-pri {
    background: linear-gradient(135deg, var(--cyan), var(--cyan2));
    color: var(--dark);
    border: none;
  }
  .s-calc .roi-cta .price-btn-pri:hover {
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.35);
    transform: translateY(-2px);
    color: var(--dark);
  }
  .s-calc .roi-cta .price-btn-sec {
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .s-calc .roi-cta .price-btn-sec:hover {
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--white);
    transform: translateY(-2px);
  }
  .s-calc .roi-cta .cta-note {
    flex: 1 1 100%;
    margin-top: 10px;
    text-align: center;
  }
}
.cta-note{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.25);text-align:center;letter-spacing:0.3px}

/* Trust strip */
.trust-strip{margin:32px auto 0;width:100%;display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;box-sizing:border-box}
.trust-item{display:flex;align-items:center;gap:8px;font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.3)}
.trust-item .trust-mult{font-weight:800;color:rgba(255,255,255,0.55)}
.trust-item svg{width:13px;height:13px;stroke:var(--cyan);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
@media (min-width: 640px) {
  .trust-strip { gap: 24px; }
}
@media (min-width: 900px) {
  .trust-strip { gap: 32px; }
}

/* Footer */
.site-footer{background:#000000;padding:40px var(--gutter)}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px}
.footer-logo{font-size:14px;font-weight:700;color:var(--white);margin-bottom:4px}
.footer-tag{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.35)}
.footer-copy{font-family:var(--mono);font-size:10px;color:rgba(255,255,255,0.25);margin-top:4px}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.18s}
.footer-links a:hover{color:var(--white)}

/* ROI calculator (roi.html) — narrow viewports: clamp result typography */
.roi-result-val {
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
  text-align: left;
}
.roi-highlight .roi-result-label,
.roi-highlight .roi-result-val,
.roi-net-row .roi-net-label,
.roi-net-row .roi-net-val {
  font-size: clamp(1.05rem, 4.5vw, 1.35rem);
}
@media (min-width: 900px) {
  .calc-inputs,
  .calc-results {
    padding: 36px;
  }
  .roi-result-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .roi-result-val {
    white-space: nowrap;
    text-align: right;
  }
  .roi-highlight .roi-result-label,
  .roi-highlight .roi-result-val,
  .roi-net-row .roi-net-label,
  .roi-net-row .roi-net-val {
    font-size: inherit;
  }
}

/* Technology page hero â€” same shell as Industry (.page-hero + .page-hero-inner); two-column body below title */
.page-hero.page-hero--technology .hero-layout {
  margin-top: 28px;
  width: 100%;
}
.page-hero.page-hero--technology .why-label {
  font-size: 11px;
  margin-bottom: 10px;
}
.page-hero.page-hero--technology .why-cards {
  gap: 8px;
}
.page-hero.page-hero--technology .why-card {
  padding: 10px 14px;
  border-radius: 10px;
}
.page-hero.page-hero--technology .why-card-hd {
  gap: 8px;
  margin-bottom: 5px;
}
.page-hero.page-hero--technology .why-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}
.page-hero.page-hero--technology .why-icon svg {
  width: 12px;
  height: 12px;
}
.page-hero.page-hero--technology .why-title-proof,
.page-hero.page-hero--technology .why-title-speed,
.page-hero.page-hero--technology .why-title-auto {
  font-size: 13px;
}
.page-hero.page-hero--technology .why-body {
  font-size: 11.5px;
  line-height: 1.48;
  margin-bottom: 6px;
}
.page-hero.page-hero--technology .why-tag {
  font-size: 9px;
  padding: 2px 7px;
  letter-spacing: 1.1px;
}
@media (max-width: 640px) {
  .page-hero.page-hero--technology .hero-right .why-cards {
    display: none !important;
  }

  /* Key Features: tighter from hero + 2×2 smaller cards */
  body.page-technology .s-features {
    padding-top: 28px !important;
    padding-bottom: 36px !important;
  }
  body.page-technology .s-features .kf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-bottom: 28px !important;
  }
  body.page-technology .s-features .kf-card {
    padding: 10px 8px !important;
    border-radius: 10px !important;
    column-gap: 6px !important;
    row-gap: 3px !important;
  }
  body.page-technology .s-features .kf-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
  }
  body.page-technology .s-features .kf-icon svg {
    width: 12px !important;
    height: 12px !important;
  }
  body.page-technology .s-features .kf-num {
    font-size: clamp(13px, 3.8vw, 17px) !important;
    letter-spacing: -0.4px !important;
  }
  body.page-technology .s-features .kf-label {
    font-size: 11px !important;
    margin-bottom: 2px !important;
  }
  body.page-technology .s-features .kf-sub {
    font-size: 9.5px !important;
    line-height: 1.35 !important;
  }

  body.page-technology .s-coverage .coverage-grid {
    gap: 8px !important;
  }
  body.page-technology .s-coverage .cov-card {
    padding: 12px 10px !important;
    column-gap: 8px !important;
  }
  body.page-technology .s-coverage .cov-title {
    font-size: 11px !important;
  }
  body.page-technology .s-coverage .cov-list li {
    font-size: 12px !important;
  }
}

/* Institutional alignment â€” numeric data (JetBrains Mono + tabular figures) */
#mainNum,
#sinceNum,
.num-big,
.sci-num,
.counter-num,
.counter-dollar,
.counter-billion,
.counter-since-num,
.trial-box-num {
  font-family: var(--mono), 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
}

/* Institutional alignment â€” footer + .s-inner (wins over duplicate bundles below) */
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-pad-x);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer .footer-inner .footer-left {
  flex: 1 1 auto;
  min-width: 200px;
}
.site-footer .footer-inner .footer-links {
  flex: 0 1 auto;
  margin-left: auto;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.s-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-pad-x);
}
.s-inner.s-inner--grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  box-sizing: border-box;
  width: 100%;
}
/* ROI + Trial: match Closing section spine â€” outer padding is --gutter; avoid double horizontal inset */
.s-roi .s-inner.s-inner--grid,
.s-trial .s-inner.s-inner--grid {
  padding-left: 0;
  padding-right: 0;
}

/* â”€â”€ GLOBAL MOBILE FIXES â”€â”€ */
@media (max-width: 640px) {
  .lp-hero-glow,
  .trial-glow,
  .counter-glow,
  .science-glow {
    display: none;
  }

  body { overflow-x: hidden; }

  br.br-desktop-only {
    display: none;
  }

  .s-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .site-footer .footer-inner .footer-links {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .hero-contrast,
  .hero-contrast-line { white-space: normal; }
  /* CE two-column table only — comparison table uses readable scroll ≤900px */
  .table-scroll .ce-table {
    min-width: 560px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE RESPONSIVE PASS v0.2.0
   (was missing â€” appended now)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ FIX 3: Button standardisation â€” superseded by TASK 7 (EOF) â”€â”€ */
/* (FIX 1 nav padding merged into GLOBAL MOBILE FIXES; FIX 2 accordion superseded by v0.2.2+ below) */

/* Section padding reduction — Task 4: vertical padding from mobile-first block near EOF */

.form-input,
.form-select,
.form-textarea {
  font-size: 16px;
}
@media (min-width: 640px) {
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 14px;
  }
}

@media (min-width: 900px) {
  .contact-left,
  .contact-form-wrap {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .dept-btn { padding: 14px 12px; }
  .conf-steps { gap: 16px; }
}

@media (max-width: 640px) {

  /* Lifecycle linearised */
  .lifecycle-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .lifecycle-connector { display: none; }

  .sector-name { font-size: 10px; letter-spacing: 0.08em; }

  /* Nav: use max-height collapse instead of display:none */
  .nav-dropdown .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-dropdown.is-open .dropdown-menu {
    max-height: 400px;
  }

  /* Transition section: show both lines, no overflow clip */
  .trans-quote-wrap {
    overflow: visible;
    text-align: center;
    padding: 0 16px;
  }
  .trans-quote {
    white-space: normal;
    text-align: center;
    font-size: clamp(14px, 3.5vw, 18px);
    line-height: 1.65;
    min-width: 0;
    margin: 0;
  }
  .trans-quote-line {
    display: block;
    white-space: normal;
    font-size: inherit;
    text-align: center;
  }
  .trans-response {
    font-size: clamp(28px, 7vw, 40px);
    white-space: normal;
    text-align: center;
    margin-top: 24px;
  }
  .s-transition .s-inner {
    overflow-x: visible;
  }

  .trans-quote {
    font-size: clamp(12px, 3vw, 15px);
    line-height: 1.6;
  }
  .trans-response {
    font-size: clamp(22px, 6vw, 32px);
    margin-top: 16px;
  }

  .s-ce .s-inner {
    overflow-x: hidden;
    padding-left: 16px;
    padding-right: 16px;
  }
  .ce-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    min-width: 0;
  }
  .ce-left,
  .ce-right {
    min-width: 0;
    width: 100%;
    overflow-x: hidden;
  }
  .ce-definition {
    font-size: 16px;
    line-height: 1.6;
    white-space: normal;
    word-break: break-word;
  }
  .ce-bold {
    font-size: clamp(18px, 5vw, 24px);
    letter-spacing: -0.5px;
    white-space: normal;
  }
  .ce-meta {
    font-size: 10px;
    white-space: normal;
    word-break: break-word;
  }
  .ce-right .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .ce-table {
    min-width: 480px;
    font-size: 11px;
  }
  .ce-th-bad,
  .ce-th-good,
  .ce-td-bad,
  .ce-td-good {
    padding: 10px 12px;
    font-size: 11px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .num-card {
    --num-icon-size: 32px;
    --num-icon-gap: 10px;
    padding: 12px 10px 10px;
  }
  .num-icon svg {
    width: 15px;
    height: 15px;
  }
  .num-big {
    font-size: clamp(16px, 5.5vw, 26px);
    letter-spacing: -1.5px;
    margin-bottom: 0;
  }
  .num-label {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .threat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .threat-card {
    padding: 14px 12px;
  }
  .threat-card-top {
    height: auto;
    min-height: 0;
    max-height: none;
    margin-bottom: 8px;
    gap: 8px;
  }
  .threat-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  .threat-icon svg {
    width: 14px;
    height: 14px;
  }
  .threat-title {
    font-size: 13px;
    letter-spacing: -0.2px;
  }
  .threat-line {
    font-size: 11px;
    line-height: 1.45;
  }
  .threat-footer {
    font-size: 8px;
    letter-spacing: 0.04em;
    padding-top: 8px;
  }

  /* CE comparison table: fixed two-column layout, no scrollbar */
  .ce-right .table-scroll {
    overflow: visible;
  }
  .ce-table {
    table-layout: fixed;
    width: 100%;
    min-width: 0;
    font-size: 11px;
  }
  .ce-table thead tr th:first-child,
  .ce-table tbody tr td:first-child {
    width: 50%;
  }
  .ce-table thead tr th:last-child,
  .ce-table tbody tr td:last-child {
    width: 50%;
  }
  .ce-th-bad {
    padding: 8px 10px;
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .ce-th-good {
    padding: 8px 10px;
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .ce-td-bad {
    padding: 9px 10px;
    font-size: 11px;
    line-height: 1.4;
    vertical-align: top;
    word-break: break-word;
  }
  .ce-td-good {
    padding: 9px 10px;
    font-size: 11px;
    line-height: 1.4;
    vertical-align: top;
    word-break: break-word;
  }

  /* Trial boxes: 3 side by side in one row */
  .trial-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex-direction: unset;
    align-items: unset;
  }
  .trial-box {
    padding: 14px 8px;
    text-align: center;
  }
  .trial-box-num {
    font-size: clamp(16px, 4.5vw, 22px);
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .trial-box-label {
    font-size: 9px;
    letter-spacing: 1px;
    line-height: 1.3;
  }

  /* Trial no-risk list: tighten up */
  .trial-no-risk {
    font-size: 13px;
    gap: 8px;
  }

  /* Force the table scroll wrapper to not scroll */
  .ce-right .table-scroll {
    overflow: hidden !important;
    width: 100% !important;
  }

  /* Force fixed layout so columns split exactly 50/50 */
  .ce-table {
    table-layout: fixed !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .ce-table col,
  .ce-table th,
  .ce-table td {
    width: 50% !important;
    max-width: 50% !important;
  }

  /* Shrink all cell text and padding */
  .ce-th-bad,
  .ce-th-good {
    padding: 7px 8px !important;
    font-size: 7px !important;
    letter-spacing: 1px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ce-td-bad,
  .ce-td-good {
    padding: 8px 8px !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
    vertical-align: top !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }

  /* Also fix the ce-meta line above the table that overflows */
  .ce-meta {
    white-space: normal !important;
    word-break: break-word !important;
    font-size: 9px !important;
    line-height: 1.6 !important;
  }

  /* Fix first trial box being clipped on left edge */
  .s-trial .s-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow-x: hidden !important;
  }
  .trial-boxes {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .trial-box {
    padding: 12px 6px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .trial-box-num {
    font-size: clamp(14px, 4vw, 20px) !important;
    letter-spacing: -0.5px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .trial-box-label {
    font-size: 8px !important;
    letter-spacing: 0.8px !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    overflow: hidden !important;
  }

  /* Checklist: 3 items side by side, text wraps to 2 lines */
  .trial-no-risk {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    text-align: center !important;
  }
  .trial-no-risk li {
    font-size: 10px !important;
    line-height: 1.4 !important;
    color: rgba(255,255,255,0.6) !important;
    padding: 0 4px !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  .trial-no-risk li::before {
    display: block !important;
    margin-bottom: 4px !important;
  }

/* MOBILE RESPONSIVE PASS v0.3.0 */

/* END v0.3.0 */

  /* Consistent body text size across all index sections â€” 13px / 1.65 */

  /* CE section */
  .ce-definition {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  /* Science section */
  .science-body p {
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin-bottom: 14px !important;
  }
  /* Science pull-quote: one step above 13px body (italic = emphasis) */
  .pqb-text {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }
  .science-kicker {
    font-size: 14px !important;
  }
  .science-kicker-muted {
    font-size: 12px !important;
  }
  .science-stats-header {
    font-size: 13px !important;
  }
  .science-next {
    font-size: 13px !important;
  }

  /* Battlefield section */
  .bf-answer {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  /* Threat cards */
  .threat-line {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  /* Battle list */
  .battle-list li {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* Cards strip */
  .card-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .section-soft-bleed-top {
    margin-top: -26px !important;
  }

  /* Industries page â€” tighten spacing between sections (vertical section padding: Task 4) */
  .sources-list {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Remove the large gap between hero and industry cards */
  .s-ind-full {
    margin-top: 0 !important;
  }

  /* Override the global pricing-grid (0.8fr 1fr 1fr 1fr 1fr) directly */
  .pricing-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 0 24px !important;
  }

  /* Paid cards */
  .price-card {
    padding: 16px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .price-amount {
    font-size: 28px !important;
    letter-spacing: -1px !important;
    line-height: 1 !important;
  }
  .price-tier { font-size: 13px !important; }
  .price-features li {
    font-size: 11px !important;
    padding-left: 14px !important;
  }
  .price-popular {
    font-size: 8px !important;
    letter-spacing: 1.5px !important;
  }

  /* All plans */
  .all-plans {
    padding: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .all-plans-group-items {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
  }
  .all-plans-group-items span {
    font-size: 11px !important;
  }
  .all-plans-group-title {
    font-size: 10px !important;
    margin-bottom: 6px !important;
  }

  /* FAQ */
.faq-heading { font-size: clamp(20px, 5vw, 28px) !important; }
  .faq-q {
    font-size: 13px !important;
    min-height: 44px !important;
    padding: 14px 16px !important;
    line-height: 1.4 !important;
  }
  .faq-a {
    font-size: 13px !important;
    line-height: 1.65 !important;
    padding: 12px 16px !important;
  }

  /* Final CTA */
.final-heading {
    font-size: clamp(22px, 6vw, 32px) !important;
    letter-spacing: -1px !important;
  }
  .final-line1, .final-line2 { font-size: 13px !important; }

  .s-pricing-full .s-inner {
    align-items: stretch !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .s-pricing-full .pricing-grid,
  .pricing-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 24px !important;
    box-sizing: border-box !important;
    align-items: stretch !important;
  }
  /* Badge on Scale sits above the card — pad the grid only (old nth-child(3) hit Strategic and misaligned row 2) */
  .s-pricing-full .pricing-grid {
    padding-top: 16px !important;
  }
  .s-pricing-full .price-card,
  .pricing-grid .price-card {
    flex: 0 0 calc(50% - 5px) !important;
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 14px 10px !important;
    gap: 6px !important;
  }
  .s-pricing-full .price-card .price-card-header,
  .pricing-grid .price-card .price-card-header {
    min-height: auto !important;
    padding-bottom: 8px !important;
    margin-bottom: 4px !important;
  }
  .s-pricing-full .price-amount,
  .pricing-grid .price-amount {
    font-size: 22px !important;
    letter-spacing: -0.5px !important;
    line-height: 1 !important;
  }
  .s-pricing-full .price-tier,
  .pricing-grid .price-tier { font-size: 12px !important; }
  .s-pricing-full .price-unit,
  .pricing-grid .price-unit { font-size: 9px !important; }
  .s-pricing-full .price-features li,
  .pricing-grid .price-features li {
    font-size: 10px !important;
    padding-left: 12px !important;
    line-height: 1.35 !important;
  }
}
/* END v0.3.8 + v0.4.2 (merged) */

/* Pricing — “All plans include”: one row × three columns on narrow phones (<640px) */
@media (max-width: 639px) {
  /* Reclaim horizontal space from .s-inner gutters so three columns stay readable */
  .s-pricing-full .all-plans {
    margin-left: -12px !important;
    margin-right: -12px !important;
    width: calc(100% + 24px) !important;
    max-width: none !important;
    padding: 16px 8px !important;
    box-sizing: border-box !important;
  }
  .s-pricing-full .all-plans-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 4px;
    align-items: start;
  }
  .s-pricing-full .all-plans-group {
    min-width: 0;
  }
  .s-pricing-full .all-plans-group-title {
    text-align: center !important;
  }
  .s-pricing-full .all-plans-group-items {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 3px !important;
  }
  .s-pricing-full .all-plans-group-items span {
    text-align: left !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
    margin-bottom: 4px !important;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

/* Home index — mobile digestibility (max-width 860px only) */
.science-continue-link {
  display: none;
}

@media (max-width: 900px) {
  .s-transition {
    display: none !important;
  }

  .s-ce .ce-table tbody tr:nth-child(n + 4),
  .s-comparison .comp-table tbody tr:nth-child(n + 4) {
    display: none !important;
  }

  /* Threat strip: icon + title only; no hover lift on touch widths */
  .s-threat .threat-line,
  .s-threat .threat-footer {
    display: none !important;
  }
  .s-threat .threat-card {
    transition: border-color 0.2s ease, background 0.2s ease;
    min-height: 0;
    padding: 12px 10px;
  }
  .s-threat .threat-card:hover {
    transform: none !important;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.06);
    background: #080c14;
  }
  .s-threat .threat-card:hover .threat-footer {
    color: inherit;
    text-shadow: none;
  }
  .s-threat .threat-card-top {
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    min-height: 0;
    max-height: none;
    gap: 6px;
    justify-content: flex-start;
  }
  .s-threat .threat-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 8px;
  }
  .s-threat .threat-title {
    font-size: 10px;
    line-height: 1.15;
  }
  .s-threat .threat-icon {
    width: 28px;
    height: 28px;
    padding: 5px;
  }
  .s-threat .threat-icon svg {
    width: 14px;
    height: 14px;
  }

  .science-body-extended {
    display: none !important;
  }

  .science-continue-link {
    display: block;
    margin-top: 8px;
    margin-bottom: 0;
    text-align: left;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
  }

  /* Tighter stack: link → pull quote → stats heading */
  .s-science .science-layout {
    gap: 16px;
    margin-bottom: 20px;
  }
  .s-science .science-stats-header {
    margin-bottom: 16px;
  }
  .s-science .pqb-attr {
    margin-top: 6px;
  }
  .science-continue-link a {
    color: var(--cyan);
    text-decoration: none;
  }
  .science-continue-link a:hover {
    text-decoration: underline;
  }

  .s-threat.section-soft-bleed-top,
  .s-ce.section-soft-bleed-top,
  .s-numbers.section-soft-bleed-top,
  .s-comparison,
  .s-science {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* Closing: WHO DO YOU WANT — two columns side by side, compact type */
  .s-closing .battle-card-inner {
    grid-template-columns: 1fr 1fr !important;
  }
  .s-closing .battle-col--industry {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .s-closing .battle-col {
    padding: 10px 8px;
  }
  .s-closing .battle-label {
    font-size: 7px;
    margin-bottom: 6px;
    letter-spacing: 0.1em;
  }
  .s-closing .battle-col--st .battle-label {
    font-size: 10px;
    margin-bottom: 6px;
  }
  .s-closing .battle-list {
    gap: 4px;
  }
  .s-closing .battle-list li {
    font-size: 9px;
    padding-left: 11px;
    line-height: 1.25;
  }
  .s-closing .battle-list--st li {
    font-size: 9px;
  }
  .s-closing .battle-list li::before {
    width: 4px;
    height: 4px;
    top: 0.45em;
  }

}

/* Nav: stable horizontal inset — var(--gutter) uses % padding, which jitters with scrollbar/viewport; vw/dvw track the viewport instead */
@media (min-width: 900px) {
  nav .nav-inner {
    padding-left: clamp(20px, 2.5vw, 80px);
    padding-right: clamp(20px, 2.5vw, 80px);
  }
  @supports (width: 1dvw) {
    nav .nav-inner {
      padding-left: clamp(20px, 5dvw, 80px);
      padding-right: clamp(20px, 5dvw, 80px);
    }
  }
}

/* Nav: inactive links used rgba() gray vs solid white for .active — reflow shifts label positions; keep color #fff and dim with opacity */
@media (min-width: 900px) {
  .nav-links > li > a:not(.btn-nav) {
    color: #fff;
    opacity: 0.55;
  }
  .nav-links > li > a:not(.btn-nav):hover,
  .nav-links > li > a:not(.btn-nav).active {
    opacity: 1;
  }
  .nav-links > li > a:not(.btn-nav):focus-visible {
    opacity: 1;
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 3px;
  }
}

/* Nav: disable link transitions on desktop so first paint does not interpolate against older .nav-links a { transition: color } rules */
@media (min-width: 900px) {
  nav .nav-links > li > a:not(.btn-nav) {
    transition: none;
  }
}

/* Nav: full brightness when no top-level .active (e.g. home); inner pages keep dimmed siblings + bright .active */
@media (min-width: 900px) {
  .nav-links:not(:has(> li > a.active)) > li > a:not(.btn-nav) {
    opacity: 1;
  }
  .nav-links > li:not(.nav-dropdown) > a:not(.btn-nav) {
    display: inline-flex;
    align-items: center;
  }
}

/* ── TASK 4: Section spacing (mobile-first) ── */
/* Standard: 48px → 56px (640px) → 64px (900px) vertical; horizontal var(--gutter). */
/* Conversion (.s-roi, .s-trial, .s-closing, .s-final): 56px → 64px → 72px. */
/* Earlier .s-* blocks omit vertical padding so these tiers win by source order (no !important). */

.s-counter,
.s-threat,
.s-transition,
.s-ce,
.s-numbers,
.s-comparison,
.s-science,
.s-sector-grid,
.s-battlefield,
.s-protection,
.s-pricing,
.s-pricing-teaser,
.s-industries,
.s-faq,
.s-pricing-full,
.s-cta,
.s-team,
.s-steps,
.s-ind-cta {
  padding: 48px var(--gutter);
}

.s-roi,
.s-trial,
.s-closing,
.s-final {
  padding: 56px var(--gutter);
}

.s-simulator:not(.section-soft-bleed-top) {
  padding: 0 var(--gutter) 48px;
}

.s-origin {
  padding: var(--page-hero-next-pt) var(--gutter) 48px;
}

.s-ind-full {
  padding: var(--page-hero-next-pt) var(--gutter) 48px;
}

.s-calc {
  padding: var(--page-hero-next-pt) var(--gutter) 48px;
}

.s-hero {
  padding: calc(var(--nav-h) + 48px) var(--gutter) 48px;
}

@media (min-width: 640px) {
  .s-counter,
  .s-threat,
  .s-transition,
  .s-ce,
  .s-numbers,
  .s-comparison,
  .s-science,
  .s-sector-grid,
  .s-battlefield,
  .s-protection,
  .s-pricing,
  .s-pricing-teaser,
  .s-industries,
  .s-faq,
  .s-pricing-full,
  .s-cta,
  .s-team,
  .s-steps,
  .s-ind-cta {
    padding: 56px var(--gutter);
  }
  .s-roi,
  .s-trial,
  .s-closing,
  .s-final {
    padding: 64px var(--gutter);
  }
  .s-simulator:not(.section-soft-bleed-top) {
    padding: 0 var(--gutter) 56px;
  }
  .s-origin,
  .s-ind-full,
  .s-calc {
    padding: var(--page-hero-next-pt) var(--gutter) 56px;
  }
  .s-hero {
    padding: calc(var(--nav-h) + 56px) var(--gutter) 56px;
  }
}

@media (min-width: 900px) {
  .s-counter,
  .s-threat,
  .s-transition,
  .s-ce,
  .s-numbers,
  .s-comparison,
  .s-science,
  .s-sector-grid,
  .s-battlefield,
  .s-protection,
  .s-pricing,
  .s-pricing-teaser,
  .s-industries,
  .s-faq,
  .s-pricing-full,
  .s-cta,
  .s-team,
  .s-steps,
  .s-ind-cta {
    padding: 64px var(--gutter);
  }
  .s-roi,
  .s-trial,
  .s-closing,
  .s-final {
    padding: 72px var(--gutter);
  }
  .s-simulator:not(.section-soft-bleed-top) {
    padding: 0 var(--gutter) 64px;
  }
  .s-origin,
  .s-ind-full,
  .s-calc {
    padding: var(--page-hero-next-pt) var(--gutter) 64px;
  }
  .s-hero {
    padding: calc(var(--nav-h) + 64px) var(--gutter) 64px;
  }
}

/* Soft bleed (hero overlap) — extra top padding; wins via two-class specificity over base section rules */
.s-simulator.section-soft-bleed-top {
  padding: calc(80px + 28px) var(--gutter) 48px;
}
@media (min-width: 640px) {
  .s-simulator.section-soft-bleed-top {
    padding: calc(80px + 28px) var(--gutter) 56px;
  }
}
@media (min-width: 900px) {
  .s-simulator.section-soft-bleed-top {
    padding: calc(80px + 28px) var(--gutter) 64px;
  }
}
.s-counter.section-soft-bleed-top,
.s-threat.section-soft-bleed-top,
.s-transition.section-soft-bleed-top,
.s-ce.section-soft-bleed-top,
.s-numbers.section-soft-bleed-top {
  padding: calc(80px + 48px) var(--gutter) 48px;
}
.s-ce.section-soft-bleed-top,
.s-numbers.section-soft-bleed-top {
  background: transparent;
}
@media (min-width: 640px) {
  .s-counter.section-soft-bleed-top,
  .s-threat.section-soft-bleed-top,
  .s-transition.section-soft-bleed-top,
  .s-ce.section-soft-bleed-top,
  .s-numbers.section-soft-bleed-top {
    padding: calc(80px + 56px) var(--gutter) 56px;
  }
}
@media (min-width: 900px) {
  .s-counter.section-soft-bleed-top,
  .s-threat.section-soft-bleed-top,
  .s-transition.section-soft-bleed-top,
  .s-ce.section-soft-bleed-top,
  .s-numbers.section-soft-bleed-top {
    padding: calc(80px + 64px) var(--gutter) 64px;
  }
}
.s-roi.section-soft-bleed-top {
  padding: calc(112px + 56px) var(--gutter) 56px;
  background: transparent;
}
@media (min-width: 640px) {
  .s-roi.section-soft-bleed-top {
    padding: calc(112px + 64px) var(--gutter) 64px;
  }
}
@media (min-width: 900px) {
  .s-roi.section-soft-bleed-top {
    padding: calc(112px + 72px) var(--gutter) 72px;
  }
}

/* Proof page: less air between hero lead and scenario picker */
.proof-page .s-simulator.section-soft-bleed-top {
  padding-top: calc(64px + 16px);
}

.page-hero { padding-bottom: 32px; }
@media (min-width: 640px) {
  .page-hero { padding-bottom: 48px; }
}

/* ── ICON STROKE CONSISTENCY ── */
.threat-icon svg,
.wyg-icon svg,
.re-item svg,
.conf-icon svg,
.dept-icon svg,
.team-avatar svg,
.reg-icon svg,
.ind-card-icon svg,
.kf-icon svg,
.cov-icon svg,
.api-feat-icon svg,
.why-icon svg,
.sci-icon svg {
  stroke-width: 1.6;
}

.btn-primary svg,
.btn-secondary svg,
.btn-primary-lg svg,
.btn-nav svg,
.hero-ctas svg {
  stroke-width: 2;
}

.conf-icon svg,
.v-green svg {
  stroke-width: 2.5;
}

/* ── TASK 5: GRID/CARD MIN-WIDTH BREAKPOINTS ── */
@media (min-width: 640px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .scenario-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid-full { grid-template-columns: 1fr 1fr; }
  .all-plans-groups { grid-template-columns: 1fr 1fr; }
  .all-plans-grid { grid-template-columns: repeat(2, 1fr); }
  .decision-verdict-grid { grid-template-columns: 1fr 1fr; }
  .regulator-strip { flex-direction: row; align-items: center; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .kf-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .num-grid { grid-template-columns: 1fr 1fr; }
  .proof-layout { grid-template-columns: 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .ind-card-full { padding: 24px; }
  .price-card { padding: 24px 20px; }
  .team-card { padding: 24px; }
}

@media (min-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid--three { grid-template-columns: repeat(3, 1fr); }
  .scenario-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .ind-grid-full { grid-template-columns: repeat(3, 1fr); }
  .all-plans-groups { grid-template-columns: repeat(3, 1fr); }
  .all-plans-grid { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .kf-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .num-grid { grid-template-columns: repeat(4, 1fr); }
  .origin-layout { grid-template-columns: 55% 45%; gap: 64px; }
  .proof-layout { grid-template-columns: 1fr 1fr; gap: 24px; }
  .calc-layout { grid-template-columns: 1fr 1fr; gap: 48px; }
  .ind-card-full { padding: 32px; }
  .price-card { padding: 32px 24px; }
  .team-card { padding: 32px; }
}

/* technology.html — Key Features: 4-up row, compact cards; metric beside icon (white) */
@media (min-width: 900px) {
  .s-features .kf-grid {
    gap: 7px;
    margin-bottom: 24px;
  }
  .s-features .kf-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 10px;
    row-gap: 3px;
    padding: 14px 11px;
    align-items: center;
    border-radius: 12px;
  }
  .s-features .kf-icon {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .s-features .kf-icon svg {
    width: 14px;
    height: 14px;
  }
  .s-features .kf-num {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: clamp(17px, 1.35vw, 21px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.1;
    align-self: center;
    justify-self: start;
    min-width: 0;
  }
  .s-features .kf-label {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 0;
    font-size: 12px;
  }
  .s-features .kf-sub {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 11px;
    line-height: 1.35;
  }
}

/* ── TASK 7: Buttons — mobile-first (cascade tail) ── */
.btn-primary,
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  min-height: 44px;
  width: 100%;
  font-family: var(--sans);
  font-size: clamp(14px, 0.2rem + 2.6vw, 17px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.2px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.28);
  transition: box-shadow 0.22s, transform 0.22s;
}
@media (min-width: 640px) {
  .btn-primary,
  .btn-primary-lg {
    width: auto;
    padding: 13px 26px;
  }
}
@media (min-width: 900px) {
  .btn-primary-lg {
    padding: 15px 30px;
  }
}

.btn-secondary,
.btn-secondary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  min-height: 44px;
  width: 100%;
  font-family: var(--sans);
  font-size: clamp(14px, 0.18rem + 2.5vw, 16px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
}
@media (min-width: 640px) {
  .btn-secondary,
  .btn-secondary-lg {
    width: auto;
    padding: 13px 26px;
  }
}
@media (min-width: 900px) {
  .btn-secondary-lg {
    padding: 15px 30px;
  }
}

nav .btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: clamp(14px, 0.22rem + 2.1vw, 16px) !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
nav .nav-links .btn-nav {
  width: 100%;
  text-align: center;
  display: block;
  border-radius: 10px;
  padding: 12px 20px;
  box-sizing: border-box;
  font-size: clamp(14px, 0.28rem + 2.4vw, 16px) !important;
}
@media (min-width: 900px) {
  nav .btn-nav {
    width: auto;
    padding: 10px 18px;
    min-height: 44px;
    font-size: clamp(14px, 0.15rem + 0.9vw, 15px) !important;
  }
  nav .nav-links .btn-nav {
    width: auto;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: clamp(14px, 0.15rem + 0.9vw, 15px) !important;
  }
}

.btn-submit {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: clamp(14px, 0.22rem + 2.4vw, 16px);
  font-weight: 700;
}
@media (min-width: 640px) {
  .btn-submit {
    padding: 16px;
  }
}

.btn-run {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  min-height: 44px;
  width: 100%;
  font-family: var(--sans);
  font-size: clamp(14px, 0.25rem + 2.6vw, 17px);
  font-weight: 700;
  padding: 12px 22px;
  letter-spacing: -0.3px;
}
@media (min-width: 640px) {
  .btn-run {
    width: auto;
    padding: 16px 36px;
  }
}

.btn-phd-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px;
  padding: 12px 20px;
  font-size: clamp(14px, 0.18rem + 2.2vw, 15px);
}

.btn-certainty-audit {
  box-sizing: border-box;
  min-height: 44px;
  padding: 12px 22px;
  font-size: clamp(14px, 0.12rem + 2.4vw, 15px);
}
@media (min-width: 640px) {
  .btn-certainty-audit {
    padding: 16px 28px;
  }
}

.roi-btn {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  height: auto;
  padding: 12px 20px;
  font-size: clamp(14px, 0.2rem + 2.4vw, 16px);
}
@media (min-width: 640px) {
  .roi-btn {
    min-height: 52px;
    padding: 0 20px;
  }
}

.price-btn-pri,
.price-btn-sec {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 20px;
  font-size: clamp(14px, 0.2rem + 2.1vw, 16px);
  line-height: 1.2;
}
@media (min-width: 640px) {
  .price-btn-pri,
  .price-btn-sec {
    min-height: 56px;
    min-width: min(100%, 12rem);
    padding: 0 20px;
  }
}

.price-btn-free {
  box-sizing: border-box;
  min-height: 44px;
  padding: 12px 24px;
  font-size: clamp(14px, 0.2rem + 2.2vw, 16px);
}

.conf-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px;
  padding: 12px 20px;
  font-size: clamp(14px, 0.22rem + 2.4vw, 16px);
}
.conf-btn-primary--lead {
  font-size: clamp(14px, 0.28rem + 2.5vw, 17px);
  padding: 14px 18px;
}

.conf-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px;
  padding: 12px 20px;
  font-size: clamp(14px, 0.18rem + 2vw, 15px);
}

.reassurance {
  display: flex;
  gap: clamp(12px, 3vw, 20px);
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.re-item {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-family: var(--mono);
  font-size: clamp(14px, 0.22rem + 1.6vw, 15px);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3px;
}

.proof-page .cta-strip-right .btn-primary,
.proof-page .cta-strip-right .btn-secondary {
  min-height: 44px;
  padding: 12px 18px;
  font-size: clamp(14px, 0.2rem + 2.2vw, 16px);
  min-width: 0;
}

/* Task 7 cleanup: .btn-primary-lg + meter stack (after TASK 7 tail — overrides display) */
.btn-primary-lg .cta-mono-meter,
.btn-primary-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.3;
  gap: 2px;
}
.btn-primary-lg .cta-mono-meter {
  display: block;
}
@media (min-width: 768px) {
  .btn-primary-lg {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    line-height: normal;
    gap: 8px;
  }
  .btn-primary-lg .cta-mono-meter {
    display: inline;
  }
}

/* ── TASK 8: Typography — mobile-first (cascade tail) ── */

/* Headings */
.s-heading,
.s-heading-center {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--white);
  white-space: normal;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.65;
  margin-bottom: 16px;
}
.s-heading { text-align: left; }
.s-heading-center { text-align: center; }
@media (min-width: 768px) {
  .s-heading,
  .s-heading-center {
    letter-spacing: -0.08em;
    line-height: 1.12;
  }
}
@media (min-width: 1200px) {
  .s-heading,
  .s-heading-center {
    line-height: 1.08;
    letter-spacing: -0.085em;
  }
}

.s-roi .s-heading,
.s-heading--roi {
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1.65;
  white-space: normal;
  text-align: left;
}
@media (min-width: 768px) {
  .s-roi .s-heading,
  .s-heading--roi {
    letter-spacing: -0.09em;
    line-height: 1.1;
  }
}

.s-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.65;
  color: var(--white);
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .s-title {
    line-height: 1.1;
    letter-spacing: -0.06em;
  }
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.65;
  margin-bottom: 0;
  color: var(--white);
}
@media (min-width: 768px) {
  .section-title {
    letter-spacing: -0.07em;
    line-height: 1.1;
  }
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: clamp(11px, 0.25rem + 1.6vw, 13px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .section-eyebrow {
    letter-spacing: 0.2em;
    line-height: 1.4;
  }
}

.s-eyebrow {
  font-family: var(--mono);
  font-size: clamp(11px, 0.22rem + 1.5vw, 12px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  line-height: 1.5;
}

.origin-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 0.4rem + 2.6vw, 1.375rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .origin-pull {
    line-height: 1.5;
    letter-spacing: -0.015em;
  }
}

.origin-body p {
  font-size: clamp(14px, 0.35rem + 2.2vw, 16px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .origin-body p {
    line-height: 1.75;
  }
}

.about-ai-lead {
  font-size: clamp(1rem, 0.45rem + 2.4vw, 1.375rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .about-ai-lead {
    line-height: 1.45;
    letter-spacing: -0.035em;
  }
}

.about-ai-body {
  font-size: clamp(14px, 0.35rem + 2.1vw, 16px);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}
@media (min-width: 768px) {
  .about-ai-body {
    line-height: 1.75;
  }
}

/* Body text */
.page-hero.page-hero--roi .hero-note {
  font-family: var(--mono);
  font-size: clamp(14px, 0.3rem + 2vw, 15px);
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.65;
}

.hero-microline {
  font-family: var(--mono);
  font-size: clamp(14px, 0.28rem + 2vw, 15px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 16px;
  letter-spacing: 0.05em;
  line-height: 1.65;
}

.left-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 0.35rem + 2.2vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  padding-left: 16px;
  border-left: 2px solid rgba(0, 212, 255, 0.3);
  margin: 0;
}
@media (min-width: 768px) {
  .left-quote {
    line-height: 1.55;
  }
}

.wyg-title {
  font-size: clamp(14px, 0.32rem + 2vw, 16px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.45;
}

.wyg-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
}
@media (min-width: 768px) {
  .wyg-desc {
    line-height: 1.5;
  }
}

.ind-card-body {
  font-size: clamp(14px, 0.35rem + 2vw, 16px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.ind-card-stat {
  font-family: var(--mono);
  font-size: clamp(11px, 0.22rem + 1.5vw, 12px);
  font-weight: 700;
  color: rgba(0, 212, 255, 0.7);
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
  line-height: 1.5;
}

.chain-title,
.decision-title {
  font-family: var(--mono);
  font-size: clamp(11px, 0.25rem + 1.5vw, 12px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .chain-title,
  .decision-title {
    letter-spacing: 0.2em;
    line-height: 1.4;
  }
}

.verdict-word {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
}
@media (min-width: 768px) {
  .verdict-word {
    letter-spacing: -0.065em;
    line-height: 1;
  }
}

.verdict-certainty {
  font-family: var(--mono);
  font-size: clamp(13px, 0.28rem + 1.8vw, 14px);
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  line-height: 1.55;
}

/* Section intros — max-width only from min(640px) up */
.s-sub,
.s-sub-center {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  font-size: clamp(14px, 0.35rem + 2.2vw, 17px);
  line-height: 1.65;
}
.s-sub-single {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.65;
  text-align: left;
}
.s-sub-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 640px) {
  .s-sub {
    max-width: min(600px, 100%);
  }
  .s-sub-center {
    max-width: min(580px, 100%);
  }
  .s-sub-single {
    max-width: min(52rem, 100%);
  }
}

.s-numbers-sub {
  font-size: clamp(14px, 0.35rem + 2.2vw, 17px);
  line-height: 1.65;
}

/* Utility / label scale */
.s-label {
  font-size: clamp(11px, 0.25rem + 1.5vw, 12px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .s-label {
    letter-spacing: 0.2em;
    line-height: 1.35;
  }
}

.s-badge {
  font-size: clamp(11px, 0.25rem + 1.5vw, 12px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .s-badge {
    letter-spacing: 0.2em;
    line-height: 1.35;
  }
}

.step-num {
  font-family: var(--mono);
  font-size: clamp(11px, 0.22rem + 1.4vw, 12px);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
  line-height: 1.45;
}

.lc-stage {
  font-family: var(--mono);
  font-size: clamp(11px, 0.22rem + 1.5vw, 12px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.14em;
  line-height: 1.45;
}

.form-hint {
  font-size: clamp(11px, 0.28rem + 1.5vw, 12px);
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  line-height: 1.55;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

.inline-disclaimer {
  font-family: var(--mono);
  font-size: clamp(11px, 0.28rem + 1.6vw, 12px);
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.scenario-label {
  font-family: var(--mono);
  font-size: clamp(11px, 0.22rem + 1.5vw, 12px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.45;
}

.price-volume {
  font-size: clamp(11px, 0.2rem + 1.8vw, 12px);
  line-height: 1.5;
}

.footer-tag {
  font-family: var(--mono);
  font-size: clamp(11px, 0.22rem + 1.4vw, 12px);
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 8px;
  line-height: 1.45;
}

.footer-copy {
  font-family: var(--mono);
  font-size: clamp(11px, 0.25rem + 1.4vw, 12px);
  color: rgba(255, 255, 255, 0.22);
  margin-top: 3px;
  line-height: 1.55;
}

body.page-technology .s-cta .s-subtitle {
  max-width: none;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .btn-primary--hero {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 20px;
    border-radius: 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  .hero-ctas {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .s-counter,
  .s-threat,
  .s-transition,
  .s-ce,
  .s-numbers,
  .s-comparison,
  .s-science,
  .s-sector,
  .s-industries,
  .s-battlefield,
  .s-protection,
  .s-simulator,
  .s-origin,
  .s-team,
  .s-calc,
  .s-ind,
  .s-ind-full,
  .s-ind-cta,
  .s-steps,
  .s-pricing-full,
  .s-faq {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .s-roi,
  .s-trial,
  .s-closing,
  .s-final,
  .s-cta {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .page-hero {
    padding-bottom: 40px !important;
  }
}

@media (max-width: 640px) {

  /* ── STANDARD SECTIONS ── */
  .s-counter,
  .s-threat,
  .s-transition,
  .s-ce,
  .s-numbers,
  .s-comparison,
  .s-science,
  .s-sector,
  .s-sector-grid,
  .s-industries,
  .s-battlefield,
  .s-protection,
  .s-simulator,
  .s-origin,
  .s-team,
  .s-calc,
  .s-ind,
  .s-ind-full,
  .s-ind-cta,
  .s-steps,
  .s-pricing-full,
  .s-faq,
  .s-about,
  .s-tech,
  .s-api {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* ── CONVERSION SECTIONS ── */
  .s-roi,
  .s-trial,
  .s-closing,
  .s-final,
  .s-cta,
  .s-hero {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  /* ── PAGE HERO ── */
  .page-hero {
    padding-bottom: 40px !important;
  }

  /* ── INNER SECTION SPACING ── */
  .s-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* ── BETWEEN-ELEMENT GAPS ── */
  .origin-layout,
  .proof-layout,
  .calc-layout,
  .team-grid,
  .ind-grid-full {
    gap: 24px !important;
  }

  .what-you-get {
    gap: 20px !important;
  }

  .wyg-item {
    gap: 12px !important;
  }
}

/* industries.html — phones only: two compact cards per row */
@media (max-width: 639px) {
  .s-ind-full .ind-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .s-ind-full .ind-card-full {
    padding: 12px 10px;
    gap: 8px;
    border-radius: 12px;
  }
  .s-ind-full .ind-card-header {
    gap: 8px;
    align-items: flex-start;
  }
  .s-ind-full .ind-card-icon {
    width: 32px;
    height: 32px;
  }
  .s-ind-full .ind-card-icon svg {
    width: 16px;
    height: 16px;
  }
  .s-ind-full .ind-card-title {
    font-size: 14px;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }
  .s-ind-full .ind-card-body {
    font-size: 11px;
    line-height: 1.45;
  }
  .s-ind-full .ind-card-risks {
    gap: 4px;
  }
  .s-ind-full .ind-card-risks span {
    font-size: 7px;
    padding: 2px 5px;
    letter-spacing: 0.06em;
  }
  .s-ind-full .ind-card-full .price-btn-sec.ind-card-btn {
    min-height: 40px;
    height: auto;
    padding: 8px 6px;
    font-size: 10px;
    line-height: 1.2;
  }
}

.threat-bridge {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.4) !important;
  margin-top: 4px !important;
  margin-bottom: 24px !important;
  line-height: 1.6 !important;
  font-family: var(--mono) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

@media (max-width: 640px) {
  .science-stats {
    display: none;
  }
}

@media (max-width: 640px) {
  .s-cta h2,
  .s-cta--about-mobile-row h2 {
    font-size: clamp(22px, 6vw, 28px) !important;
  }
}

/* ROI page: ~half the vertical gap between hero and calculator (roi.html) */
@media (max-width: 640px) {
  main:has(.page-hero--roi) .page-hero.page-hero--roi {
    padding-bottom: 20px !important;
  }
  main:has(.page-hero--roi) .s-calc {
    padding-top: 24px !important;
  }
}
@media (min-width: 641px) and (max-width: 899px) {
  main:has(.page-hero--roi) .page-hero.page-hero--roi {
    padding-bottom: 26px;
  }
}
@media (min-width: 900px) {
  main:has(.page-hero--roi) .page-hero.page-hero--roi {
    padding-bottom: 32px;
  }
}
@media (min-width: 641px) {
  main:has(.page-hero--roi) .s-calc {
    padding-top: calc(var(--page-hero-next-pt) / 2);
  }
}
