/* Strong satin purple + matte-black visual, glass cards and polished UI (NO background animation) */
:root{
  --bg:#060409;
  --panel:#0f0c13;
  --glass: rgba(255,255,255,0.03);
  --muted:#cfc6ee;
  --text:#f2ecff;
  --accent-1:#7d4cff;
  --accent-2:#b49dff;
  --stroke: rgba(255,255,255,0.06);
  --radius:16px;
  --maxw:1150px;
  --gradient-opacity: 0.065; /* overall subtlety */
}

/* animated background gradient layer - REMOVED / disabled (static subtle tint) */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  /* static soft tint instead of animation */
  background: linear-gradient(120deg, rgba(125,76,255,0.35), rgba(36,14,55,0.25) 30%, rgba(8,8,10,1) 60%, rgba(0,0,0,1));
  opacity: 0.04;
  filter: blur(28px) saturate(1.02);
  pointer-events: none;
}

/* a very subtle matte band layer */
body::after{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.35));
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Typography and base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color:var(--text);
  line-height:1.55;
  background: linear-gradient(180deg, #040205 0%, #060409 100%);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* layout helpers */
.wrap{ max-width:var(--maxw); margin:0 auto; padding:22px; }
.header-row{ display:flex; align-items:center; justify-content:space-between; gap:18px; }

/* header */
.site-header{
  position:sticky; top:0; z-index:90; padding:8px 0;
  background:linear-gradient(180deg, rgba(4,3,6,0.72), rgba(4,3,6,0.52));
  border-bottom:1px solid rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.brand{ display:flex; gap:12px; align-items:center; text-decoration:none; color:var(--text); }
.brand .logo{ border-radius:10px; box-shadow:0 10px 30px rgba(125,76,255,0.12); }
.name{ font-weight:700; font-size:15px; }
.role{ color:var(--muted); font-size:12px; }

/* nav */
.nav{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.nav-link{
  color:var(--muted);
  text-decoration:none;
  padding:8px 10px;
  border-radius:10px;
  font-weight:600;
  font-size:13px;
  transition:all .18s ease;
}
.nav-link:hover{ background:rgba(255,255,255,0.02); color:var(--text); transform:translateY(-3px); }
.btn{ padding:9px 14px; border-radius:12px; border:1px solid var(--stroke); background:transparent; color:var(--text); cursor:pointer; font-weight:600; }
.btn-accent{ background:linear-gradient(180deg,var(--accent-1), var(--accent-2)); box-shadow:0 8px 30px rgba(125,76,255,0.12); border:none; }

/* hero */
.hero{ display:grid; grid-template-columns:1.2fr .85fr; gap:22px; align-items:start; margin:28px auto; }
@media (max-width:980px){ .hero{ grid-template-columns:1fr; } }
.glass{ background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius:var(--radius); border:1px solid var(--stroke); padding:20px; box-shadow: 0 15px 40px rgba(0,0,0,0.5); }

/* left side */
.kicker{ color:var(--muted); text-transform:uppercase; font-size:12px; letter-spacing:0.12em; }
.hero-title{ margin:6px 0 8px; font-size:clamp(28px,4vw,44px); line-height:1.02; }
.hero-sub{ color:var(--muted); margin-bottom:16px; max-width:56ch; }

/* actions / badges */
.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px; }
.ghost{ background:transparent; border:1px solid rgba(255,255,255,0.03); }
.animated-badges{ display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }
.badge{ padding:6px 10px; border-radius:999px; background: linear-gradient(90deg, rgba(125,76,255,0.12), rgba(180,157,255,0.06)); color:var(--text); font-weight:600; font-size:13px; border:1px solid rgba(255,255,255,0.03); transform:translateY(0); transition:transform .25s ease; }
.badge:hover{ transform:translateY(-4px) rotate(-1deg); }

/* profile */
.profile-top{ display:flex; gap:12px; align-items:center; }
.avatar{ width:72px; height:72px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-weight:700; background: linear-gradient(180deg,var(--accent-1), var(--accent-2)); color:#120014; box-shadow: 0 12px 30px rgba(125,76,255,0.14); font-size:22px; }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, 'Roboto Mono', monospace; color:var(--text); }

/* layout components */
.section{ margin:40px 0; }
.section-title{ display:flex; align-items:center; gap:12px; font-size:18px; }
.section-title .dot{ width:10px; height:10px; border-radius:50%; background: linear-gradient(180deg,var(--accent-1),var(--accent-2)); box-shadow:0 8px 40px rgba(125,76,255,0.12); }

/* grid */
.cols{ display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; }
.grid{ display:grid; grid-template-columns: repeat(12, 1fr); gap:14px; }
.card{ padding:18px; border-radius:12px; }
.card h3{ margin:0 0 8px; }
.grid > .card{ grid-column: span 6; }
.card.wide{ grid-column: span 12; }
@media (max-width:920px){ .cols, .grid{ grid-template-columns: 1fr; } .grid > .card{ grid-column: span 1; } }

/* lists, pills */
.list{ padding-left:18px; margin-top:8px; color:var(--muted); }
.pills{ display:flex; gap:8px; margin-top:10px; flex-wrap:wrap; }
.pill{ padding:6px 10px; border-radius:999px; color:var(--muted); background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.03); }

/* footer */
.footer{ display:flex; justify-content:space-between; align-items:center; padding:20px 0; border-top:1px solid rgba(255,255,255,0.04); color:var(--muted); }

/* small utilities */
.muted{ color:var(--muted); }
.tiny{ font-size:13px; color:var(--muted); }
.btn:active{ transform:translateY(0); }

/* subtle reveal */
.reveal{ opacity:0; transform: translateY(8px); transition: all .6s cubic-bezier(.2,.9,.2,1); }
.reveal.visible{ opacity:1; transform:none; }
