/* ════════════════════════════════════════════
   ZERO STATE — DESIGN SYSTEM
   Complete CSS for all pages and sections
   ════════════════════════════════════════════ */

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

/* ─── DESIGN TOKENS ─── */
:root {
  --void: #06080d;
  --deep: #0a0e18;
  --surface: #0f1420;
  --surface-light: #161c2e;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text-primary: #e8eaf0;
  --text-secondary: #8891a5;
  --text-muted: #505a70;
  --cyan: #00e5c8;
  --cyan-dim: rgba(0,229,200,0.12);
  --cyan-glow: rgba(0,229,200,0.3);
  --blue: #3d7eff;
  --blue-dim: rgba(61,126,255,0.1);
  --blue-glow: rgba(61,126,255,0.3);
  --purple: #9b7aff;
  --purple-dim: rgba(155,122,255,0.1);
  --gold: #f0c850;
  --gold-dim: rgba(240,200,80,0.1);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --header-height: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

::selection { background: rgba(0,229,200,0.25); }

a { color: var(--cyan); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--blue); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.tm { font-size: 0.65em; vertical-align: super; color: var(--cyan); -webkit-text-fill-color: var(--cyan); }


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.78rem 1.6rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary { background: var(--cyan); color: var(--void); }
.btn-primary:hover {
  background: #00f5d4; color: var(--void);
  box-shadow: 0 0 25px rgba(0,229,200,0.2);
  transform: translateY(-1px);
}

.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border-hover); }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }


/* ─── SECTION SHARED ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-label::before { content: ''; width: 18px; height: 1px; background: var(--cyan); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,200,0.12);
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.tag-dot {
  width: 5px; height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  animation: dotBlink 2s ease-in-out infinite;
}


/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-height);
  background: rgba(6,8,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.site-header.scrolled { background: rgba(6,8,13,0.95); }

.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.site-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--text-primary); }

.logo-img {
  width: 52px; height: 52px; overflow: visible;
  transition: filter 0.3s;
}

.site-logo:hover .logo-img { filter: brightness(1.3) drop-shadow(0 0 6px var(--cyan-glow)); }

.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.05em; }
.logo-text span { color: var(--cyan); }

.nav-list { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-list a {
  font-size: 0.82rem; color: var(--text-secondary);
  padding: 0.45rem 0.7rem; border-radius: 3px;
  transition: color 0.3s; text-decoration: none;
}
.nav-list a:hover { color: var(--text-primary); }
.nav-list .current-menu-item a, .nav-list .current_page_item a, .nav-list a.active { color: var(--cyan); }

.nav-cta {
  font-family: var(--font-mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border-hover) !important;
  margin-left: 0.4rem;
  padding: 0.4rem 0.9rem !important;
}

.nav-cta:hover { border-color: var(--cyan) !important; color: var(--cyan) !important; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-secondary); transition: all 0.3s;
}


/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

.hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
  animation: glowFloat 18s ease-in-out infinite;
}

.hero-glow--cyan { background: var(--cyan); top: 5%; left: 10%; }
.hero-glow--blue { background: var(--blue); bottom: 5%; right: 8%; animation-delay: -6s; }

.hero-video {
  width: 100%; height: auto; display: block;
  mix-blend-mode: screen;
  background: transparent;
}

.hero-container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: center;
}

.hero-content { max-width: 560px; }

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s ease both 0.35s;
}

.hero-subtext {
  font-size: 1.02rem; color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 1.75rem;
  animation: fadeUp 0.6s ease both 0.5s;
}

.hero-ctas { display: flex; gap: 0.7rem; animation: fadeUp 0.6s ease both 0.65s; }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1.2s ease both 0.6s;
  background: transparent;
}


/* ═══════════════════════════════════════
   METRICS SECTION
   ═══════════════════════════════════════ */
.metrics-section {
  padding: 4rem 0; background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metrics-header {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.75rem;
}

.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.metric-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem; text-align: center;
  position: relative; overflow: visible;
  transition: all 0.4s ease; cursor: default;
}

.metric-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; opacity: 0.8; transition: opacity 0.3s;
}

.metric-card:nth-child(1)::before { background: linear-gradient(90deg, var(--cyan), transparent); }
.metric-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.metric-card:nth-child(3)::before { background: linear-gradient(90deg, var(--purple), var(--cyan)); }

.metric-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 0.6rem;
  transition: text-shadow 0.3s; white-space: nowrap;
}

.metric-card:nth-child(1) .metric-value { color: var(--cyan); }
.metric-card:nth-child(2) .metric-value { color: var(--blue); }
.metric-card:nth-child(3) .metric-value { color: var(--purple); }

.metric-card:nth-child(1):hover .metric-value { text-shadow: 0 0 30px rgba(0,229,200,0.3); }
.metric-card:nth-child(2):hover .metric-value { text-shadow: 0 0 30px rgba(61,126,255,0.3); }
.metric-card:nth-child(3):hover .metric-value { text-shadow: 0 0 30px rgba(155,122,255,0.3); }

.metric-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.metric-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; max-width: 260px; margin: 0 auto; }


/* ═══════════════════════════════════════
   STRATEGIC PARTNERSHIPS BAR (Homepage)
   ═══════════════════════════════════════ */
.partners-bar { padding: 2.5rem 0; border-bottom: 1px solid var(--border); background: var(--deep); }
.partners-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-primary); text-align: center; margin-bottom: 1.25rem; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.partner-logo { height: 90px; width: auto; object-fit: contain; opacity: 0.7; filter: grayscale(0.3); transition: opacity 0.3s, filter 0.3s; }
.partner-logo:hover { opacity: 1; filter: grayscale(0); }


/* ═══════════════════════════════════════
   DIFFERENTIATOR STRIP
   ═══════════════════════════════════════ */
.differentiator-section { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }

.differentiator-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-radius: 6px; overflow: hidden;
}

.differentiator-item {
  padding: 2rem 1.5rem; background: var(--surface);
  text-align: center; transition: all 0.4s ease;
  cursor: default; position: relative;
}

.differentiator-item:hover { background: var(--surface-light); }

.differentiator-item::after {
  content: ''; position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px; opacity: 0; transition: opacity 0.4s;
}

.differentiator-item:nth-child(1)::after { background: var(--cyan); }
.differentiator-item:nth-child(2)::after { background: var(--blue); }
.differentiator-item:nth-child(3)::after { background: var(--purple); }
.differentiator-item:hover::after { opacity: 0.6; }

.diff-text {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-secondary); letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 2;
}

.diff-emphasis { font-weight: 500; }
.differentiator-item:nth-child(1) .diff-emphasis { color: var(--cyan); }
.differentiator-item:nth-child(2) .diff-emphasis { color: var(--blue); }
.differentiator-item:nth-child(3) .diff-emphasis { color: var(--purple); }


/* ═══════════════════════════════════════
   PLATFORM CAPABILITIES
   ═══════════════════════════════════════ */
.capabilities-section { padding: 5rem 0; }

.capabilities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}

.capability-item {
  display: flex; gap: 1.1rem;
  padding: 2rem 1.75rem; background: var(--surface);
  transition: all 0.35s ease; cursor: default;
}

.capability-item:hover { background: var(--surface-light); }

.cap-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; transition: all 0.3s;
}

.cap-icon svg { width: 24px; height: 24px; }

.capability-item:nth-child(1) .cap-icon { background: var(--cyan-dim); }
.capability-item:nth-child(1) .cap-icon svg { stroke: var(--cyan); fill: none; }
.capability-item:nth-child(2) .cap-icon { background: var(--blue-dim); }
.capability-item:nth-child(2) .cap-icon svg { stroke: var(--blue); fill: none; }
.capability-item:nth-child(3) .cap-icon { background: var(--cyan-dim); }
.capability-item:nth-child(3) .cap-icon svg { stroke: var(--cyan); fill: none; }
.capability-item:nth-child(4) .cap-icon { background: var(--blue-dim); }
.capability-item:nth-child(4) .cap-icon svg { stroke: var(--blue); fill: none; }
.capability-item:nth-child(5) .cap-icon { background: var(--purple-dim); }
.capability-item:nth-child(5) .cap-icon svg { stroke: var(--purple); fill: none; }
.capability-item:nth-child(6) .cap-icon { background: var(--purple-dim); }
.capability-item:nth-child(6) .cap-icon svg { stroke: var(--purple); fill: none; }

.capability-item:hover .cap-icon { transform: scale(1.08); }
.cap-content { flex: 1; }
.cap-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.cap-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }


/* ═══════════════════════════════════════
   APPLICATIONS TIMELINE
   ═══════════════════════════════════════ */
.applications-section { padding: 5rem 0; background: var(--deep); }

.timeline { position: relative; padding-left: 3.5rem; }

.timeline::before {
  content: ''; position: absolute; left: 12px; top: 10px; bottom: 30px;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), var(--blue), var(--purple), var(--gold));
}

.timeline-item {
  position: relative; padding-bottom: 2.75rem;
  cursor: default; transition: transform 0.3s;
}

.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:hover { transform: translateX(6px); }

.timeline-dot {
  position: absolute; left: -3.5rem; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid; transition: all 0.3s;
}

.timeline-item:hover .timeline-dot { transform: scale(1.3); }

.timeline-item[data-color="cyan"] .timeline-dot  { border-color: var(--cyan);   background: var(--cyan-dim);   box-shadow: 0 0 10px var(--cyan-glow); }
.timeline-item[data-color="blue"] .timeline-dot  { border-color: var(--blue);   background: var(--blue-dim);   box-shadow: 0 0 10px var(--blue-glow); }
.timeline-item[data-color="purple"] .timeline-dot { border-color: var(--purple); background: var(--purple-dim); box-shadow: 0 0 10px rgba(155,122,255,0.3); }
.timeline-item[data-color="gold"] .timeline-dot  { border-color: var(--gold);   background: var(--gold-dim);   box-shadow: 0 0 10px rgba(240,200,80,0.3); }

.timeline-label {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.3rem; display: block;
}

.timeline-item[data-color="cyan"] .timeline-label  { color: var(--cyan); }
.timeline-item[data-color="blue"] .timeline-label  { color: var(--blue); }
.timeline-item[data-color="purple"] .timeline-label { color: var(--purple); }
.timeline-item[data-color="gold"] .timeline-label  { color: var(--gold); }

.timeline-title { font-size: 1.2rem; margin-bottom: 0.45rem; }
.timeline-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; max-width: 540px; }


/* ═══════════════════════════════════════
   AI & QUANTUM SECURITY
   ═══════════════════════════════════════ */
.quantum-security-section { padding: 5rem 0; position: relative; overflow: hidden; }

.qs-bg { position: absolute; inset: 0; pointer-events: none; }
.qs-bg-glow {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; filter: blur(150px); opacity: 0.06;
  background: var(--purple); top: -20%; right: 10%;
  animation: glowFloat 20s ease-in-out infinite;
}

.qs-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; position: relative; z-index: 1; }

.qs-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 2.25rem 2rem;
  position: relative; overflow: hidden; transition: all 0.4s ease;
}

.qs-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.qs-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; opacity: 0.8; }
.qs-card--quantum::before { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.qs-card--post-quantum::before { background: linear-gradient(90deg, var(--purple), var(--cyan)); }
.qs-card:hover::before { opacity: 1; }

.qs-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; margin-bottom: 1.25rem; transition: transform 0.3s;
}

.qs-card:hover .qs-card-icon { transform: scale(1.08); }

.qs-card--quantum .qs-card-icon { background: var(--blue-dim); }
.qs-card--quantum .qs-card-icon svg { stroke: var(--blue); fill: none; }
.qs-card--post-quantum .qs-card-icon { background: var(--purple-dim); }
.qs-card--post-quantum .qs-card-icon svg { stroke: var(--purple); fill: none; }

.qs-badge {
  display: inline-flex; font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.5rem; border-radius: 3px; margin-bottom: 0.8rem;
}

.qs-card--quantum .qs-badge { color: var(--blue); background: var(--blue-dim); border: 1px solid rgba(61,126,255,0.15); }
.qs-card--post-quantum .qs-badge { color: var(--purple); background: var(--purple-dim); border: 1px solid rgba(155,122,255,0.15); }

.qs-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.qs-card-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }

.qs-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.qs-feature { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.qs-feature-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.qs-card--quantum .qs-feature-dot { background: var(--blue); }
.qs-card--post-quantum .qs-feature-dot { background: var(--purple); }
.qs-card:hover .qs-feature { color: var(--text-secondary); }


/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  padding: 6rem 0; position: relative; overflow: hidden;
  text-align: center; background: var(--deep);
  border-top: 1px solid var(--border);
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow { position: absolute; border-radius: 50%; filter: blur(130px); }
.cta-glow--1 { background: var(--cyan); width: 450px; height: 450px; top: -30%; left: 15%; opacity: 0.1; animation: glowFloat 16s ease-in-out infinite; }
.cta-glow--2 { background: var(--blue); width: 450px; height: 450px; bottom: -30%; right: 15%; opacity: 0.1; animation: glowFloat 16s ease-in-out infinite 5s; }
.cta-glow--3 { background: var(--purple); width: 300px; height: 300px; top: 20%; right: 25%; opacity: 0.06; animation: glowFloat 20s ease-in-out infinite 10s; }

.cta-content { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.6rem; color: var(--cyan); letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.8rem; background: var(--cyan-dim); border: 1px solid rgba(0,229,200,0.12); border-radius: 3px; margin-bottom: 1.5rem; }
.cta-eyebrow-dot { width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; animation: dotBlink 2s ease-in-out infinite; }
.cta-headline { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.85rem; line-height: 1.15; }
.cta-subtext { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.98rem; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 0.75rem; }


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer { border-top: 1px solid var(--border); padding: 1.15rem 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-left { display: flex; align-items: center; gap: 1.5rem; }
.footer-copyright, .footer-links a, .footer-status { font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 1rem; }
.footer-links a { text-decoration: none; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--cyan); }
.footer-status { display: flex; align-items: center; gap: 0.45rem; }
.status-dot { width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; animation: dotBlink 2s ease-in-out infinite; }


/* ═══════════════════════════════════════
   PAGE HERO (INNER PAGES)
   ═══════════════════════════════════════ */
.page-hero {
  min-height: auto; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: calc(var(--header-height) + 3rem) 0 2.5rem;
}

.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 80%);
}

.page-hero-glow {
  position: absolute; width: 450px; height: 450px; border-radius: 50%;
  filter: blur(130px); opacity: 0.1; background: var(--cyan);
  top: -10%; right: 20%; animation: glowFloat 18s ease-in-out infinite;
}

.page-hero .container { position: relative; z-index: 1; max-width: 900px; }
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
.page-hero-tagline { font-family: var(--font-mono); font-size: 0.75rem; color: var(--cyan); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.page-hero-subtext { font-size: 1.02rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.75rem; }


/* ═══════════════════════════════════════
   ABOUT PAGE SECTIONS
   ═══════════════════════════════════════ */
.mission-section { padding: 5rem 0; border-top: 1px solid var(--border); }
.mission-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 3rem; align-items: start; }
.mission-statement .display-text { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; line-height: 1.5; }

.mission-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.fact-item { padding: 1.25rem 1rem; background: var(--surface); text-align: center; transition: background 0.3s; }
.fact-item:hover { background: var(--surface-light); }
.fact-value { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--cyan); margin-bottom: 0.2rem; }
.fact-label { font-family: var(--font-mono); font-size: 0.58rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

.why-section { padding: 5rem 0; background: var(--deep); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.why-item { padding: 2rem 1.5rem; background: var(--surface); transition: background 0.3s; }
.why-item:hover { background: var(--surface-light); }
.why-item--highlight { background: var(--surface-light); border-left: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.why-item h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.why-item--highlight h3 { color: var(--cyan); }
.why-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

.partnerships-section { padding: 5rem 0; border-top: 1px solid var(--border); }
.partnerships-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.partnership-card { display: grid; grid-template-columns: 160px 1fr; gap: 2rem; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; transition: all 0.35s; cursor: default; }
.partnership-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.partnership-logo { display: flex; align-items: center; justify-content: center; }
.partnership-logo img { max-width: 140px; max-height: 80px; object-fit: contain; opacity: 0.85; filter: grayscale(0.2); transition: opacity 0.3s, filter 0.3s; }
.partnership-card:hover .partnership-logo img { opacity: 1; filter: grayscale(0); }
.partnership-info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.partnership-info p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

.team-section { padding: 5rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.team-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 2rem 1.5rem; text-align: center; transition: all 0.35s; cursor: default; }
.team-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--surface-light); border: 2px solid var(--border); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-muted); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card:nth-child(3n+1) .team-avatar { border-color: var(--cyan); color: var(--cyan); }
.team-card:nth-child(3n+2) .team-avatar { border-color: var(--blue); color: var(--blue); }
.team-card:nth-child(3n+3) .team-avatar { border-color: var(--purple); color: var(--purple); }
.team-name { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-role { font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; display: block; }
.team-bio { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.team-linkedin { display: inline-flex; align-items: center; gap: 0.3rem; font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 0.75rem; text-decoration: none; transition: color 0.3s; }
.team-linkedin:hover { color: var(--cyan); }

.milestones-section { padding: 5rem 0; background: var(--deep); }
.milestones-track { position: relative; padding-left: 3.5rem; }
.milestones-track::before { content: ''; position: absolute; left: 12px; top: 10px; bottom: 30px; width: 1px; background: linear-gradient(to bottom, var(--cyan), var(--blue), var(--purple)); }
.milestone-item { position: relative; padding-bottom: 2.5rem; cursor: default; transition: transform 0.3s; }
.milestone-item:last-child { padding-bottom: 0; }
.milestone-item:hover { transform: translateX(6px); }
.milestone-dot { position: absolute; left: -3.5rem; top: 4px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--cyan); background: var(--cyan-dim); box-shadow: 0 0 10px var(--cyan-glow); transition: transform 0.3s; }
.milestone-item:nth-child(2) .milestone-dot { border-color: var(--blue); background: var(--blue-dim); box-shadow: 0 0 10px rgba(61,126,255,0.3); }
.milestone-item:nth-child(3) .milestone-dot { border-color: var(--purple); background: var(--purple-dim); box-shadow: 0 0 10px rgba(155,122,255,0.3); }
.milestone-item:hover .milestone-dot { transform: scale(1.3); }
.milestone-year { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 0.25rem; color: var(--cyan); }
.milestone-item:nth-child(2) .milestone-year { color: var(--blue); }
.milestone-item:nth-child(3) .milestone-year { color: var(--purple); }
.milestone-title { font-size: 1.1rem; margin-bottom: 0.35rem; }
.milestone-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; max-width: 500px; }


/* ═══════════════════════════════════════
   FOOD VECTOR PAGE SECTIONS
   ═══════════════════════════════════════ */
.pipeline-section { padding: 5rem 0; border-top: 1px solid var(--border); }
.pipeline-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.pipeline-steps::before { content: ''; position: absolute; top: 56px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple), var(--gold)); z-index: 0; }
.pipeline-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; transition: transform 0.3s; cursor: default; }
.pipeline-step:hover { transform: translateY(-4px); }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; transition: all 0.3s; }
.pipeline-step:nth-child(1) .step-number { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(0,229,200,0.2); }
.pipeline-step:nth-child(2) .step-number { background: var(--blue-dim); color: var(--blue); border: 1px solid rgba(61,126,255,0.2); }
.pipeline-step:nth-child(3) .step-number { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(155,122,255,0.2); }
.pipeline-step:nth-child(4) .step-number { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(240,200,80,0.2); }
.pipeline-step h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.pipeline-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.pipeline-step:hover p { color: var(--text-secondary); }

.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.cap-card { padding: 2rem 1.5rem; background: var(--surface); transition: background 0.35s; cursor: default; }
.cap-card:hover { background: var(--surface-light); }
.cap-card-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; margin-bottom: 1rem; transition: transform 0.3s; }
.cap-card:hover .cap-card-icon { transform: scale(1.08); }
.cap-card:nth-child(1) .cap-card-icon { background: var(--cyan-dim); }
.cap-card:nth-child(1) .cap-card-icon svg { stroke: var(--cyan); fill: none; }
.cap-card:nth-child(2) .cap-card-icon { background: var(--blue-dim); }
.cap-card:nth-child(2) .cap-card-icon svg { stroke: var(--blue); fill: none; }
.cap-card:nth-child(3) .cap-card-icon { background: var(--purple-dim); }
.cap-card:nth-child(3) .cap-card-icon svg { stroke: var(--purple); fill: none; }
.cap-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.cap-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.cap-card:hover p { color: var(--text-secondary); }

.case-study-section { padding: 5rem 0; }
.case-study { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem 2.25rem; position: relative; overflow: hidden; }
.case-study::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple)); }
.case-study-title { font-size: 1.35rem; margin-bottom: 1.75rem; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: 6px; overflow: hidden; }
.case-block { padding: 1.5rem 1.25rem; background: var(--deep); transition: background 0.3s; }
.case-block:hover { background: var(--surface-light); }
.case-block h4 { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.6rem; }
.case-block:nth-child(1) h4 { color: var(--cyan); }
.case-block:nth-child(2) h4 { color: var(--blue); }
.case-block:nth-child(3) h4 { color: var(--purple); }
.case-block p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* Dual Application Platform */
.dual-app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.dual-app-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 2rem 1.75rem; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.dual-app-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.dual-app-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.dual-app-card:nth-child(1)::before { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.dual-app-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.dual-app-card-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 1.25rem; }
.dual-app-card:nth-child(1) .dual-app-card-title { color: var(--cyan); }
.dual-app-card:nth-child(2) .dual-app-card-title { color: var(--blue); }
.dual-app-features { list-style: none; padding: 0; margin: 0; }
.dual-app-features li { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; padding: 0.5rem 0; padding-left: 1.25rem; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dual-app-features li:last-child { border-bottom: none; }
.dual-app-features li::before { content: ''; position: absolute; left: 0; top: 0.95rem; width: 6px; height: 6px; border-radius: 50%; }
.dual-app-card:nth-child(1) .dual-app-features li::before { background: var(--cyan); }
.dual-app-card:nth-child(2) .dual-app-features li::before { background: var(--blue); }

.specs-section { padding: 5rem 0; background: var(--deep); }
.specs-table { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.spec-row { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid var(--border); transition: background 0.3s; }
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: var(--surface-light); }
.spec-key { font-family: var(--font-mono); font-size: 0.7rem; color: var(--cyan); letter-spacing: 0.06em; padding: 0.9rem 1.25rem; background: var(--surface); border-right: 1px solid var(--border); display: flex; align-items: center; }
.spec-value { font-size: 0.85rem; color: var(--text-secondary); padding: 0.9rem 1.25rem; background: var(--surface); display: flex; align-items: center; }


/* ═══════════════════════════════════════
   RESEARCH PAGE
   ═══════════════════════════════════════ */
.research-section { padding: 3rem 0; }
.research-section--flush { padding-top: 1rem; }
.page-hero + .research-section { padding-top: 1.5rem; }
.page-hero + .team-section { padding-top: 1.5rem; }

.research-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }

.research-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1rem; }

.research-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.research-quote p {
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
}

.research-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

/* Gap cards */
.research-gaps-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.gap-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.3s;
}
.gap-card--cyan { background: rgba(0,229,200,0.04); border: 1px solid rgba(0,229,200,0.1); }
.gap-card--purple { background: rgba(155,122,255,0.04); border: 1px solid rgba(155,122,255,0.1); }
.gap-card--gold { background: rgba(240,200,80,0.04); border: 1px solid rgba(240,200,80,0.1); }
.gap-card:hover { border-color: rgba(255,255,255,0.15); }
.gap-number { font-size: 1.5rem; font-weight: 700; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.gap-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.3rem; }
.gap-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }

/* Disease table */
.research-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.research-table { width: 100%; border-collapse: collapse; }
.research-table thead tr { border-bottom: 1px solid var(--border); }
.research-table th {
  text-align: left;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.research-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.3s; }
.research-table tbody tr:last-child { border-bottom: none; }
.research-table tbody tr:hover { background: var(--surface-light); }
.research-table td { padding: 0.85rem 1.25rem; font-size: 0.85rem; color: var(--text-secondary); }
.disease-name { font-weight: 600; color: var(--text-primary); }
.protein-name { color: var(--cyan); }
.status-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.status-badge--amber { color: #f0c850; background: rgba(240,200,80,0.1); }
.status-badge--red { color: #ff5c5c; background: rgba(255,92,92,0.1); }

.research-table-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* Divider */
.research-divider {
  height: 1px;
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(0,229,200,0.25), rgba(155,122,255,0.25), transparent);
}

/* Callout */
.research-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  border-radius: 8px;
}
.research-callout--gold {
  background: rgba(240,200,80,0.04);
  border: 1px solid rgba(240,200,80,0.12);
}
.research-callout-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.research-callout--gold .research-callout-icon { background: rgba(240,200,80,0.1); border: 1px solid rgba(240,200,80,0.2); }
.research-callout--gold .research-callout-icon svg { stroke: var(--gold); fill: none; }
.research-callout h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.35rem; }
.research-callout p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* Validation */
.research-validation {
  max-width: 700px;
  margin: 2rem auto 0;
}
.research-validation h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.research-validation > p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.research-outcomes { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }
.outcome-card {
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.outcome-card--cyan { background: rgba(0,229,200,0.04); border: 1px solid rgba(0,229,200,0.1); }
.outcome-card--purple { background: rgba(155,122,255,0.04); border: 1px solid rgba(155,122,255,0.1); }
.outcome-card h4 { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.2rem; }
.outcome-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }

.research-findings { display: flex; flex-direction: column; gap: 0.65rem; }
.finding-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.finding-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.finding-item--cyan::before { background: var(--cyan); }
.finding-item--purple::before { background: var(--purple); }

/* Reversal callout */
.research-reversal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.research-reversal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(240,200,80,0.4), transparent);
}
.research-reversal h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.research-reversal p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.research-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

/* Target cards */
.research-targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.target-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.target-card:hover { transform: translateY(-3px); }
.target-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.target-card--cyan { border-color: rgba(0,229,200,0.08); }
.target-card--cyan:hover { border-color: rgba(0,229,200,0.25); }
.target-card--cyan::before { background: linear-gradient(90deg, rgba(0,229,200,0.4), transparent); }
.target-card--purple { border-color: rgba(155,122,255,0.08); }
.target-card--purple:hover { border-color: rgba(155,122,255,0.25); }
.target-card--purple::before { background: linear-gradient(90deg, rgba(155,122,255,0.4), transparent); }
.target-card--gold { border-color: rgba(240,200,80,0.08); }
.target-card--gold:hover { border-color: rgba(240,200,80,0.25); }
.target-card--gold::before { background: linear-gradient(90deg, rgba(240,200,80,0.4), transparent); }

.target-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.target-card--cyan .target-icon { background: var(--cyan-dim); border: 1px solid rgba(0,229,200,0.15); }
.target-card--cyan .target-icon span { color: var(--cyan); font-weight: 700; font-size: 1rem; }
.target-card--purple .target-icon { background: var(--purple-dim); border: 1px solid rgba(155,122,255,0.15); }
.target-card--purple .target-icon span { color: var(--purple); font-weight: 700; font-size: 1rem; }
.target-card--gold .target-icon { background: var(--gold-dim); border: 1px solid rgba(240,200,80,0.15); }
.target-card--gold .target-icon span { color: var(--gold); font-weight: 700; font-size: 1rem; }

.target-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.15rem; }
.target-disease {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.target-card > p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Status line */
.research-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.research-status .status-dot { width: 8px; height: 8px; flex-shrink: 0; }
.research-status p { font-size: 0.88rem; color: var(--text-secondary); }


/* ═══════════════════════════════════════
   BRIEFING MODAL
   ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(6,8,13,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 1.5rem;
}
.modal-overlay.is-active { opacity: 1; visibility: visible; }

.modal {
  background: var(--surface); border: 1px solid var(--border-hover);
  border-radius: 12px; width: 100%; max-width: 480px;
  position: relative; overflow: hidden;
  transform: translateY(20px) scale(0.97); transition: transform 0.35s ease;
}
.modal-overlay.is-active .modal { transform: translateY(0) scale(1); }
.modal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple)); }

.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  width: 32px; height: 32px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all 0.3s; z-index: 2;
}
.modal-close:hover { color: var(--text-primary); border-color: var(--border-hover); background: var(--surface-light); }

.modal-body { padding: 2.5rem 2rem 0.5rem; }

.modal-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--cyan-dim);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.modal-icon svg { stroke: var(--cyan); fill: none; }

.modal-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 0.35rem; }
.modal-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.15rem; }
.form-label { display: block; font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.form-label .required { color: var(--cyan); margin-left: 2px; }

.form-input, .form-textarea {
  width: 100%; padding: 0.7rem 0.9rem; background: var(--deep);
  border: 1px solid var(--border); border-radius: 6px; color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.88rem;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,229,200,0.1); }
.form-input.is-error, .form-textarea.is-error { border-color: #ff5c5c; box-shadow: 0 0 0 3px rgba(255,92,92,0.1); }
.form-error { font-size: 0.72rem; color: #ff5c5c; margin-top: 0.3rem; display: none; }
.form-input.is-error + .form-error, .form-textarea.is-error + .form-error { display: block; }

.form-footer { padding: 0.5rem 2rem 2rem; }

.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.85rem 1.6rem; border: none; border-radius: 6px;
  background: var(--cyan); color: var(--void); cursor: pointer; transition: all 0.3s; line-height: 1;
}
.btn-submit:hover { background: #00f5d4; box-shadow: 0 0 25px rgba(0,229,200,0.2); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-submit .spinner { width: 14px; height: 14px; border: 2px solid rgba(6,8,13,0.3); border-top-color: var(--void); border-radius: 50%; animation: spin 0.6s linear infinite; display: none; }
.btn-submit.is-loading .spinner { display: block; }
.btn-submit.is-loading .btn-text { opacity: 0.6; }

.form-privacy { text-align: center; margin-top: 0.85rem; font-size: 0.68rem; color: var(--text-muted); }
.form-privacy a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.form-privacy a:hover { color: var(--cyan); }

.modal-success { display: none; text-align: center; padding: 3rem 2rem; }
.modal-success.is-visible { display: block; }

.success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--cyan-dim);
  border: 2px solid rgba(0,229,200,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; animation: successPop 0.4s ease;
}
.success-icon svg { stroke: var(--cyan); fill: none; }
.success-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 0.5rem; }
.success-message { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }

.success-close {
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted);
  background: none; border: 1px solid var(--border); padding: 0.55rem 1.2rem;
  border-radius: 3px; cursor: pointer; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.3s;
}
.success-close:hover { color: var(--cyan); border-color: var(--cyan); }

/* ═══════════════════════════════════════
   LEGAL MODALS (Privacy, Terms, Patents)
   ═══════════════════════════════════════ */
.legal-modal {
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.legal-modal-body {
  padding: 2.5rem 2.5rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.legal-modal-body::-webkit-scrollbar { width: 6px; }
.legal-modal-body::-webkit-scrollbar-track { background: transparent; }
.legal-modal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.legal-modal-body::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

.legal-modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.legal-effective {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.legal-modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}
.legal-modal-body h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-modal-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.legal-modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.legal-modal-body ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}
.legal-modal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.5;
}
.legal-modal-body a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,229,200,0.3);
  transition: border-color 0.3s;
}
.legal-modal-body a:hover {
  border-color: var(--cyan);
}
.legal-modal-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Patent Cards */
.patent-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.patent-card {
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  transition: border-color 0.3s;
}
.patent-card:hover { border-color: var(--cyan); }
.patent-number {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.patent-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0.5rem 0;
  text-transform: none;
  letter-spacing: 0;
}
.patent-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.patent-notice {
  background: var(--deep);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.patent-notice h3 {
  margin-top: 0 !important;
  font-size: 0.9rem !important;
}


/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes glowFloat { 0%, 100% { transform: translate(0,0) scale(1); } 25% { transform: translate(25px,-18px) scale(1.04); } 50% { transform: translate(-12px,22px) scale(0.96); } 75% { transform: translate(-20px,-12px) scale(1.02); } }
@keyframes dotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes successPop { 0% { transform: scale(0.5); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }

.animate-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-visual { max-width: 100%; }
}

@media (max-width: 900px) {
  .nav-list {
    display: none;
    position: fixed; top: var(--header-height); left: 0; right: 0;
    flex-direction: column; padding: 1.5rem 2rem;
    background: rgba(6,8,13,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); z-index: 999;
  }
  .nav-list.is-open { display: flex; }
  .mobile-toggle { display: flex; }
  .metrics-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .differentiator-grid { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .qs-layout { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item--highlight { border-left: none; border-right: none; border-top: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); }
  .partnership-card { grid-template-columns: 1fr; text-align: center; gap: 1.25rem; }
  .partnership-logo { justify-content: center; }
  .partners-logos { gap: 2rem; }
  .partner-logo { height: 70px; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pipeline-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .pipeline-steps::before { display: none; }
  .cap-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .dual-app-grid { grid-template-columns: 1fr; }
  .research-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .research-targets-grid { grid-template-columns: 1fr; max-width: 480px; margin: 2rem auto 0; }
}

@media (max-width: 600px) {
  .hero-ctas, .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  .hero-video { max-height: 300px; }
  .metric-value { font-size: 2rem; }
  .capability-item { padding: 1.5rem 1.25rem; gap: 0.8rem; }
  .timeline { padding-left: 2.5rem; }
  .timeline-dot { left: -2.5rem; }
  .pipeline-steps { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; }
  .spec-key { border-right: none; border-bottom: 1px solid var(--border); }
  .milestones-track { padding-left: 2.5rem; }
  .milestone-dot { left: -2.5rem; }
  .partners-logos { flex-direction: column; gap: 1.5rem; }
  .partner-logo { height: 60px; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-left { flex-direction: column; gap: 0.4rem; }
  .legal-modal-body { padding: 2rem 1.5rem 1.5rem; }
  .legal-modal-title { font-size: 1.3rem; }
  .patent-cards { grid-template-columns: 1fr; }
  .research-table { font-size: 0.78rem; }
  .research-table th, .research-table td { padding: 0.65rem 0.75rem; }
  .research-reversal { padding: 2rem 1.5rem; }
  .research-callout { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .animate-on-scroll { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════
   V3 GLOBAL OVERRIDES
   White text, larger fonts, tighter spacing,
   cyan-underlined section labels
   ═══════════════════════════════════════ */

/* ── Section Labels: cyan underline, larger ── */
.section-label {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cyan);
  display: inline-block;
  margin-bottom: 1rem;
}
.section-label::before { display: none; }

/* ── Section Subtitle: white, larger, full-width ── */
.section-subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.75;
  max-width: 100%;
}

/* ── Hero: white subtext, larger ── */
.hero-subtext {
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.7;
}

/* ── Page Hero (inner pages): white subtext ── */
.page-hero-subtext {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.7;
}

/* ── Timeline: larger labels, white descriptions ── */
.timeline-label {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  padding: 0.45rem 1.2rem;
}
.timeline-title {
  font-size: 1.35rem;
}
.timeline-desc {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.7;
  max-width: 100%;
}

/* ── CTA: white subtext, larger, full-width ── */
.cta-subtext {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.7;
}
.cta-content {
  max-width: 100%;
}

/* ── Capabilities (cards): white text ── */
.cap-desc {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.7;
}

/* ── AI & Quantum Security cards: white text ── */
.qs-card-desc {
  font-size: 1rem;
  color: #ffffff;
  max-width: 100%;
}
.qs-feature {
  font-size: 0.92rem;
  color: #ffffff;
}

/* ── About Page: white text ── */
.team-bio {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.7;
}
.partnership-info p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.7;
}
.milestone-desc {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.7;
  max-width: 100%;
}
.why-item p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.7;
}
.mission-statement .display-text {
  color: #ffffff;
}

/* ── Food Vector Page: white text ── */
.pipeline-step p {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.65;
}
.pipeline-step:hover p {
  color: #ffffff;
}
.cap-card p {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.7;
}
.cap-card:hover p {
  color: #ffffff;
}
.case-block p {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.7;
}
.dual-app-features li {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.7;
}
.spec-value {
  color: #ffffff;
}

/* ── Research Page: white text ── */
.research-text {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.75;
}
.research-subtitle {
  font-size: 1.05rem;
  color: #ffffff;
  max-width: 100%;
}
.gap-card p {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.7;
}
.research-table td {
  color: #ffffff;
}
.outcome-card p {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.7;
}
.finding-item {
  font-size: 0.92rem;
  color: #ffffff;
}
.target-card > p {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.7;
}
.research-callout p {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.7;
}
.research-reversal p {
  font-size: 0.98rem;
  color: #ffffff;
}
.research-note {
  color: #ffffff;
}
.research-status p {
  color: #ffffff;
}
.research-table-note {
  color: #ffffff;
}
.research-validation > p {
  color: #ffffff;
}

/* ── Tighter Section Padding ── */
.capabilities-section { padding: 3rem 0; }
.applications-section { padding: 3rem 0; }
.quantum-security-section { padding: 3rem 0; }
.cta-section { padding: 3.5rem 0; }
.partners-bar { padding: 1.5rem 0; }
.mission-section { padding: 3rem 0; }
.why-section { padding: 3rem 0; }
.partnerships-section { padding: 3rem 0; }
.team-section { padding: 3rem 0; }
.milestones-section { padding: 3rem 0; }
.pipeline-section { padding: 3rem 0; }
.case-study-section { padding: 3rem 0; }
.specs-section { padding: 3rem 0; }

/* ── V3 Responsive ── */
@media (max-width: 768px) {
  .capabilities-section { padding: 2rem 0; }
  .applications-section { padding: 2rem 0; }
  .quantum-security-section { padding: 2rem 0; }
  .cta-section { padding: 2.5rem 0; }
  .partners-bar { padding: 1rem 0; }
  .mission-section { padding: 2rem 0; }
  .why-section { padding: 2rem 0; }
  .partnerships-section { padding: 2rem 0; }
  .team-section { padding: 2rem 0; }
  .milestones-section { padding: 2rem 0; }
  .pipeline-section { padding: 2rem 0; }
  .case-study-section { padding: 2rem 0; }
  .specs-section { padding: 2rem 0; }
  .timeline-label { font-size: 0.9rem; padding: 0.35rem 1rem; }
  .timeline-title { font-size: 1.15rem; }
}
