/* silver abstract blur background with magenta hacker vibe
   single mobile-first stylesheet with frosted glass and neon accents
*/
:root {
  --silver: #e7e7ea;
  --silver-dark: #d9d9de;
  --magenta: #ff2ebf;
  --magenta-dark: #d41f86;
  --bg: #f6f7f9;
  --text: #1a1a1a;
  --muted: #6b6b7a;
  --glass: rgba(255, 255, 255, 0.78);
  --radius: 14px;
  --shadow: 0 10px 28px rgba(0,0,0,.22);
}

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

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial;
  color: var(--text);
  background: linear-gradient(135deg, #f5f7f9 0%, #e8ebef 60%, #e3e7ec 100%);
  /* subtle silver pattern with diagonal shimmer */
  background-image:
    radial-gradient(circle at 6px 6px, rgba(0,0,0,.08) 2px, transparent 2px),
    radial-gradient(circle at 24px 24px, rgba(0,0,0,.04) 2px, transparent 2px);
  background-size: 24px 24px, 24px 24px;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 0, 170, .15) 0%, rgba(0,0,0,0) 40%),
    radial-gradient(circle at 25% 75%, rgba(0, 180, 255, .10) 0%, rgba(0,0,0,0) 40%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: glow 12s ease-in-out infinite;
  z-index: 0;
}
@keyframes glow {
  0%,100% { opacity: .85; }
  50% { opacity: 1; }
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}
.brand {
  font-weight: 900;
  color: #1a1a1a;
  text-shadow: 0 0 8px rgba(255, 0, 170, 0.6);
  letter-spacing: .4px;
  display: inline-block;
  font-size: 1.05rem;
}

/* Hero layout */
.hero { padding: 1rem; position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.hero-media { width: 100%; display: flex; justify-content: center; }
.hero-media img {
  width: min(92vw, 720px);
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}
.hero-content {
  width: 100%;
  max-width: 640px;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 0, 170, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  text-align: left;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.hero-content h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  margin: 0 0 .5rem;
  color: #1b1b1b;
}
.subhead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.cta {
  display: inline-block;
  padding: .92rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  color: #0b0b0b;
  background: linear-gradient(135deg, #ff2ebf 0%, #ff6ea0 100%);
  border: 2px solid rgba(255, 0, 150, 0.95);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  font-size: 1.02rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,.35); }
.cta:focus-visible { outline: 3px solid #ff2ebf; outline-offset: 2px; }

/* Footer */
.site-footer { padding: 1rem; text-align: center; background: rgba(10, 10, 12, 0.85); border-top: 1px solid rgba(0, 0, 0, 0.25); color: var(--text); }
.footer-ad {
  display: inline-block;
  padding: .6rem .9rem;
  margin: 0 .25rem 0.5rem;
  font-size: .95rem;
  color: var(--text);
  background: rgba(0,0,0,.25);
  border-radius: 8px;
  border: 1px solid rgba(255,0,170,.6);
}
.thank-you { font-size: .95rem; margin-top: .25rem; color: #d9ffd6; }

/* Desktop two-column layout */
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding: 2rem 4rem;
    align-items: center;
  }
  .subhead { font-size: 1.05rem; }
  .cta { font-size: 1.05rem; padding: 1rem 1.4rem; }
}