@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --background: #070707;
  --surface: #111111;
  --text: #f4f4f4;
  --muted: #999999;
  --accent: #ff1801;
  --border: rgba(255, 255, 255, 0.12);
}

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

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

body {
  background:
    radial-gradient(circle at 80% 45%, rgba(255, 24, 1, 0.11), transparent 32%),
    var(--background);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 28px clamp(24px, 5vw, 80px);
  overflow: hidden;
}

nav,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.status {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  padding: 8px 14px 8px 9px;
}

.start-lights {
  display: flex;
  gap: 4px;
  padding: 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  background: #0a0a0a;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.85);
}

.start-lights i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: #2c0b08;
}

.start-lights i:nth-child(1) {
  animation: light-one 10s steps(1, end) infinite;
}

.start-lights i:nth-child(2) {
  animation: light-two 10s steps(1, end) infinite;
}

.start-lights i:nth-child(3) {
  animation: light-three 10s steps(1, end) infinite;
}

.start-lights i:nth-child(4) {
  animation: light-four 10s steps(1, end) infinite;
}

.start-lights i:nth-child(5) {
  animation: light-five 10s steps(1, end) infinite;
}

.status-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.status-copy strong {
  color: #bcbcbc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.status-copy > span {
  color: #555555;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 1.15px;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  margin: auto 0;
  padding: 80px 0;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
}

h1 {
  max-width: 850px;
  font-size: clamp(58px, 9vw, 130px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

h1 span {
  display: block;
  color: transparent;
  letter-spacing: -0.045em;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.65);
}

.description {
  max-width: 620px;
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

.search-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(630px, 100%);
  margin-top: 40px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.8);
  color: #cccccc;
  font-size: 14px;
  backdrop-filter: blur(14px);
}

.search-icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.cursor {
  width: 2px;
  height: 18px;
  background: var(--accent);
  animation: blink 1s infinite;
}

.launch-text {
  margin-top: 20px;
  color: #666666;
  font-size: 12px;
  letter-spacing: 0.6px;
}

footer {
  position: relative;
  z-index: 2;
  color: #555555;
  font-size: 9px;
  letter-spacing: 1.5px;
}

.speed-line {
  position: absolute;
  right: -15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 24, 1, 0.75),
    transparent
  );
  transform: rotate(-8deg);
  filter: blur(1px);
  animation: whoosh 4s ease-in-out infinite;
}

.speed-line-one {
  top: 43%;
}

.speed-line-two {
  top: 48%;
  animation-delay: 0.3s;
  opacity: 0.4;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes light-one {
  0%, 4%, 44%, 56%, 68%, 80%, 91%, 100% {
    background: #2c0b08;
    box-shadow: none;
  }

  5%, 43%, 50%, 62%, 74%, 86%, 90% {
    background: var(--accent);
    box-shadow: 0 0 7px rgba(255, 24, 1, 0.9);
  }
}

@keyframes light-two {
  0%, 11%, 44%, 56%, 68%, 80%, 91%, 100% {
    background: #2c0b08;
    box-shadow: none;
  }

  12%, 43%, 50%, 62%, 74%, 86%, 90% {
    background: var(--accent);
    box-shadow: 0 0 7px rgba(255, 24, 1, 0.9);
  }
}

@keyframes light-three {
  0%, 18%, 44%, 56%, 68%, 80%, 91%, 100% {
    background: #2c0b08;
    box-shadow: none;
  }

  19%, 43%, 50%, 62%, 74%, 86%, 90% {
    background: var(--accent);
    box-shadow: 0 0 7px rgba(255, 24, 1, 0.9);
  }
}

@keyframes light-four {
  0%, 25%, 44%, 56%, 68%, 80%, 91%, 100% {
    background: #2c0b08;
    box-shadow: none;
  }

  26%, 43%, 50%, 62%, 74%, 86%, 90% {
    background: var(--accent);
    box-shadow: 0 0 7px rgba(255, 24, 1, 0.9);
  }
}

@keyframes light-five {
  0%, 32%, 44%, 56%, 68%, 80%, 91%, 100% {
    background: #2c0b08;
    box-shadow: none;
  }

  33%, 43%, 50%, 62%, 74%, 86%, 90% {
    background: var(--accent);
    box-shadow: 0 0 7px rgba(255, 24, 1, 0.9);
  }
}

@keyframes whoosh {
  0% {
    transform: translateX(50%) rotate(-8deg);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    transform: translateX(-130%) rotate(-8deg);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 22px;
  }

  .hero {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(54px, 18vw, 84px);
  }

  .search-preview {
    align-items: flex-start;
  }

  .status {
    gap: 0;
    padding: 7px;
  }

  .status-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  footer span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .speed-line,
  .cursor,
  .start-lights i {
    animation: none;
  }

  .start-lights i:last-child {
    background: var(--accent);
    box-shadow: 0 0 7px rgba(255, 24, 1, 0.8);
  }
}
