.project-notice {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  min-height: 100dvh;
  padding: clamp(18px, 4vw, 48px);
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(39, 112, 204, 0.22), transparent 42%),
    rgba(3, 13, 26, 0.97);
  color: #f4f8ff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-overflow-scrolling: touch;
}

.project-notice[hidden] {
  display: none;
}

.project-notice__panel {
  width: min(760px, 100%);
  box-sizing: border-box;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(130, 178, 235, 0.38);
  border-radius: 24px;
  background: rgba(13, 31, 53, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  outline: none;
}

.project-notice__eyebrow {
  margin: 0 0 12px;
  color: #9fc7f5;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-notice h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.08;
}

.project-notice__text {
  display: grid;
  gap: 14px;
  color: #d6e3f3;
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  line-height: 1.65;
}

.project-notice__text p {
  margin: 0;
}

.project-notice__text strong {
  color: #ffffff;
}

.project-notice__button {
  min-width: 160px;
  margin-top: 28px;
  padding: 14px 24px;
  border: 0;
  border-radius: 14px;
  background: #2b7bd8;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 87, 190, 0.28);
}

.project-notice__button:hover {
  background: #3689e8;
}

.project-notice__button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

html.ww-project-notice-open,
html.ww-project-notice-open body {
  overflow: hidden !important;
}

@media (max-width: 520px) {
  .project-notice {
    place-items: start center;
    padding: 12px;
  }

  .project-notice__panel {
    margin-block: 12px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .project-notice__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .project-notice__panel {
    animation: ww-project-notice-enter 180ms ease-out;
  }

  @keyframes ww-project-notice-enter {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.985);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
