:root {
  --bg: #05070a;
  --bg-soft: #090c11;
  --panel: rgba(12, 16, 23, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --text: #eef1f5;
  --muted: #99a2ad;
  --faint: #6e7782;
  --accent: #d9e2ec;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(79, 97, 119, 0.16), transparent 34rem),
    linear-gradient(180deg, #07090d 0%, var(--bg) 34%, #030507 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.wordmark,
.footer-mark {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 26px;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.hero {
  min-height: 68vh;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-space.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 52rem;
  height: 32rem;
  left: -18rem;
  top: 10%;
  background: radial-gradient(circle, rgba(122, 146, 172, 0.13), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 890px;
  padding: 110px 0 120px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 12vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.065em;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  max-width: 15ch;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: #c7cdd5;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.42);
  padding-bottom: 4px;
}

.teaser-section,
.project-section,
.production-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.centered {
  text-align: center;
  margin: 0 auto 44px;
}

.centered h2 {
  max-width: none;
}

.video-frame {
  width: min(100%, 960px);
  margin: 0 auto;
  background: #000;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 34px 100px rgba(0,0,0,0.55);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.caption {
  margin: 16px auto 0;
  max-width: 960px;
  color: var(--faint);
  font-size: 0.78rem;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.project-copy {
  color: #bcc4cd;
  font-size: 1.05rem;
}

.project-copy p {
  margin-bottom: 1.35em;
}

.project-copy strong {
  color: var(--text);
  letter-spacing: 0.08em;
}

.production-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: end;
  padding: clamp(34px, 6vw, 66px);
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
}

.production-card h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.status-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.status-copy p {
  margin-bottom: 0;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 48px 0 56px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  color: var(--faint);
  font-size: 0.76rem;
}

.site-footer p {
  margin: 0;
}

.footer-mark {
  color: var(--text);
}

@media (max-width: 800px) {
  .site-header {
    min-height: 76px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 86px 0 90px;
  }

  h1 {
    font-size: clamp(3.5rem, 19vw, 6rem);
  }

  .teaser-section,
  .project-section,
  .production-section {
    padding: 82px 0;
  }

  .project-grid,
  .production-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
