:root {
  color-scheme: dark;
  --bg: #000000;
  --text: #f5f5f0;
  --muted: rgba(245, 245, 240, 0.72);
  --line: #ffffff;
  --accent: #ff7a1a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: #000000;
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1rem, 2.6vw, 1.6rem);
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  animation: drift 9s ease-in-out infinite alternate;
}

body::before {
  width: 26rem;
  height: 26rem;
  background: rgba(255, 122, 26, 0.2);
  top: -7rem;
  left: -8rem;
}

body::after {
  width: 20rem;
  height: 20rem;
  background: rgba(255, 255, 255, 0.08);
  right: -7rem;
  bottom: -6rem;
  animation-duration: 12s;
}

.page {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.hero {
  position: relative;
  width: min(92vw, 1040px);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: transform 0.25s ease-out, border-color 0.3s ease;
  transform: translate(var(--shift-x, 0px), var(--shift-y, 0px));
  margin: 0;
  border-radius: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.copy-block {
  max-width: 760px;
  padding-right: 0.25rem;
}

h1 {
  margin: 0 0 0.95rem;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 720px;
}

p {
  max-width: 760px;
  margin: 0 0 0.7rem;
  font-size: clamp(0.92rem, 1.7vw, 1rem);
  line-height: 1.9;
  color: var(--muted);
  letter-spacing: 0.03em;
}

p span {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.1rem 0 0.35rem;
}

.social-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.legal-note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(245, 245, 240, 0.58);
  max-width: 640px;
}

.loader {
  margin-top: 0.4rem;
  width: 100%;
}

.timer {
  margin-bottom: 0.45rem;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.track {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  border-radius: 999px;
}

.bar {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 122, 26, 0.95) 55%, transparent 100%);
  animation: run 3.2s linear infinite;
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.4);
}

@keyframes run {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(260%);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(3rem, 2rem, 0) scale(1.06);
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 1.2rem;
    width: min(95vw, 1040px);
  }

  .hero-top {
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  .hero-content {
    gap: 0.8rem;
  }

  .copy-block {
    padding-right: 0;
  }

  .social-links {
    margin-top: 0.9rem;
    gap: 0.55rem;
  }

  .loader {
    margin-top: 0.6rem;
  }
}

@media (max-width: 640px) {
  body {
    padding: 0.8rem;
    align-items: flex-start;
  }

  .page {
    min-height: auto;
    align-items: flex-start;
  }

  .hero {
    padding: 1rem;
  }

  h1 {
    font-size: clamp(1.55rem, 6.2vw, 2rem);
    line-height: 1.08;
    margin-bottom: 0.8rem;
  }

  p {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 0.6rem;
  }

  .social-links a {
    font-size: 0.76rem;
    padding: 0.45rem 0.65rem;
  }

  .legal-note {
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .timer {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }
}
