.nav-link {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  font-weight: 680;
}
.nav-link:hover { color: var(--ink); }
.creator-hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--line);
}
.creator-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
}
.text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  text-underline-offset: 4px;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 64px;
}
.promise-grid div {
  padding: 20px 22px;
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.promise-grid strong,
.promise-grid span { display: block; }
.promise-grid strong { font-size: 18px; letter-spacing: -.02em; }
.promise-grid span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.creator-flow,
.demo-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.creator-flow > h2,
.demo-heading h2,
.not-building h2,
.creator-bottom h2 {
  max-width: 800px;
  margin-bottom: 36px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.creator-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.creator-steps article {
  min-height: 230px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.creator-steps article > span {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.creator-steps h3 { margin-bottom: 10px; font-size: 21px; letter-spacing: -.02em; }
.creator-steps p { color: var(--muted); font-size: 15px; }
.demo-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.demo-label {
  margin-top: 24px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.dashboard-card {
  max-width: 900px;
  padding: 28px;
  background: #101216;
  color: #f6f6f4;
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(15,17,21,.12);
}
.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.dashboard-top h3 { margin: 12px 0 4px; font-size: 25px; letter-spacing: -.03em; }
.dashboard-top p { color: rgba(255,255,255,.54); font-size: 13px; }
.platform-pill,
.status-live {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.platform-pill { background: rgba(255,61,0,.16); color: #ff8a66; }
.status-live { background: rgba(57,205,128,.14); color: #70dfa3; }
.metric-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.metric {
  min-height: 130px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.metric span,
.metric small { display: block; color: rgba(255,255,255,.52); font-size: 12px; }
.metric strong { display: block; margin: 14px 0 3px; font-size: 42px; line-height: 1; letter-spacing: -.05em; }
.primary-metric { background: #f6f6f4; color: #111; }
.primary-metric span { color: #666; }
.price-panel {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
}
.price-row {
  display: grid;
  grid-template-columns: 150px 1fr 26px;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  font-size: 13px;
}
.price-row span { color: rgba(255,255,255,.65); }
.price-row b { text-align: right; }
.bar { height: 6px; background: rgba(255,255,255,.09); border-radius: 999px; overflow: hidden; }
.bar i { display: block; height: 100%; background: #ff6940; border-radius: inherit; }
.dashboard-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
}
.dashboard-note strong { font-size: 13px; }
.dashboard-note p { margin: 5px 0 0; color: rgba(255,255,255,.56); font-size: 12px; }
.demo-link { display: inline-block; margin-top: 18px; font-weight: 760; text-underline-offset: 4px; }
.not-building {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 64px;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.boundary-copy p { color: var(--muted); font-size: 17px; }
.creator-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding: 82px 0 104px;
}
.creator-bottom h2 { margin-bottom: 12px; }
.creator-bottom p { color: var(--muted); }

@media (max-width: 760px) {
  .creator-hero { padding: 70px 0 58px; }
  .promise-grid,
  .creator-steps,
  .metric-grid { grid-template-columns: 1fr; }
  .creator-flow,
  .demo-section { padding: 62px 0; }
  .creator-steps article { min-height: 190px; }
  .creator-steps article > span { margin-bottom: 32px; }
  .demo-heading { align-items: start; }
  .dashboard-card { padding: 18px; border-radius: 18px; }
  .dashboard-top { flex-direction: column; }
  .metric { min-height: 112px; }
  .price-row { grid-template-columns: 110px 1fr 24px; gap: 8px; }
  .price-row span { font-size: 11px; }
  .not-building { grid-template-columns: 1fr; gap: 12px; padding: 62px 0; }
  .creator-bottom { flex-direction: column; align-items: stretch; padding: 62px 0 80px; }
}
