/* Trelmir Klariven - slice 1 styles
   Visual identity: dark, premium, futuristic, serious, high-trust.
   Not playful, not creator-toy, not commodity SaaS. */

:root {
  --bg: #06080d;
  --bg-surface: #0b0f17;
  --bg-surface-2: #111826;
  --bg-elev: #141c2d;
  --border: #1b2334;
  --border-strong: #283047;
  --hairline: rgba(255, 255, 255, 0.06);

  --text: #e6ecf7;
  --text-muted: #8b93a7;
  --text-dim: #5a6175;
  --text-faint: #3f4556;

  --accent: #5ee0ff;
  --accent-strong: #33caf0;
  --accent-soft: rgba(94, 224, 255, 0.10);
  --accent-glow: rgba(94, 224, 255, 0.22);

  --trust: #3ddc97;
  --trust-soft: rgba(61, 220, 151, 0.10);
  --danger: #ef6b6b;

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --max-w: 1160px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-soft: 0 1px 0 rgba(255, 255, 255, 0.03) inset,
                 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 0 0 1px var(--accent-glow),
                   0 20px 60px rgba(94, 224, 255, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -200px, rgba(94, 224, 255, 0.05), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(51, 202, 240, 0.035), transparent 60%),
    var(--bg);
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }

.mono { font-family: var(--font-mono); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6, 8, 13, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--text);
}
.brand .mark {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand .product {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  padding: 3px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--bg-surface);
}
.brand .spark {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  margin-right: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.nav a:hover { color: var(--text); }
@media (max-width: 720px) { .nav .nav-link { display: none; } }
.site-header .btn-sm .short { display: none; }
@media (max-width: 520px) {
  .site-header .btn-sm .full { display: none; }
  .site-header .btn-sm .short { display: inline; }
}
@media (max-width: 520px) {
  .hero { padding: 32px 0 48px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.06s ease, background 0.15s ease,
              border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, #7ee9ff 0%, var(--accent) 100%);
  color: #031218;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px var(--accent-glow), 0 10px 32px rgba(94, 224, 255, 0.25);
}
.btn-primary:hover {
  filter: brightness(1.06);
  color: #031218;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  padding-left: 10px;
  padding-right: 10px;
}
.btn-ghost:hover { color: var(--accent); }

.btn-sm { padding: 9px 14px; font-size: 13.5px; }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 720px;
  height: 720px;
  background: radial-gradient(closest-side, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--accent-glow);
  border-radius: 999px;
  background: var(--accent-soft);
  margin-bottom: 24px;
}
.hero .eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  max-width: 980px;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .accent-underline {
  background: linear-gradient(180deg, transparent 70%, var(--accent-soft) 70%);
  padding-bottom: 2px;
}
.hero p.lede {
  color: var(--text-muted);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 700px;
  margin: 0 0 36px;
}
.cta-ladder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: rgba(11, 15, 23, 0.5);
}
.trust-strip .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.trust-strip .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--trust-soft);
  border: 1px solid rgba(61, 220, 151, 0.22);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.trust-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--trust);
  box-shadow: 0 0 8px rgba(61, 220, 151, 0.55);
}

/* ---------- Section shell ---------- */
.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.section .eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 12px;
}
.section h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 12px;
  max-width: 820px;
}
.section .section-lede {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 0 40px;
  font-size: 16.5px;
}

/* ---------- Proof lanes ---------- */
.lanes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 960px) { .lanes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lanes { grid-template-columns: 1fr; } }

.lane {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)) ,
    var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.lane:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}
.lane .lane-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.lane h3 {
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.lane p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ---------- Sandbox proof ---------- */
.sandbox {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(800px 400px at 10% -20%, var(--accent-soft), transparent 60%),
    var(--bg-surface);
  padding: 32px;
  overflow: hidden;
}
.sandbox::after {
  content: "WATERMARK · DEMO";
  position: absolute;
  right: -40px;
  top: 16px;
  transform: rotate(12deg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--text-faint);
  opacity: 0.55;
  pointer-events: none;
  white-space: nowrap;
}
.sandbox-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .sandbox-grid {
    grid-template-columns: 1fr;
  }
  .sandbox-arrow { display: none; }
}
.sandbox-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sandbox-col .col-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.sandbox-col .event-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.sandbox-col .event-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin: 0;
}
.sandbox-col .event-body {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}
.sandbox-col.draft {
  border-color: var(--accent-glow);
  background:
    linear-gradient(180deg, rgba(94,224,255,0.04), transparent),
    var(--bg);
}
.draft-text {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  white-space: pre-wrap;
}
.sandbox-arrow {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 20px;
}
.sandbox-arrow .tick {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-top: 6px;
}
.sandbox-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.badge .k { color: var(--text-dim); }
.badge .v { color: var(--text); }
.badge.accent .v { color: var(--accent); }
.badge.trust .v { color: var(--trust); }

.sandbox-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--text-dim);
  font-size: 13px;
}
.sandbox-note {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ---------- Before/after ---------- */
.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 780px) { .ba { grid-template-columns: 1fr; } }
.ba-col {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.ba-col.after { border-color: var(--border-strong); }
.ba-col .k {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.ba-col.after .k { color: var(--accent); }
.ba-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}
.ba-col ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  border-top: 1px solid var(--border);
}
.ba-col ul li:first-child { border-top: none; }
.ba-col.before ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-dim);
}
.ba-col.after ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Starter templates ---------- */
.templates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .templates { grid-template-columns: 1fr; } }

.template {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.template .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.template h3 {
  margin: 6px 0 6px;
  font-size: 18px;
  font-weight: 600;
}
.template p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- Pricing ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.plan.hero-plan {
  border-color: var(--accent);
  background:
    radial-gradient(120% 80% at 50% -10%, var(--accent-soft), transparent 60%),
    var(--bg-surface);
  box-shadow: var(--shadow-accent);
}
.plan .tag {
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--accent);
  color: #031218;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
}
.plan h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.plan .plan-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 18px;
}
.plan .price {
  font-family: var(--font-mono);
  font-size: 30px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.plan .price .per {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  color: var(--text-muted);
  font-size: 14px;
}
.plan ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  border-top: 1px solid var(--border);
}
.plan ul li:first-child { border-top: none; }
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.plan .btn { margin-top: auto; }

.pricing-foot {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 18px;
}

/* ---------- NOT list ---------- */
.not {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.not h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
}
.not ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
}
@media (max-width: 640px) { .not ul { grid-template-columns: 1fr; } }
.not li {
  color: var(--text-muted);
  font-size: 14.5px;
  padding-left: 26px;
  position: relative;
}
.not li::before {
  content: "NOT";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--danger);
  border: 1px solid rgba(239, 107, 107, 0.35);
  padding: 1px 4px;
  border-radius: 3px;
}

/* ---------- Final CTA band ---------- */
.cta-band {
  padding: 96px 0;
  text-align: center;
  position: relative;
  background:
    radial-gradient(70% 100% at 50% 0%, var(--accent-soft), transparent 70%),
    var(--bg);
}
.cta-band h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.cta-band p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 12px;
}
.site-footer .row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--accent); }

/* ================================================ */
/* DESIGN PARTNER PAGE */
/* ================================================ */

.dp-hero .eyebrow { color: var(--accent); }
.dp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 860px) { .dp-grid { grid-template-columns: 1fr; } }

.dp-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.dp-card .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.dp-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}
.dp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}
.dp-card ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  border-top: 1px solid var(--border);
}
.dp-card ul li:first-child { border-top: none; }
.dp-card ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.dp-card.bad-fit ul li::before {
  content: "×";
  color: var(--danger);
}

/* ================================================ */
/* APP ENTRY PAGE */
/* ================================================ */

.app-shell {
  min-height: 100vh;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.app-topbar {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.app-topbar .left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}
.app-topbar .left .spark {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.app-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.app-trust .trust-pill { font-size: 11px; padding: 4px 10px; }

.app-main {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
.app-hero {
  padding: 36px 28px;
  background:
    radial-gradient(700px 320px at 20% -40%, var(--accent-soft), transparent 60%),
    var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.app-hero .k {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 10px;
}
.app-hero h1 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.app-hero p {
  color: var(--text-muted);
  margin: 0 0 22px;
  max-width: 620px;
}
.app-hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-modules {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 860px) { .app-modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .app-modules { grid-template-columns: 1fr; } }

.module {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 140px;
}
.module .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.module h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.module p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13.5px;
}
.module .count {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.module.empty .k { color: var(--accent); }

.app-foot {
  max-width: 1040px;
  margin: 0 auto;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 6px 4px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Slice 6 watermark settings preview ---------- */
.app-watermark-preview {
  margin-top: 36px;
}
.watermark-preview-lede {
  margin: 8px 0 22px;
  color: var(--text-muted);
  font-size: 14px;
}
.watermark-sample {
  margin: 6px 0 10px;
  color: var(--text);
  font-size: 14.5px;
}
.watermark-color-chip {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: -2px;
  margin-right: 6px;
}
.watermark-limit {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.watermark-frame {
  position: relative;
  margin: 28px auto 0;
  max-width: 720px;
  min-height: 220px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(800px 400px at 10% -20%, var(--accent-soft), transparent 60%),
    var(--bg-surface);
  overflow: hidden;
}
.watermark-frame-diagonal {
  position: absolute;
  right: 16px;
  top: 16px;
  transform: rotate(12deg);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--accent);
  opacity: 0.75;
  pointer-events: none;
  white-space: nowrap;
}
.watermark-frame-lowerthird {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text);
  text-align: center;
  pointer-events: none;
}
.watermark-frame-caption {
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}
.watermark-disclaimer {
  margin: 24px 0 0;
  max-width: 760px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Slice 7 distribution preview ---------- */
.export-package {
  margin: 36px auto 0;
  max-width: 1040px;
}
.export-package-lede {
  margin: 8px 0 22px;
  color: var(--text-muted);
  font-size: 14px;
}
.export-package-section-h {
  margin: 28px 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
}
.export-package-sample {
  margin: 6px 0 10px;
  color: var(--text);
  font-size: 14.5px;
}
.export-package-limit {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.export-package-caption {
  margin: 0 0 8px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-x: auto;
}
.export-package-caption-hint {
  margin: 0 0 18px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.export-package-anti-conflation {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 2px solid var(--accent);
  background: var(--bg-surface);
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
}
.export-package-anti-conflation strong {
  color: var(--text);
}
.export-package-trail {
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 18px;
}
.export-package-trail dt {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.export-package-trail dd {
  margin: 0;
  font-size: 13.5px;
  color: var(--text);
}
.qa-checklist {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qa-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
}
.qa-status {
  font-family: var(--font-mono);
  font-size: 12px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}
.qa-status.qa-ready { color: var(--accent); }
.qa-status.qa-na { color: var(--text-dim); }
.qa-status.qa-future { color: var(--text-faint); }
.qa-detail {
  color: var(--text-muted);
  font-size: 12.5px;
}
.export-package-disclaimer {
  margin: 28px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.export-package-sample,
.export-package-trail dd {
  overflow-wrap: anywhere;
}
@media (max-width: 520px) {
  .qa-item {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 2px 10px;
    align-items: start;
  }
  .qa-detail {
    grid-column: 2;
    display: block;
  }
}

/* ---------- Slice 8 carousel preview ---------- */
.carousel-pages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0 28px;
  max-width: 760px;
}
.carousel-page {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 28px 24px 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(800px 400px at 10% -20%, var(--accent-soft), transparent 60%),
    var(--bg-surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.carousel-page-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.carousel-page-h {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
}
.carousel-page-body {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.carousel-page-watermark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.7;
  pointer-events: none;
  white-space: nowrap;
}
.carousel-page-provenance {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100% - 110px);
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 860px) {
  .carousel-pages {
    grid-template-columns: 1fr;
  }
}

/* ---------- Slice 9 video preview ---------- */
.video-cluster {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  margin: 16px 0 8px;
  max-width: 760px;
  align-items: start;
}
.video-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(800px 400px at 10% -20%, var(--accent-soft), transparent 60%),
    var(--bg-surface);
  overflow: hidden;
}
.video-frame-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  pointer-events: none;
}
.video-frame-lowerthird {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  padding: 8px 14px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text);
  text-align: center;
  pointer-events: none;
}
.video-frame-watermark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.7;
  pointer-events: none;
  white-space: nowrap;
}
.video-frame-provenance {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100% - 110px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-thumbnail {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg-surface);
  overflow: hidden;
}
.video-thumbnail-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
  pointer-events: none;
}
.video-thumbnail-watermark {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--accent);
  opacity: 0.7;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .video-cluster {
    grid-template-columns: 1fr;
  }
}

/* ---------- Slice 10 article preview ---------- */
.article-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 16px 0 8px;
  max-width: 760px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(800px 400px at 10% -20%, var(--accent-soft), transparent 60%),
    var(--bg-surface);
  overflow: hidden;
}
.article-cover-label {
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  pointer-events: none;
}
.article-cover-title {
  position: absolute;
  top: 50%;
  left: 24px;
  right: 24px;
  transform: translateY(-50%);
  margin: 0;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
}
.article-cover-byline {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  pointer-events: none;
  max-width: calc(100% - 130px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-cover-watermark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.7;
  pointer-events: none;
  white-space: nowrap;
}
.article-body {
  margin: 16px auto 0;
  max-width: 640px;
  padding: 24px 28px 0;
}
.article-lede {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 22px;
}
.article-section-h {
  margin: 28px 0 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  line-height: 1.3;
}
.article-body p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.article-pullquote {
  margin: 28px 0;
  padding: 12px 18px;
  border-left: 3px solid var(--accent);
  background: var(--bg-surface);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
}
.article-cta {
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.article-footer {
  position: relative;
  margin: 32px 0 0;
  padding: 20px 0 24px;
  border-top: 1px solid var(--border);
  min-height: 32px;
}
.article-footer-watermark {
  position: absolute;
  right: 0;
  top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.7;
  pointer-events: none;
  white-space: nowrap;
}
.article-footer-provenance {
  position: absolute;
  left: 0;
  top: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100% - 110px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.export-package-limit-inline {
  font-style: italic;
  color: var(--text-muted);
  font-size: 12.5px;
}
@media (max-width: 720px) {
  .article-body {
    padding: 16px 4px 0;
  }
  .article-cover-title {
    font-size: 18px;
    left: 12px;
    right: 12px;
  }
  .article-cover-byline {
    font-size: 10px;
    max-width: calc(100% - 100px);
  }
}

/* ---------- Slice 11 demo control room ---------- */
.dcr-order {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  counter-reset: dcr-step;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dcr-order li {
  counter-increment: dcr-step;
  padding-left: 32px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.dcr-order li::before {
  content: counter(dcr-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.dcr-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 22px;
}
.dcr-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 120ms ease;
}
.dcr-card:hover {
  border-color: var(--accent);
}
.dcr-card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.dcr-card-path {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
}
.dcr-card-note {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

.dcr-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dcr-list li {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.dcr-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--text-dim);
}

.dcr-candidates {
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dcr-candidate {
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.dcr-candidate dt {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.dcr-candidate dd {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.dcr-candidate dd.dcr-hook {
  margin-top: 6px;
  font-style: italic;
  color: var(--text);
}
.dcr-candidate dd.dcr-status {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .dcr-cards { grid-template-columns: 1fr; }
}

/* ---------- Slice 12 build readiness + preview status ---------- */
.build-readiness-section .build-readiness-lede {
  max-width: 760px;
}
.readiness-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0 22px;
}
.readiness-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.readiness-pill.readiness-yes {
  border-color: var(--accent);
}
.readiness-pill.readiness-no {
  border-color: var(--border-strong);
}
.readiness-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.readiness-status {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.readiness-pill.readiness-yes .readiness-status {
  color: var(--accent);
}
.readiness-pill.readiness-no .readiness-status {
  color: var(--text-muted);
  font-weight: 500;
}
.readiness-needs-label {
  margin: 4px 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.readiness-needs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 18px;
}
.readiness-needs li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.readiness-needs li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--text-dim);
}
.preview-status-line {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .readiness-pills,
  .readiness-needs {
    grid-template-columns: 1fr;
  }
}

/* ---------- Slice 13 founder voice workflow ---------- */
.voice-workflow-section .section-lede {
  max-width: 760px;
}
.voice-flow {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 820px;
}
.voice-flow li {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  gap: 14px;
  align-items: baseline;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.voice-flow-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.voice-flow-step {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.voice-flow-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.voice-guardrails {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 2px solid var(--accent);
  background: var(--bg-surface);
  border-radius: var(--radius);
  max-width: 820px;
}
.voice-guardrails-label {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.voice-guardrails-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 18px;
}
.voice-guardrails-list li {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.voice-guardrails-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--text-dim);
}
.voice-objects {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 18px;
  max-width: 760px;
}
.voice-objects li {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  padding-left: 14px;
  position: relative;
  letter-spacing: 0.02em;
}
.voice-objects li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--text-dim);
}
.app-voice-preview {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.voice-preview-lede {
  margin: 8px 0 22px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 720px;
  line-height: 1.6;
}
.voice-preview-section-h {
  margin: 18px 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.voice-preview-disclaimer {
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.dcr-voice-lede {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 760px;
}
@media (max-width: 720px) {
  .voice-flow li {
    grid-template-columns: max-content 1fr;
  }
  .voice-flow-status {
    grid-column: 2;
    margin-top: 4px;
  }
  .voice-guardrails-list,
  .voice-objects {
    grid-template-columns: 1fr;
  }
  .app-voice-preview {
    padding: 20px 22px;
  }
}

/* ---------- Slice 14 UGC variation pack ---------- */
.ugc-teaser-section .ugc-teaser-lede {
  max-width: 760px;
}
.app-ugc-preview {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.ugc-preview-lede {
  margin: 8px 0 22px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 720px;
  line-height: 1.6;
}
.ugc-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  margin: 0 0 22px;
  max-width: 760px;
}
.ugc-matrix-card {
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .ugc-matrix {
    grid-template-columns: 1fr;
  }
  .app-ugc-preview {
    padding: 20px 22px;
  }
}

/* ---------- Slice 15 demo route polish ---------- */
.demo-route-row {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.demo-route-row .demo-route-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.demo-route-row a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 1px;
}
.demo-route-row a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.demo-route-sep {
  color: var(--text-dim);
}
.app-foot .demo-route-row {
  margin-top: 6px;
  padding-top: 0;
  border-top: 0;
}

/* ---------- Slice 16 build readiness compact ---------- */
.readiness-compact-line {
  margin: 0 0 8px;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.readiness-compact-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.readiness-compact-support {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 760px;
}
.build-readiness-compact .demo-route-row {
  margin-top: 6px;
  padding-top: 0;
  border-top: 0;
}

/* ---------- Slice 17 UGC output workspace ---------- */
.workspace-section-lede {
  margin: 4px 0 14px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 760px;
}
.workspace-source {
  margin: 0 0 22px;
  padding: 18px 22px;
  background: var(--bg-surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
}
.workspace-source-label {
  margin: 0 0 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.workspace-source-product {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.workspace-source-facts {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.workspace-source-facts li {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.workspace-source-facts li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--accent);
}
.workspace-source-warning {
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
}
.workspace-hook-bank {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.workspace-hook-bank li {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.workspace-hook-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
}
.workspace-hook-text {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.workspace-script-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 22px;
}
.workspace-script-card {
  padding: 16px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workspace-script-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.workspace-script-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--bg);
}
.workspace-script-tag.persona {
  color: var(--text);
  border-color: var(--border-strong);
}
.workspace-script-tag.angle {
  color: var(--accent);
  border-color: var(--accent);
}
.workspace-script-tag.risk-low {
  color: var(--text-muted);
}
.workspace-script-tag.approval-draft {
  color: var(--text-dim);
}
.workspace-script-tag.approval-review {
  color: var(--accent);
}
.workspace-script-hook {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.workspace-script-body {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.workspace-script-cta {
  margin: 0;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.workspace-persona-note {
  margin: 0 0 22px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
}
.workspace-captions {
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workspace-caption {
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.workspace-caption dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.workspace-caption dd {
  margin: 0;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
}
.workspace-test-matrix-wrap {
  margin: 0 0 22px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.workspace-test-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
.workspace-test-matrix th,
.workspace-test-matrix td {
  padding: 9px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.45;
}
.workspace-test-matrix th {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
  background: var(--bg-surface);
  font-weight: 500;
  border-bottom-color: var(--border-strong);
}
.workspace-test-matrix td {
  color: var(--text);
}
.workspace-test-matrix tr:last-child td {
  border-bottom: 0;
}
.workspace-video-ready {
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.workspace-video-ready-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.workspace-video-ready-row dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.workspace-video-ready-row dd {
  margin: 0;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.workspace-render-status-not-connected {
  color: var(--text-muted);
  font-style: italic;
}
.ugc-teaser-link,
.voice-preview-link {
  margin: 0;
  font-size: 13px;
}
@media (max-width: 720px) {
  .workspace-script-grid {
    grid-template-columns: 1fr;
  }
  .workspace-hook-bank li {
    grid-template-columns: 1fr;
  }
  .workspace-video-ready-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ================================================ */
/* SANDBOX INTERACTIVITY (slice 2)                   */
/* ================================================ */

.sandbox-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* JS-revealed cycle button: hidden until JS removes the attribute. */
.sandbox-cycle-btn[hidden] { display: none; }

/* Output-badge pre-reveal state during animation. */
.sandbox-col.draft .badge {
  transition: opacity 200ms ease, transform 200ms ease;
}
.sandbox-col.draft .badge.is-pending {
  opacity: 0;
  transform: translateY(4px);
}

/* Typewriter caret on draft text during type-out. */
.draft-text.is-typing::after {
  content: "▎";
  margin-left: 2px;
  color: var(--accent);
  animation: sandbox-caret 700ms steps(1, end) infinite;
}
@keyframes sandbox-caret {
  50% { opacity: 0; }
}

/* Arrow pulse — Phase 2 of the reveal animation. */
.sandbox-arrow .tick {
  transition: color 200ms ease, opacity 200ms ease;
}
.sandbox-arrow.is-pulsing .tick {
  color: var(--accent);
  opacity: 1;
}

/* Reduced-motion override: kill all animation, show full content instantly. */
@media (prefers-reduced-motion: reduce) {
  .sandbox-cycle-btn,
  .sandbox-col.draft .badge,
  .sandbox-col.draft .badge.is-pending,
  .draft-text,
  .sandbox-arrow .tick {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .draft-text.is-typing::after { content: none !important; }
}

/* Mobile: keep the cycle button comfortable but bounded. */
@media (max-width: 480px) {
  .sandbox-cycle-btn { width: 100%; max-width: 320px; }
}

/* ================================================ */
/* CREATOR PACKAGE CALLOUT (slice 2.5)              */
/* ================================================ */

.creator-callout {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(94, 224, 255, 0.04), transparent 60%),
    var(--bg-surface);
}

.creator-callout .eyebrow {
  color: var(--text-muted);
}

.creator-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: 8px;
}
@media (max-width: 860px) {
  .creator-card { grid-template-columns: 1fr; }
}

.creator-card-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.creator-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}
.creator-price .k {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin: 0;
}
.creator-price .price {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.creator-price .price .per {
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 0;
}

.creator-fit-lede {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.creator-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
}
.creator-includes li {
  padding: 8px 0 8px 22px;
  position: relative;
  border-top: 1px solid var(--border);
}
.creator-includes li:first-child { border-top: none; }
.creator-includes li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.creator-not {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  align-self: start;
}
.creator-not .k {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--danger);
  margin: 0 0 12px;
}
.creator-not ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
}
.creator-not ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  border-top: 1px solid var(--border);
}
.creator-not ul li:first-child { border-top: none; }
.creator-not ul li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--danger);
  font-weight: 600;
}

.creator-foot {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 18px;
}
