
:root{
  --ink:#0f172a;
  --muted:#475569;
  --ring:rgba(255,255,255,.45);
  --glass:rgba(255,255,255,.72);
  --shadow:0 10px 40px rgba(2,8,23,.25);
  --radius:16px;
}
@media (prefers-color-scheme: dark){
  :root{
    --ink:#e8eef5;
    --muted:#b6c3d5;
    --ring:rgba(255,255,255,.18);
    --glass:rgba(13,18,26,.55);
    --shadow:0 10px 40px rgba(0,0,0,.55);
  }
}
*{box-sizing:border-box}
html,body{height:100%;margin:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--ink);
  line-height:1.6;
  background-image: url('/assets/img/zion-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
body::before{
  content:"";
  position:fixed; inset:0;
  background: linear-gradient(180deg, rgba(7,11,18,.35), rgba(7,11,18,.65));
  z-index:-1;
}
.container{max-width:1120px;margin:0 auto;padding:24px}
.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(160%) blur(14px);
  background:var(--glass);
  border-bottom:1px solid var(--ring);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:10px 24px}
.brand{display:flex;gap:12px;align-items:center;text-decoration:none;color:inherit}
.brand-badge{display:inline-grid;place-items:center;width:36px;height:36px;border-radius:10px;border:2px solid currentColor;font-weight:900;background:rgba(255,255,255,.35)}
.brand-name{font-weight:900;letter-spacing:.3px}
.menu{display:flex;gap:10px;flex-wrap:wrap}
.menu a{color:inherit;text-decoration:none;padding:8px 12px;border-radius:12px}
.menu a:hover{background:rgba(255,255,255,.35)}

.card{
  background: var(--glass);
  border:1px solid var(--ring);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:20px;
}
.kicker{font-size:13px;font-weight:800;letter-spacing:.18em;text-transform:uppercase;color:#e0f2fe}
.card h1{font-size:clamp(34px,5vw,52px);line-height:1.2;margin:10px 0 14px;font-weight:900;color:#eef6ff}
.card p{font-size:clamp(16px,2.2vw,20px);color:#e9f1fa;margin:0 0 18px}
.badge{display:inline-block;background:#0f172a;color:#fff;padding:4px 10px;border-radius:12px;font-size:13px;margin:4px}

.profile{
  width:100%;
  max-width:320px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius:14px;
  border:2px solid var(--ring);
  box-shadow:var(--shadow);
  justify-self:center;
}

.section{padding:36px 24px}
.grid{display:grid;gap:20px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.section h2{color:#eef6ff}

/* FOOTER SMALL */
.footer{
  position: static;
  background:var(--glass);
  border-top:1px solid var(--ring);
  padding:6px 10px;
  color:#eaf2fb;
  font-size:12px;
  line-height:1.3;
  text-align:center;
}
.footer a{color:#eaf2fb; margin:0 4px; text-decoration:none; white-space:nowrap}
.footer a:hover{text-decoration:underline}
