:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg: #0c0c0e;
  --color-bg-surface: #161618;
  --color-bg-elevated: #1c1c1f;
  --color-text: #ffffff;
  --color-text-secondary: #c7c7cc;
  --color-text-muted: #a1a1a6;
  --color-text-disabled: #68686f;
  --color-accent: #007aff;
  --color-accent-hover: #0056b3;
  --color-accent-active: #004085;
  --color-success: #30d158;
  --color-warning: #ff9f0a;
  --color-danger: #ff453a;
  --color-border: #38383a;
  --color-border-muted: #2c2c2e;
  --color-primary: var(--color-accent);
  --color-primary-hover: var(--color-accent-hover);
  --color-primary-active: var(--color-accent-active);
  --color-primary-text: #ffffff;
  --color-surface: var(--color-bg-surface);
  --color-surface-hover: var(--color-bg-elevated);
  --color-surface-border: var(--color-border);

  --space-0: 0;
  --space-px: 1px;
  --space-1: 0.25rem;
  --space-1-5: 0.375rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-16: 4rem;

  --border-radius-sm: 0.1875rem;
  --border-radius-md: 0.3125rem;
  --border-radius-lg: 0.5rem;

  --font-size-xs: 0.8125rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-xl: 1.3125rem;
  --font-size-2xl: 1.5625rem;
  --font-mono: "SF Mono", SFMono-Regular, ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --font-sans: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

html {
  line-height: 1;
  background-color: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: auto;
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

a {
  color: var(--color-text);
}

[data-page="workspace"] {
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  background-color: var(--color-bg);
}

[data-page="workspace"] button {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-family: var(--font-sans);
  font-weight: 500;
  transition: all 0.15s ease;
}

[data-page="workspace"] button:hover:not(:disabled) {
  background-color: var(--color-surface-hover);
  border-color: var(--color-accent);
}

[data-page="workspace"] button:active {
  transform: translateY(1px);
}

[data-page="workspace"] button:disabled {
  opacity: 0.5;
  transform: none;
}

[data-page="workspace"] button[data-color="primary"] {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-primary-text);
}

[data-page="workspace"] button[data-color="ghost"] {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-text-muted);
}

[data-page="workspace"] button[data-color="ghost"]:hover:not(:disabled) {
  background-color: var(--color-surface-hover);
  border-color: var(--color-border);
  color: var(--color-text);
}

[data-component="workspace-header"] {
  display: none;
  position: sticky;
  top: 0;
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-bg);
}

[data-slot="header-brand"] {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

[data-component="site-title"] {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  text-decoration: none;
}

[data-slot="header-actions"] {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  font-size: var(--font-size-sm);
}

[data-slot="header-actions"] [data-slot="user"] {
  color: var(--color-text-muted);
}

[data-component="workspace-container"] {
  display: flex;
  height: 100vh;
  background-color: var(--color-bg);
}

[data-component="workspace-nav"] {
  width: 280px;
  flex-shrink: 0;
  padding: var(--space-6) var(--space-5);
  display: flex;
  justify-content: flex-end;
}

[data-component="nav-desktop"] {
  display: block;
  width: 184px;
  flex: 0 0 184px;
  min-height: calc(100vh - (var(--space-6) * 2));
}

[data-component="workspace-nav-items"] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 100%;
}

[data-nav-product-menu] {
  position: relative;
}

[data-page="workspace"] button[data-nav-product-trigger] {
  width: 100%;
  min-height: auto;
  padding: 9px 10px;
  border: 0;
  border-radius: var(--border-radius-sm);
  background: transparent;
  color: var(--color-text-muted);
  text-align: left;
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: 1.25;
}

[data-page="workspace"] button[data-nav-product-trigger]:hover:not(:disabled),
[data-page="workspace"] button[data-nav-product-trigger].active {
  border: 0;
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-text);
}

[data-nav-product-row] {
  position: relative;
  display: block;
}

[data-nav-button] {
  display: block;
  padding: 9px 10px;
  border-radius: var(--border-radius-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: 1.25;
  transition:
    color 0.12s ease,
    background-color 0.12s ease;
}

[data-nav-button]:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.025);
}

[data-nav-button].active {
  color: var(--color-text);
  font-weight: 700;
}

[data-nav-menu-toggle] {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  padding: 0;
  border: 0;
  border-radius: var(--border-radius-sm);
  background: transparent;
  color: var(--color-text-muted);
  transform: translateY(-50%);
}

[data-page="workspace"] button[data-nav-menu-toggle] {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
}

[data-page="workspace"] button[data-nav-menu-toggle]:hover:not(:disabled) {
  border: 0;
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-text);
}

[data-nav-menu-toggle] svg {
  transition: transform 0.12s ease;
}

[data-nav-menu] {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: static;
  z-index: 130;
  min-width: 0;
  padding: 3px 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

[data-nav-product-menu]:hover [data-nav-menu],
[data-nav-product-menu]:focus-within [data-nav-menu],
[data-nav-product-menu].open [data-nav-menu] {
  display: flex;
}

[data-nav-product-menu]:hover [data-nav-menu-toggle] svg,
[data-nav-product-menu]:focus-within [data-nav-menu-toggle] svg,
[data-nav-product-menu].open [data-nav-menu-toggle] svg {
  transform: rotate(180deg);
}

[data-nav-child] {
  padding-left: 20px;
  font-size: 12px;
}

[data-nav-download] {
  margin-top: 0;
}

[data-component="nav-mobile"] {
  display: none;
}

[data-component="workspace-content"] {
  flex: 1;
  padding: var(--space-6) var(--space-8);
  overflow-y: scroll;
  scrollbar-gutter: stable;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
}

[data-component="workspace-main"] {
  flex: 1;
}

[data-page="workspace-[id]"] {
  max-width: 64rem;
  padding: var(--space-2) var(--space-4);
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  min-height: 100%;
}

[data-page="workspace-[id]"][data-view="billing"] {
  max-width: min(100%, 92.5rem);
  min-height: 100%;
  gap: 0;
  margin: 0 auto;
}

[data-page="workspace-[id]"] [data-component="header-section"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: clamp(4.75rem, 8vh, 7.25rem);
  padding-bottom: 0;
  align-items: center;
  border-bottom: 0;
  text-align: center;
  scroll-margin-top: 96px;
}

[data-page="workspace-[id]"] [data-component="header-section"] h1 {
  max-width: 61rem;
  font-size: clamp(3.5rem, 5.05vw, 5.25rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0;
}

[data-page="workspace-[id]"] [data-component="header-section"] p {
  line-height: 1.45;
  font-size: clamp(1.125rem, 1.55vw, 1.625rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin: 0;
}

[data-slot="billing-info"] {
  flex-shrink: 0;
  margin-left: auto;
}

[data-slot="balance"] {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

[data-slot="balance"] b {
  font-weight: 600;
  color: var(--color-text);
}

[data-slot="sections"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

#software-demo {
  margin-top: clamp(5rem, 11vh, 8rem);
}

#software-demo [data-slot="app-demo-viewport"] {
  --app-demo-scale: 1;
  width: min(100%, var(--app-demo-source-width));
  height: calc(var(--app-demo-source-height) * var(--app-demo-scale));
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #0c0c0e;
  box-shadow: none;
}

#software-demo [data-slot="app-demo-frame"] {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

[data-component="m90-billing"] {
  display: flex;
  flex-direction: column;
  gap: 64px;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
}

[data-component="m90-billing"] #software-demo {
  order: 10;
}

[data-component="m90-billing"] #gui {
  order: 20;
}

[data-component="m90-billing"] #prompt-examples {
  order: 25;
}

[data-component="m90-billing"] #platforms {
  order: 50;
}

[data-component="m90-billing"] #pricing {
  order: 30;
}

[data-component="m90-billing"] #download {
  order: 50;
}

[data-component="m90-billing"] #workflow {
  order: 80;
}

[data-component="m90-billing"] #account-scale {
  order: 100;
}

[data-component="m90-billing"] #video-analysis {
  order: 110;
}

[data-component="m90-billing"] #outcomes {
  order: 120;
}

[data-component="m90-billing"] [data-slot="site-footer"] {
  order: 130;
}

[data-component="m90-billing"] section {
  scroll-margin-top: 96px;
}

[data-component="m90-billing"] [data-slot="section-title"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: 28px;
}

[data-component="m90-billing"] [data-slot="section-title"] h2 {
  font-size: var(--font-size-2xl);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.03125rem;
  margin: 0;
}

[data-component="m90-billing"] [data-slot="section-title"] p {
  line-height: 1.5;
  font-size: var(--font-size-md);
  color: var(--color-text);
  margin: 0;
}

[data-component="m90-billing"] [data-slot="section-title"][data-variant="large"] {
  max-width: 830px;
  margin-bottom: 24px;
}

[data-component="m90-billing"] [data-slot="section-title"][data-variant="large"] h2 {
  font-size: var(--font-size-2xl);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03125rem;
  margin: 0;
}

[data-component="m90-billing"] [data-slot="section-title"][data-variant="large"] p {
  max-width: 790px;
  color: var(--color-text);
  font-size: var(--font-size-md);
  line-height: 1.5;
  letter-spacing: 0;
}

[data-component="m90-billing"] [data-slot="section-title"][data-align="center"] {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  align-items: center;
}

[data-component="m90-billing"] [data-slot="section-title"][data-variant="hero-copy"] {
  max-width: 820px;
  margin-bottom: 18px;
}

[data-component="m90-billing"] [data-slot="section-title"][data-variant="hero-copy"] h2 {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

[data-component="m90-billing"] [data-slot="section-title"][data-variant="hero-copy"] p {
  max-width: 760px;
  color: var(--color-text);
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

[data-slot="product-platforms"] {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

[data-slot="product-platforms"] span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
}

[data-slot="product-platforms"] span:last-child {
  border-right: none;
}

[data-slot="plan-card"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: transparent;
}

[data-slot="current-plan-heading"] {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
}

[data-slot="plan-title-row"] {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}

[data-slot="plan-name"] {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.03em;
}

[data-slot="plan-caption"] {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 760px;
}

[data-slot="plan-status"] {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

[data-slot="plan-status"][data-status="active"] {
  color: #22c55e;
  border: 0.5px solid rgba(34, 197, 94, 0.3);
}

[data-slot="summary-table-shell"] {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

[data-slot="summary-grid"] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

[data-slot="summary-metric"] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

[data-slot="summary-metric-label"] {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

[data-slot="summary-metric-value"] {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.03em;
}

[data-slot="summary-metric-copy"] {
  font-size: 12px;
  color: var(--color-text-muted);
}

[data-slot="app-demo-viewport"] {
  --app-demo-source-width: 1440px;
  --app-demo-source-height: 760px;
  --app-demo-scale: 1;
  position: relative;
  width: 100%;
  height: calc(var(--app-demo-source-height) * var(--app-demo-scale));
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

[data-slot="app-demo-frame"] {
  display: block;
  width: var(--app-demo-source-width);
  height: var(--app-demo-source-height);
  border: 0;
  border-radius: 0;
  background: #131010;
  overflow: hidden;
  transform: scale(var(--app-demo-scale));
  transform-origin: top left;
}

[data-slot="real-app-crop"] {
  --crop-scale: 1;
  --crop-x: 0px;
  --crop-y: 0px;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

[data-slot="real-app-crop"][data-crop="agents"] {
  width: min(100%, 260px);
  height: 760px;
  --crop-scale: 1;
  --crop-x: 0px;
  --crop-y: 0px;
}

[data-slot="real-app-crop"][data-crop="review"] {
  width: min(100%, 640px);
  height: 500px;
  --crop-scale: 1;
  --crop-x: -858px;
  --crop-y: 0px;
}

[data-slot="real-app-crop-stage"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: 760px;
  transform: scale(var(--crop-scale));
  transform-origin: top left;
  z-index: 1;
}

[data-slot="real-app-crop-frame"] {
  display: block;
  width: 1440px;
  height: 760px;
  border: 0;
  background: transparent;
  transform: translate(var(--crop-x), var(--crop-y));
  transform-origin: top left;
  pointer-events: none;
}

[data-slot="analytics-prompts"] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

[data-slot="analytics-prompts"] span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.018);
  font-size: 12px;
  font-weight: 500;
}

[data-proof-system-section] {
  padding-top: clamp(1.35rem, 2.8vh, 2.45rem);
  scroll-margin-top: 96px;
}

[data-proof-system-section] [data-slot="section-title"][data-variant="large"] {
  margin-bottom: clamp(16px, 2vw, 26px);
}

[data-slot="proof-system-shell"] {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(286px, 0.42fr);
  gap: clamp(20px, 2.2vw, 40px);
  align-items: center;
  width: min(100%, 1820px);
  margin: clamp(10px, 1.6vw, 22px) auto 0;
}

[data-slot="proof-system-copy"] {
  position: static;
  display: grid;
  gap: 0;
  align-self: center;
  min-width: 0;
  padding-top: 0;
}

[data-slot="proof-system-eyebrow"] {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="proof-sheet"] {
  display: grid;
  min-width: 0;
  overflow: visible;
}

[data-proof-topic] {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

[data-proof-topic] > span {
  padding: 0;
}

[data-proof-topic] {
  width: 100%;
  min-height: 96px;
  padding: 15px 0;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  appearance: none;
  opacity: 0.52;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

[data-page="workspace"] [data-proof-topic] {
  padding: 15px 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  font-size: inherit;
}

[data-page="workspace"] [data-proof-topic]:hover:not(:disabled),
[data-page="workspace"] [data-proof-topic]:active {
  border-color: transparent;
  background: transparent !important;
}

[data-proof-topic]:hover,
[data-proof-topic]:focus-visible,
[data-proof-topic-active] {
  background: transparent;
  opacity: 1;
  transform: translateX(4px);
}

[data-proof-topic]:focus-visible {
  outline: 0;
}

[data-proof-index] {
  display: flex;
  align-items: center;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

[data-proof-copy] {
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
}

[data-proof-copy] strong {
  color: var(--color-text);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

[data-proof-copy] em {
  max-width: 31rem;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

[data-proof-topic-active] [data-proof-copy] strong {
  color: #ffffff;
}

[data-proof-topic-active] [data-proof-index] {
  color: #58a6ff;
}

[data-slot="workflow-one-prompt"] {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  justify-items: center;
}

[data-slot="workflow-one-prompt"] > p {
  max-width: 30rem;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 600;
  line-height: 1.25;
}

[data-slot="workflow-one-prompt"] [data-slot="scale-sheet"] {
  display: grid;
  gap: 0;
  width: min(100%, 560px);
}

[data-slot="workflow-one-prompt"] [data-scale-use-case] {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  min-height: 64px;
  opacity: 0.48;
}

[data-slot="workflow-one-prompt"] [data-scale-use-case-active],
[data-slot="workflow-one-prompt"] [data-scale-use-case]:hover,
[data-slot="workflow-one-prompt"] [data-scale-use-case]:focus-visible {
  opacity: 1;
  transform: translateX(3px);
}

[data-slot="workflow-one-prompt"] [data-scale-index] {
  justify-content: flex-start;
  font-size: 10px;
}

[data-slot="workflow-one-prompt"] [data-scale-copy] {
  gap: 3px;
}

[data-slot="workflow-one-prompt"] [data-scale-copy] strong {
  font-size: 13px;
  font-weight: 560;
  line-height: 1.32;
}

[data-slot="workflow-one-prompt"] [data-scale-copy] em {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

[data-slot="workflow-one-prompt"] [data-slot="scale-prompt-stage"] {
  width: min(100%, 520px);
  height: 320px;
  min-height: 320px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

[data-slot="workflow-one-prompt"] [data-slot="scale-prompt-stage"][data-active-scale="prompt"] {
  background: transparent;
}

[data-slot="workflow-one-prompt"] [data-scale-prompt-pane] {
  place-items: center;
}

[data-slot="workflow-one-prompt"] [data-slot="scale-prompt-stage"][data-active-scale="prompt"] [data-scale-prompt-pane] {
  place-items: start stretch;
}

[data-slot="real-prompt-viewport"] {
  width: min(100%, 560px);
  height: 240px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

[data-slot="real-prompt-frame"],
[data-slot="one-prompt-report-frame"] {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

[data-slot="one-prompt-report-viewport"] {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #151313;
}

[data-prompt-examples-section] {
  display: grid;
  gap: clamp(24px, 3.5vw, 42px);
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

[data-account-scale-section] {
  display: grid;
  gap: 28px;
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

[data-account-scale-section] [data-slot="section-title"] {
  width: min(100%, 1120px);
  margin-inline: auto;
}

[data-slot="account-scale-sheet"] {
  display: grid;
  width: min(100%, 1120px);
  margin-inline: auto;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

[data-account-scale-row] {
  display: grid;
  grid-template-columns: 44px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-account-scale-row]:last-child {
  border-bottom: 0;
}

[data-account-scale-row] span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

[data-account-scale-row] strong {
  color: var(--color-text);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 580;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

[data-account-scale-row] em {
  max-width: 560px;
  color: var(--color-text-secondary);
  font-style: normal;
  font-size: var(--font-size-md);
  line-height: 1.48;
}

[data-prompt-examples-section] [data-slot="section-title"] {
  width: min(100%, 1700px);
  max-width: none;
  margin-inline: auto;
  text-align: left;
}

[data-prompt-examples-section] [data-slot="section-title"] h2,
[data-prompt-examples-section] [data-slot="section-title"] p {
  margin-inline: 0;
  text-align: left;
}

[data-prompt-examples-section] [data-slot="section-title"] h2 {
  font-size: var(--font-size-2xl);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03125rem;
}

[data-prompt-examples-section] [data-slot="section-title"] p {
  max-width: 42rem;
  color: var(--color-text-secondary);
  font-size: var(--font-size-md);
  line-height: 1.5;
}

[data-slot="prompt-example-showcase"] {
  display: grid;
  grid-template-columns: minmax(150px, 184px) minmax(0, 580px);
  gap: clamp(28px, 3.8vw, 52px);
  align-items: center;
  justify-content: start;
  width: min(100%, 1700px);
  margin: 0 auto;
}

[data-slot="prompt-example-tabs"] {
  display: grid;
  gap: 14px;
  align-content: center;
  justify-content: stretch;
}

[data-page="workspace"] [data-prompt-example-tab] {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  width: 100%;
  min-height: 44px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: var(--color-text-muted);
  box-shadow: none;
  opacity: 0.48;
  text-align: left;
  transition:
    color 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

[data-page="workspace"] [data-prompt-example-tab]:hover:not(:disabled),
[data-page="workspace"] [data-prompt-example-tab]:active {
  border-color: transparent;
  background: transparent !important;
  transform: translateX(3px);
}

[data-prompt-example-tab] span {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
}

[data-prompt-example-tab] strong {
  font-size: 14px;
  font-weight: 560;
  line-height: 1;
}

[data-prompt-example-tab-active],
[data-prompt-example-tab]:hover,
[data-prompt-example-tab]:focus-visible {
  border-color: transparent !important;
  color: var(--color-text) !important;
  opacity: 1 !important;
  outline: 0;
}

[data-slot="prompt-example-stage"] {
  position: relative;
  display: grid;
  min-height: 244px;
  min-width: 0;
}

[data-prompt-example-panel] {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0ms linear 180ms;
}

[data-prompt-example-panel][hidden] {
  display: none;
}

[data-prompt-example-panel-active] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0ms;
}

[data-prompt-example-panel] [data-prompt-example-viewport] {
  width: min(100%, 560px);
  height: 240px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

[data-prompt-example-panel] [data-slot="real-prompt-frame"] {
  pointer-events: none;
}

[data-slot="proof-system-display"] {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: clamp(650px, 49vw, 850px);
  align-self: center;
  align-items: center;
}

[data-slot="proof-report-card"] {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: none;
}

[data-slot="proof-report-card"][data-proof-report-active] {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

[data-slot="proof-report-card"] [data-slot="product-demo-viewport"] {
  --product-demo-scale: 0.84;
  width: min(100%, calc(var(--product-demo-source-width) * var(--product-demo-scale)));
  margin: 0 auto;
  background: #151313;
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.22);
}

[data-slot="proof-report-card"][data-proof-report="prompt"] {
  place-items: center;
}

[data-slot="flow-prompt-viewport"] {
  width: min(100%, 640px);
  height: 240px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

[data-slot="flow-prompt-viewport"] [data-slot="product-demo-frame"] {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  background: transparent;
  transform: none !important;
  transform-origin: center center !important;
  pointer-events: none;
}

[data-page="workspace"] [data-slot="proof-sheet"] [data-proof-topic],
[data-component="m90-billing"] [data-slot="proof-sheet"] [data-proof-topic] {
  padding: 15px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  appearance: none;
}

[data-scale-section] {
  padding-top: clamp(2rem, 4vh, 3rem);
  overflow: hidden;
}

[data-scale-section] [data-slot="section-title"] {
  max-width: 100%;
  min-width: 0;
}

[data-scale-section] [data-slot="section-title"] p {
  max-width: min(100%, 46rem);
  overflow-wrap: break-word;
}

[data-slot="scale-console"] {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 24px);
  width: min(100%, 1080px);
  margin: 0 auto;
}

[data-slot="scale-outcome"] {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 3.4vw, 42px);
  align-items: stretch;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.004)),
    #171514;
}

[data-slot="scale-outcome-copy"] {
  display: grid;
  gap: 12px;
  min-width: 0;
}

[data-slot="scale-outcome-copy"] > span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="scale-outcome-copy"] h3 {
  max-width: 420px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(26px, 2.9vw, 38px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

[data-slot="scale-outcome-copy"] p {
  max-width: 440px;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

[data-slot="scale-proof-row"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(18px, 2.4vw, 28px);
  min-width: 0;
  border-top: 0;
}

[data-slot="scale-proof-row"] span {
  display: grid;
  gap: 5px;
  min-height: 68px;
  align-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="scale-proof-row"] strong {
  color: var(--color-text);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 600;
  line-height: 1;
}

[data-slot="scale-proof-row"] em {
  color: var(--color-text-muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

[data-slot="scale-showcase"] {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.04fr) minmax(0, 0.98fr);
  gap: clamp(14px, 1.8vw, 18px);
  align-items: start;
  min-width: 0;
  padding-top: clamp(2px, 0.7vw, 8px);
}

[data-scale-module] {
  display: grid;
  min-width: 0;
  gap: 12px;
}

[data-scale-module-copy] {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
}

[data-scale-module-copy] > span {
  flex: 0 0 auto;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

[data-scale-module-copy] h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(18px, 1.62vw, 22px);
  font-weight: 600;
  line-height: 1.14;
}

[data-slot="scale-prompt-card"],
[data-slot="scale-agent-panel"],
[data-slot="scale-account-panel"] {
  min-width: 0;
  min-height: 236px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
    #171514;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    0 18px 54px rgba(0, 0, 0, 0.18);
}

[data-slot="scale-prompt-card"] {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(16px, 1.7vw, 22px);
}

[data-slot="scale-prompt-card"] p {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(15px, 1.24vw, 17px);
  line-height: 1.55;
  overflow-wrap: break-word;
}

[data-slot="scale-prompt-toolbar"] {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--color-text-muted);
  font-size: 12px;
}

[data-slot="scale-prompt-toolbar"] span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

[data-token="+"] {
  color: var(--color-text);
  font-size: 20px;
  line-height: 1;
}

[data-token="blue"] {
  padding: 4px 8px;
  border-radius: 999px;
  color: #77b7ff;
  background: rgba(0, 122, 255, 0.18);
}

[data-slot="scale-prompt-toolbar"] button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--color-text);
}

[data-slot="scale-prompt-toolbar"] button::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-bg);
  border-left: 2px solid var(--color-bg);
  transform: translateY(3px) rotate(45deg);
}

[data-slot="scale-agent-panel"],
[data-slot="scale-account-panel"] {
  display: flex;
  flex-direction: column;
  padding: clamp(14px, 1.4vw, 18px);
}

[data-slot="scale-agent-row"],
[data-slot="scale-account-row"] {
  display: grid;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--color-text-secondary);
  font-size: 12px;
}

[data-slot="scale-agent-row"] {
  grid-template-columns: 16px minmax(0, 1fr) auto;
  gap: 8px;
}

[data-slot="scale-agent-row"] i {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--color-text-muted);
  border-radius: 999px;
}

[data-slot="scale-agent-row"][data-state="active"] i {
  border-top-color: var(--color-accent);
  animation: scale-spinner 1.4s linear infinite;
}

[data-slot="scale-agent-row"][data-state="done"] i {
  border-color: rgba(48, 209, 88, 0.38);
  background: rgba(48, 209, 88, 0.26);
}

[data-slot="scale-agent-row"] b,
[data-slot="scale-account-row"] b,
[data-slot="scale-account-row"] em {
  color: var(--color-text-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
}

[data-slot="scale-agent-row"][data-state="done"] b {
  color: var(--color-success);
}

[data-slot="scale-agent-row"][data-state="active"] b {
  color: #77b7ff;
}

[data-slot="scale-account-summary"] {
  display: grid;
  gap: 5px;
  padding-bottom: 12px;
  margin-bottom: 2px;
}

[data-slot="scale-account-summary"] strong {
  color: var(--color-text);
  font-size: clamp(16px, 1.34vw, 19px);
  font-weight: 600;
  line-height: 1.12;
}

[data-slot="scale-account-summary"] span {
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.45;
}

[data-slot="scale-account-row"] {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
}

[data-slot="scale-account-row"] span {
  min-width: 0;
  overflow: hidden;
  color: var(--color-text-secondary);
  text-overflow: ellipsis;
  white-space: nowrap;
}

[data-slot="scale-account-row"] b {
  color: var(--color-success);
}

@keyframes scale-spinner {
  to {
    transform: rotate(360deg);
  }
}

[data-slot="scale-console"] {
  width: min(100%, 1100px);
}

[data-slot="scale-system-shell"] {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
  min-width: 0;
}

[data-slot="scale-system-copy"] {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

[data-slot="scale-system-eyebrow"] {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="scale-sheet"] {
  display: grid;
  min-width: 0;
  overflow: visible;
}

[data-scale-use-case] {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

[data-scale-use-case] > span {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 0;
}

[data-scale-use-case] {
  appearance: none;
  min-height: 92px;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  opacity: 0.56;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

[data-page="workspace"] [data-scale-use-case] {
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  font-size: inherit;
}

[data-page="workspace"] [data-scale-use-case]:hover:not(:disabled),
[data-page="workspace"] [data-scale-use-case]:active {
  border-color: transparent;
  background: transparent !important;
}

[data-scale-use-case]:hover,
[data-scale-use-case]:focus-visible,
[data-scale-use-case-active] {
  background: transparent;
  opacity: 1;
  transform: translateX(4px);
}

[data-scale-use-case]:focus-visible {
  outline: 0;
}

[data-scale-index] {
  justify-content: center;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

[data-scale-copy] {
  display: grid !important;
  align-content: center;
  gap: 7px;
}

[data-scale-copy] strong {
  min-width: 0;
  color: var(--color-text);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

[data-scale-copy] em {
  min-width: 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

[data-scale-use-case-active] [data-scale-index] {
  color: var(--color-text);
}

[data-slot="scale-metric-strip"] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-slot="scale-metric-strip"] span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="scale-metric-strip"] span:last-child {
  border-right: 0;
}

[data-slot="scale-metric-strip"] strong {
  color: var(--color-text);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

[data-slot="scale-metric-strip"] em {
  color: var(--color-text-muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.25;
}

[data-slot="scale-prompt-stage"] {
  position: relative;
  min-height: clamp(340px, 34vw, 460px);
  min-width: 0;
  overflow: visible;
}

[data-scale-prompt-pane] {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

[data-scale-prompt-pane][hidden] {
  display: none;
}

[data-slot="scale-prompt-stage"] [data-slot="product-demo-viewport"] {
  --product-demo-scale: 0.58;
  width: 100%;
  height: min(calc(var(--product-demo-source-height) * var(--product-demo-scale)), 460px);
  min-height: clamp(320px, 31vw, 440px);
  background: #151313;
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.2);
}

[data-scale-prompt-active] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-slot="scale-prompt-header"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

[data-slot="scale-prompt-header"] span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

[data-slot="scale-prompt-header"] strong {
  min-width: 0;
  overflow: hidden;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[data-slot="scale-prompt-stage"] [data-slot="real-app-crop"] {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

[data-slot="real-app-crop"][data-crop="scale-composer"] {
  height: 100%;
  --crop-scale: 0.82;
  --crop-x: -245px;
  --crop-y: -468px;
}

[data-slot="workflow-steps"],
[data-slot="product-story"] {
  display: grid;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

[data-slot="workflow-steps"] {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

[data-slot="product-story"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

[data-slot="workflow-steps"] article,
[data-slot="product-story"] article,
[data-slot="scale-points"] article {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 164px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.01);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

[data-slot="workflow-steps"] article:last-child,
[data-slot="product-story"] article:last-child {
  border-right: none;
}

[data-slot="workflow-steps"] span,
[data-slot="product-video-list"] span {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

[data-slot="workflow-steps"] strong,
[data-slot="product-story"] strong,
[data-slot="scale-points"] strong,
[data-slot="product-index"] strong,
[data-slot="product-video-list"] strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

[data-slot="workflow-steps"] p,
[data-slot="product-story"] p,
[data-slot="scale-points"] p,
[data-slot="product-index"] span {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.55;
}

[data-slot="master-prompt"] {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.01);
}

[data-slot="master-prompt"] strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

[data-slot="master-prompt"] p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

[data-slot="scale-layout"],
[data-slot="product-video-layout"] {
  display: grid;
  align-items: start;
  gap: 22px;
}

[data-slot="scale-layout"] {
  grid-template-columns: 260px minmax(0, 1fr);
}

[data-slot="scale-points"] {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

[data-slot="scale-points"] article {
  min-height: 0;
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-slot="scale-points"] article:last-child {
  border-bottom: none;
}

[data-slot="account-scale-layout"] {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: stretch;
}

[data-slot="account-scale-copy"],
[data-slot="account-table"],
[data-slot="download-list"] {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

[data-slot="account-scale-copy"] {
  display: flex;
  flex-direction: column;
}

[data-slot="account-scale-copy"] article {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 110px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

[data-slot="account-scale-copy"] article:last-child {
  border-bottom: none;
}

[data-slot="account-scale-copy"] strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

[data-slot="account-scale-copy"] p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.55;
}

[data-slot="account-table"] {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.01);
}

[data-slot="account-row"] {
  display: grid;
  grid-template-columns: 56px minmax(160px, 1fr) minmax(90px, 0.38fr) minmax(110px, 0.44fr);
  min-width: 620px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-slot="account-row"]:last-child {
  border-bottom: none;
}

[data-slot="account-row"] span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--color-text-secondary);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

[data-slot="account-row"] span:nth-child(3) {
  color: #60d394;
}

[data-slot="account-row"] span:nth-child(4) {
  color: #6ea3ff;
  justify-content: flex-end;
}

[data-slot="account-row"][data-header="true"] span {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="product-index"] {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

[data-slot="product-index"] a {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

[data-slot="product-index"] a:last-child {
  border-right: none;
}

[data-slot="product-index"] a:hover {
  background: rgba(255, 255, 255, 0.03);
}

[data-product-page] {
  padding-top: 4px;
}

[data-component="m90-billing"] > [data-product-page]:first-child {
  padding-top: clamp(1.8rem, 4vh, 3.25rem);
}

[data-slot="product-video-layout"] {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

[data-slot="product-demo-viewport"] {
  --product-demo-source-width: 1440px;
  --product-demo-source-height: 760px;
  --product-demo-scale: 0.62;
  position: relative;
  width: 100%;
  height: calc(var(--product-demo-source-height) * var(--product-demo-scale));
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

[data-slot="product-demo-frame"] {
  display: block;
  width: var(--product-demo-source-width);
  height: var(--product-demo-source-height);
  border: 0;
  background: transparent;
  transform: scale(var(--product-demo-scale));
  transform-origin: top left;
}

[data-slot="product-demo-viewport"] > [data-slot="isolated-product-report"] {
  height: 100%;
  min-height: 100%;
}

[data-slot="product-video-list"] {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

[data-slot="product-video-list"] article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

[data-slot="product-video-list"] article:last-child {
  border-bottom: none;
}

[data-slot="product-index"] {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

[data-slot="product-index"] a {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-slot="product-index"] a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

[data-product-page] + [data-product-page] {
  margin-top: clamp(48px, 7vh, 76px);
}

[data-slot="product-detail-hero"] {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

[data-product-hero="showcase"] [data-slot="product-detail-hero"] {
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}

[data-product-hero="showcase"] [data-slot="product-lede"] {
  max-width: 760px;
}

[data-product-hero="showcase"] [data-slot="product-demo-viewport"] {
  --product-demo-scale: 0.76;
  min-height: calc(var(--product-demo-source-height) * var(--product-demo-scale));
}

[data-slot="product-detail-hero"][data-product-single-demo] {
  grid-template-columns: minmax(0, 1fr);
}

[data-slot="product-detail-hero"][data-product-single-demo] [data-slot="product-demo-viewport"] {
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
}

[data-slot="product-lede"] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

[data-slot="product-overline"] {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="product-lede"] h2,
[data-slot="product-section-heading"] h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

[data-slot="product-lede"] p,
[data-slot="product-section-heading"] p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
}

[data-slot="product-mini-list"] {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="product-mini-list"] li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  font-size: 13px;
}

[data-slot="product-section-heading"] {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-bottom: 22px;
}

[data-slot="product-section-heading"] h2 {
  font-size: clamp(24px, 2.7vw, 34px);
}

[data-slot="product-section-heading"] p {
  font-size: clamp(15px, 1.45vw, 18px);
}

[data-slot="product-two-column"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

[data-slot="product-two-column"][data-product-layout="balanced"] {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

[data-slot="product-row-list"] {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-slot="product-row"] {
  display: grid;
  grid-template-columns: minmax(150px, 0.33fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="product-row"] strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

[data-slot="product-row"] span {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

[data-slot="product-prompt-stack"] {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-slot="product-prompt"] {
  display: grid;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="product-prompt"] strong {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="product-prompt"] p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.58;
}

[data-slot="product-prompt-showcase"] {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

[data-slot="product-prompt-tabs"] {
  display: grid;
  gap: 0;
  border-top: 0;
}

[data-product-prompt-tab] {
  appearance: none;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  min-height: 72px;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  opacity: 0.56;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

[data-page="workspace"] [data-product-prompt-tab],
[data-page="workspace"] [data-product-prompt-tab]:hover:not(:disabled),
[data-page="workspace"] [data-product-prompt-tab]:active,
[data-page="workspace"] [data-product-prompt-tab]:focus-visible {
  padding: 15px 0;
  border: 0 !important;
  outline: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

[data-product-prompt-tab]:focus {
  outline: none;
}

[data-product-prompt-tab]:focus-visible {
  outline: 0;
}

[data-product-prompt-tab] span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

[data-product-prompt-tab] strong {
  color: var(--color-text-secondary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  transition: color 180ms ease;
}

[data-product-prompt-tab-active] strong,
[data-product-prompt-tab]:hover strong,
[data-product-prompt-tab]:focus-visible strong {
  color: var(--color-text);
}

[data-product-prompt-tab-active],
[data-product-prompt-tab]:hover,
[data-product-prompt-tab]:focus-visible {
  opacity: 1;
  transform: translateX(4px);
}

[data-slot="product-prompt-stage"] {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(440px, 34vw, 520px);
}

[data-product-prompt-pane] {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 0;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

[data-product-prompt-pane-active] {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

[data-product-prompt-pane] > p {
  display: none;
  max-width: 680px;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

[data-slot="product-prompt-stage"] [data-slot="isolated-product-prompt"] {
  min-height: 300px;
}

[data-slot="product-prompt-stage"] [data-slot="real-app-crop"][data-crop="product-composer"] {
  width: min(100%, 600px);
  max-width: 600px;
}

[data-real-software-slices] [data-slot="product-software-surface"] [data-slot="real-app-crop"][data-crop="product-composer"] {
  width: min(100%, 600px);
  max-width: 600px;
}

[data-slot="product-command-rail"] {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  margin-top: 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-slot="product-command-rail"] span {
  display: inline-flex;
  align-items: center;
  flex: 1 1 310px;
  max-width: 100%;
  min-height: 30px;
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

[data-slot="product-command-rail"] span::before {
  content: ">";
  margin-right: 8px;
  color: var(--color-text-muted);
}

[data-slot="product-band-list"] {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-slot="product-band-list"] article {
  display: grid;
  grid-template-columns: 72px minmax(190px, 0.3fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="product-band-list"] span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="product-band-list"] strong {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

[data-slot="product-band-list"] p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.58;
}

[data-slot="product-table-wrap"] {
  max-height: min(620px, 68vh);
  overflow: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #151313;
  isolation: isolate;
}

[data-slot="product-table"] {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

[data-slot="product-table"] th,
[data-slot="product-table"] td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

[data-slot="product-table"] th {
  position: sticky;
  top: -1px;
  z-index: 3;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #151313;
  box-shadow:
    0 -28px 0 #151313,
    0 1px 0 rgba(255, 255, 255, 0.08);
}

[data-slot="product-table"] td {
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.48;
}

[data-slot="product-table"] td:nth-child(2) {
  color: var(--color-text);
  font-weight: 500;
}

[data-slot="product-platform-strip"],
[data-slot="product-metric-strip"] {
  display: grid;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

[data-slot="product-platform-strip"] {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

[data-slot="product-platform-strip"] span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

[data-slot="product-metric-strip"] {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

[data-slot="product-metric-strip"] span {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-slot="product-metric-strip"] strong {
  color: var(--color-text);
  font-size: 24px;
  font-weight: 600;
}

[data-slot="product-metric-strip"] em {
  color: var(--color-text-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

[data-slot="source-catalog"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-slot="source-catalog"] article {
  display: grid;
  grid-template-columns: 46px minmax(130px, 0.26fr) minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="source-catalog"] span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

[data-slot="source-catalog"] strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

[data-slot="source-catalog"] p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

[data-slot="product-compact-matrix"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-slot="product-compact-matrix"] article {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 118px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="product-compact-matrix"] strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

[data-slot="product-compact-matrix"] span {
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

[data-slot="product-software-grid"] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

[data-slot="product-software-grid"][data-real-software-slices] {
  grid-template-columns: 1fr;
  gap: clamp(26px, 3vw, 40px);
}

[data-slot="product-software-slice"] {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
}

[data-real-software-slices] [data-slot="product-software-slice"] {
  display: grid;
  grid-template-columns: minmax(190px, 0.26fr) minmax(0, 0.74fr);
  gap: 12px clamp(22px, 3vw, 34px);
  align-items: start;
}

[data-real-software-slices] [data-slot="product-software-slice"] header {
  grid-column: 1;
}

[data-real-software-slices] [data-slot="product-software-surface"] {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
}

[data-real-software-slices] [data-slot="product-software-surface"] [data-slot="product-demo-viewport"] {
  --product-demo-scale: 0.54;
  min-height: calc(var(--product-demo-source-height) * var(--product-demo-scale));
  background: transparent;
}

[data-real-software-slices] [data-slot="product-software-slice"] p {
  grid-column: 1;
  max-width: 18rem;
}

[data-slot="product-software-slice"] header {
  display: grid;
  gap: 6px;
}

[data-slot="product-software-slice"] header span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

[data-slot="product-software-slice"] header strong {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
}

[data-slot="product-software-slice"] p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

[data-slot="product-software-slice"] [data-slot="real-app-crop"] {
  width: 100%;
  min-height: 0;
}

[data-slot="isolated-product-report"],
[data-slot="isolated-product-prompt"] {
  width: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
}

[data-slot="isolated-product-report"] {
  display: grid;
  grid-template-rows: 44px minmax(0, 1fr);
  height: clamp(320px, 28vw, 380px);
}

[data-slot="isolated-report-tabs"] {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-secondary);
  font-size: 13px;
}

[data-slot="isolated-report-tabs"] strong {
  display: inline-flex;
  min-width: 26px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 600;
}

[data-slot="isolated-report-tabs"] i {
  width: 10px;
  height: 16px;
  border: 1px solid #58a6ff;
  border-radius: 2px;
}

[data-slot="isolated-report-content"] {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #1b1717;
  background-size: 100% 44px;
}

[data-slot="isolated-table"] {
  width: 100%;
  border-collapse: collapse;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.35;
}

[data-slot="isolated-table"] th,
[data-slot="isolated-table"] td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

[data-slot="isolated-table"] th {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="isolated-table"] td:first-child,
[data-slot="isolated-table"] td:nth-child(2) {
  color: var(--color-text);
}

[data-slot="isolated-table"] mark {
  border-radius: 4px;
  padding: 1px 5px;
  color: #58a6ff;
  background: rgba(88, 166, 255, 0.18);
}

[data-slot="isolated-chart"],
[data-slot="isolated-media"] {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #151313;
}

[data-slot="isolated-chart"] img {
  display: block;
  width: 100%;
  height: auto;
}

[data-slot="isolated-chart"] figcaption {
  padding: 8px 10px;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.35;
}

[data-slot="isolated-chart-stack"] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

[data-slot="isolated-chart-stack"] [data-slot="isolated-chart"] img {
  max-height: 118px;
  object-fit: cover;
  object-position: left top;
}

[data-slot="isolated-media"] {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
}

[data-slot="isolated-media"] video {
  width: 116px;
  height: 154px;
  object-fit: contain;
  border-radius: 6px;
  background: #080808;
}

[data-slot="isolated-media"] div {
  display: grid;
  gap: 7px;
}

[data-slot="isolated-media"] strong,
[data-slot="isolated-media-row"] strong,
[data-slot="isolated-storyboard"] strong {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

[data-slot="isolated-media"] span,
[data-slot="isolated-media"] small {
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.35;
}

[data-slot="isolated-playable-grid"] {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
  overflow: hidden;
}

[data-slot="isolated-video-chart"] {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 12px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

[data-slot="isolated-video-chart"] [data-slot="isolated-chart"] {
  min-width: 0;
}

[data-slot="isolated-video-chart"] [data-slot="isolated-chart"] img {
  height: 190px;
  object-fit: cover;
  object-position: left top;
}

[data-slot="isolated-playable-grid"] span {
  position: relative;
  display: block;
  min-height: 136px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

[data-slot="isolated-playable-grid"] a {
  display: block;
  width: 100%;
  height: 66%;
  background: transparent;
}

[data-slot="isolated-playable-grid"] img,
[data-slot="isolated-playable-grid"] video {
  width: 100%;
  height: 66%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: saturate(0.94) brightness(0.9);
}

[data-slot="isolated-playable-grid"] a img {
  height: 100%;
}

[data-slot="isolated-playable-grid"] video {
  background: transparent;
}

[data-slot="isolated-playable-grid"] i {
  position: absolute;
  top: calc(66% - 25px);
  left: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(244, 241, 241, 0.88);
}

[data-slot="isolated-playable-grid"] i::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #151313;
}

[data-slot="isolated-playable-grid"] em {
  position: absolute;
  top: calc(66% + 6px);
  left: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  line-height: 1;
}

[data-slot="isolated-playable-grid"] small {
  position: absolute;
  right: 6px;
  top: 6px;
  padding: 2px 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-mono);
  font-size: 8px;
  line-height: 1;
}

[data-slot="isolated-playable-grid"] b,
[data-slot="isolated-playable-grid"] strong,
[data-slot="isolated-playable-grid"] u {
  position: absolute;
  left: 7px;
  right: 7px;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[data-slot="isolated-playable-grid"] b {
  top: calc(66% + 20px);
  bottom: auto;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

[data-slot="isolated-playable-grid"] strong {
  top: calc(66% + 34px);
  bottom: auto;
  color: rgba(244, 241, 241, 0.82);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

[data-slot="isolated-playable-grid"] u {
  right: 6px;
  top: calc(66% + 34px);
  bottom: auto;
  left: auto;
  max-width: 46%;
  color: var(--color-text-muted);
  font-size: 8px;
  line-height: 1;
  text-align: right;
}

[data-slot="isolated-playable-grid"] q {
  position: absolute;
  right: 7px;
  top: calc(66% + 49px);
  bottom: auto;
  left: 7px;
  overflow: hidden;
  color: rgba(244, 241, 241, 0.5);
  font-size: 7px;
  line-height: 1;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[data-slot="isolated-playable-grid"] q::before,
[data-slot="isolated-playable-grid"] q::after {
  content: "";
}

[data-slot="isolated-scrape-master"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

[data-slot="isolated-scrape-master-grid"],
[data-slot="isolated-scrape-master-side"] {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] span {
  min-height: 206px;
}

[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] a,
[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] img,
[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] video {
  height: 100%;
}

[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] em,
[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] b,
[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] small,
[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] strong,
[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] u,
[data-slot="isolated-scrape-master-grid"] [data-slot="isolated-playable-grid"] q {
  display: none;
}

[data-slot="isolated-scrape-master-side"] {
  display: grid;
  gap: 10px;
  align-content: start;
}

[data-slot="isolated-scrape-master-side"] [data-slot="isolated-table"] {
  max-height: 162px;
  overflow: hidden;
}

[data-slot="isolated-scrape-master-side"] [data-slot="isolated-metrics"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

[data-slot="isolated-report-title"] {
  margin: 0;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

[data-slot="isolated-split-surface"] {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 12px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

[data-slot="isolated-split-surface"] [data-slot="isolated-media"] {
  grid-template-columns: 82px minmax(0, 1fr);
  align-self: start;
}

[data-slot="isolated-split-surface"] [data-slot="isolated-media"] video {
  width: 82px;
  height: 110px;
}

[data-slot="isolated-split-surface"] [data-slot="isolated-playable-grid"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

[data-slot="isolated-metrics"] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

[data-slot="isolated-metrics"] span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
}

[data-slot="isolated-metrics"] strong {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 650;
  line-height: 1;
}

[data-slot="isolated-metrics"] em {
  color: var(--color-text-muted);
  font-size: 11px;
  font-style: normal;
}

[data-slot="isolated-source-grid"] {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  max-height: 214px;
  overflow: hidden;
}

[data-slot="isolated-source-grid"] span {
  display: grid;
  min-height: 34px;
  padding: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
}

[data-slot="isolated-source-grid"] strong {
  color: var(--color-text);
  font-size: 11px;
  line-height: 1;
}

[data-slot="isolated-source-grid"] em {
  color: var(--color-text-muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1;
}

[data-slot="isolated-storyboard"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

[data-slot="isolated-storyboard"] span {
  display: grid;
  gap: 8px;
  min-width: 0;
}

[data-slot="isolated-storyboard"] img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: contain;
  border-radius: 5px;
  background: #080808;
}

[data-slot="isolated-gratitude-storyboard"] {
  display: grid;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

[data-slot="isolated-gratitude-storyboard"] > header {
  display: grid;
  gap: 3px;
  min-width: 0;
}

[data-slot="isolated-gratitude-storyboard"] > header span,
[data-slot="isolated-gratitude-storyboard"] em {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

[data-slot="isolated-gratitude-storyboard"] > header strong {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
}

[data-slot="isolated-gratitude-storyboard"] > header p {
  max-width: 760px;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 11px;
  line-height: 1.35;
}

[data-slot="isolated-gratitude-storyboard"] > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

[data-slot="isolated-gratitude-storyboard"] article {
  display: grid;
  grid-template-rows: 132px minmax(0, 1fr);
  gap: 7px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

[data-slot="isolated-gratitude-storyboard"] img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  background: #080808;
}

[data-slot="isolated-gratitude-storyboard"] article section {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

[data-slot="isolated-gratitude-storyboard"] article strong {
  color: var(--color-text);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.15;
}

[data-slot="isolated-gratitude-storyboard"] article p {
  margin: 0;
  overflow: hidden;
  color: var(--color-text-secondary);
  font-size: 9px;
  line-height: 1.25;
}

[data-slot="isolated-gratitude-storyboard"] article b {
  color: #f0d28a;
  font-weight: 650;
}

[data-slot="isolated-transcript"] {
  padding: 13px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
}

[data-slot="isolated-transcript"] span {
  color: var(--color-text-muted);
}

[data-slot="isolated-transcript"] mark {
  border-radius: 4px;
  padding: 1px 5px;
  color: #58a6ff;
  background: rgba(88, 166, 255, 0.18);
}

[data-slot="isolated-media-row"] {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

[data-slot="isolated-media-row"] img {
  width: 58px;
  height: 76px;
  object-fit: contain;
  border-radius: 5px;
  background: #080808;
}

[data-slot="isolated-agent-list"] {
  display: grid;
  align-content: start;
  min-height: 0;
  overflow: hidden;
}

[data-slot="isolated-agent-list"] div {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 45px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="isolated-agent-list"] strong {
  min-width: 0;
  overflow: hidden;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[data-slot="isolated-agent-list"] em {
  color: #8ecf7b;
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
}

[data-slot="isolated-agent-list"] small {
  grid-column: 2 / 4;
  margin-top: -8px;
  color: var(--color-text-muted);
  font-size: 11px;
}

[data-agent-spinner] {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(88, 166, 255, 0.28);
  border-top-color: #58a6ff;
  border-radius: 50%;
  animation: m90Spin 1s linear infinite;
}

@keyframes m90Spin {
  to {
    transform: rotate(360deg);
  }
}

[data-slot="isolated-product-prompt"] {
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 196px;
  padding: 18px;
  background: #242020;
}

[data-slot="product-software-slice"] > [data-slot="isolated-product-prompt"],
[data-real-software-slices] [data-slot="product-software-surface"] > [data-slot="isolated-product-prompt"] {
  align-content: end;
  height: auto;
  min-height: clamp(210px, 18vw, 250px);
}

[data-slot="product-software-slice"] > [data-slot="isolated-product-prompt"] p,
[data-real-software-slices] [data-slot="product-software-surface"] > [data-slot="isolated-product-prompt"] p {
  font-size: 13.5px;
  line-height: 1.44;
}

[data-slot="isolated-product-prompt"] p {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.38;
}

[data-slot="isolated-product-prompt-bar"] {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--color-text-muted);
  font-size: 13px;
}

[data-product-plus] {
  font-size: 22px;
  line-height: 1;
}

[data-product-chip] {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: #9bc7ff;
  background: rgba(88, 166, 255, 0.16);
}

[data-product-spacer] {
  flex: 1 1 auto;
}

[data-product-mic] {
  width: 12px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: transparent;
  border-radius: 0 0 999px 999px;
}

[data-slot="isolated-product-prompt-bar"] button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f4f1f1;
  color: #151313;
}

[data-slot="isolated-product-prompt-bar"] button::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 13px auto 0;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(45deg);
}

[data-slot="real-app-crop"][data-crop="product-report"] {
  height: 360px;
  --crop-scale: 0.58;
  --crop-x: 0px;
  --crop-y: 0px;
}

[data-slot="real-app-crop"][data-crop="product-composer"] {
  height: 240px;
  border: 0;
  background: transparent;
  --crop-scale: 1;
  --crop-x: -260px;
  --crop-y: -608px;
}

[data-slot="real-app-crop"][data-real-composer="true"] {
  height: 340px;
  overflow: hidden;
  border: 0;
  background: transparent;
  --crop-scale: 1;
  --crop-x: 0px;
  --crop-y: 0px;
}

[data-slot="real-app-crop"][data-real-composer="true"] [data-slot="real-app-crop-stage"] {
  position: relative;
  width: 100%;
  height: 340px;
  transform: none;
}

[data-slot="real-app-crop"][data-real-composer="true"] [data-slot="real-app-crop-frame"] {
  width: 100%;
  height: 340px;
  transform: none;
  background: transparent;
}

[data-slot="real-app-crop"][data-crop="product-agents"] {
  height: 360px;
  --crop-scale: 1;
  --crop-x: 0px;
  --crop-y: 0px;
}

[data-slot="product-pipeline"] {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

[data-slot="product-pipeline"] span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.016);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

[data-slot="product-pipeline"] i {
  display: block;
  flex: 1 1 34px;
  min-width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

[data-report-section],
[data-proof-section] {
  position: relative;
}

[data-report-section] {
  padding-top: clamp(2rem, 4vh, 3.5rem);
}

[data-slot="report-kpis"] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 24px;
}

[data-slot="report-kpis"] span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.015);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-slot="software-report-stack"] {
  display: grid;
  justify-items: center;
  gap: 34px;
  width: 100%;
  margin: 0 auto;
}

[data-slot="software-report-card"] {
  display: grid;
  justify-items: center;
  gap: 0;
  min-width: 0;
  width: min(100%, 74rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

[data-slot="software-report-card"][data-size="showcase"] {
  width: min(100%, 86rem);
}

[data-slot="software-report-card"][data-size="showcase"] [data-slot="product-demo-viewport"] {
  background: #0f1318;
  box-shadow: 0 22px 74px rgba(0, 0, 0, 0.28);
}

[data-slot="software-report-copy"] {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

[data-slot="software-report-copy"] span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="software-report-copy"] h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

[data-slot="software-report-copy"] p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

[data-demo-density="report"] {
  background: #0f1318;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
  width: 100%;
  margin: 0 auto;
}

[data-slot="report-run"] {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

[data-slot="report-prompt"],
[data-slot="mdx-report"] {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    rgba(255, 255, 255, 0.012);
  background-size: 44px 44px, 44px 44px, auto;
}

[data-slot="report-prompt"] {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 16px;
}

[data-slot="report-label"],
[data-slot="mdx-report"] header > span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="report-prompt"] p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

[data-slot="assistant-result"] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-sm);
  background: rgba(13, 17, 23, 0.72);
}

[data-slot="assistant-result"] strong {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
}

[data-slot="assistant-result"] span {
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

[data-slot="assistant-result"] code,
[data-slot="mdx-report"] code {
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
}

[data-slot="report-prompt"] iframe {
  display: block;
  width: 1440px;
  height: 760px;
  margin-bottom: -642px;
  border: 0;
  background: #151313;
  transform: scale(0.155);
  transform-origin: top left;
}

[data-slot="report-prompt"] iframe {
  max-width: none;
}

[data-slot="report-prompt"]::after {
  display: none;
}

[data-slot="mdx-report"] {
  overflow: hidden;
  padding: 0;
  background-color: rgba(13, 17, 23, 0.72);
}

[data-slot="mdx-report"] header,
[data-slot="mdx-report"] section {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

[data-slot="mdx-report"] section:last-child {
  border-bottom: none;
}

[data-slot="mdx-report"] h3 {
  margin: 8px 0 4px;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

[data-slot="mdx-report"] h4 {
  margin: 0 0 12px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

[data-slot="mdx-report"] p,
[data-slot="mdx-report"] figcaption,
[data-slot="mdx-report"] blockquote {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

[data-slot="mdx-report"] blockquote {
  margin: 0;
  padding: 12px 14px;
  border-left: 2px solid rgba(88, 166, 255, 0.65);
  background: rgba(88, 166, 255, 0.06);
}

[data-slot="mdx-script"] {
  overflow: auto;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-sm);
  background: rgba(8, 10, 15, 0.72);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.9;
  white-space: pre;
}

[data-slot="mdx-script"] span {
  color: var(--color-text-secondary);
}

[data-slot="mdx-chart"] {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

[data-slot="mdx-chart"] svg {
  width: 100%;
  min-height: 180px;
}

[data-slot="mdx-chart"] [data-axis] {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
}

[data-slot="mdx-chart"] [data-region] {
  fill: transparent;
  stroke: rgba(255, 255, 255, 0.58);
  stroke-width: 1.2;
  stroke-dasharray: 6 6;
}

[data-slot="mdx-chart"] text {
  fill: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

[data-slot="mdx-chart"] [data-series="blue"] {
  fill: #58a6ff;
}

[data-slot="mdx-chart"] [data-series="red"] {
  fill: #ff5c57;
}

[data-slot="mdx-chart"] [data-series="green"] {
  fill: #30d158;
}

[data-slot="mdx-chart"] [data-series="gold"] {
  fill: #ffb020;
}

[data-slot="chart-grid"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

[data-slot="mdx-report"] table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-sm);
}

[data-slot="mdx-report"] th,
[data-slot="mdx-report"] td {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

[data-slot="mdx-report"] th {
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 600;
}

[data-slot="storyboard-grid"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

[data-slot="storyboard-grid"] article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-sm);
  background: rgba(8, 10, 15, 0.58);
}

[data-slot="storyboard-grid"] img,
[data-slot="final-output"] img {
  width: 56px;
  aspect-ratio: 9 / 16;
  border-radius: var(--border-radius-sm);
  object-fit: contain;
  background: #080808;
}

[data-slot="storyboard-grid"] strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 600;
}

[data-slot="storyboard-grid"] p {
  margin: 0 0 7px;
  font-size: 12px;
}

[data-slot="storyboard-grid"] a,
[data-slot="final-output"] a {
  display: inline-block;
  margin-right: 9px;
  color: #58a6ff;
  font-size: 12px;
  text-decoration: none;
}

[data-slot="final-output"] {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  background: rgba(48, 209, 88, 0.035);
}

[data-slot="final-output"] p {
  margin: 0 0 8px;
}

[data-slot="proof-kpis"] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 24px;
}

[data-slot="proof-kpis"] span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.015);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-slot="backtrace-board"],
[data-slot="editor-proof-board"] {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    rgba(255, 255, 255, 0.01);
  background-size: 44px 44px, 44px 44px, auto;
}

[data-slot="backtrace-board"] {
  min-height: 476px;
}

[data-slot="editor-proof-board"] {
  min-height: 760px;
}

[data-slot="proof-flow-labels"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

[data-slot="proof-flow-labels"] b {
  color: var(--color-text-disabled);
  font-weight: 500;
}

[data-slot="proof-lines"] {
  position: absolute;
  inset: 70px 18px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 88px);
  pointer-events: none;
  z-index: 1;
}

[data-slot="proof-lines"] path {
  fill: none;
  stroke-width: 1px;
  stroke-dasharray: 5 5;
  opacity: 0.42;
  vector-effect: non-scaling-stroke;
}

[data-slot="proof-lines"] [data-line="blue"] {
  stroke: #58a6ff;
}

[data-slot="proof-lines"] [data-line="purple"] {
  stroke: #a371f7;
}

[data-slot="proof-lines"] [data-line="green"] {
  stroke: #30d158;
}

[data-slot="proof-lines"] [data-line="gold"] {
  stroke: #ffb020;
}

[data-slot="proof-lines"] [data-line="cyan"] {
  stroke: #39c5cf;
}

[data-slot="proof-grid"] {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

[data-slot="proof-grid"][data-proof-grid="script"] {
  grid-template-columns: minmax(220px, 0.95fr) minmax(260px, 1fr) minmax(220px, 0.95fr);
  align-items: stretch;
}

[data-slot="proof-grid"][data-proof-grid="editor"] {
  grid-template-columns: minmax(210px, 0.8fr) minmax(280px, 1fr) minmax(250px, 1fr);
  align-items: stretch;
}

[data-slot="proof-panel"] {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-lg);
  background: rgba(13, 17, 23, 0.78);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
}

[data-slot="script-card"] {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-slot="script-card"]:last-child {
  border-bottom: none;
}

[data-slot="script-card"] h3,
[data-slot="mini-chart"] h3 {
  margin: 0 0 10px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

[data-slot="script-row"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

[data-slot="script-row"] span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[data-slot="script-row"] b {
  color: var(--color-success);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

mark {
  padding: 1px 4px;
  border-radius: 3px;
  background: rgba(88, 166, 255, 0.12);
  color: #58a6ff;
}

mark[data-color="purple"] {
  background: rgba(163, 113, 247, 0.16);
  color: #c69cff;
}

mark[data-color="green"] {
  background: rgba(48, 209, 88, 0.14);
  color: #59df78;
}

[data-proof-panel="script"] {
  display: flex;
  align-items: center;
  padding: 18px;
}

[data-proof-panel="script"] pre {
  width: 100%;
  overflow: hidden;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 2;
  white-space: pre;
  text-overflow: ellipsis;
}

[data-proof-panel="script"] pre span {
  color: var(--color-text-secondary);
}

[data-proof-panel="charts"] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}

[data-slot="mini-chart"] {
  min-height: 124px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--border-radius-sm);
  background: rgba(8, 10, 15, 0.7);
}

[data-slot="mini-chart"] svg {
  width: 100%;
  height: 88px;
}

[data-slot="mini-chart"] path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}

[data-slot="mini-chart"] rect {
  fill: transparent;
  stroke: currentColor;
  stroke-dasharray: 4 4;
  opacity: 0.55;
}

[data-slot="mini-chart"] [data-series="blue"] {
  color: #58a6ff;
  fill: #58a6ff;
}

[data-slot="mini-chart"] [data-series="red"] {
  color: #ff5c57;
  fill: #ff5c57;
}

[data-slot="mini-chart"] [data-series="green"] {
  color: #30d158;
  fill: #30d158;
}

[data-slot="mini-chart"] [data-series="gold"] {
  color: #ffb020;
  fill: #ffb020;
}

[data-slot="mini-chart"] [data-series="purple"] {
  color: #a371f7;
  fill: #a371f7;
}

[data-slot="mini-chart"] [data-series="cyan"] {
  color: #39c5cf;
  fill: #39c5cf;
}

[data-proof-panel="sources"] {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

[data-slot="source-row"] {
  display: grid;
  grid-template-columns: 58px 32px minmax(42px, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 68px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
}

[data-slot="source-row"] span,
[data-slot="source-row"] b {
  color: #58a6ff;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

[data-slot="source-row"][data-accent="green"] span,
[data-slot="source-row"][data-accent="green"] b {
  color: #30d158;
}

[data-slot="source-row"][data-accent="gold"] span,
[data-slot="source-row"][data-accent="gold"] b {
  color: #ffb020;
}

[data-slot="source-row"][data-accent="cyan"] span,
[data-slot="source-row"][data-accent="cyan"] b {
  color: #39c5cf;
}

[data-slot="source-row"] b {
  justify-self: end;
}

[data-slot="source-row"] img {
  width: 28px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  object-fit: contain;
  background: #080808;
}

[data-proof-panel="decisions"] {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

[data-proof-panel="decisions"] article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: start;
  min-height: 126px;
  padding: 6px 0;
}

[data-proof-panel="decisions"] article + article {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

[data-proof-panel="decisions"] strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 600;
}

[data-proof-panel="decisions"] p,
[data-proof-panel="decisions"] span {
  margin: 0 0 6px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

[data-proof-panel="decisions"] s {
  color: var(--color-text-disabled);
}

[data-proof-panel="decisions"] a {
  display: inline-block;
  margin-right: 7px;
  color: #58a6ff;
  font-size: 12px;
  text-decoration: none;
}

[data-proof-panel="decisions"] img {
  width: 48px;
  aspect-ratio: 9 / 16;
  border-radius: var(--border-radius-sm);
  object-fit: contain;
  background: #080808;
}

[data-final-edit] {
  margin-top: 10px;
  padding-top: 16px !important;
}

[data-slot="proof-runtime-strip"] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

[data-slot="proof-runtime-strip"] > div {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.012);
}

[data-slot="proof-runtime-strip"] span {
  display: block;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="proof-runtime-strip"] iframe {
  display: block;
  width: 1440px;
  height: 760px;
  border: 0;
  background: #151313;
  transform: scale(0.18);
  transform-origin: top left;
}

[data-slot="proof-runtime-strip"] > div {
  height: 166px;
}

[data-slot="outcome-grid"] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

[data-slot="outcome-grid"] article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 166px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

[data-slot="outcome-grid"] article:last-child {
  border-right: none;
}

[data-slot="outcome-grid"] strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

[data-slot="outcome-grid"] p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.55;
}

[data-slot="download-list"] {
  display: flex;
  flex-direction: column;
}

[data-slot="download-row"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-slot="download-row"]:last-child {
  border-bottom: none;
}

[data-slot="download-row"] span {
  color: var(--color-text-secondary);
  font-size: 12px;
}

[data-slot="download-row"] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  min-width: 88px;
  padding: 7px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  color: var(--color-text);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.018);
}

[data-slot="download-row"] a:hover {
  background: rgba(255, 255, 255, 0.04);
}

[data-slot="value-summary"] {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="value-column"] {
  display: grid;
  align-content: start;
  gap: 0;
  min-width: 0;
  padding-right: clamp(18px, 2.2vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

[data-slot="value-column"]:last-child {
  padding-right: 0;
  border-right: 0;
}

[data-slot="value-column"] + [data-slot="value-column"] {
  padding-left: clamp(18px, 2.2vw, 34px);
}

[data-slot="value-summary"] span {
  min-height: 54px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.35;
}

[data-slot="value-column"] span:last-child {
  border-bottom-color: transparent;
}

[data-slot="site-footer"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 12px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 11px;
}

[data-slot="site-footer"] nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

[data-slot="site-footer"] a {
  color: var(--color-text-muted);
  text-decoration: none;
}

[data-slot="site-footer"] a:hover {
  color: var(--color-text);
}

[data-slot="legal-shell"] {
  width: min(100%, 980px);
  margin: 0 auto;
  padding-bottom: var(--space-10);
}

[data-slot="legal-document"] {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-8);
}

[data-slot="legal-document"] pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.72;
  letter-spacing: 0;
}

[data-slot="legal-document"] strong {
  color: var(--color-text);
}

[data-slot="complaints-grid"] {
  display: grid;
  gap: var(--space-8);
  width: min(100%, 900px);
  margin: 0 auto;
}

[data-slot="complaints-grid"] article {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: var(--space-6);
  padding: var(--space-7) 0;
  border-top: 1px solid var(--color-border);
}

[data-slot="complaints-grid"] h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.25;
}

[data-slot="complaints-grid"] p,
[data-slot="complaints-grid"] li {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

[data-slot="complaints-grid"] p,
[data-slot="complaints-grid"] ul,
[data-slot="complaints-grid"] ol {
  margin-top: 0;
}

[data-slot="complaints-grid"] strong,
[data-slot="complaints-grid"] a {
  color: var(--color-text);
}

[data-slot="prompt-examples"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

[data-slot="prompt-card-clean"] {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 224px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: transparent;
}

[data-slot="prompt-card-clean"] p {
  flex: 1;
  margin: 0;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.6;
}

[data-slot="prompt-card-clean"] strong {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
}

[data-slot="media-stack"] {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

[data-slot="media-stack-row"] {
  display: grid;
  grid-template-columns: minmax(130px, 0.25fr) minmax(0, 1fr);
  gap: var(--space-5);
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-slot="media-stack-row"]:last-child {
  border-bottom: none;
}

[data-slot="media-stack-row"] strong {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

[data-slot="media-stack-row"] span {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

[data-slot="credit-bar"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

[data-slot="bar-label"] {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: 12px;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

[data-slot="bar-percent"] {
  color: color-mix(in srgb, var(--color-text-muted) 78%, transparent);
}

[data-slot="bar-track"] {
  height: 6px;
  background: var(--color-border);
  border-radius: 999px;
  overflow: hidden;
}

[data-slot="bar-fill"] {
  height: 100%;
  border-radius: 999px;
  transition: width 0.3s ease;
}

[data-slot="inline-notice"] {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 4px;
}

[data-slot="inline-notice"][data-tone="warning"] {
  color: #f59e0b;
  border: 0.5px solid rgba(245, 158, 11, 0.3);
}

[data-slot="inline-notice"][data-tone="info"] {
  color: #60a5fa;
  border: 0.5px solid rgba(96, 165, 250, 0.3);
}

[data-slot="breakdown-grid"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

[data-slot="breakdown-item"] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0;
}

[data-slot="breakdown-header"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-slot="breakdown-label"] {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

[data-slot="breakdown-pct"] {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

[data-slot="breakdown-bar"] {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

[data-slot="breakdown-fill"] {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.7), rgba(16, 185, 129, 1));
  transition: width 0.4s ease;
  min-width: 2px;
}

[data-slot="breakdown-meta"] {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: 11px;
  color: var(--color-text-muted);
}

[data-slot="credit-section"],
[data-slot="plan-card"] [data-slot="credit-display"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

[data-slot="credit-amount"] {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.03em;
}

[data-slot="credit-amount"] span {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
}

[data-slot="summary-table"] {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

[data-slot="summary-table"] th,
[data-slot="summary-table"] td {
  padding: 12px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: top;
}

[data-slot="summary-table"] td {
  font-size: 13px;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

[data-slot="summary-table"] td:nth-child(1) {
  width: 28%;
  color: var(--color-text-muted);
}

[data-slot="summary-table"] td:nth-child(2) {
  width: 24%;
  font-weight: 600;
}

[data-slot="summary-table"] td:nth-child(3) {
  color: var(--color-text-muted);
}

#outputs [data-slot="summary-table"] {
  table-layout: auto;
}

#outputs [data-slot="summary-table"] td {
  line-height: 1.25;
}

#outputs [data-slot="summary-table"] td:nth-child(1) {
  width: 24%;
}

#outputs [data-slot="summary-table"] td:nth-child(2) {
  width: 26%;
  white-space: nowrap;
}

#outputs [data-slot="summary-table"] td:nth-child(3) {
  width: auto;
}

[data-slot="summary-table"] tr > *:last-child {
  border-right: none;
}

[data-slot="summary-table"] tbody tr:last-child > * {
  border-bottom: none;
}

[data-slot="mini-label"] {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-slot="report-card"] strong {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

[data-slot="report-card"] p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.6;
}

[data-slot="report-system"] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

[data-slot="report-card"] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 172px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: transparent;
}

[data-slot="demo-console"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

[data-slot="demo-frame"] {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background:
    linear-gradient(transparent 95%, rgba(255, 255, 255, 0.06) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255, 255, 255, 0.06) 96%),
    #101012;
  background-size: 34px 34px;
}

[data-slot="demo-frame"]::before,
[data-slot="demo-frame"]::after {
  content: "";
  position: absolute;
  inset: 34px 48px auto;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.018);
}

[data-slot="demo-frame"]::after {
  inset: auto 48px 34px;
  height: 64px;
}

[data-slot="demo-label"],
[data-slot="demo-subject"],
[data-slot="demo-caption"] {
  position: relative;
  z-index: 1;
}

[data-slot="demo-label"] {
  align-self: start;
  justify-self: start;
  margin: var(--space-4);
  padding: 6px 10px;
  border: 0.5px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 600;
}

[data-slot="demo-subject"] {
  width: 55%;
  height: 10px;
  border-radius: 999px;
  background: #10b981;
}

[data-slot="demo-caption"] {
  align-self: end;
  justify-self: center;
  margin-bottom: 46px;
  padding: 6px 10px;
  border: 0.5px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 12px;
}

[data-slot="topup-section"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: transparent;
}

[data-slot="topup-form"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

[data-slot="topup-row"] {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

[data-slot="topup-row"] label {
  font-size: 11px;
  color: var(--color-text-muted);
  white-space: nowrap;
  min-width: 160px;
  padding-top: 10px;
}

[data-slot="topup-input-shell"] {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

[data-slot="topup-input-shell"] input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 12px;
  outline: none;
  font-variant-numeric: tabular-nums;
}

[data-slot="topup-input-shell"] span {
  font-size: 11px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

[data-slot="topup-input-shell"]:focus-within {
  border-color: var(--color-text-muted);
}

[data-slot="topup-amount-stack"] {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--space-2);
}

[data-slot="topup-presets"] {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

[data-slot="topup-preset"] {
  min-width: 68px;
}

[data-slot="topup-preset"][data-active="true"] {
  border-color: var(--color-text);
}

[data-slot="topup-actions"] {
  display: flex;
  justify-content: flex-end;
}

[data-slot="usage-activity"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

[data-slot="usage-heatmap"] {
  --usage-cell-size: 10px;
  --usage-cell-gap: 4px;
  --usage-axis-width: 36px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-x: auto;
}

[data-slot="usage-months-row"] {
  display: flex;
  align-items: end;
  gap: var(--usage-cell-gap);
  width: max-content;
  min-width: 100%;
}

[data-slot="usage-months-spacer"] {
  width: var(--usage-axis-width);
  flex: 0 0 var(--usage-axis-width);
}

[data-slot="usage-months"] {
  flex: none;
  display: grid;
  column-gap: var(--usage-cell-gap);
  font-size: 11px;
  color: var(--color-text-muted);
  min-height: 14px;
}

[data-slot="usage-grid-shell"] {
  display: flex;
  gap: var(--usage-cell-gap);
  align-items: stretch;
  width: max-content;
  min-width: 100%;
}

[data-slot="usage-days"] {
  width: var(--usage-axis-width);
  flex: 0 0 var(--usage-axis-width);
  display: grid;
  grid-template-rows: repeat(7, minmax(0, 1fr));
  align-content: start;
  gap: var(--usage-cell-gap);
  font-size: 11px;
  color: var(--color-text-muted);
  min-height: clamp(120px, 16vw, 168px);
}

[data-slot="usage-days"] span {
  display: flex;
  align-items: center;
}

[data-slot="usage-days"] span:nth-child(2) {
  grid-row: 3;
}

[data-slot="usage-days"] span:nth-child(3) {
  grid-row: 5;
}

[data-slot="usage-grid"] {
  flex: none;
  display: grid;
  column-gap: var(--usage-cell-gap);
  width: max-content;
  overflow-y: visible;
}

[data-slot="usage-week"] {
  display: grid;
  grid-template-rows: repeat(7, minmax(0, 1fr));
  gap: var(--usage-cell-gap);
}

[data-slot="usage-cell"] {
  width: var(--usage-cell-size);
  height: var(--usage-cell-size);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  display: block;
}

[data-slot="usage-cell"][data-level="1"] {
  background: rgba(16, 185, 129, 0.35);
}

[data-slot="usage-cell"][data-level="2"] {
  background: rgba(16, 185, 129, 0.55);
}

[data-slot="usage-cell"][data-level="3"] {
  background: rgba(16, 185, 129, 0.8);
}

[data-slot="usage-cell"][data-level="4"] {
  background: rgba(16, 185, 129, 1);
}

[data-slot="usage-stats"] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

[data-slot="usage-stat"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-slot="usage-stat-label"] {
  font-size: 12px;
  color: var(--color-text-muted);
}

[data-slot="usage-stat-value"] {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

[data-slot="plan-table-shell"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

[data-slot="plan-table"] {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

[data-slot="plan-table"] th,
[data-slot="plan-table"] td {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
  vertical-align: top;
  text-align: center;
  color: var(--color-text);
  font-size: 13px;
}

[data-slot="plan-table"] th:first-child,
[data-slot="plan-table"] td:first-child {
  width: 180px;
  text-align: left;
  color: var(--color-text-muted);
  font-size: 12px;
}

[data-slot="plan-table"] thead th {
  background: rgba(255, 255, 255, 0.015);
  font-weight: 400;
}

[data-slot="plan-table"] tbody td {
  font-variant-numeric: tabular-nums;
}

[data-slot="plan-table"] tbody tr:last-child > * {
  border-bottom: none;
}

[data-slot="plan-table"] tr > *:last-child {
  border-right: none;
}

[data-slot="capability-table"] {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

[data-slot="capability-table"] th,
[data-slot="capability-table"] td {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
  vertical-align: top;
  text-align: left;
  font-size: 12px;
  line-height: 1.45;
}

[data-slot="capability-table"] th {
  color: var(--color-text-muted);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.015);
}

[data-slot="capability-table"] td {
  color: var(--color-text-muted);
}

[data-slot="capability-table"] td:first-child {
  color: var(--color-text);
  font-weight: 600;
}

[data-slot="capability-table"] tr > *:last-child {
  border-right: none;
}

[data-slot="capability-table"] tbody tr:last-child > * {
  border-bottom: none;
}

[data-slot="table-plan-head"] {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

[data-slot="table-plan-head"] button {
  min-height: 34px;
  padding: 7px 9px;
  font-size: 11px;
  line-height: 1;
}

[data-slot="table-plan-title"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

[data-slot="table-plan-title"] span {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

[data-slot="table-plan-price"] {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

[data-slot="invoice-list"] {
  display: flex;
  flex-direction: column;
}

[data-slot="invoice-row"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 0.5px solid var(--color-border);
  font-size: 12px;
}

[data-slot="invoice-row"]:last-child {
  border-bottom: none;
}

[data-slot="invoice-date"] {
  color: var(--color-text-muted);
  min-width: 100px;
}

[data-slot="invoice-amount"] {
  font-weight: 500;
  color: var(--color-text);
}

[data-slot="invoice-status"] {
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 2px 7px;
  border-radius: 3px;
  line-height: 1;
}

[data-slot="invoice-status"][data-status="paid"] {
  color: #22c55e;
  border: 0.5px solid rgba(34, 197, 94, 0.3);
}

[data-slot="pricing-sheet"] {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
}

[data-component="spreadsheet-header"],
[data-component="spreadsheet-row"] {
  display: grid;
  grid-template-columns: minmax(180px, 275px) repeat(3, minmax(156px, 1fr));
  min-width: 720px;
}

[data-component="spreadsheet-header"] {
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.012);
}

[data-slot="pricing-label"],
[data-component="spreadsheet-plan"],
[data-component="spreadsheet-label"],
[data-component="spreadsheet-cell"] {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

[data-slot="pricing-label"],
[data-component="spreadsheet-label"] {
  color: var(--color-text-muted);
  font-size: 12px;
}

[data-slot="pricing-label"] {
  display: flex;
  align-items: center;
  padding: 26px 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

[data-component="spreadsheet-plan"] {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 178px;
  padding: 28px 18px 24px;
}

[data-component="spreadsheet-plan"]:last-child,
[data-component="spreadsheet-cell"]:last-child {
  border-right: none;
}

[data-component="popular-tag"] {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  border: 1px solid rgba(88, 166, 255, 0.42);
  border-radius: var(--border-radius-sm);
  padding: 3px 8px;
  color: #58a6ff;
  background: rgba(88, 166, 255, 0.08);
  font-size: 10px;
  font-weight: 600;
}

[data-component="plan-name"] {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
}

[data-component="plan-price"] {
  color: var(--color-text);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

[data-component="plan-price"] small {
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

[data-component="plan-button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 94px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--border-radius-sm);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

[data-component="spreadsheet-plan"][data-popular="true"] [data-component="plan-button"] {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-bg);
}

[data-component="spreadsheet-row"] {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-component="spreadsheet-row"]:last-child {
  border-bottom: none;
}

[data-component="spreadsheet-label"],
[data-component="spreadsheet-cell"] {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px;
}

[data-component="spreadsheet-cell"] {
  justify-content: center;
  color: var(--color-text);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

[data-component="cell-check"] {
  color: #30d158;
  font-weight: 700;
}

[data-component="m90-billing"] button[data-color="primary"] {
  padding: var(--space-2) var(--space-4);
  font-size: 11px;
  font-weight: 500;
  border: 1px solid var(--color-text);
  border-radius: var(--border-radius-sm);
  background: var(--color-text);
  color: var(--color-bg);
  transition: opacity 0.15s ease;
}

[data-component="m90-billing"] button[data-color="primary"]:hover {
  opacity: 0.85;
}

[data-component="m90-billing"] button[data-color="secondary"] {
  padding: var(--space-2) var(--space-4);
  font-size: 11px;
  font-weight: 500;
  border: 0.5px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: transparent;
  color: var(--color-text);
  transition: all 0.15s ease;
}

[data-component="m90-billing"] button[data-color="secondary"]:hover {
  border-color: var(--color-text-muted);
}

[data-component="m90-billing"] button[data-color="current"] {
  padding: var(--space-2) var(--space-4);
  font-size: 11px;
  font-weight: 600;
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  cursor: default;
}

[data-component="m90-billing"] button[data-color="ghost"] {
  padding: var(--space-2) var(--space-3);
  font-size: 11px;
  font-weight: 500;
  border: none;
  border-radius: var(--border-radius-sm);
  background: transparent;
  color: var(--color-text-muted);
}

[data-component="m90-billing"] button[data-color="ghost"]:hover {
  color: var(--color-text);
  background: transparent;
}

[data-page="workspace"] [data-component="m90-billing"] [data-slot="proof-sheet"] button[data-proof-topic],
[data-page="workspace"] [data-component="m90-billing"] [data-slot="proof-sheet"] button[data-proof-topic]:hover,
[data-page="workspace"] [data-component="m90-billing"] [data-slot="proof-sheet"] button[data-proof-topic]:active,
[data-page="workspace"] [data-component="m90-billing"] [data-slot="proof-sheet"] button[data-proof-topic]:focus {
  padding: 15px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  appearance: none !important;
  transform: none;
}

[data-page="workspace"] [data-component="m90-billing"] [data-slot="proof-sheet"] button[data-proof-topic-active],
[data-page="workspace"] [data-component="m90-billing"] [data-slot="proof-sheet"] button[data-proof-topic]:hover {
  transform: translateX(4px);
}

@media (max-width: 64rem) {
  [data-slot="summary-grid"],
  [data-slot="usage-stats"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-slot="prompt-examples"] {
    grid-template-columns: 1fr;
  }

  [data-slot="prompt-example-showcase"] {
    width: 100%;
  }

  [data-slot="prompt-example-stage"] {
    min-height: 244px;
  }

  [data-slot="agent-fleet"],
  [data-slot="report-system"],
  [data-slot="workflow-steps"],
  [data-slot="product-index"],
  [data-slot="product-software-grid"],
  [data-slot="source-catalog"],
  [data-slot="product-compact-matrix"],
  [data-slot="outcome-grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-slot="workflow-steps"] article:nth-child(2n),
  [data-slot="product-index"] a:nth-child(2n),
  [data-slot="outcome-grid"] article:nth-child(2n) {
    border-right: none;
  }

  [data-slot="workflow-steps"] article,
  [data-slot="product-index"] a,
  [data-slot="outcome-grid"] article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  [data-slot="workflow-steps"] article:last-child,
  [data-slot="product-index"] a:last-child,
  [data-slot="outcome-grid"] article:last-child {
    border-bottom: none;
  }

  [data-slot="scale-layout"],
  [data-slot="product-video-layout"],
  [data-slot="product-detail-hero"],
  [data-slot="product-two-column"],
  [data-slot="product-prompt-showcase"],
  [data-slot="account-scale-layout"],
  [data-slot="report-run"],
  [data-slot="proof-grid"][data-proof-grid="script"],
  [data-slot="proof-grid"][data-proof-grid="editor"] {
    grid-template-columns: 1fr;
  }

  [data-slot="report-prompt"] {
    position: static;
  }

  [data-slot="proof-lines"] {
    display: none;
  }

  [data-slot="backtrace-board"],
  [data-slot="editor-proof-board"] {
    min-height: 0;
  }

  [data-slot="proof-runtime-strip"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-slot="chart-grid"],
  [data-slot="storyboard-grid"] {
    grid-template-columns: 1fr;
  }

  [data-slot="mdx-report"] table {
    display: block;
    overflow-x: auto;
  }

  [data-slot="account-table"] {
    overflow-x: auto;
  }

  [data-slot="product-story"] {
    grid-template-columns: 1fr;
  }

  [data-slot="product-software-grid"],
  [data-slot="source-catalog"],
  [data-slot="product-compact-matrix"] {
    grid-template-columns: 1fr;
  }

  [data-slot="product-prompt-stage"] {
    min-height: 0;
  }

  [data-slot="product-story"] article {
    min-height: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  [data-slot="product-story"] article:last-child {
    border-bottom: none;
  }

  [data-slot="proof-system-shell"] {
    grid-template-columns: 1fr;
    width: min(100%, calc(100vw - 64px));
    max-width: calc(100vw - 64px);
  }

  [data-slot="proof-system-copy"] {
    position: static;
  }

  [data-slot="proof-system-display"] {
    min-height: clamp(420px, 58vw, 560px);
  }

  [data-slot="proof-report-card"] [data-slot="product-demo-viewport"] {
    width: 100%;
  }

  [data-slot="scale-outcome"],
  [data-slot="scale-showcase"] {
    grid-template-columns: 1fr;
  }

  [data-slot="scale-console"],
  [data-slot="scale-outcome"],
  [data-slot="scale-showcase"] {
    width: min(100%, calc(100vw - 64px));
    max-width: calc(100vw - 64px);
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
  }

  [data-scale-section] [data-slot="section-title"],
  [data-slot="scale-outcome-copy"],
  [data-slot="scale-proof-row"],
  [data-scale-module],
  [data-slot="scale-prompt-card"],
  [data-slot="scale-agent-panel"],
  [data-slot="scale-account-panel"] {
    width: min(100%, calc(100vw - 64px), 22rem);
    max-width: min(calc(100vw - 64px), 22rem);
  }

  [data-slot="scale-proof-row"] {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 48rem) {
  [data-slot="header-actions"] [data-slot="user"] {
    display: none;
  }

  [data-component="workspace-container"] {
    flex-direction: column;
  }

  [data-component="workspace-nav"] {
    width: 100%;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-4);
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    flex-shrink: 0;
    min-height: fit-content;
    scrollbar-width: none;
  }

  [data-component="workspace-nav"]::-webkit-scrollbar {
    display: none;
  }

  [data-component="nav-desktop"] {
    display: none;
  }

  [data-component="nav-mobile"] {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
  }

  [data-component="nav-mobile"]::-webkit-scrollbar {
    display: none;
  }

  [data-component="nav-mobile"] [data-component="workspace-nav-items"] {
    flex-direction: row;
    align-items: center;
    gap: var(--space-1);
    min-width: max-content;
    height: 100%;
  }

  [data-slot="prompt-example-showcase"] {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  [data-slot="prompt-example-tabs"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 16px;
  }

  [data-page="workspace"] [data-prompt-example-tab] {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: auto;
  }

  [data-prompt-examples-section] [data-slot="section-title"] {
    text-align: left;
  }

  [data-prompt-examples-section] [data-slot="section-title"] p {
    margin-inline: 0;
  }

  [data-component="nav-mobile"] [data-nav-button] {
    padding: var(--space-2) var(--space-3);
    padding-bottom: calc(var(--space-2) + 4px);
    white-space: nowrap;
    position: relative;
  }

  [data-component="nav-mobile"] [data-nav-product-menu] {
    flex: 0 0 auto;
  }

  [data-component="nav-mobile"] [data-nav-menu-toggle],
  [data-page="workspace"] [data-component="nav-mobile"] button[data-nav-menu-toggle] {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  [data-component="nav-mobile"] [data-nav-menu] {
    position: static;
    z-index: 120;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  [data-component="nav-mobile"] [data-nav-child] {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  [data-component="nav-mobile"] [data-nav-download] {
    margin-top: 0;
  }

  [data-component="nav-mobile"] [data-nav-button].active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px 2px 0 0;
  }

  [data-component="workspace-content"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: var(--space-6) var(--space-4);
    overflow-x: hidden;
  }

  [data-component="workspace-main"],
  [data-page="workspace-[id]"],
  [data-component="m90-billing"],
  [data-slot="sections"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }

  [data-component="workspace-main"],
  [data-page="workspace-[id]"],
  [data-component="m90-billing"],
  [data-slot="sections"] {
    overflow: visible !important;
  }

  [data-slot="plan-table-shell"] {
    overflow-x: auto;
  }

  [data-slot="plan-table"] {
    min-width: 760px;
  }

  [data-slot="complaints-grid"] article {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  [data-slot="capability-table"] {
    min-width: 820px;
  }

  [data-slot="product-platforms"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  [data-slot="product-platforms"] span:nth-child(3n) {
    border-right: none;
  }

  [data-slot="product-platforms"] span:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  [data-slot="real-app-crop"][data-crop="agents"] {
    width: min(100%, 260px);
    height: 700px;
    --crop-scale: 1;
  }

  [data-slot="real-app-crop"][data-crop="review"] {
    width: min(100%, 620px);
    height: 480px;
    --crop-scale: 0.96;
    --crop-x: -858px;
    --crop-y: 0px;
  }

  [data-slot="product-demo-viewport"] {
    --product-demo-source-width: 1080px;
    --product-demo-source-height: 1080px;
  }

  [data-scale-module-copy] {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  [data-slot="scale-proof-row"] {
    grid-template-columns: 1fr;
    gap: 0;
  }

  [data-slot="scale-prompt-card"],
  [data-slot="scale-agent-panel"],
  [data-slot="scale-account-panel"] {
    min-height: 0;
  }

  [data-slot="scale-account-row"] {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px 0;
  }

  [data-scale-section] [data-slot="section-title"],
  [data-slot="scale-console"],
  [data-slot="scale-system-shell"],
  [data-slot="scale-system-copy"],
  [data-slot="scale-sheet"],
  [data-slot="scale-prompt-stage"],
  [data-slot="scale-outcome"],
  [data-slot="scale-showcase"],
  [data-slot="scale-outcome-copy"],
  [data-slot="scale-proof-row"],
  [data-scale-module],
  [data-slot="scale-prompt-card"],
  [data-slot="scale-agent-panel"],
  [data-slot="scale-account-panel"] {
    width: min(100%, calc(100vw - 64px)) !important;
    max-width: calc(100vw - 64px) !important;
  }

  [data-scale-section] [data-slot="section-title"] h2,
  [data-proof-copy] strong,
  [data-proof-copy] em,
  [data-scale-section] [data-slot="section-title"] p,
  [data-slot="scale-outcome-copy"] h3,
  [data-slot="scale-outcome-copy"] p,
  [data-slot="scale-prompt-card"] p,
  [data-scale-copy] strong,
  [data-scale-copy] em {
    display: block;
    white-space: normal !important;
    text-wrap: auto;
    overflow-wrap: anywhere;
  }

  [data-slot="scale-system-shell"] {
    grid-template-columns: 1fr;
  }

  [data-scale-use-case] {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  [data-slot="scale-metric-strip"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-slot="scale-metric-strip"] span:nth-child(2n) {
    border-right: 0;
  }

  [data-slot="scale-prompt-stage"] {
    min-height: 330px;
  }

  [data-slot="site-footer"] {
    align-items: flex-start;
    flex-direction: column;
  }

  [data-slot="site-footer"] nav {
    justify-content: flex-start;
  }
}

@media (max-width: 40rem) {
  [data-page="workspace-[id]"] [data-component="header-section"] {
    padding-top: var(--space-8);
    padding-bottom: 0;
    align-items: center;
    text-align: center;
  }

  [data-page="workspace-[id]"] [data-component="header-section"] h1 {
    max-width: 19rem;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  [data-page="workspace-[id]"] [data-component="header-section"] p {
    max-width: 20rem;
    align-items: center;
    font-size: var(--font-size-md);
    text-align: center;
  }

  #software-demo {
    margin-top: var(--space-16);
  }

  #software-demo [data-slot="app-demo-viewport"] {
    width: 100%;
  }

  [data-page="workspace-[id]"] {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
    gap: var(--space-8);
  }

  [data-page="workspace-[id]"] [data-component="header-section"] {
    padding-bottom: 0;
  }

  [data-page="workspace-[id]"] [data-component="header-section"] h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  [data-page="workspace-[id]"] [data-component="header-section"] p {
    flex-direction: column;
    align-items: center;
    font-size: var(--font-size-md);
    width: min(100%, 270px) !important;
    max-width: min(100%, 270px) !important;
    overflow-wrap: anywhere;
    text-wrap: auto;
  }

  [data-slot="billing-info"] {
    margin-left: 0;
  }

  [data-component="m90-billing"] {
    gap: var(--space-8);
  }

  [data-product-page],
  [data-slot="product-section-heading"],
  [data-slot="product-prompt-showcase"],
  [data-slot="product-prompt-stage"],
  [data-product-prompt-pane],
  [data-slot="product-prompt-stage"] [data-slot="real-app-crop"][data-crop="product-composer"],
  [data-slot="real-app-crop"][data-real-composer="true"],
  [data-slot="real-app-crop"][data-real-composer="true"] [data-slot="real-app-crop-stage"],
  [data-slot="real-app-crop"][data-real-composer="true"] [data-slot="real-app-crop-frame"] {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  [data-component="workspace-content"] {
    width: 100vw;
    max-width: 100vw;
  }

  [data-page="workspace-[id]"] {
    padding-right: 0;
    padding-left: 0;
  }

  [data-page="workspace-[id]"],
  [data-page="workspace-[id]"][data-view="billing"],
  [data-component="m90-billing"],
  [data-slot="sections"],
  [data-product-page],
  [data-slot="product-section-heading"],
  [data-slot="product-prompt-showcase"],
  [data-slot="product-prompt-stage"] {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  [data-product-page],
  [data-slot="product-prompt-showcase"],
  [data-slot="product-prompt-stage"],
  [data-slot="real-app-crop"][data-real-composer="true"] {
    overflow-x: hidden;
  }

  [data-slot="product-section-heading"] h2,
  [data-slot="product-section-heading"] p,
  [data-product-prompt-pane] > p,
  [data-product-prompt-tab] strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: auto;
  }

  [data-slot="product-section-heading"],
  [data-slot="product-prompt-showcase"],
  [data-slot="product-prompt-stage"],
  [data-product-prompt-pane],
  [data-slot="product-prompt-stage"] [data-slot="real-app-crop"][data-crop="product-composer"],
  [data-slot="real-app-crop"][data-real-composer="true"],
  [data-slot="real-app-crop"][data-real-composer="true"] [data-slot="real-app-crop-stage"],
  [data-slot="real-app-crop"][data-real-composer="true"] [data-slot="real-app-crop-frame"] {
    max-width: min(100%, 358px) !important;
  }

  [data-slot="product-section-heading"] h2,
  [data-slot="product-section-heading"] p,
  [data-product-prompt-pane] > p {
    max-width: min(100%, 342px);
  }

  [data-scale-section] [data-slot="section-title"],
  [data-slot="proof-system-shell"],
  [data-slot="proof-sheet"],
  [data-slot="proof-system-display"],
  [data-slot="scale-console"],
  [data-slot="scale-system-shell"],
  [data-slot="scale-system-copy"],
  [data-slot="scale-sheet"],
  [data-slot="scale-prompt-stage"],
  [data-slot="scale-outcome"],
  [data-slot="scale-showcase"],
  [data-slot="scale-outcome-copy"],
  [data-slot="scale-proof-row"],
  [data-scale-module],
  [data-slot="scale-prompt-card"],
  [data-slot="scale-agent-panel"],
  [data-slot="scale-account-panel"] {
    width: min(100%, calc(100vw - 64px));
    max-width: calc(100vw - 64px);
  }

  [data-scale-section] [data-slot="section-title"] h2,
  [data-proof-copy] strong,
  [data-proof-copy] em,
  [data-scale-section] [data-slot="section-title"] p,
  [data-slot="scale-outcome-copy"] h3,
  [data-slot="scale-outcome-copy"] p,
  [data-slot="scale-prompt-card"] p,
  [data-scale-copy] strong,
  [data-scale-copy] em {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  [data-scale-use-case] {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  [data-scale-use-case] {
    min-height: 100px;
  }

  [data-slot="scale-metric-strip"] {
    grid-template-columns: 1fr 1fr;
  }

  [data-slot="scale-prompt-header"] {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 64px;
  }

  [data-slot="real-app-crop"][data-crop="scale-composer"] {
    --crop-scale: 0.66;
    --crop-x: -170px;
    --crop-y: -482px;
  }

  [data-proof-topic] {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  [data-proof-topic] {
    min-height: 112px;
  }

  [data-slot="current-plan-heading"],
  [data-slot="credit-display"],
  [data-slot="topup-row"],
  [data-slot="breakdown-meta"],
  [data-slot="bar-label"] {
    flex-direction: column;
    align-items: flex-start;
  }

  [data-slot="summary-grid"],
  [data-slot="usage-stats"] {
    grid-template-columns: 1fr;
  }

  [data-slot="workflow-steps"],
  [data-slot="product-index"],
  [data-slot="product-software-grid"],
  [data-slot="source-catalog"],
  [data-slot="product-compact-matrix"],
  [data-slot="product-band-list"] article,
  [data-slot="outcome-grid"] {
    grid-template-columns: 1fr;
  }

  [data-slot="workflow-steps"] article,
  [data-slot="workflow-steps"] article:nth-child(2n),
  [data-slot="product-index"] a,
  [data-slot="product-index"] a:nth-child(2n),
  [data-slot="outcome-grid"] article,
  [data-slot="outcome-grid"] article:nth-child(2n) {
    border-right: none;
  }

  [data-slot="master-prompt"] {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  [data-slot="product-platforms"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-slot="product-platforms"] span,
  [data-slot="product-platforms"] span:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  [data-slot="product-platforms"] span:nth-child(2n) {
    border-right: none;
  }

  [data-slot="product-platforms"] span:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  [data-slot="media-stack-row"] {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  [data-slot="product-row"] {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  [data-slot="product-band-list"] article {
    gap: 8px;
  }

  [data-slot="product-command-rail"] {
    flex-direction: column;
    gap: 6px;
  }

  [data-slot="source-catalog"] article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px 14px;
  }

  [data-slot="source-catalog"] article p {
    grid-column: 2;
  }

  [data-slot="product-pipeline"] {
    align-items: stretch;
    flex-direction: column;
  }

  [data-slot="product-pipeline"] i {
    width: 1px;
    min-width: 1px;
    height: 16px;
    flex: 0 0 16px;
    align-self: center;
  }

  [data-slot="real-app-crop"][data-crop="product-report"],
  [data-slot="real-app-crop"][data-crop="product-agents"] {
    height: 300px;
  }

  [data-slot="real-app-crop"][data-crop="product-report"] {
    --crop-scale: 0.48;
    --crop-x: 0px;
    --crop-y: 0px;
  }

  [data-slot="real-app-crop"][data-crop="product-composer"] {
    height: 240px;
    --crop-scale: 0.82;
    --crop-x: -205px;
    --crop-y: -612px;
  }

  [data-slot="real-app-crop"][data-real-composer="true"] {
    height: 420px;
    --crop-scale: 1;
    --crop-x: 0px;
    --crop-y: 0px;
  }

  [data-slot="real-app-crop"][data-real-composer="true"] [data-slot="real-app-crop-stage"],
  [data-slot="real-app-crop"][data-real-composer="true"] [data-slot="real-app-crop-frame"] {
    height: 420px;
  }

  [data-slot="product-lede"] h2,
  [data-slot="product-section-heading"] h2 {
    font-size: 26px;
  }

  [data-slot="product-lede"] p,
  [data-slot="product-section-heading"] p {
    font-size: 15px;
  }

  [data-slot="real-app-crop"][data-crop="agents"] {
    width: min(100%, 260px);
    height: 620px;
    --crop-scale: 1;
  }

  [data-slot="real-app-crop"][data-crop="review"] {
    width: min(100%, 326px);
    height: 430px;
    --crop-scale: 0.9;
    --crop-x: -858px;
    --crop-y: 0px;
  }

  [data-slot="topup-row"] label {
    min-width: 0;
    padding-top: 0;
  }

  [data-slot="demo-frame"] {
    min-height: 220px;
  }

  [data-slot="app-demo-viewport"] {
    --app-demo-source-width: 1440px;
    --app-demo-source-height: 760px;
  }

  [data-slot="product-video-list"] article {
    min-height: 56px;
  }

  [data-slot="backtrace-board"],
  [data-slot="editor-proof-board"] {
    padding: 12px;
  }

  [data-slot="mdx-report"] header,
  [data-slot="mdx-report"] section {
    padding: 14px 12px;
  }

  [data-slot="mdx-report"] h3 {
    font-size: 18px;
  }

  [data-slot="mdx-chart"] {
    padding: 0;
  }

  [data-slot="mdx-chart"] svg {
    min-height: 150px;
  }

  [data-slot="storyboard-grid"] article,
  [data-slot="final-output"] {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  [data-slot="storyboard-grid"] img,
  [data-slot="final-output"] img {
    width: 48px;
  }

  [data-slot="proof-flow-labels"] {
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    font-size: 11px;
  }

  [data-proof-panel="script"] pre {
    font-size: 11px;
    line-height: 1.85;
  }

  [data-proof-panel="decisions"] article {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  [data-proof-panel="decisions"] img {
    width: 42px;
  }

  [data-slot="proof-runtime-strip"] {
    grid-template-columns: 1fr;
  }

  [data-slot="download-row"] {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  [data-slot="download-row"] a {
    width: 100%;
  }

  [data-slot="value-summary"],
  [data-slot="value-column"] {
    grid-template-columns: 1fr;
  }

  [data-slot="value-column"],
  [data-slot="value-column"] + [data-slot="value-column"] {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  [data-slot="value-summary"] span {
    min-height: 48px;
    padding-right: 0;
  }

  [data-slot="invoice-row"] {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Exact console user menu/dropdown source:
   packages/console/app/src/component/dropdown.css
   packages/console/app/src/routes/user-menu.css */
[data-component="dropdown"] {
  position: relative;
}

[data-component="dropdown"] [data-slot="trigger"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: none;
  border-radius: var(--border-radius-sm);
  background-color: transparent;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.15s ease;
}

[data-component="dropdown"] [data-slot="trigger"]:hover {
  background-color: var(--color-surface-hover);
}

[data-component="dropdown"] [data-slot="trigger"] span {
  flex: 1;
  text-align: left;
  font-weight: 500;
}

[data-component="dropdown"] [data-slot="chevron"] {
  flex-shrink: 0;
  color: var(--color-text-secondary);
}

[data-component="dropdown"] [data-slot="dropdown"] {
  position: absolute;
  top: 100%;
  z-index: 1000;
  margin-top: var(--space-1);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 160px;
}

[data-component="dropdown"] [data-slot="dropdown"][data-align="right"] {
  right: 0;
}

[data-component="user-menu"] [data-component="dropdown"] {
  min-width: 0;
}

[data-component="user-menu"] [data-component="dropdown"] [data-slot="trigger"] {
  min-width: 12rem;
  justify-content: flex-end;
  font-family: var(--font-sans);
}

[data-component="user-menu"] [data-component="dropdown"] [data-slot="trigger"] span {
  color: var(--color-text-muted);
  text-align: right;
  font-family: var(--font-sans);
}

@media (max-width: 48rem) {
  [data-component="workspace-main"],
  [data-page="workspace-[id]"],
  [data-page="workspace-[id]"][data-view="billing"],
  [data-component="m90-billing"],
  [data-slot="sections"],
  [data-product-page] {
    overflow: visible !important;
  }
}
