:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --card:#ffffff;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --radius:16px;

  --blue:#4285F4;
  --red:#EA4335;
  --yellow:#FBBC05;
  --green:#34A853;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: #fff;
}

a{color:inherit; text-decoration:none}
img{display:block; max-width:100%}

.wrap{
  width:min(1080px, 92vw);
  margin:0 auto;
}

.skip{
  position:absolute; left:-999px; top:12px;
  background:#111827; color:#fff; padding:10px 12px; border-radius:10px;
  z-index:9999;
}
.skip:focus{left:12px}

.topbar{
  border-bottom:1px solid var(--line);
  background:#fff;
  position:sticky;
  top:0;
  z-index:20;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__logo{
  width:34px;
  height:34px;
  object-fit:contain;
}
.brand__kicker{
  font-size:12px;
  color:var(--muted);
  font-weight:600;
  line-height:1.1;
}
.brand__name{
  font-weight:800;
  letter-spacing:-.2px;
}

.topnav{
  display:flex;
  align-items:center;
  gap:14px;
}
.topnav a{
  font-size:13px;
  color:#111827;
  padding:10px 10px;
  border-radius:12px;
  transition: background .15s ease;
}
.topnav a:hover{background:#f3f4f6}

.hero{padding:28px 0 34px}
.hero__title{
  margin:0;
  font-size:34px;
  letter-spacing:-.6px;
}
.hero__sub{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.6;
}

.tabs{
  display:flex;
  align-items:center;
  gap:10px;
  margin:18px 0 16px;
  border-bottom:1px solid var(--line);
}
.tab{
  appearance:none;
  border:0;
  background:transparent;
  padding:12px 6px;
  font-weight:700;
  color:var(--muted);
  cursor:pointer;
  border-bottom:3px solid transparent;
}
.tab.is-active{
  color:#111827;
  border-bottom-color: var(--blue);
}

.grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:16px;
  align-items:stretch;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}

.card--wide{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  padding:18px;
}

.partner{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:16px;
  align-items:start;
}

.partner__badge{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  background:#fff;
}
.partner__badge img{
  width:42px;
  height:42px;
  object-fit:contain;
}
.partner__badgeTxt{
  font-size:12px;
  color:var(--muted);
  font-weight:800;
}

.partner__title{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-.2px;
}
.partner__desc{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.65;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  font-weight:800;
  background:#fff;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover{transform: translateY(-1px); background:#f9fafb}
.btn--ghost{background:#f3f4f6}
.btn--ghost:hover{background:#e5e7eb}

.metric__title{
  margin:0 0 8px;
  font-size:14px;
  font-weight:900;
}
.metric__text{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.6;
  font-size:13px;
}
.metric__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.pill{
  font-size:12px;
  font-weight:800;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: #fff;
}

.note{
  margin:14px 0 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}

.footer{
  border-top:1px solid var(--line);
  padding:16px 0;
  margin-top: 10px;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer__brand{font-weight:900}
.footer__sub{font-size:12px; color:var(--muted); margin-top:4px}
.footer__links{display:flex; gap:10px; flex-wrap:wrap}
.footer__links a{
  font-size:13px;
  color:#111827;
  padding:8px 10px;
  border-radius:12px;
  background:#f3f4f6;
}
.footer__links a:hover{background:#e5e7eb}

@media (max-width: 980px){
  .grid{grid-template-columns:1fr}
  .card--wide{grid-column:auto; grid-row:auto}
  .partner{grid-template-columns: 1fr}
  .partner__badge{height:auto; flex-direction:row; justify-content:flex-start}
  .topnav{display:none}
  .footer__inner{flex-direction:column; align-items:flex-start}
}
