.page-shell {
  max-width: 1480px;
  margin: 0 auto;
}

.hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-main {
  flex: 1;
}

.hero-side {
  width: 440px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  background: rgba(15, 23, 42, 0.7);
  color: #dbe4f3;
  font-size: 13px;
  font-weight: 600;
}

.hero-badge {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.2), rgba(15, 18, 33, 0.85));
  box-shadow: var(--shadow);
}

.hero-badge.compact {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.12), rgba(15, 18, 33, 0.85));
}

.hero-badge-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hero-badge span,
.hero-badge strong,
.hero-badge small {
  display: block;
}

.hero-badge span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge strong {
  margin-top: 0;
  font-size: 17px;
  line-height: 1.25;
  text-align: left;
}

.hero-badge small {
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.45;
}

.layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 20px;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.control-panel {
  padding: 24px;
  position: sticky;
  top: 24px;
  height: fit-content;
}

.content {
  display: grid;
  gap: 20px;
}

.top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 20px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 20px;
}
