:root{
  --bg:#0e1729; --bg2:#101a2f; --bg3:#15223a;
  --text:#e8eeff; --muted:#9fb0d9;
  --card-r:16px; --shadow:0 10px 25px rgba(0,0,0,.25);
  --maxw:1100px;
}
*{box-sizing:border-box}
html,body{height:100%}
body.sw-body{margin:0;background:var(--bg);color:var(--text);
  font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif}
.sw-page{min-height:100%;display:flex;flex-direction:column}

.wrap{max-width:var(--maxw);margin:32px auto;padding:0 16px}
.titlebar{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}
.headline{display:flex;align-items:center;gap:12px;font-weight:700;font-size:28px}
.pill{background:linear-gradient(135deg,#1a2a4a,#243763);padding:6px 12px;border-radius:999px;box-shadow:var(--shadow);font-size:14px;letter-spacing:.4px}
.date{color:var(--muted);font-size:14px}

.hero{margin:16px 0;border-radius:20px;overflow:hidden;box-shadow:var(--shadow)}
.hero img{display:block;width:100%;height:auto}

.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.grid .full{grid-column:1 / -1}
@media (max-width:900px){.grid{grid-template-columns:1fr}}

.card{background:linear-gradient(180deg,var(--bg2),var(--bg3));border-radius:16px;padding:16px;box-shadow:var(--shadow)}
.card h3{margin:0 0 8px 0;font-size:18px}
.card p{margin:0}

.sw-form .actions{margin-top:12px}
.btn{appearance:none;border:0;background:#2a5bd7;color:white;padding:10px 14px;border-radius:12px;font-weight:600;cursor:pointer;box-shadow:var(--shadow)}
.btn:hover{filter:brightness(1.08)}
