:root{
  --bg: #0b1220;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.04);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.10);
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(99,102,241,0.25), transparent 60%),
    radial-gradient(700px 350px at 85% 20%, rgba(56,189,248,0.18), transparent 60%),
    var(--bg);
  background-repeat: no-repeat;
  line-height: 1.5;
}

a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,0.55);
  border-bottom: 1px solid var(--border);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0.2px;
}
.brand__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(99,102,241,0.9);
  box-shadow: 0 0 0 6px rgba(99,102,241,0.18);
}
.brand__name{ font-size: 16px; }

.nav{
  display:flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}
.nav a{
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

.card{
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero{
  padding: 28px 0 18px;
}

.hero__card{
  display:grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 22px;
  padding: 22px;
}

.hero__left{
  display:flex;
  gap: 18px;
  align-items:flex-start;
}

.avatar{
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
  flex: 0 0 auto;
}

.hero__meta h1{
  margin: 2px 0 4px;
  font-size: 32px;
  line-height: 1.1;
}

.subtitle{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.button-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  text-decoration:none;
}
.btn:hover{
  background: rgba(255,255,255,0.10);
  text-decoration:none;
}
.btn--primary{
  background: rgba(99,102,241,0.35);
  border-color: rgba(99,102,241,0.55);
}
.btn--primary:hover{
  background: rgba(99,102,241,0.45);
}
.btn--ghost{
  background: rgba(255,255,255,0.02);
}
.btn--small{
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 10px;
}

.chips{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.hero__right h2{
  margin: 6px 0 10px;
  font-size: 20px;
}
.hero__right p{
  margin: 0 0 10px;
  color: var(--muted);
}

.mini-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.mini{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 14px;
}
.mini h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.mini p{
  margin: 0 0 10px;
  color: var(--muted2);
  font-size: 13px;
}

.textlink{
  color: rgba(147,197,253,0.95);
  font-weight: 650;
  text-decoration: none;
}
.textlink:hover{ text-decoration: underline; }

.linklist{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.linklist a{ color: rgba(147,197,253,0.95); }

.note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 13px;
}

.pdf-card{
  margin: 16px 0 28px;
  padding: 16px;
}

.pdf-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.pdf-header h2{
  margin: 0;
  font-size: 18px;
}

.pdf-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pdf{
  width: 100%;
  height: 860px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(0,0,0,0.25);
}

.footer{
  padding: 14px 0 30px;
  color: var(--muted2);
  font-size: 13px;
  text-align:center;
}

/* Responsive */
@media (max-width: 900px){
  .hero__card{
    grid-template-columns: 1fr;
  }
  .mini-grid{
    grid-template-columns: 1fr;
  }
  .avatar{
    width: 104px;
    height: 104px;
  }
}

@media (max-width: 520px){
  .nav{ display:none; }
  .hero__left{ flex-direction: column; align-items:flex-start; }
}
