.hero {
  position: relative;
  padding: 96px 0 48px;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

h1 {
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.02;
  margin: 16px 0;
  letter-spacing: -.02em;
}

h1 .accent {
  background: linear-gradient(90deg, var(--accent), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #cfe0ff;
  max-width: 820px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.screen {
  position: relative;
  margin: 56px auto 0;
  width: min(100%, 980px);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--stroke);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2,8,23,.6);
}

.screen .titlebar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.titlebar-label {
  margin-left: 8px;
  color: var(--muted);
}

.dot { width: 10px; height: 10px; border-radius: 999px }
.dot.r { background: #ff6b6b }
.dot.y { background: #ffd166 }
.dot.g { background: #06d6a0 }

pre.code {
  background: linear-gradient(180deg, rgba(15,25,50,0.98), rgba(10,15,30,1));
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
  padding: 18px;
  color: #e8f5ff;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  min-height: 180px;
}

.code .fade { color: #9db3c9 }
