/* Brand tokens and type roles copied from the consumer site
   (src/app/globals.css, src/app/layout.tsx) so this page reads as the same
   brand. Fonts are the latin subsets the site's own build self-hosts; nothing
   here loads from another origin. */

@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/anton-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/oswald-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Be Vietnam Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/be-vietnam-pro-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Be Vietnam Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/be-vietnam-pro-600-latin.woff2") format("woff2");
}

:root {
  --color-primary: #f80263;
  --color-dark: #0d0743;
  --font-headline: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-label: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
  color-scheme: dark;
}

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

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

body {
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  padding-inline: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(at 8% 12%, rgba(255, 211, 77, 0.16) 0px, transparent 42%),
    radial-gradient(at 92% 18%, rgba(59, 107, 255, 0.18) 0px, transparent 45%),
    radial-gradient(at 50% 60%, rgba(255, 255, 255, 0.06) 0px, transparent 40%),
    radial-gradient(at 85% 88%, rgba(233, 0, 126, 0.2) 0px, transparent 50%),
    linear-gradient(180deg, #f80263 0%, #0d0743 100%);
}

.hero {
  flex: 1;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding-block: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: clamp(9rem, 32vw, 14rem);
  margin-bottom: 1.5rem;
}

.eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  margin: 0 0 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.55), 0 0 22px rgba(233, 0, 126, 0.7);
}

.billboard {
  font-family: var(--font-headline);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 9vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

.legible {
  text-shadow: 0 2px 6px rgba(7, 2, 16, 0.95), 0 4px 24px rgba(7, 2, 16, 0.8);
}

.neon-legible {
  text-shadow: 0 2px 6px rgba(7, 2, 16, 0.95), 0 0 16px rgba(255, 255, 255, 0.6), 0 0 30px rgba(233, 0, 126, 0.8);
}

.lead {
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  max-width: 36rem;
  margin: 0 0 2.5rem;
}

.panel {
  width: 100%;
  max-width: 40rem;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border-radius: 1.5rem;
  background: rgba(18, 4, 32, 0.62);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 18px rgba(233, 0, 126, 0.12), 0 0 22px rgba(233, 0, 126, 0.14), 0 20px 60px rgba(7, 2, 16, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.panel p {
  margin: 0 0 1.75rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-solid {
  background: #fff;
  color: var(--color-dark);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.45);
}

.btn-solid:hover {
  transform: scale(1.05);
}

.btn-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(233, 0, 126, 0.55);
}

.footer {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding-block: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.nix18 {
  height: 2.25rem;
  width: auto;
}

.tagline {
  font-size: clamp(1.25rem, 3.5vw, 1.6875rem);
  letter-spacing: 0.25em;
  margin: 0;
}

.copyright {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.home {
  font-family: var(--font-label);
  font-size: 0.625rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.home:hover {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .btn-solid:hover {
    transform: none;
  }
}
