/* dfbc9689.css - indigo solid background with gold accents, frosted glass, cyberpunk vibe */

/* Theme tokens */
:root{
  --indigo: #1a1a4a;
  --gold: #ffd166;
  --gold-dark: #e6b41a;
  --glass: rgba(255,255,255,.14);
  --glass-border: rgba(255,255,255,.28);
  --text: #ffffff;
  --text-dim: rgba(255,255,255,.92);
  --focus: #ffd166;
  --shadow: 0 8px 22px rgba(0,0,0,.25);
  --cta: linear-gradient(135deg, #ffd166 0%, #f0c050 60%, #e5a800 100%);
}

/* Reset & base */
*, *::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, Arial, sans-serif;
  color: var(--text);
  background-color: var(--indigo); /* solid indigo background */
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Optional subtle glow for depth without gradient */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  /* faint gold glow to hint at hacker glow without breaking solid background */
  box-shadow: inset 0 0 60px rgba(255, 209, 102, 0.05);
  z-index: 0;
}

/* Content layer above decorative layer */
#content, main { position: relative; z-index: 1; }

/* Header */
header { padding: 1rem; }
.brand {
  display: inline-block;
  padding: .5rem .8rem;
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-weight: 700;
  letter-spacing: .4px;
  box-shadow: var(--shadow);
}

/* Main grid - mobile-first */
main { width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "media"
    "title"
    "subhead"
    "cta";
  justify-items: center;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  padding: 2rem 1rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-media { grid-area: media; display: flex; justify-content: center; width: 100%; }
.hero-media img {
  width: min(520px, 92%);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  display: block;
}

/* Frosted glass blocks for readability over background */
.hero-grid > h1,
.hero-grid > .subhead,
.hero-grid > .cta {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 12px;
  padding: 0.25rem 0.6rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text);
}
h1 { font-size: clamp(1.95rem, 4vw + 0.75rem, 3.25rem); line-height: 1.08; margin: 0; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.subhead { font-size: clamp(1rem, 2vw + .6rem, 1.25rem); color: var(--text-dim); }

/* CTA */
.cta {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  font-weight: 800;
  color: #0a0f12;
  text-decoration: none;
  border-radius: 999px;
  background: var(--cta);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cta:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.32); }

/* Footer */
footer { padding: 1rem; text-align: center; color: #e9fbfb; }
.footer-ad { display: inline-block; padding: .25rem .6rem; margin-bottom: .5rem; background: rgba(255,255,255,.08); border-radius: 8px; border: 1px solid rgba(255,255,255,.22); }
.footer-ad a { color: #fff; font-weight: 700; text-decoration: none; }
.footer-ad a:hover { text-decoration: underline; }

/* Desktop layout: image left, text right, CTA prominent */
@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas: "media title" "media subhead" "media CTA";
    text-align: left;
    gap: 2rem;
    padding: 3rem 2rem;
  }
  .hero-media { justify-content: flex-end; padding-right: 1rem; }
  h1 { font-size: clamp(2.5rem, 1.2rem + 4vw, 4rem); }
  .subhead { font-size: 1.25rem; }
  .cta { align-self: center; justify-self: start; }
}

/* Extra-large screens */
@media (min-width: 1100px) {
  .hero-media img { width: 580px; }
}

/* Small devices tweaks */
@media (max-width: 420px) {
  .hero-grid { padding: 1.75rem 0.75rem 2.25rem; }
  .cta { width: max-content; padding: 0.9rem 1.4rem; }
}