/* ═══════════════════════════════════════════════════════
   ASTRONATIONS.WORLD — Stylesheet
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg:       #05080f;
  --bg2:      #080d18;
  --cyan:     #50dcff;
  --cyan-dim: rgba(80,220,255,0.35);
  --white:    #ffffff;
  --dim:      rgba(255,255,255,0.55);
  --faint:    rgba(255,255,255,0.25);
  --radius:   16px;
  --font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── IMAGE PROTECTION ───────────────────────────────── */
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.mission-card,
.log-slide,
.nation-slide,
.poster-frame,
.transmission-display {
  position: relative;
}

.mission-card::after,
.log-slide::after,
.nation-slide::after,
.poster-frame::after,
.transmission-display::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: default;
}

/* Allow clicks on mission card (needs pointer-events on the card itself) */
.mission-card { pointer-events: all; cursor: pointer; }
.mission-card::after { pointer-events: none; }

* {
  -webkit-user-select: none;
  user-select: none;
}

/* ── HERO PARALLAX CONTENT WRAPPER ─────────────────── */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  will-change: transform;
}

/* Parallax ambient orb for interior sections */
.parallax-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,220,255,0.055) 0%, transparent 65%);
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* ── CURSOR GLOW ────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  background: radial-gradient(circle, rgba(80,220,255,0.06) 0%, transparent 70%);
  mix-blend-mode: screen;
}

/* ── SCROLL ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(5,8,15,0.95), transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s;
}

.nav-logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo span { color: var(--cyan); }

.nav-logo-img {
  width: 30px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(80,220,255,0.85))
          drop-shadow(0 0 12px rgba(80,220,255,0.4));
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(80,220,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  will-change: transform;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
}

.hero-logo {
  width: 110px;
  height: auto;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.1s forwards,
             logoFloat 4s ease-in-out 1.2s infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 8px rgba(80,220,255,0.9))
            drop-shadow(0 0 22px rgba(80,220,255,0.5))
            drop-shadow(0 0 50px rgba(80,220,255,0.2));
  }
  50% {
    transform: translateY(-7px);
    filter: drop-shadow(0 0 12px rgba(80,220,255,1))
            drop-shadow(0 0 35px rgba(80,220,255,0.65))
            drop-shadow(0 0 70px rgba(80,220,255,0.3));
  }
}

.hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}

.hero-title {
  font-size: clamp(64px, 10vw, 130px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
  background: linear-gradient(
    180deg,
    #a8a8a8 0%,
    #e8e8e8 20%,
    #ffffff 38%,
    #d0d0d0 52%,
    #f5f5f5 65%,
    #b0b0b0 80%,
    #d8d8d8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--dim);
  letter-spacing: 0.05em;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid var(--cyan-dim);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.9s forwards;
}

.hero-cta:hover {
  background: rgba(80,220,255,0.08);
  border-color: var(--cyan);
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cyan-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════════════════ */
section { padding: 120px 48px; }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.75;
  max-width: 560px;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(80,220,255,0.2), transparent);
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   CONCEPT
══════════════════════════════════════════════════════ */
#concept {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  min-height: 620px;
}

#worldMap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

.concept-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 0 24px;
}

.concept-number {
  font-size: 180px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(80,220,255,0.15);
  user-select: none;
}

.concept-map-video {
  width: 100%;
  height: auto;
  border-radius: 4px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 32px rgba(80,220,255,0.25));
}

.concept-holo {
  position: relative;
  width: 100%;
  aspect-ratio: 1.75 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: #020610;
  border: 1px solid rgba(80,220,255,0.12);
  box-shadow:
    0 0 48px rgba(80,220,255,0.07),
    inset 0 0 40px rgba(80,220,255,0.03);
}

.holo-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  pointer-events: none;
}

.concept-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.stat-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ══════════════════════════════════════════════════════
   MISSIONS GRID
══════════════════════════════════════════════════════ */
#missions {
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 48px;
}

.missions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.missions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.mission-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.mission-card:hover { transform: translateY(-8px); }

.mission-card:hover .card-overlay { opacity: 1; }
.mission-card:hover .card-img { transform: scale(1.04); }

.card-img-wrap {
  aspect-ratio: 2/3;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,15,0.95) 0%, rgba(5,8,15,0.3) 50%, transparent 100%);
  opacity: 0.7;
  transition: opacity 0.4s;
}

.card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
}

.card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card-country {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
}

.card-collect {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  border: 1px solid var(--cyan);
  border-radius: 100px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.card-collect:hover {
  background: var(--cyan);
  color: #000;
}

.card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}

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

/* ══════════════════════════════════════════════════════
   ASTRONATORS
══════════════════════════════════════════════════════ */
#astronators {
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}

.astronators-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: center;
}

.astronators-left .section-body {
  margin-bottom: 16px;
}

.astronators-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 48px;
  border-left: 1px solid rgba(80,220,255,0.15);
}

.missions-counter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.missions-num {
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}

.missions-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.astronators-video {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 48px;
  border-left: 1px solid rgba(80,220,255,0.15);
}

.astro-spin {
  width: 280px;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 24px rgba(80,220,255,0.35));
}

@media (max-width: 1024px) {
  .astronators-inner { grid-template-columns: 1fr 1fr; }
  .astronators-video { display: none; }
}

@media (max-width: 768px) {
  .astronators-inner { grid-template-columns: 1fr; gap: 48px; }
  .astronators-right { padding-left: 0; border-left: none; border-top: 1px solid rgba(80,220,255,0.15); padding-top: 40px; flex-direction: row; }
  .missions-num { font-size: 64px; }
}

/* ══════════════════════════════════════════════════════
   MISSION LOG PREVIEW
══════════════════════════════════════════════════════ */
#mission-log {
  background: var(--bg2);
  padding: 120px 48px;
}

.log-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.log-header {
  margin-bottom: 64px;
}

.log-scroll-wrap {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.log-scroll-wrap:active { cursor: grabbing; }
.log-scroll-wrap::-webkit-scrollbar { display: none; }

.log-slide {
  flex: 0 0 auto;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.log-slide:hover { transform: scale(1.02); }

.log-slide img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════════════════════════
   FOLLOW
══════════════════════════════════════════════════════ */
#follow {
  text-align: center;
  padding: 140px 48px;
  max-width: 800px;
  margin: 0 auto;
}

#follow .section-title { margin-bottom: 16px; }
#follow .section-body  { margin: 0 auto 48px; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover { transform: translateY(-2px); }

.social-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.social-btn.tiktok {
  background: #010101;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.social-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-logo span { color: var(--cyan); }

.footer-right {
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════
   ASTRO ROTATOR
══════════════════════════════════════════════════════ */
#astro-rotator {
  height: 300vh;
  position: relative;
  background: var(--bg);
}

.rotator-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8%;
  gap: 80px;
  overflow: hidden;
}

.rotator-label {
  flex: 0 0 auto;
  text-align: right;
}

.rotator-sub {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

#astroVideo {
  height: 80vh;
  width: auto;
  max-width: 50vw;
  object-fit: contain;
  display: block;
}

/* Earth video replacing 195 */
.earth-video {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ══════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ══════════════════════════════════════════════════════
   MISSION LOG PAGE
══════════════════════════════════════════════════════ */
.log-page-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 140px 48px 120px;
}

.log-page-header { margin-bottom: 64px; }

.country-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.country-btn {
  padding: 10px 26px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--dim);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.country-btn:hover {
  border-color: rgba(80,220,255,0.4);
  color: var(--white);
}

.country-btn.active {
  background: rgba(80,220,255,0.08);
  border-color: var(--cyan);
  color: var(--cyan);
}

.mission-status {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.mission-status em { color: var(--cyan); font-style: normal; }

.slides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  transition: opacity 0.25s ease;
}

.slides-grid.fading { opacity: 0; pointer-events: none; }

.slide-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: var(--bg2);
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}

.slide-item:hover img { transform: scale(1.05); }

.slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(5,8,15,0.92), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.slide-item:hover .slide-label { opacity: 1; }

.slide-label-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.slide-label-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

/* ── Lightbox ─────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,8,15,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  backdrop-filter: blur(8px);
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 90vh;
  max-width: min(500px, 92vw);
}

.lightbox-img {
  max-height: 90vh;
  max-width: min(500px, 92vw);
  width: auto;
  height: auto;
  border-radius: 12px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 28px; right: 36px;
  background: none;
  border: none;
  color: var(--dim);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--white); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.14); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .missions-grid { grid-template-columns: repeat(2, 1fr); }
  #concept { grid-template-columns: 1fr; gap: 48px; }
  .concept-number { font-size: 120px; }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  #missions { padding: 80px 24px; }
  #mission-log { padding: 80px 24px; }
  .missions-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .missions-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-title { font-size: clamp(28px, 8.5vw, 80px); width: 100vw; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 36px 24px; }
  .concept-stats { flex-direction: row; flex-wrap: wrap; }
  #follow { padding: 100px 24px; }
  .log-page-section { padding: 100px 24px 80px; }
  .slides-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lightbox-nav { display: none; }
}

@media (max-width: 480px) {
  .missions-grid { grid-template-columns: 1fr; }
  .log-slide { width: 220px; }
  .slides-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ── concept centered (sin video lateral) ── */
.concept-centered {
  justify-content: center;
  text-align: center;
}
.concept-centered .concept-right {
  max-width: 720px;
}
.concept-centered .concept-stats {
  justify-content: center;
}

/* ── coming soon placeholders ── */
.missions-coming,
.log-coming {
  padding: 48px 24px;
  text-align: center;
}
.coming-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   INTRO VIDEO
══════════════════════════════════════════════════════ */
#intro-video {
  padding: 100px 24px;
  text-align: center;
}

.introvid-inner {
  max-width: 960px;
  margin: 0 auto;
}

.introvid-inner .section-tag  { margin-bottom: 12px; }
.introvid-inner .section-title { margin-bottom: 48px; }

.introvid-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.introvid-wrap video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  background: #000;
  outline: none;
}

.introvid-border {
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  pointer-events: none;
  border: 1px solid rgba(80,220,255,0.25);
  box-shadow:
    0 0 24px rgba(80,220,255,0.08),
    inset 0 0 24px rgba(80,220,255,0.04);
}

@media (max-width: 768px) {
  #intro-video { padding: 64px 16px; }
}
