:root {
  --bg: #07080d;
  --ink: #f6f0e4;
  --muted: #b8b1a4;
  --gold: #e0c078;
  --gold-deep: #9a7430;
  --line: rgba(224, 192, 120, 0.28);
  --card: rgba(16, 18, 26, 0.72);
}

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

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

body {
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.glow-a {
  width: 42vw;
  height: 42vw;
  min-width: 280px;
  min-height: 280px;
  background: #3a2a12;
  top: -12%;
  left: -8%;
}

.glow-b {
  width: 36vw;
  height: 36vw;
  min-width: 240px;
  min-height: 240px;
  background: #1a2748;
  right: -6%;
  bottom: -10%;
}

.glow-c {
  width: 22vw;
  height: 22vw;
  min-width: 180px;
  min-height: 180px;
  background: #4a1824;
  right: 18%;
  top: 12%;
  opacity: 0.28;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.frame {
  position: relative;
  width: min(920px, 100%);
  padding: 1px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(224, 192, 120, 0.7), rgba(224, 192, 120, 0.08) 38%, rgba(224, 192, 120, 0.45) 72%, rgba(243, 230, 196, 0.2));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: 27px;
  padding: clamp(40px, 8vw, 88px) clamp(24px, 6vw, 72px);
  background:
    radial-gradient(1200px 420px at 50% -10%, rgba(224, 192, 120, 0.12), transparent 55%),
    linear-gradient(180deg, #12141c 0%, #0b0d14 100%);
  text-align: center;
}

.mark {
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
}

.logo {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(3.2rem, 10vw, 6.4rem);
  letter-spacing: 0.12em;
  line-height: 0.9;
  text-indent: 0.12em;
  background: linear-gradient(180deg, #fff6dd 0%, #e0c078 48%, #9a7430 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-sub {
  margin: 14px 0 0;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.46em;
  text-indent: 0.46em;
  color: var(--gold);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(224, 192, 120, 0.7);
  animation: pulse 2.2s ease-out infinite;
}

.message {
  max-width: 540px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.collections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.chip {
  min-width: 150px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  color: var(--ink);
}

.chip strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.chip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer {
  margin: 42px 0 0;
  color: #7d776c;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(224, 192, 120, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 192, 120, 0);
  }
}

@media (max-width: 640px) {
  .logo-sub {
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .status {
    letter-spacing: 0.16em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse {
    animation: none;
  }
}
