:root {
  --bg: #090b12;
  --bg-deep: #06070d;
  --panel: rgba(14, 18, 31, 0.76);
  --panel-strong: rgba(19, 24, 39, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.14);
  --text: #f4f7ff;
  --muted: rgba(244, 247, 255, 0.74);
  --muted-soft: rgba(244, 247, 255, 0.56);
  --blue: #9cd9ff;
  --mint: #b9ffd9;
  --peach: #ffccb8;
  --lilac: #d4c6ff;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  --shell-width: min(760px, calc(100vw - 32px));
}

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

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(156, 217, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(255, 204, 184, 0.16), transparent 24%),
    radial-gradient(circle at 72% 76%, rgba(185, 255, 217, 0.18), transparent 26%),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 92%);
  pointer-events: none;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(15, 18, 30, 0.96);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  isolation: isolate;
}

.atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.atmosphere__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.9;
  animation: drift 18s ease-in-out infinite;
}

.atmosphere__orb--one {
  width: 24rem;
  height: 24rem;
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(156, 217, 255, 0.44), rgba(156, 217, 255, 0));
}

.atmosphere__orb--two {
  width: 28rem;
  height: 28rem;
  right: -10%;
  top: 16%;
  background: radial-gradient(circle, rgba(255, 204, 184, 0.34), rgba(255, 204, 184, 0));
  animation-delay: -7s;
}

.atmosphere__orb--three {
  width: 24rem;
  height: 24rem;
  left: 50%;
  bottom: -18%;
  background: radial-gradient(circle, rgba(185, 255, 217, 0.32), rgba(185, 255, 217, 0));
  animation-delay: -11s;
}

.atmosphere__grid {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 22%, black 78%, transparent);
}

.shell {
  position: relative;
  width: var(--shell-width);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  overflow: hidden;
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(18px);
  opacity: 0;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.shell::before,
.shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shell::before {
  background:
    radial-gradient(circle at var(--glow-x, 70%) var(--glow-y, 24%), rgba(255, 255, 255, 0.15), transparent 24%),
    radial-gradient(circle at 10% 10%, rgba(212, 198, 255, 0.18), transparent 26%),
    radial-gradient(circle at 90% 78%, rgba(156, 217, 255, 0.16), transparent 24%);
}

.shell::after {
  inset: 1px;
  border-radius: 31px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.is-ready .shell {
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(0);
  opacity: 1;
}

.shell__inner {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 44px);
}

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

h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 8ch;
}

.lede {
  margin: 22px 0 0;
  max-width: 40rem;
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.72;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 600;
}

.vision {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vision__label,
.vision__copy {
  margin: 0;
}

.vision__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lilac);
}

.vision__copy {
  margin-top: 10px;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.7;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 30px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.notice__signal {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.notice__signal span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 0 0 6px rgba(156, 217, 255, 0.08);
  animation: pulse 2.6s ease-in-out infinite;
}

.notice__body p {
  margin: 0;
}

.notice__label {
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
}

.notice__body p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.fact {
  min-height: 132px;
  padding: 18px;
  border-radius: 22px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fact__label,
.fact__value {
  margin: 0;
}

.fact__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.fact__value {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.closing {
  margin: 24px 0 0;
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.document-page .shell {
  max-width: 720px;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

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

  .page {
    padding-block: 24px;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .notice {
    grid-template-columns: 1fr;
  }

  .notice__signal {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .atmosphere__orb,
  .notice__signal span {
    animation: none;
  }

  .shell,
  .is-ready .shell {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
