@font-face {
  font-family: "VicaleFallback";
  src: local("Inter"), local("Segoe UI"), local("Arial");
}

:root {
  --blue: #00007b;
  --blue-soft: rgba(0, 0, 123, 0.10);
  --blue-lighter: rgba(35, 56, 209, 0.08);
  --text-muted: rgba(0, 0, 123, 0.72);
  --bg-top: #fbfcff;
  --bg-bottom: #f3f6fc;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: VicaleFallback, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 39%, rgba(0, 0, 123, 0.075), transparent 23rem),
    radial-gradient(circle at 16% 18%, rgba(35, 56, 209, 0.075), transparent 22rem),
    radial-gradient(circle at 84% 15%, rgba(0, 0, 123, 0.055), transparent 24rem),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  overflow: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 4rem);
  isolation: isolate;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.54), rgba(255,255,255,0.54)),
    radial-gradient(circle at 1px 1px, rgba(0, 0, 123, 0.08) 1px, transparent 0);
  background-size: auto, 22px 22px;
  opacity: 0.28;
  pointer-events: none;
  z-index: -3;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(58px);
  z-index: -2;
}

.ambient-one {
  width: 32rem;
  height: 32rem;
  top: -12rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(0, 0, 123, 0.16), transparent 68%);
  opacity: 0.46;
}

.ambient-two {
  width: 26rem;
  height: 26rem;
  left: -9rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(35, 56, 209, 0.14), transparent 70%);
  opacity: 0.42;
}

.lockup {
  width: min(920px, 100%);
  min-height: min(680px, 78vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vh, 2.8rem);
  text-align: center;
}

.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.logo-stage::before {
  content: "";
  position: absolute;
  width: min(42vw, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 123, 0.11), rgba(0, 0, 123, 0.045) 46%, transparent 70%);
  filter: blur(10px);
  transform: translateY(4%);
  z-index: -1;
}

.brand-mark {
  width: clamp(330px, 38vw, 560px);
  max-width: 86vw;
  height: auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 123, 0.13));
}

.v-static {
  transform: none;
}

.wave {
  transform-box: fill-box;
  will-change: transform;
}

.wave-top {
  animation: waveTop 7.2s ease-in-out infinite;
}

.wave-middle {
  animation: waveMiddle 7.8s ease-in-out infinite;
}

.wave-bottom-outer {
  animation: waveBottom 8.4s ease-in-out infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.9rem, 2vh, 1.15rem);
}

h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.8rem, 7vw, 6.25rem);
  line-height: 0.92;
  font-weight: 650;
  letter-spacing: clamp(0.16em, 1vw, 0.22em);
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}

.fine-line {
  width: min(170px, 34vw);
  height: 1px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 123, 0.52), transparent);
  opacity: 0.85;
}

p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.45vw, 1.22rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: clamp(0.32em, 1.1vw, 0.46em);
  text-transform: uppercase;
}

@keyframes waveTop {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(2.4px, -1.4px, 0) rotate(0.34deg); }
}

@keyframes waveMiddle {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(2px, -0.3px, 0) rotate(0.22deg); }
}

@keyframes waveBottom {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(1.6px, 0.35px, 0) rotate(0.16deg); }
}

@media (max-width: 720px) {
  body {
    overflow: auto;
  }

  .lockup {
    min-height: 70vh;
    gap: 1.6rem;
  }

  .brand-mark {
    width: clamp(260px, 78vw, 380px);
  }

  h1 {
    letter-spacing: 0.12em;
  }

  p {
    letter-spacing: 0.24em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-top,
  .wave-middle,
  .wave-bottom-outer {
    animation: none !important;
  }
}
