:root{
  --bg:#0b1020;
  --panel:#111827;
  --line:rgba(255,255,255,.08);
  --text:#f8fafc;
  --muted:rgba(226,232,240,.62);
  --primary:#3b82f6;
  --primary-dark:#2563eb;
  --primary-soft:#60a5fa;
  --accent:#38bdf8;
  --success:#22c55e;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.65;
}

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

.site-header{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(11,16,32,.94);
  position:sticky;
  top:0;
  z-index:20;
}

.site-header.transparent{
  position:absolute;
  left:0;
  right:0;
  background:transparent;
}

.brand{
  font-weight:900;
  letter-spacing:-.03em;
}

.header-call{
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  font-size:14px;
  font-weight:800;
}

.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:120px 20px 80px;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 10%,rgba(59,130,246,.16),transparent 34%),
    linear-gradient(180deg,#0f172a,var(--bg));
}

.hero.compact{
  min-height:auto;
  padding:110px 20px 64px;
}

.glow{
  position:absolute;
  width:720px;
  height:720px;
  border-radius:50%;
  background:rgba(59,130,246,.08);
  filter:blur(90px);
  z-index:0;
}

.hero>*:not(.glow){
  position:relative;
  z-index:1;
}

.eyebrow{
  margin:0 0 14px;
  color:var(--primary-soft);
  font-weight:900;
  font-size:12px;
  letter-spacing:.24em;
}

.hero h1{
  margin:0;
  max-width:960px;
  font-size:clamp(34px,6vw,72px);
  line-height:1.14;
  letter-spacing:-.06em;
}

.hero h1 span{
  color:var(--primary-soft);
}

.lead{
  max-width:760px;
  margin:24px auto 0;
  color:var(--muted);
  font-size:18px;
}

.hero-badges,
.hub-stats{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:36px;
}

.hero-badges div,
.hub-stats div{
  min-width:150px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
}

strong{
  display:block;
  font-size:24px;
  color:#fff;
}

.hero-badges span,
.hub-stats span{
  display:block;
  color:var(--muted);
  font-size:12px;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:32px;
}

.primary-cta,
.secondary-cta{
  height:54px;
  padding:0 26px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  font-weight:900;
}

.primary-cta{
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
}

.secondary-cta{
  border:1px solid rgba(255,255,255,.2);
}

.hub{
  width:100%;
  max-width:1480px;
  margin:0 auto;
}

.case-search-wrap{
  display:flex;
  gap:12px;
  width:min(1200px,100%);
  margin:40px auto 0;
}

.case-search{
  flex:1;
  width:100%;
  min-width:0;
  height:58px;
  padding:0 22px;
  border-radius:12px;
  border:1px solid rgba(148,163,184,.22);
  background:#0f172a;
  color:#fff;
  font-size:16px;
}

.case-search:focus{
  outline:none;
  border-color:rgba(96,165,250,.65);
  box-shadow:0 0 0 3px rgba(59,130,246,.16);
}

.search-btn{
  flex:0 0 100px;
  border:0;
  border-radius:12px;
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.case-table-wrap{
  width:100%;
  padding:42px 0px 80px;
  border-top:1px solid rgba(148,163,184,.16);
}

.case-table-header,
.case-row{
  display:grid;
  grid-template-columns:80px minmax(580px, 1fr) 160px 160px 140px;
  column-gap:42px;
  width:100%;
}

.case-table-header{
  padding:18px 0;
  color:rgba(226,232,240,.48);
  font-size:13px;
  border-bottom:1px solid rgba(148,163,184,.16);
}

.case-row{
  align-items:center;
  min-height:76px;
  padding:18px 0;
  border-bottom:1px solid rgba(148,163,184,.14);
  background:linear-gradient(90deg,rgba(59,130,246,.07),transparent 72%);
  transition:.2s;
}

.case-row:hover{
  background:linear-gradient(90deg,rgba(59,130,246,.14),transparent 72%);
}

.case-table-header > div,
.case-row > div{
  text-align:left;
}

.case-table-header > div:nth-child(1),
.case-row > div:nth-child(1){
  padding-left:20px;
}

.case-table-header > div:nth-child(2),
.case-row > div:nth-child(2){
  padding-left:0;
}

.case-table-header > div:nth-child(3),
.case-row > div:nth-child(3){
  padding-left:20px;
}

.case-table-header > div:nth-child(4),
.case-row > div:nth-child(4){
  padding-left:20px;
}

.case-table-header > div:nth-child(5),
.case-row > div:nth-child(5){
  padding-left:20px;
  padding-right:20px;
}

.case-no{
  color:var(--primary-soft);
  font-weight:700;
}

.case-title-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.case-title{
  font-size:18px;
  color:#fff;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.today-badge{
  flex:0 0 auto;
  height:28px;
  padding:0 10px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--primary-dark),var(--accent));
  color:#fff;
  font-size:11px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
}

.case-status{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:100px;
  height:38px;
  margin-left:0;
  border-radius:10px;
  border:1px solid rgba(59,130,246,.35);
  background:rgba(59,130,246,.08);
  color:#93c5fd;
  font-size:13px;
  font-weight:700;
  box-shadow:none;
}

.case-date{
  width:auto;
  color:rgba(226,232,240,.58);
  font-weight:600;
  text-align:left;
}

.case-views{
  width:auto;
  color:rgba(226,232,240,.46);
  font-weight:700;
  text-align:left;
}

.summary,
.process,
.faq,
.report-box{
  max-width:980px;
  margin:0 auto;
  padding:74px 20px;
  border-bottom:1px solid var(--line);
}

.summary h2,
.process h2,
.faq h2,
.report-box h2{
  font-size:clamp(26px,4vw,42px);
  line-height:1.25;
  margin:0 0 22px;
  letter-spacing:-.05em;
}

.summary p{
  font-size:18px;
  color:var(--muted);
}

.timeline{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}

.timeline article{
  padding:22px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.035);
}

.timeline b{
  color:var(--primary-soft);
}

.timeline h3{
  margin:10px 0 6px;
}

.timeline p{
  margin:0;
  color:var(--muted);
}

.report-box{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:28px;
  align-items:start;
}

.report-box form{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.04);
}

input,
button{
  height:48px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  padding:0 14px;
  font:inherit;
}

input{
  background:rgba(0,0,0,.25);
  color:#fff;
}

button{
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.faq details{
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px 20px;
  margin:10px 0;
  background:rgba(255,255,255,.035);
}

.faq summary{
  cursor:pointer;
  font-weight:900;
}

.faq p{
  color:var(--muted);
}

.site-footer{
  text-align:center;
  color:rgba(255,255,255,.4);
  padding:44px 20px 120px;
}

.sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:30;
  display:flex;
  justify-content:center;
  gap:8px;
  padding:12px;
  background:rgba(11,16,32,.88);
  backdrop-filter:blur(12px);
  border-top:1px solid var(--line);
}

.sticky-cta a{
  width:min(220px,45vw);
  height:46px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
}

.sticky-cta a:last-child{
  background:#fff;
  color:#111827;
}

@media(max-width:900px){
  .case-table-header{
    display:none;
  }

  .case-row{
    grid-template-columns:1fr;
    gap:14px;
  }

  .case-title-wrap{
    flex-wrap:wrap;
  }

  .case-title{
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
  }

  .case-search-wrap{
    flex-direction:column;
  }

  .search-btn{
    width:100%;
    flex:auto;
  }
}

@media(max-width:760px){
  .site-header{
    height:58px;
    padding:0 16px;
  }

  .header-call{
    font-size:12px;
    padding:8px 12px;
  }

  .report-box{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:82vh;
  }

  .lead{
    font-size:16px;
  }

  .hero-badges div,
  .hub-stats div{
    min-width:120px;
  }
}