@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #040404;
  --panel: rgba(14, 14, 14, 0.68);
  --text: #f4efe8;
  --muted: #bcb4aa;
  --orange: #f36a00;
  --orange-soft: #ff8a24;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(243, 106, 0, 0.10), transparent 32%),
    linear-gradient(180deg, #020202 0%, #080604 52%, #020202 100%);
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.page {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 36px 20px 24px;
  position: relative;
  z-index: 2;
}

.hero {
  width: min(920px, 100%);
  text-align: center;
  padding: 28px 24px 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: heroIn 1s ease both;
}

.logo-wrap {
  position: relative;
  width: min(390px, 78vw);
  margin: 0 auto 6px;
}

.logo-wrap::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 2%;
  height: 18px;
  border-radius: 50%;
  background: rgba(243, 106, 0, 0.38);
  filter: blur(18px);
  animation: glow 3.2s ease-in-out infinite;
}

.logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.75));
  animation: logoFloat 5.5s ease-in-out infinite;
}

.eyebrow {
  margin: 6px 0 14px;
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.73rem;
  font-weight: 600;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.2rem, 9vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: 0.025em;
  font-weight: 400;
  text-transform: uppercase;
}

h1 span {
  color: var(--orange);
  text-shadow: 0 0 36px rgba(243, 106, 0, 0.18);
}

.intro {
  width: min(680px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: clamp(0.95rem, 2.3vw, 1.08rem);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 18px;
  border: 1px solid rgba(243, 106, 0, 0.36);
  border-radius: 999px;
  color: #fff4ea;
  background: rgba(243, 106, 0, 0.10);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px var(--orange);
  animation: pulse 1.8s ease-in-out infinite;
}

.note {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.52);
  font-size: 0.84rem;
}

.footer {
  min-height: 72px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.42);
  font-size: 0.78rem;
  position: relative;
  z-index: 2;
}

.separator {
  color: rgba(243,106,0,0.72);
}

.ambient {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
  opacity: 0.11;
  z-index: 0;
}

.ambient-one {
  background: var(--orange);
  left: -15rem;
  top: 18%;
}

.ambient-two {
  background: #73400e;
  right: -16rem;
  bottom: 4%;
}

.embers {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.ember {
  position: absolute;
  bottom: -20px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ff7a18;
  box-shadow: 0 0 9px #ff6a00;
  opacity: 0;
  animation: rise linear forwards;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes glow {
  0%, 100% { opacity: 0.42; transform: scaleX(0.92); }
  50% { opacity: 0.78; transform: scaleX(1.08); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.72); opacity: 0.56; }
}

@keyframes rise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }
  12% { opacity: 0.8; }
  100% {
    transform: translate3d(var(--drift), -110vh, 0) scale(1.3);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .page {
    min-height: calc(100vh - 88px);
    padding: 18px 12px 10px;
  }

  .hero {
    padding: 20px 16px 28px;
    border-radius: 22px;
  }

  .logo-wrap {
    width: min(315px, 82vw);
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.17em;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .intro {
    margin-top: 20px;
    line-height: 1.65;
  }

  .footer {
    min-height: 88px;
    flex-wrap: wrap;
    gap: 7px;
  }
}

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