:root {
  --ink: #f3fbf7;
  --muted: rgba(243, 251, 247, 0.72);
  --surface: rgba(3, 16, 23, 0.36);
  --line: rgba(216, 249, 236, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: #06141a;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
}

.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(207, 233, 218, 0.3) 0%, transparent 36%),
    radial-gradient(circle at 18% 18%, rgba(255, 239, 182, 0.22), transparent 28%),
    linear-gradient(135deg, #0c2d34 0%, #083542 42%, #07151a 100%);
}

#sea {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}

.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 18, 21, 0.04), rgba(1, 8, 12, 0.56)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 88px
    );
  mix-blend-mode: soft-light;
}

.title-panel {
  position: absolute;
  top: clamp(24px, 7vh, 72px);
  left: clamp(20px, 7vw, 92px);
  z-index: 2;
  width: min(680px, calc(100vw - 40px));
  pointer-events: none;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Instrument Serif", serif;
  font-size: clamp(4.6rem, 13vw, 12.5rem);
  font-weight: 400;
  line-height: 0.82;
}

.hud {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(16px, 4vh, 42px);
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: clamp(0.68rem, 1.8vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.hud span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--surface);
  backdrop-filter: blur(14px);
}

@media (max-width: 720px) {
  .title-panel {
    top: 26px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.9rem, 21vw, 7rem);
  }

  .hud {
    right: auto;
    left: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
    flex-wrap: wrap;
  }
}
