:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --ink: #f5f2ec;
  --dim: #8a8580;
  --gold: #c9a54a;
  --gold-2: #e5c775;
  --rule: #2a2a2a;
}

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

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 50% 40%, rgba(201, 165, 74, 0.06), transparent 70%),
    radial-gradient(800px 600px at 20% 80%, rgba(201, 165, 74, 0.03), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.splash {
  text-align: center;
  max-width: 720px;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  animation: splash-in 1400ms cubic-bezier(0.16, 1, 0.3, 1) 200ms forwards;
}

@keyframes splash-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Real logo image — chrome-embossed ENCOREXO.com with CSS ™ overlay at 50% size */
.logo-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  line-height: 0;
}
.logo {
  display: block;
  width: min(78vw, 620px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}
.logo-tm {
  position: absolute;
  top: 2%;
  right: -0.9em;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Rule under the mark */
.rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 24px;
  opacity: 0;
  animation: rule-in 800ms ease-out 900ms forwards;
}
@keyframes rule-in {
  from { width: 0; opacity: 0; }
  to { width: 64px; opacity: 1; }
}

/* Welcome tagline slot */
.welcome {
  font-size: clamp(16px, 3vw, 22px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  padding-left: 0.42em;
  opacity: 0;
  animation: fade-in 900ms ease-out 1100ms forwards;
}

/* Tagline slot — kept invisible until CX ships copy */
.tagline {
  margin-top: 20px;
  min-height: 20px;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--dim);
  text-transform: uppercase;
  font-style: italic;
  opacity: 0;
}
.tagline:not(:empty) {
  animation: fade-in 900ms ease-out 1400ms forwards;
}

@keyframes fade-in { to { opacity: 1; } }

/* Foot */
.foot {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--dim);
  text-transform: uppercase;
  opacity: 0;
  animation: fade-in 800ms ease-out 1600ms forwards;
}

/* Small screens — tighten spacing */
@media (max-width: 480px) {
  .splash { max-width: 100%; }
  .rule { margin: 20px auto 16px; }
  .welcome { letter-spacing: 0.28em; }
  .foot { bottom: 16px; }
}
