:root {
  --navy: #0d1f2d;
  --green: #00a67e;
  --green-dark: #007a5e;
  --gold: #c8a96e;
  --cream: #f5f4ef;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 5% 48px;
  overflow: hidden;
  isolation: isolate;
}

.page-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0, 166, 126, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 169, 110, 0.08) 0%, transparent 50%);
  z-index: -2;
}

.page-grid {
  position: absolute;
  inset: 0;
  background-image:
    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: 60px 60px;
  z-index: -1;
}

.shell {
  position: relative;
  width: 100%;
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s ease both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 166, 126, 0.15);
  border: 1px solid rgba(0, 166, 126, 0.3);
  color: var(--green);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 166, 126, 0.18);
}

h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 720px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.3s ease both;
}

.notice {
  background: rgba(0, 166, 126, 0.12);
  border: 1px solid rgba(0, 166, 126, 0.25);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  max-width: 520px;
  width: 100%;
  text-align: left;
  animation: fadeUp 0.6s 0.4s ease both;
}

.notice-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.notice-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

.foot {
  position: relative;
  margin-top: 4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.3px;
  animation: fadeUp 0.6s 0.5s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 72px 6% 40px;
  }

  .brand {
    margin-bottom: 1.75rem;
  }

  h1 {
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .notice {
    padding: 1.25rem 1.25rem;
  }

  .foot {
    margin-top: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .badge,
  h1,
  .lead,
  .notice,
  .foot {
    animation: none;
  }
}
