/* Signup-closed notice modal (separate bundle — avoids stale landing.css cache) */

.landing-notice-modal {
  border: none;
  padding: 0;
  margin: auto;
  max-width: min(420px, calc(100vw - 24px));
  width: 100%;
  background: transparent;
  overflow: visible;
}

.landing-notice-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
  overscroll-behavior: contain;
}

.landing-notice-modal::backdrop {
  background: rgba(46, 36, 32, 0.58);
  backdrop-filter: blur(4px);
}

.landing-notice-card {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--lucy-surface);
  border: 1px solid var(--lucy-border);
  box-shadow: 0 24px 64px rgba(46, 36, 32, 0.28);
  display: flex;
  flex-direction: column;
}

.landing-notice-header {
  padding: 32px 24px 24px;
  text-align: center;
  background: linear-gradient(145deg, #4a382e 0%, var(--lucy-espresso) 55%, #2a1f1a 100%);
  color: #f7f3ee;
  position: relative;
  flex-shrink: 0;
}

.landing-notice-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(99, 102, 241, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 8% 95%, rgba(255, 255, 255, 0.07) 0%, transparent 38%);
  pointer-events: none;
}

.landing-notice-header > * {
  position: relative;
  z-index: 1;
}

.landing-notice-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f7f3ee;
  flex-shrink: 0;
}

.landing-notice-icon svg {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  flex-shrink: 0;
}

.landing-notice-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #f7f3ee;
}

.landing-notice-body {
  padding: 22px 24px 24px;
  background: var(--lucy-surface);
  flex-shrink: 0;
}

.landing-notice-lead {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--lucy-muted);
  text-align: center;
}

.landing-notice-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-notice-actions .landing-btn {
  width: 100%;
  min-height: 48px;
}

.landing-notice-actions .landing-btn-primary {
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.28);
}

@media (max-width: 640px) {
  .landing-notice-modal {
    max-width: none;
    width: 100%;
    margin: 0;
    padding:
      max(12px, env(safe-area-inset-top, 0px))
      max(12px, env(safe-area-inset-right, 0px))
      max(12px, env(safe-area-inset-bottom, 0px))
      max(12px, env(safe-area-inset-left, 0px));
  }

  .landing-notice-card {
    margin: 0;
  }

  .landing-notice-header {
    padding: 28px 20px 20px;
  }

  .landing-notice-body {
    padding: 18px 20px 22px;
  }
}
