:root { --brass:#d4af37; --bg:#0d0d0d; --text:#e8e6df; --muted:#b9b3a5; --panel:#141414; --line:rgba(212,175,55,.35); }
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;background:var(--bg);color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Helvetica Neue,Arial,sans-serif;
}
a{color:var(--brass);text-decoration:none}
a:hover{text-decoration:underline}
.header{
  max-width:1100px;margin:0 auto;padding:22px 16px;display:flex;gap:18px;align-items:center;justify-content:space-between;
}
.brand{display:flex;gap:12px;align-items:center}
.brand img{width:46px;height:46px}
.brand h1{font-family:"Cinzel",serif;color:var(--brass);font-size:1.1rem;letter-spacing:.5px;margin:0}
.nav a{margin-left:14px}
.hero{
  max-width:1100px;margin:10px auto 0;padding:0 16px 24px;text-align:center;
}
.hero img.banner{width:100%;max-width:980px;height: auto;border:1px solid var(--line);border-radius:12px;display:block;margin:12px auto;background:#0b0b0b}
.h-title{font-family:"Cinzel",serif;color:var(--brass);font-size:clamp(1.6rem,3vw,2.4rem);margin:10px 0 8px}
.h-sub{color:var(--muted);font-size:clamp(1rem,2vw,1.15rem);margin:0 0 12px}
.grid{
  max-width:1100px;margin:8px auto 20px;padding:0 16px;
  display:grid;grid-template-columns:1fr 1fr;gap:16px;
}
.card{
  border:1px solid var(--line);background:linear-gradient(180deg,var(--panel),#0f0f0f);
  border-radius:12px;padding:14px;box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.card h3{margin:8px 0;color:var(--brass);font-family:"Cinzel",serif}
.card p{margin:8px 0;color:#ddd}
.cta-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.btn{
  border:1px solid var(--line);border-radius:10px;padding:.7rem 1rem;cursor:pointer;
  background:var(--brass);color:#111;font-weight:600
}
.btn.ghost{background:transparent;color:#ddd}
.notice{color:#bda76a;margin-top:8px}
footer{
  max-width:1100px;margin:30px auto 32px;padding:0 16px;color:#8a8578;font-size:.9rem;text-align:center
}
.sub-form{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin-top:10px}
.sub-form input[type="email"]{
  width:min(420px,80vw);padding:.65rem .75rem;border-radius:8px;border:1px solid var(--line);
  background:#0b0b0b;color:#eee
}
.screenshot{width:100%;border:1px solid var(--line);border-radius:12px;background:#0b0b0b;display:block}
.list{padding-left:18px;color:#ddd}
@media (max-width:800px){ .grid{grid-template-columns:1fr} }
