html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #020012;
  font-family: Arial, Helvetica, sans-serif;
}

#oceanScene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(24px, 8vw, 120px);
  max-width: 720px;
  color: white;
  pointer-events: none;
}

.eyebrow {
  color: #6ffcff;
  letter-spacing: .26em;
  font-size: 13px;
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(0, 240, 255, .8);
}

h1 {
  margin: 0;
  font-size: clamp(56px, 9vw, 132px);
  line-height: .86;
  letter-spacing: -.07em;
  text-shadow: 0 20px 70px rgba(0,0,0,.45);
}

p {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.65;
}

@media (max-width: 720px) {
  .hero-content {
    justify-content: flex-end;
    padding: 24px;
    padding-bottom: 70px;
  }

  p {
    font-size: 15px;
  }
}
