/* The Dusketeers — global styles */
:root{
  --bg:#0b1220;
  --bg-elev:#0f172a;
  --text:#f8fafc;
  --muted:#cbd5e1;
  --accent:#7dd3fc;
  --accent-2:#a78bfa;
  --focus:#22d3ee;
  --maxw:1100px;
  --radius:16px;
}
@media (prefers-color-scheme: light){
  :root{ --bg:#ffffff; --bg-elev:#f1f5f9; --text:#0f172a; --muted:#334155; }
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 50% -20%, #1f2937 0%, var(--bg) 60%) fixed;
  color:var(--text);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
.container{max-width:var(--maxw); padding: clamp(16px, 3vw, 32px); margin:0 auto;}
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;background:#111;color:#fff;padding:8px;border-radius:8px}

.site-header{
  background:rgba(255,255,255,0.04);
  backdrop-filter:saturate(120%) blur(6px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  position:sticky; top:0; z-index:10;
}
.brand{display:flex;align-items:center; gap:.5rem; font-weight:800; letter-spacing:.3px}
.brand-mark{font-size:1.5rem}
.brand-name{font-size:1.1rem}
.nav{list-style:none; display:flex; gap:1rem; margin:0; padding:0}
.nav a{color:var(--text); text-decoration:none; opacity:.9}
.nav a[aria-current]{font-weight:700; border-bottom:2px solid var(--accent)}

.hero{display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 48px); align-items:center; min-height: calc(100vh - 140px)}
.hero-art img{width:100%; height:auto; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.35)}
.hero-copy h1{font-size: clamp(1.8rem, 3.5vw, 3rem); margin:.2em 0 .2em}
.hero-copy p{max-width:60ch; color:var(--muted)}

.notify{display:flex; gap:10px; margin-top:16px}
.notify input{flex:1; padding:12px 14px; border-radius:12px; border:1px solid rgba(255,255,255,.15); background:var(--bg-elev); color:var(--text)}
.notify button{padding:12px 18px; border:0; border-radius:12px; background:linear-gradient(90deg, var(--accent), var(--accent-2)); color:#0b1220; font-weight:700; cursor:pointer}
.notify button:hover{filter:brightness(1.05)}
.fine-print{font-size:.85rem; color:var(--muted)}

.site-footer{border-top:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.03)}
.site-footer .container{display:flex; justify-content:space-between; gap:8px; align-items:center; flex-wrap:wrap}
.site-footer a{color:var(--muted); text-decoration:none; margin-left:12px}
.noscript{background:#fde68a; color:#1f2937; padding:8px 12px; text-align:center}

.visually-hidden{position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap}

@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
  .nav{gap:.75rem; flex-wrap:wrap}
}
