/* Hacker-frosted glass landing — mobile-first, single stylesheet */

:root{
  --bg: #0a0a0a;
  --fg: #d7ffd0;
  --lime: #b6ff00;
  --glass: rgba(255,255,255,.08);
  --glass-stroke: rgba(0,0,0,.25);
  --card: rgba(0,0,0,.25);
  --shadow: 0 14px 40px rgba(0,0,0,.5);
}

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

html, body { height: 100%; }
html { font-size: 16px; }
body {
  margin: 0;
  padding: 0;
  color: var(--fg);
  background: #0a0a0a;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  line-height: 1.55;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* subtle parchment texture overlay for a black parchment look */
body::before {
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(180,180,120,.05) 0 60px, transparent 60px),
    radial-gradient(circle at 75% 65%, rgba(150,130,40,.05) 0 90px, transparent 90px);
  mix-blend-mode: overlay;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  min-height: 60vh;
}

/* Frosted glass frame around the image (hero) */
.image-frame {
  width: min(92vw, 720px);
  border-radius: 16px;
  padding: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(0,0,0,.25);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(0,0,0,.25);
}
@media (min-width: 768px){
  main { padding: 4rem 2rem; }
  .image-frame { width: min(860px, 70%); }
}

/* Footer with a prominent CTA */
footer {
  text-align: center;
  padding: 1.5rem 1rem;
  color: #d9ffd0;
}

/* Featured product pill + CTA */
.product-ad {
  display: inline-block;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(0,255,0,.14);
  border: 1px solid rgba(0,0,0,.25);
  box-shadow: inset 0 0 8px rgba(0,0,0,.25);
  margin-bottom: .75rem;
}
.product-ad h3 {
  font-size: .95rem;
  margin: 0 0 .25rem;
  color: #baff66;
  letter-spacing: .4px;
}
.product-ad a {
  text-decoration: none;
}
.product-ad a > p {
  display: inline-block;
  padding: .65rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  color: #041003;
  background: linear-gradient(#a8ff5a, #59ff22);
  border: 1px solid rgba(0,0,0,.25);
  box-shadow: 0 0 14px rgba(88,255,0,.6);
}
.product-ad a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}
.product-ad a:hover > p {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

/* Basic link accessibility */
a { color: var(--lime); text-decoration: none; }
a:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; transform: none !important; }
}