* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fafafa;
  background: #09090b;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px circle at 20% 0%, rgba(16,185,129,0.25), transparent 55%),
    radial-gradient(800px circle at 80% 10%, rgba(34,197,94,0.18), transparent 60%);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  background: rgba(9,9,11,0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.brand-name { font-weight: 700; letter-spacing: 0.04em; font-size: 13px; }
.brand-sub { font-size: 12px; color: rgba(244,244,245,0.75); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: #fafafa;
}

.btn-primary {
  background: rgb(52, 211, 153);
  color: #0a0a0a;
  border-color: transparent;
}

.main { padding: 40px 0 70px; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(250,250,250,0.9);
  font-weight: 700;
  font-size: 12px;
  width: fit-content;
}

.dot { width: 7px; height: 7px; border-radius: 999px; background: rgb(52, 211, 153); }

h1 { margin: 14px 0 10px; font-size: 42px; line-height: 1.06; letter-spacing: -0.02em; }
@media (max-width: 520px) { h1 { font-size: 34px; } }

.lead { color: rgba(244,244,245,0.78); line-height: 1.7; font-size: 15px; max-width: 680px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 22px;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px circle at 30% 0%, rgba(16,185,129,0.22), transparent 60%);
}

.panel-inner { position: relative; text-align: center; display: grid; gap: 12px; justify-items: center; }

.logo-big {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.logo-big img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}
@media (max-width: 700px) { .metrics { grid-template-columns: 1fr; } }

.metric {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.2);
  padding: 14px;
  text-align: left;
}
.metric b { font-size: 12px; }
.metric p { margin: 6px 0 0; font-size: 12px; line-height: 1.5; color: rgba(244,244,245,0.72); }

.filters {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 14px;
}
@media (max-width: 900px) { .filters { grid-template-columns: 1fr; } }

.field label { display: block; font-size: 12px; font-weight: 700; color: rgba(244,244,245,0.75); margin-bottom: 8px; }
.field input {
  width: 100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.3);
  color: #fafafa;
  padding: 0 12px;
  outline: none;
}
.field input:focus { border-color: rgba(52,211,153,0.6); }

.status-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 12px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 8px 12px;
  color: rgba(244,244,245,0.75);
  font-size: 13px;
}

.grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .grid { grid-template-columns: 1fr; } }

.card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset;
}
.card-media { padding: 12px; }
.card-media-inner { border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.10); background: rgba(0,0,0,0.4); }
.card video { width: 100%; aspect-ratio: 16/9; background: #000; display: block; }
.card-body { padding: 0 14px 14px; display: grid; gap: 10px; }
.filename { font-weight: 800; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dt { font-size: 12px; color: rgba(244,244,245,0.6); }

.actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.actions a, .actions button {
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.2);
  color: #fafafa;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}
.actions a { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.actions a:hover, .actions button:hover { border-color: rgba(52,211,153,0.4); background: rgba(52,211,153,0.10); }

.share {
  height: 40px;
  border-radius: 12px;
  border: none;
  background: rgb(52, 211, 153);
  color: #0a0a0a;
  font-weight: 900;
  cursor: pointer;
}
.share:hover { background: rgb(110, 231, 183); }

.footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(9,9,11,0.60);
  padding: 18px 0;
  color: rgba(244,244,245,0.6);
  font-size: 12px;
}
