:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --card:#f9fafb;
  --line:#e5e7eb;
  --link:#2563eb;
  --max: 920px;

  --hero-bg:#050507;
  --hero-text:#f3f4f6;
  --hero-muted:#b6bcc6;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.65;
}

.logo{
  font-family:
    "Harlow Solid Italic",
    "Great Vibes",
    "Pacifico",
    "Brush Script MT",
    Georgia,
    serif;
  font-size: 64px;
  font-weight: 100;
  margin: 0;
  line-height: 1;
}

.home .hero-text{
  display:flex;
  flex-direction:column;
  gap:6px; 
}

.home .logo + .small{
  margin-top: 2px;
}

.home .name{
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.home .role{
  margin-top: 0px;
  font-size: 12px;
  color: var(--hero-muted);
}

.home .small{
  margin: 0;
  font-size: 15px;
  color: var(--hero-muted);
}

.home .links{
  margin-top: 10px;
}

.tagline{
  margin: 4px 0 14px;
  font-size: 16px;
  color: var(--hero-muted);
}

.identity{
  margin-bottom: 12px;
}

.identity .name{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--hero-text);
}

.identity .role{
  margin-top: 2px;
  font-size: 14px;
  color: var(--hero-muted);
}

.home header{
  background: radial-gradient(1200px 500px at 20% -10%, #111 0%, #050507 60%);
  color:var(--hero-text);
  border-bottom:1px solid #111;
}

.home header .wrap{ padding:18px 18px; }

.home h1{ margin:0; font-size:36px; letter-spacing:-0.02em; }
.home h2{ font-size:18px; margin:0 0 10px; letter-spacing:-0.01em; }

.wrap{ max-width:var(--max); margin:0 auto; padding:34px 18px; }

.top{
  display:flex;
  gap:28px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.hero-text{ flex:1 1 360px; min-width:280px; }

.role{ margin-top:6px; color:var(--hero-muted); }

.links{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:14px; }

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:3px 12px;
  font-size:14px;
  line-height:1.2;
  border:1px solid rgba(255,255,255,.25);
  border-radius:5px;
  text-decoration:none;
  color:#111827;
  background: linear-gradient(180deg,#f1f3f5 0%,#d9dde2 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 4px 14px rgba(0,0,0,.35);
  transition: all .2s ease;
}


.pill:hover{
  border-color: rgba(255,255,255,.6);
  background: linear-gradient(180deg,#ffffff 0%,#e3e7ec 100%);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 6px 20px rgba(0,0,0,.45);
}

.small{ font-size:14px; color:var(--hero-muted); margin:10px 0 0; }

.hero-video{ flex:0 1 320px; max-width:340px; }

.hero-video video{
  width:100%;
  border-radius:16px;
  display:block;
  background:#000;
  box-shadow: 0 10px 30px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.05);
}

main{ padding:6px 0 32px; }
main .wrap{ padding-top:12px; }

.grid{ display:grid; gap:14px; grid-template-columns: 1fr; }
@media (min-width: 860px){
  .grid{ grid-template-columns: 1.15fr 0.85fr; }
}

.card{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:16px;
  padding:16px 16px;
}

.item{ padding:12px 0; border-top:1px solid var(--line); }
.item:first-child{ border-top:none; padding-top:0; }
.item:last-child{ padding-bottom:0; }

.title{ font-weight:650; margin:0 0 4px; }
.meta{ margin:0; color:var(--muted); font-size:14px; }

a{ color:var(--link); text-decoration:none; }
a:hover{ text-decoration:underline; }

footer{
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  padding:18px 0;
}

.table-wrap{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  margin-top:12px;
}

.table-wrap table{
  width:100%;
  min-width:520px;
  font-size: clamp(12px, 3vw, 16px);
  border-collapse: collapse;
  text-align: center;
}

.table-wrap td, 
.table-wrap th{
  white-space: nowrap;
  padding:6px 8px;
}

.col-left{
  display:flex;
  flex-direction:column;
  gap:14px;
}
