/* b606d8ec.css - purple metallic sheen with gray hacker theme, frosted glass */

/* Core color tokens for a purple-metallic, gray hacker look */
:root{
  --bg: #1a0a2a;
  --text: #eaeaea;
  --muted: #9e9e9e;
  --purple: #9f5cff;
  --purple-dark: #6a2a8f;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-dark: rgba(255, 255, 255, 0.70);
  --ring: rgba(159, 92, 255, 0.95);
  --radius: 14px;
  --shadow: 0 8px 30px rgba(0,0,0,.4);
}

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

html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: var(--text);
  background: #0b0b0f;
  /* Purple metallic sheen background with grid-like glow */
  background-image:
    radial-gradient(circle at 15% 20%, rgba(159,92,255,0.25) 0 20px, transparent 20px),
    radial-gradient(circle at 80% 40%, rgba(150,0,255,0.20) 0 20px, transparent 20px),
    linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.05) 60%);
  background-size: 180px 180px, 180px 180px, cover;
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle eclipse grid overlay for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mix-blend-mode: overlay;
  opacity: .6;
}

/* Header with frosted glass feel */
header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.brand {
  font-weight: 900;
  color: #eae6f7;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(159, 92, 255, 0.25);
  border: 1px solid rgba(255,255,255,0.25);
  text-shadow: 0 0 8px rgba(159, 92, 255, 0.7);
}

/* Main layout and hero card */
main {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  min-height: calc(100vh - 120px);
}

.hero {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
  width: min(92%, 860px);
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px) saturate(1.2);
}

/* Title and subhead styling (single H1 required) */
h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  margin: 0.25rem 0;
  color: #1a0a0a;
  text-shadow: 0 0 12px rgba(159, 92, 255, 0.6);
  line-height: 1.08;
}

.subhead {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #3a3a3a;
  margin: 0;
  opacity: 0.95;
}

/* Prominent CTA as centerpiece (no forms, buttons are within the hero-cta link) */
.hero-cta {
  display: grid;
  grid-template-rows: auto auto;
  width: min(92%, 720px);
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px) saturate(1.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 0.25rem;
}
.hero-cta:hover, .hero-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.38);
  outline: none;
}
.hero-cta img {
  display: block;
  width: 100%;
  height: auto;
}
.cta-text {
  padding: 0.75rem;
  font-weight: 700;
  color: #1b0b0b;
  text-align: center;
  background: rgba(255, 230, 230, 0.95);
  user-select: none;
}

/* Footer with small advertisement */
footer {
  padding: 1.25rem;
  text-align: center;
  color: #7a7a7a;
}
.footer-ad {
  display: inline-block;
  margin: 0.25rem auto 0.75rem;
}
.footer-ad a {
  color: #8b1a1a;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.15);
  display: inline-block;
  font-size: 0.9rem;
}

/* Focus visibility for accessibility */
a:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Desktop adjustments */
@media (min-width: 640px) {
  .hero { padding: 3rem; }
}