:root {
  --bg: #06110f;
  --text: #effff8;
  --muted: #a8c6bc;
  --green: #08c986;
  --yellow: #ffc519;
  --line: rgba(136, 255, 211, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(8, 201, 134, 0.2), transparent 30rem),
    radial-gradient(circle at 18% 82%, rgba(255, 197, 25, 0.08), transparent 24rem),
    linear-gradient(145deg, var(--bg), #020504 68%);
  color: var(--text);
  font-family: Bahnschrift, "Aptos", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero {
  position: relative;
  display: grid;
  place-items: center start;
  min-height: calc(100vh - 70px);
  padding: clamp(32px, 7vw, 96px);
  overflow: hidden;
}

.logo-bg {
  position: absolute;
  right: max(-24vw, -360px);
  top: 50%;
  width: min(112vw, 1280px);
  transform: translateY(-50%);
  opacity: 0.32;
  filter: saturate(1.12) contrast(1.18);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(3.8rem, 9vw, 8.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(3, 10, 8, 0.72);
  color: var(--muted);
  font-size: 0.95rem;
}

.bottom-bar span:first-child {
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .hero {
    min-height: calc(100vh - 92px);
    padding: 28px 20px;
  }

  .logo-bg {
    right: -84vw;
    width: 198vw;
    opacity: 0.25;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

  .bottom-bar {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}
