:root {
  --void: #07080d;
  --navy: #0c1422;
  --panel: rgba(12, 18, 28, 0.72);
  --gold: #d4af37;
  --gold-bright: #f0d56a;
  --gold-deep: #8d6f1f;
  --cream: #f3ece0;
  --mute: #b7b0a3;
  --earth: #3f7ea8;
  --flame: #ff7a2a;
  --line: rgba(212, 175, 55, 0.28);
  --font-mark: "Black Ops One", sans-serif;
  --font-head: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --font-hud: "Share Tech Mono", monospace;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.void {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 12% 18%, rgba(63, 126, 168, 0.16), transparent 58%),
    radial-gradient(900px 600px at 88% 8%, rgba(212, 175, 55, 0.08), transparent 55%),
    linear-gradient(180deg, #05060a 0%, #0a1220 42%, #07080d 100%);
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
  animation: drift 28s ease-in-out infinite alternate;
}

.nebula-a {
  width: 42vw;
  height: 42vw;
  left: -8%;
  top: 8%;
  background: radial-gradient(circle, rgba(63, 126, 168, 0.35), transparent 70%);
}

.nebula-b {
  width: 36vw;
  height: 36vw;
  right: -10%;
  top: 28%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 70%);
  animation-duration: 36s;
}

.nebula-c {
  width: 48vw;
  height: 30vw;
  left: 28%;
  bottom: -12%;
  background: radial-gradient(circle, rgba(255, 122, 42, 0.08), transparent 70%);
  animation-duration: 42s;
}

.earth-glow {
  position: absolute;
  width: 55vw;
  height: 22vw;
  left: -10%;
  bottom: -8%;
  background: radial-gradient(ellipse at center, rgba(63, 126, 168, 0.2), transparent 70%);
  filter: blur(20px);
}

.gold-haze {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(240, 213, 106, 0.06), transparent 40%);
  animation: pulseHaze 8s ease-in-out infinite;
}

.scan-veil {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.012) 3px,
    rgba(255, 255, 255, 0.012) 4px
  );
  opacity: 0.55;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.62) 100%);
}

.pointer-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 68%);
  transform: translate(-40vw, -40vh);
  transition: transform 0.12s linear;
}

.hud-corners {
  position: fixed;
  inset: 14px;
  z-index: 4;
  pointer-events: none;
}

.hud-corner {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.hud-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud-br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.mission-rail {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.rail-track {
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(212, 175, 55, 0.08));
  transform-origin: top;
  transform: scaleY(0.18);
}

.rail-node {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--void);
}

.rail-node span {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-hud);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--mute);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.rail-node:hover span,
.rail-node.is-active span {
  opacity: 1;
}

.rail-node.is-active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
}

.mast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  padding: 16px 28px;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.mast.is-stuck {
  padding: 10px 28px;
  background: rgba(7, 8, 13, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.mast-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mast-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mast-seal {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.mast-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mast-word {
  font-family: var(--font-mark);
  letter-spacing: 0.12em;
  font-size: 20px;
  color: var(--cream);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.mast-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mast-nav a {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  transition: color 0.2s ease;
}

.mast-nav a:hover {
  color: var(--gold-bright);
}

.mast-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
}

.mast-icon img {
  width: 15px;
  height: 15px;
}

.mast-ignite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, #f0d56a, #b8902a);
  color: #1a1406 !important;
  font-weight: 700;
}

.mast-ignite img {
  width: 16px;
  height: 16px;
}

.mast-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.mast-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--cream);
}

.mast-toggle span:nth-child(1) { top: 13px; }
.mast-toggle span:nth-child(2) { top: 20px; }
.mast-toggle span:nth-child(3) { top: 27px; }

main,
footer {
  position: relative;
  z-index: 2;
}

.launch {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 28px 80px;
  overflow: hidden;
}

.launch-film,
.launch-film-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launch-film {
  opacity: 0;
  filter: saturate(0.85) brightness(0.55);
  transition: opacity 0.8s ease;
}

.launch-film.is-on {
  opacity: 0.38;
}

.launch-film-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 13, 0.86) 18%, rgba(7, 8, 13, 0.38) 58%, rgba(7, 8, 13, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 8, 13, 0.18), rgba(7, 8, 13, 0.82));
}

.launch-grid {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.mission-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-hud);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.06);
}

.chip-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fd08a;
  box-shadow: 0 0 10px #5fd08a;
  animation: blink 1.6s ease-in-out infinite;
}

.wordmark {
  position: relative;
  margin: 0;
  line-height: 0.9;
}

.wordmark-ghost,
.wordmark-face {
  display: block;
  font-family: var(--font-mark);
  font-size: clamp(64px, 11vw, 128px);
  letter-spacing: 0.06em;
}

.wordmark-ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.35);
  transform: translate(7px, 7px);
}

.wordmark-face {
  position: absolute;
  inset: 0;
  color: var(--cream);
  text-shadow:
    0 0 18px rgba(212, 175, 55, 0.28),
    0 8px 0 rgba(0, 0, 0, 0.35);
  animation: markShimmer 6s ease-in-out infinite;
}

.callsign {
  margin: 8px 0 0;
  font-family: var(--font-head);
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.flight-line {
  margin: 8px 0 0;
  font-family: var(--font-hud);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--mute);
}

.launch-lead {
  max-width: 540px;
  margin: 22px 0 0;
  color: #d9d2c6;
  font-size: 20px;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ignite,
.outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ignite {
  background: linear-gradient(180deg, #f3d56e, #c79a28);
  color: #1a1406;
  box-shadow: 0 0 0 1px #f0d56a, 0 8px 28px rgba(255, 122, 42, 0.18);
  animation: flamePulse 2.8s ease-in-out infinite;
}

.outline {
  border: 1px solid var(--gold);
  background: rgba(7, 8, 13, 0.45);
  color: var(--cream);
}

.ignite:hover,
.outline:hover {
  transform: translateY(-2px);
}

.ignite img,
.outline img,
.ghost-link img {
  width: 16px;
  height: 16px;
}

.ca-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  max-width: 620px;
}

.ca-label {
  font-family: var(--font-hud);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.ca-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-hud);
  font-size: 13px;
  color: var(--cream);
}

.ca-copy {
  padding: 8px 12px;
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-patch {
  display: grid;
  justify-items: center;
  gap: 22px;
  perspective: 980px;
}

.gyro {
  position: relative;
  width: min(430px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.gyro-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.gyro-ring-a {
  inset: -10px;
  border-top-color: var(--gold-bright);
  animation: spin 18s linear infinite;
}

.gyro-ring-b {
  inset: 16px;
  border-bottom-color: var(--earth);
  border-style: dashed;
  animation: spin 26s linear infinite reverse;
}

.gyro-ring-c {
  inset: 38px;
  border-left-color: var(--gold);
  animation: spin 12s linear infinite;
}

.gyro-flare {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 213, 106, 0.16), transparent 68%);
  animation: pulseHaze 4.5s ease-in-out infinite;
}

.patch-art {
  width: 78%;
  border-radius: 50%;
  animation: floatPatch 6s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.telem-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(430px, 78vw);
}

.telem {
  padding: 10px 8px;
  border: 1px solid var(--line);
  background: rgba(7, 8, 13, 0.55);
  text-align: center;
}

.telem span {
  display: block;
  font-family: var(--font-hud);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.telem strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}

.orbit-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  font-family: var(--font-hud);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.orbit-scroll i {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--gold), transparent);
  animation: dropLine 1.8s ease-in-out infinite;
}

.wing-rule {
  color: var(--gold);
  opacity: 0.7;
  padding: 0 8vw;
}

.wing-rule svg {
  width: 100%;
  height: 40px;
}

.briefing,
.boarding,
.telemetry,
.crew {
  padding: 96px 28px;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 48px;
}

.section-kicker {
  margin: 0 0 10px;
  font-family: var(--font-hud);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head h2,
.crew-banner-copy h2,
.dossier h3,
.count-body h3,
.stat-card h3 {
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-head h2,
.crew-banner-copy h2 {
  font-size: clamp(28px, 4vw, 46px);
  max-width: 16ch;
}

.section-sub,
.dossier p,
.count-body p,
.stat-card p,
.crew-banner-copy p {
  color: var(--mute);
}

.briefing-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.dossier,
.stat-card,
.count-item,
.scope {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.dossier {
  padding: 28px;
}

.dossier-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-family: var(--font-hud);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.dossier h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.stat-stack {
  display: grid;
  gap: 14px;
}

.stat-card {
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.stat-num {
  font-family: var(--font-hud);
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 12px;
}

.stat-card h3 {
  margin: 6px 0 8px;
  font-size: 16px;
}

.count-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.count-item {
  padding: 22px 18px 20px;
  position: relative;
}

.count-mark {
  font-family: var(--font-mark);
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.count-icon {
  width: 48px;
  height: 48px;
  margin: 14px 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.count-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.count-body h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.ghost-link {
  display: inline-flex;
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid transparent;
}

.ghost-link:hover {
  border-bottom-color: var(--gold);
}

.scope {
  max-width: var(--max);
  margin: 0 auto;
}

.scope-bezel {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-family: var(--font-hud);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
}

.scope-window {
  height: min(680px, 78vh);
  min-height: 460px;
}

.scope-window iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b1118;
}

.crew {
  padding-top: 40px;
}

.crew-banner-wrap {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--gold-deep);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.08);
}

.crew-banner {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  animation: ken 22s ease-in-out infinite alternate;
}

.crew-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 13, 0.15) 10%, rgba(7, 8, 13, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 8, 13, 0.55), transparent 55%);
}

.crew-banner-copy {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  max-width: 620px;
}

.crew-banner-copy h2 {
  max-width: none;
  margin-bottom: 10px;
}

.crew-banner-copy p {
  color: #e7e0d4;
}

.crew-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ground {
  padding: 40px 28px 28px;
  border-top: 1px solid var(--line);
}

.ground-inner {
  max-width: var(--max);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ground p {
  margin: 0;
  color: var(--mute);
  font-size: 15px;
}

.ground-links {
  display: flex;
  gap: 10px;
}

.ground-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.ground-links img {
  width: 16px;
  height: 16px;
}

.ground-note {
  max-width: var(--max);
  margin: 0 auto;
  font-size: 13px;
  color: #7d776c;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  padding: 10px 16px;
  border: 1px solid var(--gold);
  background: rgba(7, 8, 13, 0.92);
  font-family: var(--font-hud);
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

.rise {
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 0.9s ease forwards;
}

.rise.delay {
  animation-delay: 0.18s;
}

.rise.in-view,
.launch .rise {
  opacity: 1;
  transform: none;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, -3%, 0) scale(1.08); }
}

@keyframes pulseHaze {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes floatPatch {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes dropLine {
  0% { transform: scaleY(0.2); transform-origin: top; opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

@keyframes markShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}

@keyframes flamePulse {
  0%, 100% { box-shadow: 0 0 0 1px #f0d56a, 0 8px 28px rgba(255, 122, 42, 0.16); }
  50% { box-shadow: 0 0 0 1px #ffe08a, 0 10px 36px rgba(255, 122, 42, 0.32); }
}

@keyframes ken {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .mission-rail { display: none; }
  .launch-grid,
  .briefing-layout,
  .count-list {
    grid-template-columns: 1fr;
  }
  .telem-chips { grid-template-columns: repeat(2, 1fr); }
  .ground-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 820px) {
  .hud-corners { display: none; }
  .mast-toggle { display: block; }
  .mast-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(7, 8, 13, 0.96);
    border: 1px solid var(--line);
  }
  .mast-nav.is-open { display: flex; }
  .crew-banner-copy { left: 20px; right: 20px; bottom: 20px; }
  .crew-banner,
  .crew-banner-wrap { min-height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .rise {
    opacity: 1;
    transform: none;
  }
}
