@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Nunito:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ============================================================
   BOBNET — CSS Design System
   Light, modern, retro-futuristic editorial aesthetic
   ============================================================ */

:root {
  --space-deep:    #060e1c;
  --space-navy:    #0d1b2e;
  --navy-mid:      #112240;
  --navy-light:    #1e3a5f;
  --blue-primary:  #2563eb;
  --blue-light:    #3b82f6;
  --cyan:          #0891b2;
  --cyan-light:    #22d3ee;
  --cyan-pale:     #cffafe;
  --amber:         #d97706;
  --amber-light:   #fbbf24;
  --green:         #059669;
  --red:           #dc2626;
  --purple:        #7c3aed;

  --bg-primary:    #f4f6fb;
  --bg-secondary:  #eaeff8;
  --bg-white:      #ffffff;
  --text-primary:  #18263a;
  --text-secondary:#374151;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;
  --border-light:  #e2e8f2;
  --border-mid:    #c5d0e0;

  --shadow-sm:     0 1px 4px rgba(13,27,46,.07);
  --shadow-md:     0 4px 16px rgba(13,27,46,.10);
  --shadow-lg:     0 10px 36px rgba(13,27,46,.15);
  --radius:        8px;
  --radius-lg:     14px;
  --nav-h:         66px;
  --transition:    all .22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.72;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
}

a { color: var(--blue-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cyan); }
img, svg { display: block; }

h1,h2,h3,h4,h5 { font-family: 'Orbitron', monospace; line-height: 1.2; color: var(--space-navy); }

/* ── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--space-navy);
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none;
}
.nav-logo img { width: 40px; height: 40px; }
.nav-logo-wrap { display: flex; flex-direction: column; }
.nav-logo-title {
  font-family: 'Orbitron', monospace;
  font-weight: 700; font-size: 1.05rem;
  color: #fff; letter-spacing: .08em;
}
.nav-logo-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: .62rem; color: var(--cyan-light);
  letter-spacing: .22em; text-transform: uppercase;
  margin-top: -2px;
}

.nav-links { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: .88rem;
  color: rgba(255,255,255,.68);
  letter-spacing: .05em; text-transform: uppercase;
  padding: .45rem .85rem; border-radius: 6px;
  text-decoration: none; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.10);
}

.nav-burger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.main-content { margin-top: var(--nav-h); }

/* ── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--space-navy) 0%, var(--navy-mid) 55%, #1a3555 100%);
  color: white;
  padding: 4.5rem 2rem 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 55%, rgba(8,145,178,.14) 0%, transparent 50%),
    radial-gradient(circle at 82% 18%, rgba(37,99,235,.18) 0%, transparent 40%);
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--cyan-light);
  border: 1px solid rgba(34,211,238,.38);
  padding: .28rem .9rem; border-radius: 20px;
  margin-bottom: 1rem;
}
.page-hero h1 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: .65rem;
}
.page-hero-sub {
  font-family: 'Rajdhani', sans-serif; font-size: 1.08rem;
  color: rgba(255,255,255,.62); max-width: 60ch;
}

/* STARFIELD CANVAS */
.hero-stars {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container       { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow{ max-width: 820px;  margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 3rem 0; }
.section + .section { padding-top: 0; }

.section-heading {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
}
.section-heading h2 {
  font-size: 1rem; white-space: nowrap;
  letter-spacing: .04em;
}
.section-heading::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border-light);
}
.section-tag {
  font-family: 'Rajdhani', sans-serif; font-size: .68rem;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue-primary);
  background: rgba(37,99,235,.09);
  padding: .2rem .65rem; border-radius: 4px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.3rem; border-radius: 6px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: .9rem; letter-spacing: .04em;
  cursor: pointer; border: none;
  text-decoration: none; transition: var(--transition);
}
.btn-primary   { background: var(--blue-primary); color: white; }
.btn-primary:hover { background: #1d4ed8; color: white; transform: translateY(-1px); }
.btn-cyan      { background: var(--cyan); color: white; }
.btn-cyan:hover{ background: #0e7490; color: white; transform: translateY(-1px); }
.btn-outline   { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.38); }
.btn-outline:hover { background: rgba(255,255,255,.1); color: white; border-color: white; }
.btn-ghost     { background: rgba(37,99,235,.08); color: var(--blue-primary); }
.btn-ghost:hover { background: rgba(37,99,235,.15); color: var(--blue-primary); }
.btn-lg        { padding: .7rem 1.75rem; font-size: 1rem; }

/* ── BLOG CARDS ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.4rem;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.blog-card-header { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }

.bob-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace; font-weight: 700; font-size: .8rem;
  color: white; flex-shrink: 0;
}
.bob-meta { flex: 1; min-width: 0; }
.bob-name  { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .92rem; color: var(--text-primary); }
.bob-loc   { font-family: 'Rajdhani', sans-serif; font-size: .78rem; color: var(--text-muted); }
.blog-card-date { font-family: 'Orbitron', monospace; font-size: .62rem; color: var(--text-light); white-space: nowrap; letter-spacing: .05em; }

.blog-card h3 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.05rem; color: var(--space-navy);
  margin-bottom: .45rem; line-height: 1.35; letter-spacing: .02em;
}
.blog-card p {
  font-size: .875rem; color: var(--text-secondary);
  line-height: 1.7; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

.blog-card-footer {
  margin-top: 1rem; padding-top: .85rem;
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
}

.tag-pill {
  font-family: 'Rajdhani', sans-serif; font-size: .7rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .22rem .65rem; border-radius: 20px;
}
.tag-pill.exploration { background: rgba(8,145,178,.12); color: var(--cyan); }
.tag-pill.science     { background: rgba(37,99,235,.1);  color: var(--blue-primary); }
.tag-pill.colony      { background: rgba(5,150,105,.1);  color: var(--green); }
.tag-pill.alert       { background: rgba(220,38,38,.09); color: var(--red); }
.tag-pill.engineering { background: rgba(217,119,6,.1);  color: var(--amber); }
.tag-pill.contact     { background: rgba(124,58,237,.1); color: var(--purple); }

.read-more {
  font-family: 'Rajdhani', sans-serif; font-size: .82rem;
  font-weight: 700; color: var(--blue-primary);
  display: flex; align-items: center; gap: .25rem;
}

/* ── FEATURED POST ──────────────────────────────────────── */
.featured-post {
  background: var(--space-navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative; overflow: hidden; color: white;
}
.featured-post::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(8,145,178,.22), transparent 70%);
  pointer-events: none;
}
.featured-post::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(37,99,235,.15), transparent 70%);
  pointer-events: none;
}
.featured-label {
  font-family: 'Rajdhani', sans-serif; font-size: .7rem;
  font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--amber-light); margin-bottom: .65rem;
  display: flex; align-items: center; gap: .4rem;
}
.featured-label::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber-light); animation: pulse 2s ease infinite;
}
.featured-post h2 { color: white; font-size: clamp(1.2rem, 2.5vw, 1.65rem); margin-bottom: .75rem; position: relative; z-index: 1; }
.featured-excerpt  { color: rgba(255,255,255,.68); font-size: .93rem; margin-bottom: 1.4rem; max-width: 65ch; position: relative; z-index: 1; }
.featured-footer   { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.featured-author   {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Rajdhani', sans-serif; font-size: .88rem;
  color: rgba(255,255,255,.65);
}

/* ── FORMS ──────────────────────────────────────────────── */
.form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 1.35rem; }
.form-label {
  display: block;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: .42rem;
}
.form-required { color: var(--red); margin-left: .15rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .62rem .9rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif; font-size: .93rem;
  color: var(--text-primary); background: var(--bg-white);
  transition: border-color .2s, box-shadow .2s; outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-textarea { resize: vertical; min-height: 150px; line-height: 1.65; }
.form-hint { font-size: .78rem; color: var(--text-muted); margin-top: .28rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center;
  padding-right: 2.2rem; cursor: pointer;
}

.alert {
  border-radius: var(--radius); padding: .9rem 1.2rem;
  font-family: 'Rajdhani', sans-serif; font-size: .92rem;
  display: none; align-items: center; gap: .6rem;
  margin-bottom: 1.25rem;
}
.alert.show { display: flex; }
.alert-success { background: #f0fdf4; border: 1.5px solid #86efac; color: #15803d; }
.alert-error   { background: #fef2f2; border: 1.5px solid #fca5a5; color: #b91c1c; }
.alert-icon { font-size: 1.1rem; }

/* ── TECHNOLOGY PAGE ────────────────────────────────────── */
.tech-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Orbitron', monospace; font-size: .62rem;
  color: var(--cyan-light); letter-spacing: .15em; text-transform: uppercase;
  border: 1px solid rgba(34,211,238,.3); padding: .28rem .9rem; border-radius: 20px;
  margin-bottom: 1rem;
}

.probe-timeline {
  display: flex; gap: 0; overflow-x: auto;
  padding-bottom: 1rem; margin-bottom: .5rem;
}
.probe-card {
  flex: 0 0 220px; padding: 1.5rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}
.probe-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.probe-card:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.probe-card + .probe-card { border-left: none; }
.probe-card:hover { background: var(--bg-secondary); z-index: 1; box-shadow: var(--shadow-md); }

.probe-card-year {
  font-family: 'Orbitron', monospace; font-size: .65rem;
  font-weight: 600; letter-spacing: .1em;
  color: var(--cyan); margin-bottom: .5rem;
}
.probe-card-name {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--space-navy); margin-bottom: .75rem;
}
.probe-card-svg { margin: 0 auto 1rem; }
.probe-card ul {
  list-style: none; font-size: .8rem; color: var(--text-secondary);
}
.probe-card ul li {
  padding: .2rem 0; border-bottom: 1px solid var(--border-light);
  display: flex; gap: .4rem; align-items: baseline;
}
.probe-card ul li:last-child { border-bottom: none; }
.probe-card ul li::before { content: '▸'; color: var(--cyan); font-size: .65rem; flex-shrink: 0; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.tech-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.tech-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tech-card-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: .9rem;
}
.tech-card-acronym {
  font-family: 'Orbitron', monospace; font-size: .6rem;
  letter-spacing: .12em; color: var(--text-muted);
  margin-bottom: .25rem;
}
.tech-card h3 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: .04em;
  color: var(--space-navy); margin-bottom: .5rem;
}
.tech-card p { font-size: .85rem; color: var(--text-secondary); line-height: 1.65; }

.spec-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.spec-table th {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); text-align: left;
  padding: .6rem .75rem; border-bottom: 2px solid var(--border-mid);
  background: var(--bg-secondary);
}
.spec-table td {
  padding: .6rem .75rem; border-bottom: 1px solid var(--border-light);
  vertical-align: top; color: var(--text-secondary);
}
.spec-table td:first-child { font-weight: 600; color: var(--text-primary); white-space: nowrap; }
.spec-table tr:last-child td { border-bottom: none; }

/* ── GENEALOGY PAGE ─────────────────────────────────────── */
.genealogy-outer { overflow-x: auto; padding: 1rem 0 2rem; }
.genealogy-tree  { min-width: 1000px; position: relative; }

.gen-block { margin-bottom: 0; }
.gen-label {
  font-family: 'Orbitron', monospace; font-size: .62rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: .85rem;
  padding-left: .5rem;
}
.gen-row {
  display: flex; justify-content: center;
  gap: .75rem; flex-wrap: nowrap;
  margin-bottom: 2.8rem;
  position: relative;
}

.bob-node {
  display: flex; flex-direction: column; align-items: center;
  width: 120px; cursor: pointer;
  transition: transform .2s;
}
.bob-node:hover { transform: translateY(-3px); }
.bob-node-card {
  background: var(--bg-white); width: 100%;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius); padding: .6rem .5rem;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.bob-node:hover .bob-node-card {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1), var(--shadow-md);
}
.bob-node-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  margin: 0 auto .35rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace; font-size: .72rem;
  font-weight: 700; color: white;
}
.bob-node-name  { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .88rem; color: var(--space-navy); }
.bob-node-loc   { font-family: 'Rajdhani', sans-serif; font-size: .68rem; color: var(--text-muted); line-height: 1.3; }

.bob-tooltip {
  position: fixed; z-index: 9000; pointer-events: none;
  background: var(--space-navy); color: white;
  border-radius: var(--radius); padding: .8rem 1rem;
  max-width: 240px; box-shadow: var(--shadow-lg);
  opacity: 0; transition: opacity .18s;
  border: 1px solid rgba(255,255,255,.12);
}
.bob-tooltip.visible { opacity: 1; }
.bob-tooltip-name {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .95rem;
  color: var(--cyan-light); margin-bottom: .3rem;
}
.bob-tooltip-loc {
  font-family: 'Orbitron', monospace; font-size: .58rem; color: rgba(255,255,255,.55);
  margin-bottom: .5rem; letter-spacing: .08em;
}
.bob-tooltip p { font-size: .8rem; color: rgba(255,255,255,.75); line-height: 1.55; }

.tree-svg {
  position: absolute; top: 0; left: 0;
  width: 100%; pointer-events: none;
}

/* ── STATS STRIP ────────────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--space-navy); border-radius: var(--radius-lg);
  overflow: hidden; margin: 2rem 0;
}
.stat-item {
  padding: 1.5rem 1.25rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Orbitron', monospace; font-size: 1.8rem;
  font-weight: 700; color: var(--cyan-light);
  display: block; line-height: 1;
}
.stat-lbl {
  font-family: 'Rajdhani', sans-serif; font-size: .72rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-top: .35rem;
}

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.about-card h3 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: .05em;
  margin-bottom: .75rem; color: var(--space-navy);
}
.about-card p { font-size: .9rem; color: var(--text-secondary); line-height: 1.72; }
.about-card p + p { margin-top: .6rem; }

.book-list { list-style: none; }
.book-list li {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .7rem 0; border-bottom: 1px solid var(--border-light);
}
.book-list li:last-child { border-bottom: none; }
.book-num {
  font-family: 'Orbitron', monospace; font-size: .62rem;
  font-weight: 600; color: var(--cyan); flex-shrink: 0;
  margin-top: .15rem;
}
.book-info { flex: 1; }
.book-title { font-weight: 600; font-size: .9rem; color: var(--text-primary); }
.book-year  { font-size: .78rem; color: var(--text-muted); }

.vocab-item {
  padding: .65rem 0; border-bottom: 1px solid var(--border-light);
  display: grid; grid-template-columns: 130px 1fr; gap: .75rem; align-items: baseline;
}
.vocab-item:last-child { border-bottom: none; }
.vocab-term {
  font-family: 'Orbitron', monospace; font-size: .7rem;
  font-weight: 600; color: var(--blue-primary); letter-spacing: .04em;
}
.vocab-def { font-size: .85rem; color: var(--text-secondary); line-height: 1.55; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--space-navy);
  color: rgba(255,255,255,.55);
  padding: 2.5rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-brand p { font-size: .83rem; line-height: 1.7; margin-top: .7rem; }
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-bottom: .85rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a {
  color: rgba(255,255,255,.5); font-size: .83rem;
  text-decoration: none; transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }

hr.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 1.2rem; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-family: 'Rajdhani', sans-serif; font-size: .76rem; color: rgba(255,255,255,.3); }
.footer-status {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Rajdhani', sans-serif; font-size: .74rem;
  color: rgba(255,255,255,.38);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  animation: pulse 2.5s ease infinite;
}
.status-dot.amber { background: var(--amber-light); }
.status-dot.red   { background: #f87171; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.55; transform:scale(1.3); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

.fade-up { animation: fadeUp .5s ease both; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
.delay-4 { animation-delay: .32s; }
.delay-5 { animation-delay: .40s; }
.delay-6 { animation-delay: .48s; }

/* ── NEWS STATUS BAR ────────────────────────────────────── */
.news-info-bar {
  background: linear-gradient(90deg, rgba(8,145,178,.08), rgba(37,99,235,.06));
  border: 1px solid rgba(8,145,178,.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 2rem; font-size: .88rem;
  color: var(--text-secondary);
}
.news-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .05rem; }
.news-info-bar strong { color: var(--text-primary); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-2col   { grid-template-columns: 1fr; }
  .stats-strip  { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 1rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--space-navy); padding: .75rem 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
    gap: .15rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .6rem .9rem; }
  .nav-burger  { display: flex; }
  .blog-grid   { grid-template-columns: 1fr; }
  .tech-grid   { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .page-hero   { padding: 2.5rem 1rem 2rem; }
  .form-card   { padding: 1.5rem; }
  .probe-timeline { gap: 0; }
  .probe-card  { flex: 0 0 185px; padding: 1rem; }
}
