:root {
  --bg: #050505;
  --bg-panel: #0c0c0c;
  --text: #f4f4f5;
  --yellow: #ffc107;
  --yellow-bright: #ffe066;
  --yellow-dim: rgba(255, 193, 7, 0.15);
  --font: "Rajdhani", system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.25)),
    url("/background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.logo-stage {
  position: relative;
  width: min(92vw, 32rem);
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.orbit svg {
  width: 108%;
  height: auto;
  overflow: visible;
}

.orbit--inner svg {
  width: 98%;
}

.orbit-track {
  fill: none;
  stroke: rgba(255, 193, 7, 0.12);
  stroke-width: 1.5;
}

.orbit-track--dim {
  stroke: rgba(255, 193, 7, 0.06);
}

.orbit-runner {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 12 88;
  filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.65));
}

.orbit-runner--outer {
  animation: orbit-dash 4.5s linear infinite;
}

.orbit-runner--inner {
  stroke-width: 2;
  stroke-dasharray: 8 92;
  animation: orbit-dash 3s linear infinite reverse;
  opacity: 0.85;
}

@keyframes orbit-dash {
  to {
    stroke-dashoffset: -100;
  }
}

.logo-shell {
  position: relative;
  width: 100%;
  padding: 3px;
  border-radius: 1.25rem;
  overflow: hidden;
  isolation: isolate;
}

.logo-ring {
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 250deg,
    var(--yellow) 280deg,
    var(--yellow-bright) 300deg,
    var(--yellow) 320deg,
    transparent 350deg
  );
  animation: logo-ring-spin 5s linear infinite;
}

@keyframes logo-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.logo-panel {
  position: relative;
  background: linear-gradient(180deg, var(--bg-panel) 0%, #080808 100%);
  border-radius: calc(1.25rem - 3px);
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1.5rem, 5vw, 2.75rem);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.logo-image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.eyebrow {
  margin: -8px 0 0;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
}

@media (prefers-reduced-motion: reduce) {
  .logo-ring,
  .orbit-runner {
    animation: none;
  }

  .orbit-runner {
    stroke-dasharray: none;
    stroke-opacity: 0.5;
  }
}
