:root {
  --ink: #070706;
  --coal: #0d0c0a;
  --anthracite: #17140f;
  --gold: #c79a3b;
  --gold-light: #e1bd69;
  --cream: #f3ead7;
  --muted: #b8aa90;
  --line: rgba(215, 178, 93, 0.28);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  min-height: 100%;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 12%, rgba(173, 125, 38, 0.14), transparent 34rem),
    linear-gradient(180deg, #12100c 0%, #090908 58%, #050505 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 18px;
  z-index: 10;
  pointer-events: none;
  border: 1px solid rgba(209, 166, 75, 0.22);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.42);
}

.background,
.background > * {
  position: fixed;
  pointer-events: none;
}

.background {
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.glow {
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.18;
}

.glow--one {
  width: 32rem;
  height: 32rem;
  top: -14rem;
  left: calc(50% - 16rem);
  background: #d6a747;
  animation: drift 10s ease-in-out infinite alternate;
}

.glow--two {
  width: 20rem;
  height: 20rem;
  right: -8rem;
  bottom: -8rem;
  background: #7d591c;
  opacity: 0.12;
}

.grain {
  inset: 0;
  opacity: 0.10;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, rgba(255,255,255,.24) 1px, transparent 2px, transparent 4px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

.shaft {
  width: 1px;
  height: 65vh;
  top: 4vh;
  background: linear-gradient(180deg, transparent, rgba(220, 178, 88, 0.22), transparent);
  transform: rotate(22deg);
  transform-origin: top;
}

.shaft--one {
  left: 13%;
}

.shaft--two {
  right: 13%;
  transform: rotate(-22deg);
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 64px 28px 34px;
}

.hero {
  width: min(920px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  animation: reveal 0.7s 0.05s ease forwards;
}

.logo-wrap {
  position: relative;
  width: min(430px, 76vw);
  margin: 0 auto 20px;
  isolation: isolate;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  animation: logoIn 1.15s 0.15s cubic-bezier(.2,.75,.25,1) forwards;
}

.logo-halo {
  position: absolute;
  inset: 11%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 167, 71, 0.31), rgba(214, 167, 71, 0.05) 48%, transparent 72%);
  filter: blur(18px);
  animation: pulse 5s ease-in-out infinite;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  filter:
    drop-shadow(0 18px 32px rgba(0,0,0,.6))
    drop-shadow(0 0 24px rgba(194,145,49,.18));
  user-select: none;
}

.content {
  width: min(760px, 100%);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.9s 0.55s ease forwards;
}

.kicker {
  margin: 0 0 5px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.98rem, 2.1vw, 1.15rem);
  font-style: italic;
  letter-spacing: 0.06em;
}

h1 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 6.7rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-shadow: 0 8px 30px rgba(0,0,0,.55);
}

h1::after {
  content: "";
  display: block;
  width: min(210px, 42vw);
  height: 1px;
  margin: 25px auto 22px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro {
  width: min(670px, 100%);
  margin: 0 auto;
  color: #d9cfbb;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 28px auto 24px;
}

.topics span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d9c89f;
  background: rgba(255, 255, 255, 0.022);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #948873;
  font-size: 0.84rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(199, 154, 59, 0.55);
  animation: ping 2.3s ease-out infinite;
}

.footer {
  position: relative;
  z-index: 2;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px 28px 28px;
  color: #746c5d;
  font-size: 0.78rem;
  letter-spacing: 0.045em;
  text-align: center;
}

.footer-divider {
  width: 24px;
  height: 1px;
  background: rgba(199, 154, 59, 0.4);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  50% {
    transform: scale(1.06);
    opacity: 0.74;
  }
}

@keyframes drift {
  to {
    transform: translateY(24px) scale(1.08);
  }
}

@keyframes ping {
  70% {
    box-shadow: 0 0 0 8px rgba(199, 154, 59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(199, 154, 59, 0);
  }
}

@media (max-width: 640px) {
  body::before {
    inset: 10px;
  }

  .page-shell {
    min-height: calc(100vh - 82px);
    padding: 44px 20px 20px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.64rem;
  }

  .logo-wrap {
    width: min(340px, 85vw);
    margin-bottom: 12px;
  }

  .intro {
    line-height: 1.62;
  }

  .topics {
    gap: 7px;
    margin-top: 22px;
  }

  .topics span {
    padding: 8px 11px;
    font-size: 0.68rem;
  }

  .footer {
    min-height: 82px;
    flex-direction: column;
    gap: 7px;
    padding-bottom: 22px;
  }

  .footer-divider {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
