:root{
  --bg:#FBF7F0;
  --card:#FFFFFF;
  --cardTint:#F6F0E6;
  --text:#0F172A;
  --muted:#475569;
  --border:#E7DFD2;
  --accent:#1E3A8A;
  --accentSoft:#DBEAFE;

  --radius:18px;
  --shadow: 0 10px 28px rgba(15,23,42,0.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1000px;margin:0 auto;padding:28px 18px}

.site-header{
  background: linear-gradient(180deg, rgba(219,234,254,0.55), rgba(251,247,240,0));
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;justify-content:space-between;align-items:center;
  gap:14px;padding:10px 0 18px;
}

.brand{font-weight:750;letter-spacing:.2px}
.navlinks{display:flex;gap:14px;flex-wrap:wrap}
.navlinks a{color:var(--muted);font-size:14px}
.navlinks a:hover{color:var(--accent)}

.hero{
  display:grid;
  grid-template-columns: 340px 1fr;
  gap:26px;
  padding:18px 0 12px;
}
@media (max-width: 860px){
  .hero{grid-template-columns:1fr}
}

.hero-left{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}

.avatar{
  width:140px;height:140px;border-radius:50%;
  object-fit:cover;
  border: 2px solid rgba(30,58,138,0.12);
  background: var(--cardTint);
}

.hero-left .identity {
  margin-top: 16px;
}

.micro {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}
.identity{margin-top:12px}
.name{margin:0;font-size:22px;line-height:1.2}
.tagline{margin:6px 0 0;color:var(--muted);font-size:13.5px}

.iconbar{
  display:flex;gap:10px;flex-wrap:wrap;
  margin-top:14px;
}
.iconbtn{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  border:1px solid var(--border);
  background: var(--card);
  transition: transform .08s ease, border-color .2s ease, background .2s ease;
}
.iconbtn:hover{
  transform: translateY(-1px);
  border-color: rgba(30,58,138,0.25);
  background: rgba(219,234,254,0.35);
}
.iconbtn svg{
  width:20px;height:20px;
  fill: var(--accent);
  opacity: .9;
}

.hero-right{
  padding:6px 4px;
}
.kicker{color:var(--muted);font-size:14px;margin:0 0 8px}
.headline{
  margin:0 0 12px;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height:1.06;
  letter-spacing:-.4px;
}
.lede{color:var(--muted);max-width:70ch;margin:0 0 14px}

.cta{display:flex;gap:12px;flex-wrap:wrap;margin:12px 0 10px}
.btn{
  border:1px solid var(--border);
  padding:10px 14px;border-radius:999px;
  background: var(--card);
  font-weight:650;font-size:14px;
  transition: transform .08s ease, border-color .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-1px);border-color:rgba(30,58,138,0.25)}
.btn.primary{
  border-color: rgba(30,58,138,0.25);
  background: linear-gradient(90deg, rgba(219,234,254,0.75), rgba(246,240,230,0.7));
}

.chips{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.chip{
  font-size:12.5px;color:var(--muted);
  border:1px solid var(--border);
  padding:6px 10px;border-radius:999px;
  background: rgba(246,240,230,0.75);
}

.section{padding:18px 0}
.section-head h3{margin:0 0 6px;font-size:20px}
.section-head p{margin:0;color:var(--muted)}

.muted{color:var(--muted)}
.tiny{font-size:13px}

.video-card{
  margin-top:12px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding:14px;
}

.video-placeholder{
  min-height: 260px;
  border-radius: 14px;
  border:1px dashed rgba(30,58,138,0.25);
  background: rgba(219,234,254,0.35);
  display:flex;align-items:center;gap:14px;
  padding:18px;
}
.play-badge{
  width:52px;height:52px;border-radius:16px;
  display:grid;place-items:center;
  background: var(--card);
  border:1px solid var(--border);
  color: var(--accent);
  font-weight:800;
}

.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:12px;
}
@media (max-width: 860px){
  .grid2{grid-template-columns:1fr}
}

.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding:16px;
}
.card.subtle{
  background: rgba(246,240,230,0.7);
}
.card h4{margin:0 0 8px;font-size:16px}
.card p{margin:0 0 10px}

.link{
  display:inline-block;
  font-weight:700;
  color: var(--accent);
}
.link:hover{text-decoration:underline}
.link.disabled{
  color: rgba(71,85,105,0.7);
  cursor: not-allowed;
  text-decoration:none;
}

.bullets{margin:10px 0 0;padding-left:18px;color:var(--muted)}
.bullets li{margin:6px 0}

.linklist{display:grid;gap:10px;margin-top:12px}
.linkrow{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:12px;
  align-items:center;
  border:1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
  padding:12px 12px;
}
.linkrow:hover{
  border-color: rgba(30,58,138,0.22);
  background: rgba(219,234,254,0.18);
}
.lr-left{display:flex;align-items:center;gap:10px}
.lr-icon{width:22px;text-align:center}
.lr-title{font-weight:750}
.lr-desc{font-size:13.5px}
.lr-arrow{color: var(--muted)}

.footer{
  padding:22px 0 10px;
  border-top:1px solid var(--border);
  margin-top:18px;
}
