@charset "UTF-8";
:root{
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --radius: 14px;
  --glass: rgba(255,255,255,.18);
  --bg: #0a0f10;
  --text: #eaffff;
  --muted: #b8e6ff;
  --primary: #2ec4ff;
}
*,*::before,*::after{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(46, 204, 255, .25) 0 60px, transparent 60px),
    radial-gradient(circle at 70% 40%, rgba(0, 255, 128, .25) 0 60px, transparent 60px);
  background-size: 120px 120px, 120px 120px;
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color:inherit; text-decoration:none; }
a:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(46, 204, 255, .65); border-radius:6px; }

header.site-header{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(0,0,0,.25);
  display:flex;
  justify-content:center;
  align-items:center;
}
.brand{ font-weight:800; color:#a5fffe; text-shadow:0 0 8px rgba(0, 170, 255, .5); }

main{ padding:0; }
section.hero{
  max-width:1100px;
  margin:0 auto;
  padding:28px 20px 0;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  justify-items:center;
  text-align:center;
}
section.hero h1{
  font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
  margin:0;
  color:#a5fffe;
}
section.hero .subhead{
  font-size: clamp(1rem,0.6vw + .8rem,1.15rem);
  color: var(--muted);
  margin:6px 0 12px;
}
.hero-media{ width:100%; display:flex; justify-content:center; padding:4px 0 12px; }
.hero-media img{
  width: min(720px, 92%);
  height:auto;
  display:block;
  border-radius:20px;
  box-shadow:0 12px 40px rgba(0,0,0,.25);
}
.cta{
  display:inline-block;
  margin-top:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:700;
  font-size:1.05rem;
  color:#041014;
  background: linear-gradient(135deg, #2ee8ff 0%, #2b6bff 70%);
  border:1px solid rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover{ transform: translateY(-1px); box-shadow:0 6px 18px rgba(0,0,0,.15); }
.cta:focus-visible{ outline:none; box-shadow:0 0 0 4px rgba(46,204,255,.6); }

footer.site-footer{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 28px 20px;
  display:grid;
  gap: var(--space-3);
  justify-items:center;
}
footer .ad{
  width:100%;
  max-width:720px;
  padding:12px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(6px);
  display:flex;
  justify-content:center;
}
footer .ad a{ font-weight:700; color:var(--text); }
footer .closing{ color: var(--muted); margin:0; }

article{ max-width:72ch; margin:0 auto; padding:0 1rem 1rem; line-height:1.6; color:var(--text); }

article p{ margin:0 0 var(--space-3); }

article p:first-of-type::first-letter{
  float:left;
  font-weight:700;
  line-height:1;
  margin-right: var(--space-2);
  font-size: clamp(3rem,6vw,5rem);
  text-transform: uppercase;
}

@media (min-width:860px){
  section.hero{ display:grid; grid-template-columns:1.05fr 0.95fr; text-align:left; padding:40px 20px; }
  .hero-media{ justify-self:center; }
}
@media (max-width:360px){
  article p:first-of-type::first-letter{ font-size: clamp(2.4rem,9vw,3.5rem); }
}
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; animation: none !important; }
}