:root {
  color: #f8fafc;
  background: #0f0f0f;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(16, 185, 129, 0.14), transparent 32rem),
    linear-gradient(180deg, rgba(59, 130, 246, 0.16), transparent 24rem),
    #0f0f0f;
}

a {
  color: inherit;
}

.nav,
.hero,
.content {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
}

.hero {
  display: grid;
  min-height: calc(100vh - 72px);
  align-content: center;
  gap: 24px;
  padding: 40px 0 80px;
}

.content {
  max-width: 820px;
  padding: 48px 0 96px;
}

.content.wide {
  max-width: 1040px;
}

.eyebrow {
  margin: 0;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.content h1 {
  font-size: clamp(36px, 6vw, 58px);
}

h2 {
  margin: 36px 0 8px;
  font-size: 24px;
}

p {
  color: #cbd5e1;
  line-height: 1.65;
}

.lede {
  max-width: 760px;
  margin: 0;
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #334155;
  border-radius: 8px;
  background: #151515;
  padding: 0 16px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: #10b981;
  background: #10b981;
  color: #04130d;
}

.panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.media-video {
  display: block;
  width: 100%;
  border: 1px solid #242424;
  border-radius: 8px;
  background: #050505;
  aspect-ratio: 16 / 9;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.asset-grid > a,
.asset-grid > div {
  border: 1px solid #242424;
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.88);
  padding: 18px;
  text-decoration: none;
}

.asset-grid strong {
  color: #f8fafc;
}

.status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.status-strip p {
  margin-bottom: 0;
}

.clean-list {
  margin: 0;
  padding-left: 20px;
  color: #cbd5e1;
  line-height: 1.8;
}

.panel > div,
.content section {
  border: 1px solid #242424;
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.88);
  padding: 18px;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  color: #bfdbfe;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

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

  .asset-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px 0;
  }

  .status-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}
