/* ===========================
   ERADRIVE SPACE — style.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #07090f;
  --bg2: #0c0f1a;
  --surface: #111627;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eaf0;
  --muted: #7a8099;
  --accent: #5b8fff;
  /* Unified EraDrive Blue */
  --accent-alt: #e87c3e;
  --white: #ffffff;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--surface);
  border-radius: 3px;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}

/* Subtle darkening beneath the nav so content scrolling under it recedes */
#nav::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 64px;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.28) 35%,
    rgba(0, 0, 0, 0.10) 65%,
    rgba(0, 0, 0, 0) 100%);
  opacity: 0.9;
  z-index: -1;
}

/* ── HIGHLIGHT SECTION (FILL TEXT) ── */
.highlight-section {
  background: #0d1016;
  padding: 10rem 4rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.highlight-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 4rem;
}

.highlight-sidebar .eyebrow {
  font-size: 0.75rem;
  font-family: monospace;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.highlight-sidebar .sidebar-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}

.highlight-content {
  max-width: 1000px;
}

.fill-text {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--white);
}

.fill-word {
  display: inline-block;
  margin-right: 0.25em;
}

.fill-char {
  --edge: 0;
  --fill: 0; /* 0 = not reached, 1 = fully filled */
  display: inline-block;
  opacity: calc(0.12 + var(--fill) * 0.88);
  color: rgb(
    calc(160 + var(--edge) * 95 + var(--fill) * 20),
    calc(185 + var(--edge) * 70 + var(--fill) * 15),
    calc(225 + var(--edge) * 30 + var(--fill) * 10)
  );
  text-shadow:
    0 0 calc(var(--edge) * 22px) rgba(140, 185, 255, calc(var(--edge) * 1)),
    0 0 calc(var(--edge) * 44px) rgba(91, 143, 255, calc(var(--edge) * 0.85)),
    0 0 calc(var(--edge) * 80px) rgba(91, 143, 255, calc(var(--edge) * 0.45));
  transform:
    translateY(calc(var(--edge) * -5px))
    scale(calc(1 + var(--edge) * 0.06));
  transition:
    opacity 0.14s ease,
    color 0.18s ease,
    transform 0.22s cubic-bezier(.16, 1, .3, 1),
    filter 0.22s ease,
    text-shadow 0.18s ease;
  will-change: opacity, transform, filter, text-shadow;
}



/* Backing glow that tracks scroll progress under the fill text */
.highlight-section,
#highlight-section {
  --fill-progress: 0;
}

.highlight-content {
  position: relative;
}

.highlight-content::before {
  content: '';
  position: absolute;
  left: -4%;
  top: 30%;
  width: calc(10% + var(--fill-progress, 0) * 95%);
  height: 60%;
  background: radial-gradient(ellipse at left center,
    rgba(120, 180, 255, 0.42) 0%,
    rgba(91, 143, 255, 0.22) 30%,
    rgba(91, 143, 255, 0.08) 55%,
    transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  opacity: calc(0.4 + var(--fill-progress, 0) * 0.6);
  transition: width 0.2s linear, opacity 0.2s linear;
  z-index: 0;
  mix-blend-mode: screen;
}

/* Vertical light bar at the fill frontier */
.highlight-content::after {
  content: '';
  position: absolute;
  left: calc(var(--fill-progress, 0) * 100%);
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(140, 185, 255, 0.0) 10%,
    rgba(140, 185, 255, 0.85) 50%,
    rgba(140, 185, 255, 0.0) 90%,
    transparent 100%);
  filter: blur(1px);
  pointer-events: none;
  opacity: calc(min(var(--fill-progress, 0) * 6, 1) * (1 - var(--fill-progress, 0)) * 1.3);
  box-shadow: 0 0 24px rgba(140, 185, 255, 0.8);
  z-index: 2;
  transition: opacity 0.2s ease;
}

.fill-text {
  position: relative;
  z-index: 1;
}

/* Mono progress readout pinned bottom-right of highlight inner */
.fill-progress {
  display: none;
  position: absolute;
  right: 0;
  bottom: -2.25rem;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(91, 143, 255, 0.55);
  pointer-events: none;
}

.highlight-inner {
  position: relative;
}

@media (max-width: 900px) {
  .highlight-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #highlight-section,
  #offer.highlight-section {
    padding: 6rem 2rem;
  }
}


#nav.scrolled {
  background: rgba(5, 7, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.55);
}

#nav.scrolled::after {
  opacity: 1;
  height: 72px;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.32) 40%,
    rgba(0, 0, 0, 0.12) 70%,
    rgba(0, 0, 0, 0) 100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  color: var(--white) !important;
  font-weight: 600 !important;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 1;
}

.hero-text-block {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91, 143, 255, 0.35);
}

/* ── LATEST NEWS (MISSION LOG) ── */
#news-large {
  position: relative;
  width: 100%;
  background: radial-gradient(ellipse at 50% 0%, #0d1220 0%, #060810 70%, #04060c 100%);
  border-top: 1px solid var(--border);
  padding: 7rem 3rem 8rem;
  overflow: hidden;
}

.news-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 143, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 143, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, #000 45%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.news-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.news-header { margin-bottom: 3rem; }

.news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.news-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

#news-large .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}

.news-index {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(91, 143, 255, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.news-index:hover {
  background: rgba(91, 143, 255, 0.08);
  border-color: var(--accent);
}
.news-index span { margin-left: 0.4rem; transition: transform 0.3s; display: inline-block; }
.news-index:hover span { transform: translateX(4px); }

/* Grid — middle card featured */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.ncard {
  --accent-card: #5b8fff;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0a0d16;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.5s ease;
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.6);
}

.ncard[data-kind="MISSION"]  { --accent-card: #5b8fff; }
.ncard[data-kind="PROGRAM"]  { --accent-card: #e87c3e; }
.ncard[data-kind="FACILITY"] { --accent-card: #7dd3a7; }

.ncard:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.news-grid { perspective: 1100px; }

.ncard {
  transform-style: preserve-3d;
  will-change: transform;
}

.ncard-media, .ncard-body { transform: translateZ(0); }

/* Accent glow that follows cursor */
.ncard::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(91, 143, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}
.ncard:hover::after { opacity: 1; }

/* Media */
.ncard-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}

.ncard--featured .ncard-media { aspect-ratio: 4 / 3.4; }

.ncard-img {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
  animation: ncard-drift 22s ease-in-out infinite alternate;
}

@keyframes ncard-drift {
  0%   { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.06) translate3d(-2%, -1%, 0); }
}

.ncard:hover .ncard-img {
  transform: scale(1.09);
  filter: saturate(1.2) contrast(1.12);
}

.ncard-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.75), transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(6, 8, 16, 0.5) 100%);
  pointer-events: none;
}

/* Scanning light sweep */
.ncard-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.0) 45%,
    rgba(140, 185, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.0) 55%,
    transparent 65%);
  background-size: 300% 100%;
  background-position: -100% 0;
  transition: background-position 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  mix-blend-mode: screen;
  pointer-events: none;
}

.ncard:hover .ncard-sweep { background-position: 200% 0; }

/* Corner brackets */
.ncard-corners {
  position: absolute;
  inset: 14px;
  pointer-events: none;
}
.ncard-corners span {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease, border-color 0.4s ease;
}
.ncard-corners span:nth-child(1){top:0;left:0;border-right:0;border-bottom:0;}
.ncard-corners span:nth-child(2){top:0;right:0;border-left:0;border-bottom:0;}
.ncard-corners span:nth-child(3){bottom:0;left:0;border-right:0;border-top:0;}
.ncard-corners span:nth-child(4){bottom:0;right:0;border-left:0;border-top:0;}

.ncard:hover .ncard-corners span {
  opacity: 1;
  width: 22px;
  height: 22px;
  border-color: var(--accent-card);
}

/* Top-left monospace stamp */
.ncard-stamp {
  position: absolute;
  top: 1.1rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  z-index: 2;
}
.stamp-idx { font-size: 0.7rem; letter-spacing: 0.18em; color: var(--accent-card); }
.stamp-date { font-size: 0.65rem; letter-spacing: 0.22em; opacity: 0.75; }

/* Category tag */
.ncard-tag {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  padding: 0.4rem 0.7rem;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--accent-card);
  color: var(--accent-card);
  z-index: 2;
}

/* Featured flag */
.ncard-featured-flag {
  position: absolute;
  bottom: 1.15rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: #fff;
  padding: 0.4rem 0.75rem 0.4rem 0.6rem;
  background: rgba(232, 124, 62, 0.2);
  border: 1px solid rgba(232, 124, 62, 0.6);
  border-radius: 3px;
  z-index: 2;
}
.flag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ffb070;
  box-shadow: 0 0 10px #ffb070, 0 0 20px rgba(255, 176, 112, 0.6);
  animation: flag-pulse 1.6s ease-in-out infinite;
}
@keyframes flag-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Body */
.ncard-body {
  padding: 1.5rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  position: relative;
}

.ncard-body::before {
  content: '';
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 143, 255, 0.25), transparent);
}

.ncard h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  transition: color 0.3s;
}
.ncard--featured h3 { font-size: 1.55rem; }

.ncard:hover h3 { color: var(--accent-card); }

.ncard-body p {
  font-size: 0.92rem;
  color: rgba(232, 234, 240, 0.65);
  line-height: 1.55;
  margin: 0;
}

.ncard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.07);
}
.foot-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(122, 128, 153, 0.9);
  text-transform: uppercase;
}
.foot-arrow {
  font-size: 1.1rem;
  color: var(--accent-card);
  transition: transform 0.3s ease;
  display: inline-block;
}
.ncard:hover .foot-arrow { transform: translateX(6px); }

@media (max-width: 1000px) {
  .news-grid { grid-template-columns: 1fr; }
  #news-large { padding: 5rem 1.5rem 6rem; }
}
}

/* ── WHY CHOOSE US? (BENEFITS) ── */
#benefits {
  background: radial-gradient(ellipse at 50% 0%, #0f1422 0%, #070912 60%, #04060c 100%);
  padding: 9rem 3rem 10rem;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
}

/* Tech grid backdrop */
.benefits-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 143, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 143, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000 0%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000 0%, #000 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Slow orbital scanline */
.benefits-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(91, 143, 255, 0.0) 46%,
    rgba(91, 143, 255, 0.10) 50%,
    rgba(91, 143, 255, 0.0) 54%,
    transparent 100%);
  background-size: 100% 220%;
  background-position: 0 -100%;
  animation: benefits-scan 9s linear infinite;
  opacity: 0.7;
  mix-blend-mode: screen;
}

@keyframes benefits-scan {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

#benefits .section-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.benefits-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.eyebrow-bar {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.eyebrow-text {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}

#benefits .section-title {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  margin: 0 auto 1.25rem;
  max-width: 18ch;
}

.benefits-lede {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(232, 234, 240, 0.62);
}

.benefits-lede em {
  font-style: normal;
  color: var(--white);
  font-weight: 500;
  background: linear-gradient(180deg, #fff 0%, #cfe0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* ── CARD ── */
.benefit-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --card-accent: #5b8fff;
  position: relative;
  background:
    linear-gradient(180deg, rgba(22, 30, 54, 0.55) 0%, rgba(10, 14, 26, 0.55) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 2.25rem 2rem 2rem;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 0 rgba(207, 231, 255, 0.07),
    0 20px 60px -20px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  text-align: left;
  align-items: stretch;
  gap: 0;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  isolation: isolate;
}

/* Animated gradient border */
.benefit-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(91, 143, 255, 0.0) 0%,
    rgba(91, 143, 255, 0.55) 35%,
    rgba(91, 143, 255, 0.0) 50%,
    rgba(232, 124, 62, 0.25) 85%,
    rgba(91, 143, 255, 0.0) 100%);
  background-size: 220% 220%;
  background-position: 0% 0%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease, background-position 1.2s ease;
  pointer-events: none;
  z-index: 3;
}

.benefit-card:hover::before {
  opacity: 1;
  background-position: 100% 100%;
}

/* Soft aurora glow per card on hover */
.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px circle at var(--mouse-x) var(--mouse-y),
      rgba(91, 143, 255, 0.22),
      transparent 45%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 143, 255, 0.22);
  box-shadow:
    inset 0 1px 0 0 rgba(207, 231, 255, 0.09),
    0 30px 70px -20px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(91, 143, 255, 0.08);
}

/* Corner brackets */
.benefit-corners {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  z-index: 2;
}

.benefit-corners span {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(91, 143, 255, 0.5);
  opacity: 0.55;
  transition: opacity 0.35s ease, border-color 0.35s ease, width 0.35s ease, height 0.35s ease;
}

.benefit-corners span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.benefit-corners span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.benefit-corners span:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.benefit-corners span:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.benefit-card:hover .benefit-corners span {
  opacity: 1;
  border-color: var(--accent);
  width: 20px;
  height: 20px;
}

/* Header row */
.benefit-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.benefit-index {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 3.25rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(91, 143, 255, 0.55);
  background: linear-gradient(180deg, rgba(91, 143, 255, 0.15), transparent 80%);
  -webkit-background-clip: text;
  background-clip: text;
  transition: -webkit-text-stroke-color 0.3s ease, background 0.3s ease;
}

.benefit-card:hover .benefit-index {
  -webkit-text-stroke-color: var(--accent);
}

.benefit-meta {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(122, 128, 153, 0.9);
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

/* Content block */
.benefit-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.benefit-card h3 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.9rem;
  text-wrap: balance;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover h3 {
  transform: translateY(-2px);
}

.benefit-card p {
  font-size: 0.95rem;
  color: rgba(232, 234, 240, 0.62);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.benefit-card:hover p {
  color: rgba(232, 234, 240, 0.82);
}

/* Stat row */
.benefit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  list-style: none;
  padding: 1.35rem 0 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.benefit-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 0.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 0.75rem;
}

.benefit-stats li:first-child {
  border-left: 0;
  padding-left: 0;
}

.benefit-stats strong {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
}

.benefit-stats strong i {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.benefit-stats span {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: rgba(122, 128, 153, 0.9);
  text-transform: uppercase;
}

/* Retained hook for mouse-tracking */
.benefit-light {
  display: none;
}

/* Legacy shape hidden (no longer rendered, but in case) */
.benefit-shape { display: none; }

@media (max-width: 1000px) {
  #benefits { padding: 6rem 1.5rem 7rem; }
  .benefits-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .benefit-card { min-height: auto; padding: 2rem 1.75rem; }
  .benefit-index { font-size: 2.6rem; }
}

/* ── FOUNDERS SECTION ── */
#team {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, #0d1220 0%, #070912 70%, #04060c 100%);
  color: var(--text);
  padding: 7rem 3rem 8rem;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.team-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 143, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 143, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, #000 45%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.team-inner-wrap {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.team-header { margin-bottom: 3.5rem; }

.team-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.team-title-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: end;
}

#team .section-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
  text-wrap: balance;
}

.team-lede {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(232, 234, 240, 0.6);
  margin: 0 0 0.4rem;
  max-width: 42ch;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  perspective: 1200px;
}

/* Founder card */
.fcard {
  --card-accent: #5b8fff;
  position: relative;
  background: linear-gradient(180deg, rgba(22, 30, 54, 0.55) 0%, rgba(10, 14, 26, 0.55) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.5s ease;
  box-shadow:
    inset 0 1px 0 0 rgba(207, 231, 255, 0.07),
    0 20px 60px -20px rgba(0, 0, 0, 0.55);
  isolation: isolate;
}

.fcard[data-index="01"] { --card-accent: #5b8fff; }
.fcard[data-index="02"] { --card-accent: #e87c3e; }
.fcard[data-index="03"] { --card-accent: #7dd3a7; }

.fcard:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 0 rgba(207, 231, 255, 0.1),
    0 40px 80px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.fcard-corners {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  z-index: 4;
}
.fcard-corners span {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(91, 143, 255, 0.5);
  opacity: 0.5;
  transition: opacity 0.35s ease, border-color 0.35s ease, width 0.35s ease, height 0.35s ease;
}
.fcard-corners span:nth-child(1){top:0;left:0;border-right:0;border-bottom:0;}
.fcard-corners span:nth-child(2){top:0;right:0;border-left:0;border-bottom:0;}
.fcard-corners span:nth-child(3){bottom:0;left:0;border-right:0;border-top:0;}
.fcard-corners span:nth-child(4){bottom:0;right:0;border-left:0;border-top:0;}
.fcard:hover .fcard-corners span {
  opacity: 1;
  width: 20px;
  height: 20px;
  border-color: var(--card-accent);
}

/* Media */
.fcard-media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #000;
}
.fcard-img {
  position: absolute;
  inset: -3%;
  background-size: cover;
  background-position: center top;
  filter: grayscale(0.1) contrast(1.02) brightness(1.05);
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
}
.fcard:hover .fcard-img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.05) brightness(1.1);
}
.fcard-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(4, 6, 12, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(4, 6, 12, 0.0) 50%, rgba(4, 6, 12, 0.35) 100%);
  pointer-events: none;
}
.fcard-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(140, 185, 255, 0) 50%,
    transparent 65%);
  background-size: 300% 100%;
  background-position: -100% 0;
  transition: background-position 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  mix-blend-mode: screen;
  pointer-events: none;
}
.fcard:hover .fcard-sweep { background-position: 200% 0; }

/* Stamp */
.fcard-stamp {
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  right: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}
.fstamp-idx {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--card-accent);
}
.fstamp-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: #fff;
  padding: 0.3rem 0.55rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--card-accent);
  border-radius: 3px;
}

/* Body */
.fcard-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
}
.fcard-body::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 143, 255, 0.28), transparent);
}
.fcard-name {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--white);
  margin: 0;
}
.fcard-name span {
  font-weight: 800;
}
.fcard-name em {
  font-style: normal;
  font-weight: 400;
  color: rgba(232, 234, 240, 0.55);
  font-size: 0.85em;
}
.fcard-role {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--card-accent);
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.fcard-bio {
  font-size: 0.9rem;
  color: rgba(232, 234, 240, 0.65);
  line-height: 1.55;
  margin: 0;
}
.fcard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0.1rem 0 0.2rem;
}
.fcard-chips li {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: rgba(232, 234, 240, 0.75);
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
}
.fcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.fcard-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}
.fcard-cta svg { transition: transform 0.3s ease; }
.fcard-cta:hover { color: var(--card-accent); gap: 0.75rem; }
.fcard-cta:hover svg { transform: translateX(3px); }
.fcard-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  color: rgba(232, 234, 240, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.fcard-social:hover {
  color: var(--card-accent);
  border-color: var(--card-accent);
  background: rgba(91, 143, 255, 0.06);
}

/* Stats strip */
.team-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(10, 14, 26, 0.4);
  backdrop-filter: blur(6px);
}
.team-stats > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 1.1rem;
}
.team-stats > div:first-child {
  border-left: 0;
  padding-left: 0;
}
.team-stats strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
}
.team-stats strong i {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.team-stats span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: rgba(122, 128, 153, 0.95);
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-title-row { grid-template-columns: 1fr; gap: 1.2rem; }
  .team-stats { grid-template-columns: repeat(2, 1fr); }
  #team { padding: 5rem 1.5rem 6rem; }
}

/* ── NEWS / LINKEDIN ── */
#news {
  padding: 8rem 3rem;
  background: var(--bg);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

h2.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
}

/* ── CAREERS ── */
#careers {
  background: var(--bg2);
  padding: 8rem 3rem;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
}

.job-item:hover {
  transform: translateX(6px);
  border-color: var(--accent);
}

.job-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.job-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.job-tag {
  background: rgba(91, 143, 255, 0.1);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
}

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.btn-ghost:hover {
  background: var(--surface);
}

/* ── INTERACTIVE 3D EXPLODED VIEW ── */
#interactive-3d {
  background: var(--bg);
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

#interactive-container {
  width: 100%;
  height: 100%;
  position: relative;
}

#interactive-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.advanced-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  display: flex !important;
  align-items: flex-start !important;
  gap: 1.2rem;
  background: rgba(17, 22, 39, 0.75) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 1rem 1.4rem !important;
  width: 330px !important;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.advanced-tooltip.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.tooltip-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advanced-tooltip h4 {
  font-size: 0.98rem !important;
  color: var(--white) !important;
  margin-bottom: 0.45rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.advanced-tooltip p {
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* ── CTA SECTION ── */
#cta {
  background: #000;
  padding: 10rem 3rem;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border);
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
}

.cta-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.cta-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
}

.cta-title em {
  font-style: italic;
  font-family: serif;
  color: var(--accent);
}

.cta-desc {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 4rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.glow-btn {
  position: relative;
  padding: 1.2rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease;
}

.glow-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.btn-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  filter: blur(15px);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.glow-btn:hover .btn-glow {
  opacity: 1;
}

.cta-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.social-sep {
  width: 60px;
  height: 1px;
  background: var(--border);
}

.social-link {
  color: var(--white);
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.social-link:hover {
  opacity: 1;
  transform: scale(1.1);
}

.cta-email a {
  font-size: 1.1rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.cta-email a:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
#footer {
  padding: 5rem 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer-brand p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-brand a {
  color: var(--accent);
  text-decoration: none;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── UTILS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  #mission-cards {
    flex-direction: column;
    height: auto;
  }

  .mcard {
    height: 400px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .team-inner {
    flex-direction: column;
    text-align: center;
  }

  .team-inner .team-photo {
    order: -1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
  }
}

/* ── FOOTER ── */
#footer {
  position: relative;
  background: linear-gradient(180deg, #04060c 0%, #020308 100%);
  color: var(--text);
  border-top: 1px solid rgba(91, 143, 255, 0.15);
  overflow: hidden;
  padding: 0 3rem;
  isolation: isolate;
}

.footer-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 143, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 143, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.footer-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(255,255,255,0.01) 3px,
    rgba(255,255,255,0.01) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* Top telemetry strip */
.footer-telem {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  max-width: 1400px;
  margin: 0 auto;
}
.telem-item { display: inline-flex; align-items: center; gap: 0.6rem; }
.telem-push { margin-left: auto; }
.telem-k { color: rgba(122, 128, 153, 0.8); }
.telem-v { color: var(--white); }
.telem-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7dd3a7;
  box-shadow: 0 0 8px #7dd3a7, 0 0 0 3px rgba(125, 211, 167, 0.15);
  animation: telemPulse 2s ease-in-out infinite;
}
@keyframes telemPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Main grid */
.footer-main {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4.5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.15fr 1.1fr;
  gap: 4rem;
}

/* Brand mark column */
.mark-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.mark-word {
  display: grid;
  grid-template-columns: repeat(8, minmax(0,1fr));
  gap: 2px;
  margin: 0 0 1.2rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  color: var(--white);
}
.mark-word span {
  display: grid;
  place-items: center;
  padding: 0.25em 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(91,143,255,0.04), transparent 60%),
    rgba(255,255,255,0.015);
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.4s;
}
.mark-word span:hover {
  color: var(--accent);
  border-color: rgba(91,143,255,0.4);
  background: rgba(91,143,255,0.08);
  transform: translateY(-2px);
}

.mark-tag {
  font-size: 0.95rem;
  color: rgba(232, 234, 240, 0.5);
  margin: 0 0 2rem;
  max-width: 40ch;
}

.mark-contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.8rem;
  max-width: 560px;
}
.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.015);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
a.contact-card:hover {
  border-color: rgba(91,143,255,0.4);
  background: rgba(91,143,255,0.04);
}
.contact-card .cc-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.contact-card .cc-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}
.contact-card .cc-sub {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: rgba(122, 128, 153, 0.8);
}
.contact-card svg {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  color: rgba(232, 234, 240, 0.4);
  transition: transform 0.3s, color 0.3s;
}
a.contact-card:hover svg { transform: translate(2px,-2px); color: var(--accent); }

/* Nav grid */
.footer-nav-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 0.3rem;
}
.fnav-col h4 {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-weight: 500;
}
.fnav-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.fnav-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: rgba(232, 234, 240, 0.75);
  text-decoration: none;
  transition: color 0.25s, transform 0.25s, padding-left 0.25s;
  position: relative;
}
.fnav-col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.fnav-col a:hover { color: var(--white); }
.fnav-col a:hover::before { width: 14px; margin-right: 0.1rem; }
.fnav-col a i, .fnav-col a em {
  font-style: normal;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background: rgba(91, 143, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(91, 143, 255, 0.25);
}
.fnav-col a em {
  background: rgba(125, 211, 167, 0.1);
  color: #7dd3a7;
  border-color: rgba(125, 211, 167, 0.25);
}
.fnav-col a .ext {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  color: rgba(122, 128, 153, 0.6);
  margin-left: 0.2rem;
  transition: transform 0.3s, color 0.3s;
}
.fnav-col a:hover .ext { transform: translate(2px,-2px); color: var(--accent); }

/* Giant wordmark separator */
.footer-wordmark {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 0 0;
  opacity: 0.8;
  line-height: 0;
}
.footer-wordmark svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom */
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 0 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: rgba(122, 128, 153, 0.85);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.fb-left, .fb-right { display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.fb-sep { color: rgba(122, 128, 153, 0.4); }
.fb-logo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.footer-bottom a {
  color: rgba(232, 234, 240, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 1000px) {
  #footer { padding: 0 1.5rem; }
  .footer-main { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0 2rem; }
  .footer-nav-wrap { grid-template-columns: repeat(3, 1fr); }
  .mark-contact { grid-template-columns: 1fr; }
  .footer-telem { gap: 1.2rem; font-size: 0.6rem; }
  .telem-push { margin-left: 0; }
}
@media (max-width: 640px) {
  .footer-nav-wrap { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; font-size: 0.62rem; }
}


/* Match offer to mission section vibe (transparent, integrated) */
#offer.highlight-section {
  background: transparent;
  padding: 8rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {
  #offer.highlight-section { padding: 5rem 1.5rem; }
}


/* ── JOB CARDS ── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.jcard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem 1.6rem 1.4rem;
  background: #0d1220;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  isolation: isolate;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s ease, box-shadow 0.35s;
  min-height: 260px;
}
.jcard-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgba(var(--jc), 0.14), transparent 60%),
    linear-gradient(180deg, rgba(var(--jc), 0.05), transparent 40%);
  opacity: 0.55;
  transition: opacity 0.4s;
  z-index: 0;
}
.jcard-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,
    transparent 0, transparent 3px,
    rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px);
  pointer-events: none;
  z-index: 0;
}
.jcard > * { position: relative; z-index: 1; }
.jcard:hover {
  border-color: rgba(var(--jc), 0.55);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(var(--jc), 0.4), 0 0 0 1px rgba(var(--jc), 0.15);
}
.jcard:hover .jcard-bg { opacity: 1; }

.jcard--featured {
  grid-row: span 1;
  background: linear-gradient(180deg, #141019 0%, #0f0c15 100%);
  border-color: rgba(232, 124, 62, 0.22);
}
.jcard-flag {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  z-index: 2;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  padding: 0.3rem 0.55rem;
  border-radius: 3px;
  background: rgba(232, 124, 62, 0.15);
  color: #ffb080;
  border: 1px solid rgba(232, 124, 62, 0.35);
}

.jcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}
.jcard-idx { color: rgb(var(--jc)); }
.jcard-team { color: rgba(255,255,255,0.4); }

.jcard-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
  text-wrap: pretty;
}
.jcard-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(232, 234, 240, 0.6);
  margin: 0;
  flex-grow: 1;
}

.jcard-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.jcard-stack span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(232, 234, 240, 0.75);
}

.jcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255,255,255,0.08);
}
.jcard-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: rgba(232, 234, 240, 0.65);
  text-transform: uppercase;
}
.jcard-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgb(var(--jc));
  box-shadow: 0 0 8px rgb(var(--jc));
  animation: jcardPulse 2.4s ease-in-out infinite;
}
@keyframes jcardPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.jcard-cta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgb(var(--jc));
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.jcard-cta em {
  font-style: normal;
  transition: transform 0.25s;
  display: inline-block;
}
.jcard:hover .jcard-cta em { transform: translate(3px, -3px); }

@media (max-width: 1000px) {
  .jobs-grid { grid-template-columns: 1fr; }
}


/* Careers width matches Founders */
#careers .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}
#careers {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 1000px) {
  #careers {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}


/* ===========================
   LIVE SATELLITE CATALOG
   =========================== */
#satellites {
  position: relative;
  width: 100%;
  background: radial-gradient(ellipse at 50% 0%, #0d1220 0%, #060810 70%, #04060c 100%);
  border-top: 1px solid var(--border);
  padding: 7rem 3rem 8rem;
  overflow: hidden;
}

.satellites-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 143, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 143, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, #000 45%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.satellites-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(91, 143, 255, 0.03) 50%, transparent 100%);
  background-size: 100% 8px;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
  opacity: 0.5;
}

#satellites .section-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.satellites-header { margin-bottom: 3rem; }

.satellites-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.satellites-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: end;
}

#satellites .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}

.satellites-lede {
  max-width: 50ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(232, 234, 240, 0.62);
}

@media (max-width: 1000px) {
  .satellites-title-row { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ── STAGE (canvas + overlays) ── */
.sat-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 520px;
  max-height: 820px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(91, 143, 255, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, #070a13 0%, #04060c 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(91, 143, 255, 0.04);
}

.sat-frame-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.sat-frame-corners span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(91, 143, 255, 0.5);
}
.sat-frame-corners span:nth-child(1) { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.sat-frame-corners span:nth-child(2) { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.sat-frame-corners span:nth-child(3) { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.sat-frame-corners span:nth-child(4) { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.sat-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sat-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  cursor: grab;
}
.sat-canvas canvas:active { cursor: grabbing; }

/* ── LOADER ── */
.sat-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.1rem;
  background: rgba(17, 22, 39, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(91, 143, 255, 0.28);
  border-radius: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  transition: opacity 0.5s ease;
}
.sat-loader-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: sat-pulse 1.2s ease-in-out infinite;
}
@keyframes sat-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ── TELEMETRY BADGE (top-left) ── */
.sat-tele-badge {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.9rem;
  background: rgba(17, 22, 39, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(91, 143, 255, 0.22);
  border-radius: 4px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.sat-tele-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dd3a7;
  box-shadow: 0 0 8px #7dd3a7;
  animation: sat-blink 2s ease-in-out infinite;
}
@keyframes sat-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.sat-tele-k { color: var(--muted); }
.sat-tele-v { color: var(--accent); font-weight: 500; }

/* ── READOUT (bottom-left meta) ── */
.sat-readout {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.9rem;
  background: rgba(17, 22, 39, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(91, 143, 255, 0.18);
  border-radius: 4px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(232, 234, 240, 0.72);
}
.sat-readout-bar {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

/* ── HINT (centered below) ── */
.sat-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  display: inline-flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(232, 234, 240, 0.55);
  text-transform: uppercase;
}
.sat-hint em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

/* ── CTRL-TO-ZOOM NUDGE ── */
.sat-zoom-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(7, 9, 15, 0.55);
  backdrop-filter: blur(2px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sat-zoom-overlay.visible {
  opacity: 1;
}
.sat-zoom-overlay em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0.3em;
}

/* ── INFO CARD ── */
.sat-info-card {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  z-index: 7;
  width: 300px;
  padding: 1.2rem 1.25rem 1.1rem;
  background: rgba(13, 18, 32, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(91, 143, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  user-select: none;
}
.sat-info-card.hidden {
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
}

.sat-info-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sat-info-corners span {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--accent);
}
.sat-info-corners span:nth-child(1) { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.sat-info-corners span:nth-child(2) { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.sat-info-corners span:nth-child(3) { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.sat-info-corners span:nth-child(4) { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.sat-info-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.sat-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}
.sat-info-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: sat-pulse 1.4s ease-in-out infinite;
}
#sat-close-card {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
#sat-close-card:hover {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(91, 143, 255, 0.1);
}

#sat-name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(91, 143, 255, 0.18);
  word-break: break-word;
}

.sat-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sat-info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.78rem;
}
.sat-info-row span:first-child {
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.sat-info-row span:last-child {
  color: var(--text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #satellites { padding: 5rem 1.5rem 6rem; }
  .sat-stage { min-height: 440px; aspect-ratio: 3 / 4; }
  .sat-info-card { width: calc(100% - 3rem); left: 1.5rem; bottom: 1.5rem; }
  .sat-hint { display: none; }
  .sat-tele-badge { top: 1rem; left: 1rem; padding: 0.4rem 0.7rem; font-size: 0.62rem; }
  .sat-readout { top: 1rem; right: 1rem; bottom: auto; font-size: 0.6rem; }
}

/* ── LINKEDIN SECTION ── */
#linkedin {
  padding: 5rem 2rem;
  background: var(--bg2);
  position: relative;
}

.linkedin-inner {
  max-width: 1200px;
  margin: 0 auto;
}
