:root{
  --bg:#070b14;
  --card:#0b1220cc;
  --stroke:#223055;
  --text:#e7eefc;
  --muted:#b7c4e6;
  --accent:#7aa6ff;
  --accent2:#52ffd6;
  --shadow: 0 20px 80px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, #12214a 0%, rgba(18,33,74,0) 60%),
              radial-gradient(900px 600px at 80% 30%, #103b3a 0%, rgba(16,59,58,0) 55%),
              var(--bg);
  overflow:hidden;
}

.wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:24px;
}

.card{
  width:min(880px, 94vw);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(11,18,32,.88), rgba(11,18,32,.62));
  border-radius:22px;
  padding:30px;
  box-shadow: var(--shadow);
}

.top{
  display:flex;
  gap:16px;
  align-items:center;
}

.logo{
  width:62px; height:62px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  display:grid; place-items:center;
  overflow:hidden;
}
.logo img{width:100%; height:100%; object-fit:cover}
.logo span{font-weight:800; letter-spacing:1px}

.title h1{
  margin:0;
  font-size:28px;
}

.sub{margin:6px 0 0; color:var(--muted);}

.lead{
  margin:18px 0 0;
  line-height:1.6;
}

.actions{
  margin-top:22px;
}

.btn{
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  background: linear-gradient(90deg, rgba(122,166,255,.95), rgba(82,255,214,.82));
  color:#07101e;
}

.meta{
  display:flex;
  gap:10px;
  margin-top:18px;
}

.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size:12px;
}

.foot{
  margin-top:22px;
  font-size:12px;
  color: var(--muted);
}


/* Centered layout tweaks */
.card { text-align: center; }
.top { justify-content: center; }
.actions { display:flex; justify-content:center; }

/* Hero image */
.hero{ margin-top:18px; display:flex; justify-content:center; }
.hero img{
  max-height: 420px;
  width:min(380px, 80vw);
  max-width:100%;
  border-radius:18px;
  border:1px solid var(--stroke);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}
