:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --orange: #e88121;
  --orange-hot: #ff9a3c;
  --orange-dim: rgba(232, 129, 33, 0.18);
  --text: #f4f4f4;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.08);
  --font-display: "Orbitron", sans-serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(232, 129, 33, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(232, 129, 33, 0.08), transparent 50%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  opacity: 0.55;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-a {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: 8%;
  left: -8%;
  background: rgba(232, 129, 33, 0.22);
}

.orb-b {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  right: -6%;
  bottom: 10%;
  background: rgba(255, 154, 60, 0.12);
  animation-delay: -4s;
  animation-duration: 18s;
}

.scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(232, 129, 33, 0.05),
    transparent
  );
  animation: scan 9s linear infinite;
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(24px, 36px) scale(1.08);
  }
}

@keyframes scan {
  0% {
    top: -20%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 110%;
    opacity: 0;
  }
}

/* Stage */
.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 1.25rem;
  gap: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  position: relative;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 129, 33, 0.28) 0%,
    rgba(232, 129, 33, 0.1) 40%,
    transparent 72%
  );
  filter: blur(10px);
  pointer-events: none;
}

.lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2.5vw, 1.35rem);
}

.mark {
  width: clamp(72px, 16vw, 108px);
  height: clamp(72px, 16vw, 108px);
  object-fit: cover;
  object-position: 8% 50%;
  flex-shrink: 0;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 12px rgba(232, 129, 33, 0.55))
    brightness(1.15)
    contrast(1.1);
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.92;
  text-align: left;
}

.wordmark .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 5.5vw, 2.65rem);
  letter-spacing: 0.14em;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.wordmark .tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 5.5vw, 2.65rem);
  letter-spacing: 0.14em;
  color: var(--orange);
  text-shadow: 0 0 28px rgba(232, 129, 33, 0.45);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.headline .line {
  display: block;
  animation: rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.headline .line:first-child {
  animation-delay: 0.2s;
  color: var(--text);
}

.headline .accent {
  animation-delay: 0.32s;
  background: linear-gradient(105deg, var(--orange) 0%, var(--orange-hot) 55%, #ffc078 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 1.35rem auto 0;
  max-width: 34rem;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  line-height: 1.65;
  font-weight: 400;
  color: var(--muted);
  animation: rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.meta {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a7a7a;
  animation: rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(232, 129, 33, 0.55);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 129, 33, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(232, 129, 33, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 129, 33, 0);
  }
}

@media (max-width: 520px) {
  .lockup {
    gap: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .scan,
  .pulse,
  .brand,
  .eyebrow,
  .headline .line,
  .lede,
  .meta {
    animation: none !important;
  }
}
