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

:root {
  --bg: #090806;
  --text: #fff8e8;
  --gold: #f4c542;
  --line: rgba(244,197,66,.28);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

main {
  max-width: 1280px;
  margin: auto;
  padding: 0 48px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .20em;
  font-size: 17px;
  margin: 0 0 24px;
}

h1, h2 {
  font-family: "Archivo Black", sans-serif;
  margin: 0;
  line-height: .92;
  letter-spacing: -.02em;
}

h1 {
  font-size: clamp(68px, 8vw, 124px);
}

h2 {
  font-size: clamp(48px, 6vw, 88px);
  color: var(--gold);
  margin-top: 20px;
}

.buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-width: 118px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  transition: .2s ease;
}

.button:hover {
  background: var(--gold);
  color: #171006;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.visual {
  min-height: 620px;
  display: grid;
  place-items: center;
  position: relative;
}

.halo {
  width: 520px;
  height: 520px;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,197,66,.30), transparent 68%);
  filter: blur(18px);
}

.hero-logo {
  width: min(100%, 520px);
  position: relative;
  z-index: 1;
  mix-blend-mode: screen;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@media (max-width: 850px) {
  main { padding: 0 24px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 70px 0 40px;
    gap: 20px;
  }

  .visual {
    min-height: 360px;
    order: -1;
  }

  .hero-logo {
    width: min(86vw, 390px);
  }

  .halo {
    width: 340px;
    height: 340px;
  }

  h1 {
    font-size: clamp(54px, 16vw, 82px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 62px);
  }

  .buttons {
    flex-wrap: wrap;
  }
}
