@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,.16);
  --bg: #2e2f0f;
  --text: #f7ffe9;
  --muted: #d0e86a;
  --primary: #ff4da6;
}
*,*::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:
    linear-gradient(45deg, rgba(0,0,0,.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,.08) 25%, transparent 25%);
  background-size: 14px 14px;
  background-position: 0 0, 7px 7px;
  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(255,0,128,.6); border-radius:6px; }
a:hover{ text-decoration:underline; }

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

main{ padding:0; }
section.hero{
  max-width:1100px;
  margin:0 auto;
  padding:28px 20px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
}
section.hero h1{
  font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
  margin:0;
  color:#ffd7f2;
}
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:#0a0a0a;
  background:linear-gradient(#ffd6e0,#ff9bd0);
  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(255,0,128,.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,.35);
  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 p{ margin:0 0 var(--space-3); line-height:1.6; }

@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; }
}
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;
}