:root {
  --gold: #c9a43a;
  --gold-bright: #f0d67a;
  --ink: #0d0d08;
  --line: rgba(255, 233, 164, 0.18);
  --panel: rgba(10, 10, 7, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #11110c;
}

.hero-page {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(10, 9, 5, 0.2), rgba(10, 9, 5, 0.62)),
    url("wizzardlabs_backdrop.png") center top / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 234, 164, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(7, 7, 5, 0.12), rgba(7, 7, 5, 0.58) 68%, rgba(7, 7, 5, 0.78));
}

.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 32px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(96vw, 760px);
}

.brand-wordmark {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 2px 0 rgba(56, 38, 7, 0.9))
    drop-shadow(0 0 14px rgba(201, 164, 58, 0.18))
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.menu-toggle {
  position: absolute;
  top: 28px;
  right: 32px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 58px;
  height: 58px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 233, 164, 0.1),
    0 12px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 12px rgba(240, 214, 122, 0.18);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 233, 164, 0.34);
  outline: none;
}

@media (max-width: 720px) {
  .topbar {
    padding: 0 18px 20px;
  }

  .brand {
    max-width: min(88vw, 640px);
  }

  .menu-toggle {
    top: 20px;
    right: 18px;
    width: 52px;
    height: 52px;
    padding: 0 12px;
  }
}
