.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-left { padding: 80px 0 40px; }

.hero-logo-wrap {
  margin-bottom: 24px;
  position: relative;
}

/* Wordmark */
.hero-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 68px;
  font-weight: 500;
  letter-spacing: 8px;
  line-height: 1;
  margin: 0;
}

.wm-lode { color: var(--text); }
.wm-star { color: var(--gold); }

.logo-text-reveal {
  animation: logoFade 0.6s ease forwards;
  opacity: 0;
  animation-delay: 0.1s;
}

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

/* Terminal-style tagline */
.hero-tagline {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.terminal-prompt {
  color: var(--gold);
  margin-right: 4px;
}

.terminal-cursor {
  color: var(--gold);
  animation: cursorBlink 1s step-end infinite;
}

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

.hero-body {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}

.hero-credibility {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.3s;
}

.hero-right {
  position: relative;
  height: 600px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.5s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8vh;
  margin-left: -130px;
}

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

.hero-ship-wrap {
  position: relative;
  display: inline-block;
}

.ship-light-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
  background: transparent;
  /* Clip to the ship image — transparent PNG edges won't glow */
  mask-image: var(--ship-mask);
  -webkit-mask-image: var(--ship-mask);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.hero-ship {
  max-width: 323px;
  max-height: 272px;
  width: auto;
  height: auto;
  display: block;
  opacity: 0;
  filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.08));
  transform: translateY(150px);
}

.hero-ship.risen {
  animation: shipBob 6s ease-in-out infinite;
}

@keyframes shipBob {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(0.5deg); }
  50% { transform: translateY(3px) rotate(-0.3deg); }
  75% { transform: translateY(-2px) rotate(0.2deg); }
}
