:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: rgba(255, 215, 0, 0.08);
  --gold: #d4af37;
  --gold-soft: #f0d87f;
  --text: #f5f2ea;
  --muted: #b9b39e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.24), transparent 15%),
                    radial-gradient(circle at 75% 25%, rgba(245, 202, 85, 0.18), transparent 16%),
                    radial-gradient(circle at 50% 80%, rgba(255, 215, 0, 0.22), transparent 18%);
  opacity: 0.55;
  filter: blur(40px);
  pointer-events: none;
  animation: floatGold 18s ease-in-out infinite;
  z-index: 0;
}

.page-wrap {
  width: min(100%, 900px);
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  padding: 64px 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25);
}

.brand-mark {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: 700;
  color: var(--bg);
  background: linear-gradient(135deg, #ffd35f 0%, #b38817 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: 0.82rem;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.intro {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 34px;
}

.meta {
  display: inline-flex;
  padding: 18px 22px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 32px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  background: linear-gradient(135deg, #ffd35f 0%, #b38817 100%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.22);
}

@keyframes floatGold {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-8%, 6%) scale(1.06);
  }
}
