*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a2015;
}

body.no-webgl {
  background: linear-gradient(90deg, #3a4532 0%, #1a2015 100%);
}

#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.hero {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  pointer-events: none;
}

.logo {
  width: min(82vw, 19.2rem);
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.cta {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #f2f0e6;
  background: rgba(242, 240, 230, 0.08);
  border: 1px solid rgba(242, 240, 230, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta:hover {
  background: rgba(242, 240, 230, 0.16);
  border-color: rgba(242, 240, 230, 0.45);
  transform: translateY(-1px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cta:focus-visible {
  outline: 2px solid rgba(242, 240, 230, 0.6);
  outline-offset: 3px;
}
