.press-page {
  background:
    radial-gradient(circle at 72% 14%, rgba(48, 101, 142, 0.3), transparent 28rem),
    radial-gradient(circle at 12% 78%, rgba(246, 201, 40, 0.07), transparent 32rem),
    var(--ink);
}

.press-page::after {
  z-index: 40;
}

.press-site-header {
  position: absolute;
}

.press-site-header .site-nav a[aria-current='page'] {
  color: var(--gold);
}

.press-site-header .site-nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.press-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #ced9e0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.press-back-link:hover {
  color: var(--gold);
}

.access-shell {
  display: grid;
  width: min(calc(100% - 3rem), var(--max-width));
  min-height: calc(100svh - 8rem);
  margin: 0 auto;
  padding: 10rem 0 5rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.75fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.access-intro {
  position: relative;
  z-index: 1;
}

.access-intro::before {
  position: absolute;
  top: 52%;
  left: -20vw;
  z-index: -1;
  width: 72vw;
  height: 1px;
  content: '';
  opacity: 0.5;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 20px rgba(121, 204, 242, 0.5);
  transform: rotate(-8deg);
}

.access-kicker {
  margin: 0 0 1.25rem;
  color: #718a9d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.access-intro h1,
.press-hero h1 {
  max-width: none;
  font-size: clamp(4.4rem, 8.5vw, 8rem);
  line-height: 0.76;
}

.access-intro h1 span,
.press-hero h1 span {
  color: var(--gold);
}

.access-summary,
.press-lede {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.access-summary em,
.press-lede em {
  color: #dbe8ee;
  font-style: normal;
}

.access-terminal {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(121, 204, 242, 0.3);
  background:
    linear-gradient(145deg, rgba(121, 204, 242, 0.12), transparent 45%),
    rgba(8, 21, 36, 0.92);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.access-terminal::before,
.press-status-card::before {
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  content: '';
  pointer-events: none;
}

.terminal-readout {
  position: absolute;
  top: 1.35rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #7891a3;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.53rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.terminal-status::before {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  content: '';
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: signal 1.8s ease-in-out infinite;
}

.terminal-orbit {
  position: absolute;
  top: -5.5rem;
  right: -6rem;
  width: 20rem;
  aspect-ratio: 1;
  border: 1px solid rgba(121, 204, 242, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgba(121, 204, 242, 0.025),
    0 0 0 6rem rgba(121, 204, 242, 0.015);
}

.terminal-orbit span {
  position: absolute;
  left: 5%;
  bottom: 24%;
  width: 0.45rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
}

.access-form {
  position: absolute;
  left: clamp(1.6rem, 5vw, 3.5rem);
  right: clamp(1.6rem, 5vw, 3.5rem);
  bottom: clamp(1.8rem, 5vw, 3.5rem);
  z-index: 2;
}

.access-form h2 {
  max-width: none;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.access-form > div:first-child > p:last-child {
  margin: 0.75rem 0 1.6rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.access-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #a9bdc8;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.password-field {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(121, 204, 242, 0.34);
  background: rgba(3, 10, 18, 0.68);
  transition: border-color 180ms ease;
}

.password-field:focus-within {
  border-color: var(--gold);
}

.password-field input {
  width: 100%;
  min-width: 0;
  padding: 0.95rem 1rem;
  border: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
  font: 1rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.password-field button {
  padding: 0 1rem;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.access-submit {
  width: 100%;
  margin-top: 0.8rem;
}

.password-note {
  margin: 0.85rem 0 0;
  color: #698295;
  font-size: 0.74rem;
}

.access-error {
  padding: 0.75rem 0.9rem;
  border-left: 2px solid var(--gold);
  color: #ffe59a;
  background: rgba(246, 201, 40, 0.08);
  font-size: 0.8rem;
}

.press-footer {
  position: relative;
}

.press-hero {
  display: grid;
  width: min(calc(100% - 3rem), var(--max-width));
  min-height: min(52rem, 100svh);
  margin: 0 auto;
  padding: 11rem 0 6rem;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.55fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.press-hero-copy {
  position: relative;
  z-index: 1;
}

.press-hero-copy::after {
  position: absolute;
  left: -20vw;
  bottom: 5%;
  z-index: -1;
  width: 72vw;
  height: 1px;
  content: '';
  opacity: 0.46;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 20px rgba(121, 204, 242, 0.5);
  transform: rotate(-8deg);
}

.press-status-card {
  position: relative;
  min-height: 28rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(121, 204, 242, 0.28);
  background:
    linear-gradient(145deg, rgba(121, 204, 242, 0.1), transparent 48%),
    rgba(8, 21, 36, 0.88);
}

.status-radar {
  position: relative;
  width: min(74%, 14rem);
  margin: 1.2rem auto 3.5rem;
  aspect-ratio: 1;
  border: 1px solid rgba(121, 204, 242, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 2rem rgba(121, 204, 242, 0.035),
    0 0 0 4rem rgba(121, 204, 242, 0.018);
}

.status-radar::before,
.status-radar::after {
  position: absolute;
  content: '';
  background: rgba(121, 204, 242, 0.16);
}

.status-radar::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.status-radar::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.status-radar span {
  position: absolute;
  top: 25%;
  left: 68%;
  z-index: 2;
  width: 0.48rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}

.press-status-card dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.press-status-card dl div {
  display: grid;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.press-status-card dt,
.press-status-card dd {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.press-status-card dt {
  color: #718a9d;
}

.press-status-card dd {
  margin: 0;
  color: #c7d6de;
  text-align: right;
}

.press-status-card dd i {
  display: inline-block;
  width: 0.38rem;
  aspect-ratio: 1;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.press-status-card form {
  margin-top: 1rem;
  text-align: right;
}

.lock-button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(246, 201, 40, 0.45);
  color: var(--gold);
  background: transparent;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.press-directory {
  display: grid;
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.press-directory a {
  display: flex;
  min-height: 4.5rem;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--line);
  align-items: center;
  gap: 0.8rem;
  color: #d5e0e6;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.press-directory a:last-child {
  border-right: 0;
}

.press-directory a:hover {
  color: var(--gold);
  background: rgba(121, 204, 242, 0.05);
}

.press-directory a span {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.56rem;
}

.press-resource {
  position: relative;
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 9rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 2rem;
}

.resource-number {
  position: absolute;
  top: clamp(5rem, 9vw, 8rem);
  right: 0;
  color: rgba(121, 204, 242, 0.1);
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 950;
  line-height: 0.8;
}

.resource-copy {
  position: relative;
  z-index: 1;
}

.resource-copy h2,
.resource-heading h2 {
  max-width: 11ch;
}

.resource-copy > p:not(.eyebrow),
.resource-heading > p {
  max-width: 32rem;
  margin: 1.4rem 0 2rem;
  color: var(--muted);
}

.press-poster {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  gap: clamp(3rem, 10vw, 8rem);
  align-items: center;
}

.asset-details {
  display: grid;
  max-width: 34rem;
  margin: 0 0 2rem;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.asset-details div {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.asset-details dt,
.asset-details dd {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.asset-details dt {
  color: #698295;
}

.asset-details dd {
  margin: 0.25rem 0 0;
  color: #d0dde4;
}

.press-poster-frame {
  margin: 0;
  padding: 0.5rem;
  border: 1px solid rgba(121, 204, 242, 0.27);
  background: rgba(121, 204, 242, 0.055);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.4);
  transform: rotate(1deg);
}

.press-poster-frame img {
  width: 100%;
  height: auto;
}

.press-poster-frame figcaption {
  display: flex;
  padding: 0.7rem 0.1rem 0.15rem;
  justify-content: space-between;
  color: #698295;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.72fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.feature-visual {
  position: relative;
  min-height: min(48vw, 32rem);
  overflow: hidden;
  border: 1px solid rgba(121, 204, 242, 0.28);
}

.trailer-download-visual {
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.35), rgba(5, 10, 18, 0.86)),
    url('../assets/sixty-year-mission-poster.jpg') 50% 34% / cover;
}

.trailer-download-visual::before {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(5, 10, 18, 0.55), transparent, rgba(5, 10, 18, 0.55));
}

.feature-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 5.5rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  place-items: center;
  background: rgba(5, 10, 18, 0.5);
  transform: translate(-50%, -50%);
}

.feature-play i {
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.78rem solid var(--paper);
}

.feature-scan {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  opacity: 0.4;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
  animation: press-scan 6s linear infinite;
}

.trailer-download-visual > div {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #bdd0db;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asset-pending {
  border-color: rgba(121, 204, 242, 0.18);
  color: #718a9d;
  background: rgba(121, 204, 242, 0.035);
  cursor: not-allowed;
}

.resource-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(17rem, 0.55fr);
  gap: 3rem;
  align-items: end;
}

.media-grid {
  display: grid;
  margin-top: 3.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.media-card {
  margin: 0;
  background: rgba(8, 21, 36, 0.96);
}

.media-card > img,
.clip-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.media-card > div:last-child {
  display: flex;
  min-height: 7rem;
  padding: 1.1rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.media-card p {
  display: grid;
  margin: 0;
  gap: 0.25rem;
}

.media-card p span:first-child {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-card p span:last-child,
.media-action {
  color: #6e8799;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clip-placeholder {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 55%, rgba(121, 204, 242, 0.22), transparent 22%),
    linear-gradient(145deg, rgba(246, 201, 40, 0.08), transparent 52%),
    #091624;
}

.clip-placeholder::before {
  position: absolute;
  inset: -45% 30% 20% -15%;
  border: 1px solid rgba(121, 204, 242, 0.12);
  border-radius: 50%;
  content: '';
  box-shadow:
    0 0 0 2.5rem rgba(121, 204, 242, 0.025),
    0 0 0 5rem rgba(121, 204, 242, 0.015);
}

.clip-placeholder .feature-play {
  width: 4rem;
}

.bio-grid {
  display: grid;
  margin-top: 3.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.bio-card {
  min-height: 24rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(121, 204, 242, 0.07), transparent 45%),
    rgba(9, 21, 36, 0.94);
}

.bio-id {
  display: flex;
  margin-bottom: clamp(3rem, 8vw, 6rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  color: #6f8b9d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.54rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bio-id strong {
  color: var(--gold);
}

.bio-card h3 {
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
}

.bio-card > p:last-child {
  max-width: 33rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.press-notes-row {
  display: flex;
  margin-top: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(9, 21, 36, 0.7);
}

.press-notes-row > div > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-notes-row p {
  margin: 0.2rem 0 0;
  color: #70889a;
  font-size: 0.76rem;
}

@keyframes press-scan {
  from { top: 0; }
  to { top: 100%; }
}

@media (max-width: 900px) {
  .access-shell,
  .press-hero,
  .press-poster,
  .press-feature {
    grid-template-columns: 1fr;
  }

  .access-shell {
    padding-top: 9rem;
    gap: 3rem;
  }

  .access-terminal {
    min-height: 31rem;
  }

  .press-hero {
    min-height: auto;
    padding-top: 10rem;
  }

  .press-status-card {
    min-height: 24rem;
  }

  .status-radar {
    width: 10rem;
    margin-bottom: 2.5rem;
  }

  .press-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-directory a:nth-child(2) {
    border-right: 0;
  }

  .press-directory a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .press-poster-frame {
    width: min(75vw, 25rem);
    justify-self: center;
  }

  .press-feature .resource-copy {
    grid-row: 1;
  }

  .resource-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .access-shell,
  .press-hero,
  .press-directory,
  .press-resource {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .access-intro h1,
  .press-hero h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .access-terminal {
    min-height: 32rem;
  }

  .terminal-readout span:first-child {
    display: none;
  }

  .terminal-readout {
    justify-content: flex-end;
  }

  .press-directory {
    grid-template-columns: 1fr;
  }

  .press-directory a,
  .press-directory a:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .press-directory a:last-child {
    border-bottom: 0;
  }

  .asset-details {
    grid-template-columns: 1fr;
  }

  .asset-details div {
    display: flex;
    justify-content: space-between;
  }

  .asset-details dd {
    margin: 0;
  }

  .feature-visual {
    min-height: 65vw;
  }

  .media-grid,
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .media-card:last-child {
    grid-column: auto;
  }

  .press-notes-row {
    align-items: stretch;
    flex-direction: column;
  }

  .press-notes-row .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-scan {
    display: none;
  }
}
