:root {
  color-scheme: dark;
  --ink: #fff8ea;
  --muted: rgba(255, 247, 232, 0.84);
  --accent: #ff4bb4;
  --accent-alt: #6ff5ff;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(6, 8, 18, 0.52);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(10, 11, 20, 0.46), rgba(10, 11, 20, 0.82)),
    radial-gradient(circle at top, rgba(255, 75, 180, 0.14), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(111, 245, 255, 0.1), transparent 28%),
    linear-gradient(145deg, #15192e 0%, #131022 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/brand/chungus-hero.png") center top / cover no-repeat;
  opacity: 0.95;
  filter: saturate(1.02);
  pointer-events: none;
}

.shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-alt);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.hero {
  width: min(100%, 40rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(rgba(12, 14, 26, 0.54), rgba(12, 14, 26, 0.72));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.92;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
}

.lede {
  max-width: 32rem;
  margin: 1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.66);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.primary {
  color: #fff9f2;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b7b 100%);
  box-shadow: 0 16px 34px rgba(255, 75, 180, 0.3);
}

.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(13, 20, 35, 0.52);
}

@media (max-width: 780px) {
  .shell {
    padding: 1rem;
  }
}
