* {
  box-sizing: border-box;
}

:root {
  --orange: #ff6a00;
  --orange-hot: #ff8a22;
  --white: #f5f5f5;
  --muted: #9a9a9a;
  --bg: #050505;
}

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

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);

  background:
    linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.0)),
    url("background.png") center center / cover no-repeat fixed;

  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 24px 34px;
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #c7c7c7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .23em;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255,106,0,.9);
  animation: pulse 1.6s ease-in-out infinite;
}

.logo-wrap {
  position: relative;
  width: min(820px, 86vw);
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.72));
  transition: transform .18s ease-out, filter .18s ease-out;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 5%;
  background: rgba(255,106,0,.12);
  filter: blur(44px);
  opacity: .5;
  z-index: -1;
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
}

.divider {
  width: min(560px, 72vw);
  display: grid;
  grid-template-columns: 1fr 8px 1fr;
  gap: 12px;
  align-items: center;
  margin: 26px auto 20px;
}

.divider i {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,.8));
}

.divider i:last-child {
  background: linear-gradient(90deg, rgba(255,106,0,.8), transparent);
}

.divider b {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255,106,0,.75);
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5.3vw, 74px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: .16em;
  text-indent: .16em;
}

h1 em {
  color: var(--orange);
  font-style: normal;
  text-shadow: 0 0 28px rgba(255,106,0,.22);
}

.intro {
  margin: 18px 0 0;
  color: #bdbdbd;
  font-size: clamp(14px, 1.55vw, 19px);
  letter-spacing: .05em;
}

.services {
  margin: 13px 0 0;
  color: #727272;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.services span {
  color: var(--orange);
  padding: 0 7px;
}

.build-line {
  width: min(440px, 74vw);
  margin-top: 30px;
}

.build-label {
  display: block;
  margin-bottom: 9px;
  color: #757575;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
}

.track {
  display: block;
  height: 3px;
  overflow: hidden;
  background: #171717;
  border-radius: 999px;
}

.fill {
  display: block;
  width: 66%;
  height: 100%;
  background: linear-gradient(90deg, #8b3300, var(--orange-hot));
  box-shadow: 0 0 15px rgba(255,106,0,.55);
  animation: breathe 2.8s ease-in-out infinite;
}

footer {
  position: relative;
  z-index: 5;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid #171717;
  color: #555;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.footer-dot {
  color: var(--orange);
}

.grid {
  position: fixed;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 45%, black 100%);
}

.scanlines {
  position: fixed;
  z-index: 7;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255,255,255,.09) 4px
  );
}

.ambient {
  position: fixed;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.ambient-one {
  left: -180px;
  top: 22%;
  background: rgba(255,106,0,.11);
}

.ambient-two {
  right: -220px;
  bottom: -100px;
  background: rgba(255,106,0,.07);
}

.particle {
  position: fixed;
  z-index: 2;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255,106,0,.9);
  opacity: 0;
  animation: drift linear infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(.85); opacity: .55; }
  50% { transform: scale(1.15); opacity: 1; }
}

@keyframes breathe {
  0%, 100% { filter: brightness(.82); }
  50% { filter: brightness(1.18); }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 25px, 0);
    opacity: 0;
  }
  15% { opacity: .65; }
  80% { opacity: .18; }
  100% {
    transform: translate3d(18px, -130px, 0);
    opacity: 0;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: calc(100vh - 48px);
    padding-inline: 18px;
  }

  .logo-wrap {
    width: min(94vw, 680px);
  }

  .services {
    line-height: 1.9;
  }

  footer {
    height: 48px;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding-inline: 12px;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
}
