:root{
  --bg:#070b14;
  --panel:#0b1223;
  --panel-2:#0e1730;
  --line:rgba(255,255,255,.08);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.7);
  --muted-2:rgba(234,240,255,.55);
  --brand:#21ffb6;
  --brand-2:#32d7ff;
  --warn:#ffb020;
  --danger:#ff4d6d;
  --good:#2fff7a;
  --shadow:0 20px 60px rgba(0,0,0,.55);
  --shadow-soft:0 12px 30px rgba(0,0,0,.35);
  --radius:18px;
  --radius-sm:14px;
  --max:1180px;
  --pad:22px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
  background:
    radial-gradient(1000px 420px at 12% -10%, rgba(50,215,255,.22), transparent 60%),
    radial-gradient(900px 380px at 90% 0%, rgba(33,255,182,.18), transparent 55%),
    radial-gradient(900px 520px at 80% 92%, rgba(255,176,32,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), #05070f 55%, #05070f);
  color:var(--text);
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}
::selection{background:rgba(33,255,182,.22)}

.container{
  width:min(var(--max), calc(100% - 2*var(--pad)));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:18px;
  top:18px;
  width:auto;
  height:auto;
  padding:10px 14px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  border-radius:12px;
  z-index:9999;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(7,11,20,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.3px;
}
.brand-badge{
  width:38px;
  height:38px;
  border-radius:14px;
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.45), transparent 55%),
    linear-gradient(135deg, rgba(33,255,182,.95), rgba(50,215,255,.95));
  box-shadow:0 12px 28px rgba(50,215,255,.18);
  display:grid;
  place-items:center;
  color:#001514;
  font-weight:900;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-text strong{font-size:15px}
.brand-text span{font-size:12px;color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.06);
  transform:translateY(-1px);
}
.nav a.active{
  color:var(--text);
  background:rgba(33,255,182,.10);
  border-color:rgba(33,255,182,.22);
}
.nav-cta{
  padding:10px 14px;
  border-radius:14px;
  font-weight:750;
  color:#001514;
  background:linear-gradient(135deg, rgba(33,255,182,.95), rgba(50,215,255,.95));
  box-shadow:0 18px 34px rgba(33,255,182,.10);
  border:1px solid rgba(255,255,255,.18);
}
.nav-cta:hover{
  transform:translateY(-1px);
}

.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:var(--text);
}
.burger-lines{
  width:18px;
  height:14px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.burger-lines span{
  height:2px;
  width:100%;
  border-radius:2px;
  background:rgba(234,240,255,.92);
  transition:transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] .burger-lines span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.burger[aria-expanded="true"] .burger-lines span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] .burger-lines span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.mobile-drawer{
  display:none;
  position:fixed;
  top:0;
  right:0;
  width:min(380px, 88vw);
  height:100vh;
  background:linear-gradient(180deg, rgba(11,18,35,.98), rgba(6,9,16,.98));
  border-left:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  transform:translateX(105%);
  transition:transform .22s ease;
  z-index:70;
  padding:18px;
}
.mobile-drawer.open{transform:translateX(0)}
.drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.drawer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:14px;
}
.drawer-links a{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.drawer-links a.active{
  border-color:rgba(33,255,182,.22);
  background:rgba(33,255,182,.10);
}
.drawer-close{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:var(--text);
}
.drawer-backdrop{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:60;
  opacity:0;
  transition:opacity .22s ease;
}
.drawer-backdrop.open{
  display:block;
  opacity:1;
}

.breadcrumb{
  padding:18px 0 8px;
  color:var(--muted);
  font-size:13px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.breadcrumb a{
  color:rgba(50,215,255,.88);
  border-bottom:1px solid rgba(50,215,255,.18);
}
.breadcrumb a[aria-current="page"]{
  color:var(--text);
  border-bottom-color:transparent;
  pointer-events:none;
}
.breadcrumb .sep{color:rgba(255,255,255,.25)}
.breadcrumb .current{color:var(--text)}

.hero{
  padding:18px 0 26px;
}
.section-carousel-top{
  padding:22px 0 2px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.18fr .82fr;
  gap:18px;
  align-items:stretch;
}
.hero-card{
  border-radius:calc(var(--radius) + 10px);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(700px 320px at 18% 15%, rgba(33,255,182,.18), transparent 58%),
    radial-gradient(700px 320px at 85% 5%, rgba(50,215,255,.20), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  position:relative;
}
.hero-main{
  padding:28px;
  min-height:360px;
}
.hero-kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(7,11,20,.32);
  color:rgba(234,240,255,.85);
  font-size:13px;
}
.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 6px rgba(33,255,182,.10);
}
.hero h1{
  margin:14px 0 10px;
  font-size:42px;
  line-height:1.12;
  letter-spacing:.2px;
}
.hero h1 .accent{
  color:#001514;
  background:linear-gradient(135deg, rgba(33,255,182,.95), rgba(50,215,255,.95));
  padding:0 10px 2px;
  border-radius:14px;
  display:inline-block;
}
.hero p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  max-width:62ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:var(--text);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
}
.btn-primary{
  color:#001514;
  background:linear-gradient(135deg, rgba(33,255,182,.95), rgba(50,215,255,.95));
  border-color:rgba(255,255,255,.18);
  box-shadow:0 18px 34px rgba(33,255,182,.10);
}
.btn-primary:hover{background:linear-gradient(135deg, rgba(33,255,182,1), rgba(50,215,255,1))}
.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.hero-story{
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px;
  gap:18px;
  align-items:start;
  margin-top:20px;
}
.hero-copy{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hero-copy p{
  margin:0;
  max-width:none;
}
.hero-visual{
  margin:0;
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow-soft);
}
.hero-visual-small{
  max-width:196px;
  justify-self:end;
}
.hero-visual img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
}
.hero-visual figcaption{
  padding:8px 10px 10px;
  color:var(--muted);
  font-size:11px;
}
.tag{
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  color:rgba(234,240,255,.82);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.tag strong{color:var(--text);font-weight:750}
.hero-glow{
  position:absolute;
  inset:auto -30px -40px -40px;
  height:220px;
  background:radial-gradient(closest-side, rgba(33,255,182,.22), transparent 70%);
  filter:blur(6px);
  opacity:.9;
}

.hero-side{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.panel{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:var(--shadow-soft);
}
.panel-hd{
  padding:16px 16px 10px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}
.panel-hd h2{
  margin:0;
  font-size:16px;
  letter-spacing:.2px;
}
.panel-hd a{
  font-size:13px;
  color:rgba(50,215,255,.92);
  border-bottom:1px solid rgba(50,215,255,.18);
}
.panel-bd{padding:0 16px 16px}
.mini-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mini-row{
  border-radius:14px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}
.mini-row strong{
  font-size:14px;
  font-weight:760;
}
.mini-row span{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}
.pill{
  flex:0 0 auto;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  color:rgba(234,240,255,.88);
}
.pill.live{border-color:rgba(50,215,255,.25);background:rgba(50,215,255,.12)}
.pill.final{border-color:rgba(47,255,122,.22);background:rgba(47,255,122,.10)}
.pill.soon{border-color:rgba(255,176,32,.22);background:rgba(255,176,32,.10)}

.section{
  padding:18px 0 6px;
}
.article-page{
  padding-top:8px;
}
.article-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.22fr) minmax(280px, .78fr);
  gap:16px;
  align-items:start;
}
.article-main{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.article-header{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:var(--shadow-soft);
  padding:18px;
}
.article-header h1{
  margin:10px 0 10px;
  font-size:32px;
  line-height:1.25;
}
.article-lead{
  margin:0 0 14px;
  color:var(--muted);
  font-size:15px;
}
.article-cover-wrap{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.article-cover{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}
.article-content{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:var(--shadow-soft);
  padding:18px;
}
.article-content p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:15px;
}
.article-content p:last-child{
  margin-bottom:0;
}
.article-section + .article-section{
  margin-top:22px;
  padding-top:14px;
  border-top:1px dashed rgba(255,255,255,.14);
}
.article-content h2{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.35;
}
.article-content h3{
  margin:0 0 8px;
  font-size:17px;
  line-height:1.4;
}
.article-subsection + .article-subsection{
  margin-top:10px;
}
.article-panel{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:var(--shadow-soft);
  padding:14px;
}
.article-link-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.article-side{
  display:flex;
  flex-direction:column;
  gap:12px;
  position:sticky;
  top:86px;
}
.article-toc{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.article-toc a{
  padding:9px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:rgba(50,215,255,.92);
}
.article-toc a:hover{
  border-color:rgba(50,215,255,.20);
  background:rgba(50,215,255,.10);
}
.article-keywords{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  padding:14px 16px;
}
.article-keywords h2{
  margin:0 0 8px;
  font-size:18px;
}
.media-carousel{
  position:relative;
  overflow:hidden;
  border-radius:calc(var(--radius) + 2px);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:var(--shadow-soft);
}
.media-carousel-track{
  display:flex;
  transition:transform .45s ease;
}
.media-slide{
  min-width:100%;
  position:relative;
}
.media-slide img{
  width:100%;
  aspect-ratio:16/7;
  object-fit:cover;
  display:block;
}
.media-slide-copy{
  position:absolute;
  left:20px;
  bottom:20px;
  max-width:min(540px, calc(100% - 40px));
  padding:16px 18px;
  border-radius:16px;
  background:rgba(7,11,20,.72);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
}
.media-slide-copy h3{
  margin:10px 0 6px;
  font-size:22px;
}
.media-slide-copy p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:rgba(7,11,20,.72);
  color:var(--text);
  font-size:22px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,.12);
  z-index:2;
}
.carousel-arrow.left{left:16px}
.carousel-arrow.right{right:16px}
.carousel-dots{
  position:absolute;
  right:18px;
  bottom:18px;
  display:flex;
  gap:8px;
  z-index:2;
}
.carousel-dot{
  width:10px;
  height:10px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.34);
  cursor:pointer;
  padding:0;
}
.carousel-dot.active{
  width:26px;
  border-radius:999px;
  background:var(--brand);
}
.section-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin:18px 0 12px;
}
.section-title h2{
  margin:0;
  font-size:18px;
}
.section-title p{
  margin:0;
  font-size:13px;
  color:var(--muted);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.card-body{padding:16px}
.meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  color:var(--muted);
  font-size:12px;
  margin-top:10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  color:rgba(234,240,255,.86);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.badge.hot{
  border-color:rgba(255,176,32,.22);
  background:rgba(255,176,32,.10);
}
.badge.brand{
  border-color:rgba(33,255,182,.22);
  background:rgba(33,255,182,.10);
}
.card h3{
  margin:0;
  font-size:15px;
  line-height:1.35;
  letter-spacing:.2px;
}
.card p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:13px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
  margin-top:14px;
}
.stat{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:14px 14px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.stat strong{font-size:18px;letter-spacing:.2px}
.stat span{font-size:12px;color:var(--muted)}

.toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  margin:14px 0;
}
.filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.control{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:10px 12px;
  color:var(--text);
}
.control::placeholder{color:rgba(234,240,255,.45)}
.select{
  appearance:none;
  padding-right:34px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(234,240,255,.75) 50%),
    linear-gradient(135deg, rgba(234,240,255,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size:6px 6px,6px 6px;
  background-repeat:no-repeat;
}
.toggle{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  cursor:pointer;
  user-select:none;
}
.switch{
  width:44px;
  height:24px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  position:relative;
  border:1px solid rgba(255,255,255,.12);
  transition:background .18s ease, border-color .18s ease;
}
.switch::after{
  content:"";
  width:18px;
  height:18px;
  border-radius:50%;
  position:absolute;
  top:2px;
  left:2px;
  background:rgba(234,240,255,.92);
  transition:transform .18s ease;
}
.toggle[data-on="true"]{color:var(--text)}
.toggle[data-on="true"] .switch{
  background:rgba(33,255,182,.20);
  border-color:rgba(33,255,182,.25);
}
.toggle[data-on="true"] .switch::after{transform:translateX(20px)}

.list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.row{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:var(--shadow-soft);
  padding:14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.row-left{display:flex;flex-direction:column;gap:6px}
.row-title{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.row-title strong{font-size:14px;font-weight:780}
.row-sub{font-size:12px;color:var(--muted)}
.score{
  font-weight:900;
  letter-spacing:.8px;
  font-size:16px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  min-width:90px;
  text-align:center;
}
.score.live{border-color:rgba(50,215,255,.25);background:rgba(50,215,255,.12)}
.score.final{border-color:rgba(47,255,122,.22);background:rgba(47,255,122,.10)}
.score.soon{border-color:rgba(255,176,32,.22);background:rgba(255,176,32,.10)}

.empty{
  border-radius:var(--radius);
  border:1px dashed rgba(255,255,255,.18);
  padding:18px;
  color:var(--muted);
  text-align:center;
  background:rgba(255,255,255,.03);
}

.footer{
  margin-top:34px;
  border-top:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
.footer-inner{
  padding:26px 0;
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:20px;
}
.footer h3{
  margin:0 0 10px;
  font-size:14px;
  color:rgba(234,240,255,.92);
}
.footer p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}
.footer a{
  color:rgba(50,215,255,.92);
  border-bottom:1px solid rgba(50,215,255,.16);
  font-size:13px;
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-rows{
  padding:0 0 14px;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:14px 28px;
}
.footer-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 14px;
  padding:14px 0;
}
.footer-row-title{
  color:rgba(234,240,255,.92);
  font-size:13px;
  font-weight:700;
}
.footer-row a{
  color:rgba(234,240,255,.74);
  font-size:13px;
  border-bottom:1px solid transparent;
}
.footer-row a:hover{
  color:rgba(50,215,255,.92);
  border-bottom-color:rgba(50,215,255,.18);
}
.footer-bottom{
  padding:14px 0 22px;
  color:rgba(234,240,255,.55);
  font-size:12px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
}

.backtop{
  position:fixed;
  right:18px;
  bottom:18px;
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  box-shadow:var(--shadow-soft);
  display:grid;
  place-items:center;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:opacity .18s ease, transform .18s ease, background .18s ease;
  z-index:80;
}
.backtop.show{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.backtop:hover{background:rgba(255,255,255,.10)}

@media (max-width: 980px){
  .nav{display:none}
  .burger{display:inline-flex;align-items:center;justify-content:center}
  .mobile-drawer{display:block}
  .hero-grid{grid-template-columns:1fr}
  .hero-main{min-height:unset}
  .article-layout{grid-template-columns:1fr}
  .article-side{
    position:static;
    top:auto;
  }
  .hero-story{grid-template-columns:1fr}
  .hero-visual-small{max-width:220px;justify-self:start}
  .grid-3{grid-template-columns:repeat(2, 1fr)}
  .stats{grid-template-columns:repeat(2, 1fr)}
  .footer-inner{grid-template-columns:1fr}
  .footer-rows{flex-direction:column;gap:0}
}

@media (max-width: 640px){
  :root{--pad:16px}
  .hero h1{font-size:32px}
  .article-header h1{font-size:24px}
  .article-content h2{font-size:19px}
  .article-content h3{font-size:16px}
  .hero-visual-small{max-width:170px}
  .media-slide img{aspect-ratio:16/10}
  .media-slide-copy{
    left:12px;
    right:12px;
    bottom:12px;
    max-width:none;
    padding:12px 14px;
  }
  .media-slide-copy h3{font-size:18px}
  .carousel-arrow{
    width:36px;
    height:36px;
    font-size:18px;
  }
  .carousel-arrow.left{left:10px}
  .carousel-arrow.right{right:10px}
  .grid-3{grid-template-columns:1fr}
  .row{flex-direction:column;align-items:flex-start}
  .score{width:100%}
}