:root {
  --bg: #050816;
  --bg-soft: #0c1330;
  --text: #f7f1e8;
  --muted: rgba(247, 241, 232, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --hot: #ff6b2c;
  --gold: #ffd166;
  --cyan: #5ce1e6;
  --shadow: 0 32px 120px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 44, 0.38), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(92, 225, 230, 0.26), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(255, 209, 102, 0.14), transparent 30%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 54%, #15091d 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
}

body::before {
  top: -12vw;
  right: -10vw;
  background: rgba(255, 107, 44, 0.32);
  animation: drift 12s ease-in-out infinite;
}

body::after {
  bottom: -18vw;
  left: -12vw;
  background: rgba(92, 225, 230, 0.18);
  animation: drift 15s ease-in-out infinite reverse;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
}

.site-nav {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 24px auto 0;
  display: flex;
  gap: 12px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-link-current {
  color: #120a08;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold) 0%, var(--hot) 100%);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 48px 0;
}

.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.44em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 8ch;
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: clamp(3.4rem, 11vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 span {
  color: var(--hot);
  text-shadow: 0 0 24px rgba(255, 107, 44, 0.55);
}

.lead {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #120a08;
  background: linear-gradient(135deg, var(--gold) 0%, var(--hot) 100%);
  box-shadow: 0 14px 36px rgba(255, 107, 44, 0.25);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.panel {
  width: min(560px, 100%);
  margin-top: 10px;
  padding: 22px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel-line {
  width: 84px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--hot), var(--gold));
}

.panel p {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.panel strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.35;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 24px, 0) scale(1.08);
  }
}

@media (max-width: 720px) {
  body {
    overflow: auto;
  }

  .site-nav {
    width: min(100% - 24px, 1120px);
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .hero {
    width: min(100% - 24px, 1120px);
    padding: 32px 0 40px;
  }

  .kicker {
    letter-spacing: 0.28em;
  }

  .panel {
    padding: 20px;
    border-radius: 22px;
  }

  .button {
    width: 100%;
  }
}
