:root {
  --bg: #131b23;
  --panel: rgba(20, 30, 40, 0.78);
  --line: rgba(110, 199, 255, 0.26);
  --text: #dde9f4;
  --muted: #a7b7c7;
  --neon: #3bc6ff;
  --neon-soft: rgba(59, 198, 255, 0.18);
  --alert: #ffcc66;
  --ok: #8efca7;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  min-height: 100vh;
  background: var(--bg);
}

.page-backdrop {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 23, 33, 0.84), rgba(14, 20, 28, 0.9)),
    url("New Real Men Studios Banner.png") center center / cover no-repeat,
    url("New RMT Background.png") center center / cover no-repeat;
  z-index: -2;
}

.page-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(121, 212, 255, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(10, 14, 20, 0.55), rgba(10, 14, 20, 0.28));
  z-index: -1;
}

.container {
  width: min(1080px, calc(100% - 2rem));
  margin: 2.5rem auto;
  display: grid;
  gap: 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(130deg, rgba(16, 27, 40, 0.74), rgba(12, 19, 28, 0.7));
  box-shadow: 0 0 24px rgba(59, 198, 255, 0.09);
  animation: fadeInUp 0.8s ease;
}

.logo {
  width: 100%;
  max-width: 210px;
  margin-inline: auto;
  filter: drop-shadow(0 0 10px rgba(59, 198, 255, 0.22));
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Cinzel", Georgia, serif;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  color: #76ceff;
  text-shadow: 0 0 9px rgba(34, 182, 255, 0.5), 0 0 28px rgba(34, 182, 255, 0.35);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  color: #dbf2ff;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  background: var(--panel);
  backdrop-filter: blur(3px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 18px 35px rgba(0, 0, 0, 0.32);
}

.benefits ul {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.65rem;
}

.benefits li {
  color: var(--muted);
}

.form-intro {
  margin-top: 0;
  color: var(--muted);
}

form {
  display: grid;
  gap: 0.7rem;
}

label {
  font-size: 0.93rem;
  color: #d1e9ff;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(153, 224, 255, 0.35);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.38);
  color: #e8f6ff;
  padding: 0.72rem 0.85rem;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px var(--neon-soft);
  background: rgba(0, 0, 0, 0.5);
}

textarea {
  resize: vertical;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.6rem;
  align-items: start;
  margin-top: 0.3rem;
}

.consent-row input {
  margin-top: 0.25rem;
  width: auto;
}

button {
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(120deg, #18c1ff, #5bd6ff);
  color: #012132;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.82rem 1rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(36, 184, 255, 0.25);
  filter: brightness(1.04);
}

button:active {
  transform: translateY(0);
}

.secondary {
  background: transparent;
  color: #bfe8ff;
  border-color: var(--line);
}

#status {
  min-height: 1.2rem;
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

#status.ok {
  color: var(--ok);
}

#status.warn {
  color: var(--alert);
}

.compliance p,
.micro-note {
  color: var(--muted);
}

.admin-controls {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .hero-copy {
    display: grid;
    gap: 0.4rem;
    justify-items: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
