/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #03060f;
  --bg-section: #060d1e;
  --bg-card: #0b1425;
  --bg-card-hover: #0f1c30;
  --accent: #1d6fe8;
  --accent-light: #4a90e8;
  --accent-dim: rgba(29, 111, 232, 0.15);
  --text: #dce6f0;
  --text-muted: #7a90a8;
  --text-dim: #4a5f75;
  --green: #17b978;
  --yellow: #e8b84a;
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(29, 111, 232, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

/* ===== Top Bar ===== */
.topbar {
  background: #010408;
  border-bottom: 1px solid var(--border);
  padding: 0.45rem 2.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  font-family: 'Inter', monospace;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(3, 6, 15, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: #fff;
  flex-shrink: 0;
}

.nav-logo-mark span { color: rgba(255,255,255,0.6); }
.nav-logo-mark.small { width: 30px; height: 30px; font-size: 0.7rem; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
}

.nav-cta:hover { background: var(--accent-light) !important; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--bg-dark);
  padding: 0 10vw;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(29,111,232,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(29,111,232,0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.1; }
  to   { opacity: 0.7; }
}

.hero-overlay {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, transparent 0%, rgba(29,111,232,0.04) 100%);
  border-left: 1px solid var(--border);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #eef2f7;
}

.highlight {
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Stats Bar ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-section);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #eef2f7;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-num::after { content: '+'; color: var(--accent-light); font-size: 1.6rem; }

.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 500;
}

/* ===== Sections ===== */
.section {
  padding: 7rem 2rem;
}

.section.dark {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #eef2f7;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3rem;
}

.card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.card:hover { background: var(--bg-card-hover); }

.card-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #eef2f7;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===== Missions ===== */
.missions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.mission-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.mission-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.status {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

.status.active  {
  color: var(--green);
  background: rgba(23, 185, 120, 0.1);
  border: 1px solid rgba(23, 185, 120, 0.25);
}

.status.planned {
  color: var(--yellow);
  background: rgba(232, 184, 74, 0.1);
  border: 1px solid rgba(232, 184, 74, 0.25);
}

.mission-id {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: 'Inter', monospace;
  letter-spacing: 0.05em;
}

.mission-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #eef2f7;
  margin-bottom: 0.6rem;
}

.mission-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.progress-bar {
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  height: 3px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.mission-footer {
  display: flex;
  justify-content: space-between;
}

small {
  color: var(--text-dim);
  font-size: 0.75rem;
  font-family: 'Inter', monospace;
}

/* ===== Technology ===== */
.tech-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.tech-item:last-child { border-bottom: none; }
.tech-item:hover { background: var(--bg-card-hover); }

.tech-num {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
  flex-shrink: 0;
  width: 28px;
}

.tech-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #eef2f7;
  margin-bottom: 0.5rem;
}

.tech-item p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s;
}

.team-card:hover { border-color: var(--border-accent); }

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.team-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #eef2f7;
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 0.75rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.team-bio {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Press ===== */
.press-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.press-item {
  display: grid;
  grid-template-columns: 90px 1fr 32px;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s;
}

.press-item:last-child { border-bottom: none; }
.press-item:hover { background: var(--bg-card-hover); }

.press-date {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: 'Inter', monospace;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.press-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #eef2f7;
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.press-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.press-arrow {
  color: var(--text-dim);
  font-size: 1rem;
  transition: color 0.2s, transform 0.2s;
  justify-self: end;
}

.press-item:hover .press-arrow {
  color: var(--accent-light);
  transform: translateX(4px);
}

/* ===== Contact ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-detail strong {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 600;
}

.contact-detail span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
  width: 100%;
}

.contact-form select { cursor: pointer; }
.contact-form select option { background: #0b1425; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  background: rgba(29, 111, 232, 0.04);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dim);
}

.form-msg {
  font-size: 0.85rem;
  color: var(--green);
  margin-top: 0.25rem;
}

/* ===== Footer ===== */
.footer {
  background: #010408;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-logo-mark {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.825rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.7rem !important;
  font-style: italic;
  color: var(--text-dim) !important;
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.825rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  max-width: 1060px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: 'Inter', monospace;
  letter-spacing: 0.02em;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .navbar { padding: 0 1.25rem; }
  .hero { padding: 0 6vw; padding-top: 2rem; min-height: auto; padding-bottom: 4rem; }
  .hero-overlay { display: none; }
  .nav-logo-text { display: none; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 0.45rem 0.6rem; font-size: 0.8rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .press-item { grid-template-columns: 1fr; }
  .press-date, .press-arrow { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Image Divider ===== */
.img-divider {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.img-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.38);
}
.img-divider-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem 4rem;
  background: linear-gradient(to top, rgba(3,6,15,0.85) 0%, transparent 55%);
}
.img-divider-overlay p {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: 'Inter', monospace;
}

/* ===== Compute Architecture ===== */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.arch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.arch-card:hover { border-color: var(--border-accent); }
.arch-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  margin-bottom: 0.85rem;
}
.arch-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #eef2f7;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.arch-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.spec-table {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: rgba(255,255,255,0.015); }
.spec-row span:first-child {
  color: var(--text-dim);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.spec-row span:last-child {
  color: var(--text);
  font-size: 0.78rem;
  text-align: right;
}

/* ===== CNT Block ===== */
.cnt-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.cnt-image-wrap img {
  width: 100%;
  border-radius: 6px;
  display: block;
  filter: brightness(0.8) saturate(0.7);
}
.cnt-caption {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 0.6rem;
  line-height: 1.5;
  font-style: italic;
}
.cnt-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #eef2f7;
  line-height: 1.25;
  margin: 0.75rem 0 1rem;
}
.cnt-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.85rem;
}
.cnt-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.cnt-metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem;
  background: rgba(29,111,232,0.06);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
}
.cnt-metric strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--accent-light);
  font-weight: 700;
}
.cnt-metric span {
  font-size: 0.68rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ===== Reliability Table ===== */
.table-heading {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reliability-table {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  overflow-x: auto;
}
.rt-row {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.6fr;
  border-bottom: 1px solid var(--border);
  min-width: 640px;
}
.rt-row:last-child { border-bottom: none; }
.rt-row > span {
  padding: 0.7rem 1rem;
  border-right: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.rt-row > span:last-child { border-right: none; }
.rt-header { background: rgba(255,255,255,0.02); }
.rt-header > span {
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.rt-highlight { background: rgba(29,111,232,0.04); }
.rt-good { color: var(--green) !important; }
.rt-warn { color: var(--yellow) !important; }
.rt-bad  { color: #e05252 !important; }

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 108px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.tl-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.tl-item:last-child { border-bottom: none; }
.tl-far .tl-right h3 { color: var(--text-muted); }
.tl-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  padding-top: 0.1rem;
}
.tl-date {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-family: 'Inter', monospace;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-align: right;
}
.tl-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 1px solid var(--text-dim);
  flex-shrink: 0;
  margin-right: -0.3rem;
  position: relative;
  z-index: 1;
}
.dot-active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(29,111,232,0.55);
}
.dot-far { border-style: dashed; opacity: 0.5; }
.tl-right h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #eef2f7;
  margin-bottom: 0.5rem;
}
.tl-right p {
  font-size: 0.835rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}
.tl-chips {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.tl-chips span {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 0.18rem 0.5rem;
  border-radius: 3px;
}

/* ===== Rocket Hero ===== */
.rocket-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.rocket-hero-img {
  position: relative;
  min-height: 420px;
}
.rocket-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}
.rocket-hero-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
}
.rocket-hero-content {
  padding: 2.5rem;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rocket-hero-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #eef2f7;
  letter-spacing: -0.04em;
  margin-bottom: 0.4rem;
}
.rocket-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(29,111,232,0.25);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.04em;
}
.rocket-num.small { font-size: 2rem; margin-bottom: 0.5rem; }
.rocket-tagline {
  font-size: 0.9rem;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 0.85rem;
  font-style: italic;
}

/* Rocket status badges */
.rstatus {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 3px;
}
.rstatus-active {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
}
.rstatus-testing {
  background: rgba(234,179,8,0.12);
  color: var(--yellow);
  border: 1px solid rgba(234,179,8,0.3);
}

/* Rockets 3-col grid */
.rocket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.rocket-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}
.rocket-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.rocket-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.rocket-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: filter 0.3s;
}
.rocket-card:hover .rocket-card-img img { filter: brightness(0.7); }
.rocket-card-img .rstatus {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
}
.rocket-card-body { padding: 1.5rem; }
.rocket-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #eef2f7;
  margin-bottom: 0.3rem;
}
.rocket-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.rocket-mini-specs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.rocket-mini-specs > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 0.4rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.rocket-mini-specs > div:last-child { border-right: none; }
.rocket-mini-specs strong {
  font-size: 0.82rem;
  color: var(--accent-light);
  font-weight: 700;
  display: block;
}
.rocket-mini-specs span {
  font-size: 0.62rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Starlink Banner */
.starlink-banner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.starlink-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  display: block;
  min-height: 280px;
}
.starlink-content {
  padding: 2.5rem;
  background: var(--bg-card);
}
.starlink-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #eef2f7;
  letter-spacing: -0.04em;
  margin-bottom: 0.4rem;
}
.starlink-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.starlink-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.sl-stat {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.sl-stat:last-child { border-right: none; }
.sl-stat strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--accent-light);
  font-weight: 700;
}
.sl-stat span {
  font-size: 0.62rem;
  color: var(--text-dim);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== SpaceXAI Product Cards ===== */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.ai-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.2s;
}
.ai-card:hover { border-color: var(--border-accent); }
.ai-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
.ai-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.ai-card-featured .ai-card-img { height: auto; min-height: 280px; }
.ai-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5) saturate(0.8);
  transition: filter 0.3s;
}
.ai-card:hover .ai-card-img img { filter: brightness(0.65) saturate(0.9); }
.ai-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}
.ai-badge-gold {
  color: var(--yellow);
  background: rgba(234,179,8,0.1);
  border-color: rgba(234,179,8,0.3);
}
.ai-badge-pending {
  color: #e05252;
  background: rgba(224,82,82,0.1);
  border-color: rgba(224,82,82,0.3);
}
.ai-card-body { padding: 1.75rem; }
.ai-card-featured .ai-card-body { display: flex; flex-direction: column; justify-content: center; }
.ai-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #eef2f7;
  margin-bottom: 0.3rem;
}
.ai-card-featured .ai-card-body h3 { font-size: 1.6rem; }
.ai-sub {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-style: italic;
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.ai-card-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.ai-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.ai-stats > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0.75rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.ai-stats > div:last-child { border-right: none; }
.ai-stats strong {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 700;
}
.ai-stats span {
  font-size: 0.62rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Launch Schedule ===== */
.launch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.launch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.launch-card:hover { border-color: var(--border-accent); }
.launch-featured {
  grid-column: 1 / -1;
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(29,111,232,0.06) 0%, var(--bg-card) 60%);
}
.launch-vehicle-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.lv-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #eef2f7;
}
.lv-pad {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-family: 'Inter', monospace;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-family: 'Space Grotesk', monospace;
}
.launch-featured .countdown { gap: 0.6rem; }
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  background: rgba(29,111,232,0.08);
  border: 1px solid var(--border-accent);
  border-radius: 5px;
  padding: 0.6rem 0.5rem 0.4rem;
}
.launch-featured .cd-block { min-width: 72px; padding: 0.85rem 0.75rem 0.55rem; }
.cd-block span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.launch-featured .cd-block span { font-size: 2.2rem; }
.cd-block small {
  font-size: 0.55rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.cd-sep {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dim);
  align-self: center;
  padding-bottom: 0.4rem;
}
.launch-featured .cd-sep { font-size: 1.8rem; }
.cd-launched {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
}
.launch-detail p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.launch-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.launch-tags span {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}

/* Press tags */
.press-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.press-tags span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 0.12rem 0.4rem;
  border-radius: 3px;
}

/* ===== Responsive — new sections ===== */
@media (max-width: 900px) {
  .arch-grid { grid-template-columns: 1fr; }
  .cnt-block { grid-template-columns: 1fr; }
  .cnt-image-wrap { display: none; }
  .rocket-hero { grid-template-columns: 1fr; }
  .rocket-hero-img { min-height: 240px; }
  .rocket-grid { grid-template-columns: 1fr; }
  .starlink-banner { grid-template-columns: 1fr; }
  .starlink-img-wrap { display: none; }
  .ai-card-featured { grid-template-columns: 1fr; }
  .ai-card-featured .ai-card-img { min-height: 200px; height: 200px; }
  .launch-grid { grid-template-columns: 1fr; }
  .starlink-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .img-divider { height: 220px; }
  .img-divider-overlay { padding: 1.25rem 1.5rem; }
  .timeline::before { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .tl-left { flex-direction: row; align-items: center; gap: 0.75rem; }
  .tl-dot { margin-right: 0; }
  .cnt-metrics { grid-template-columns: 1fr 1fr; }
}
