:root {
  --ink: #111312;
  --paper: #f6f3ed;
  --surface: #fffdf8;
  --surface-2: #ece7dc;
  --muted: #68645d;
  --line: #ddd6c9;
  --accent: #c8f24a;
  --teal: #148f7f;
  --teal-soft: #e8f5ef;
  --coral: #d8664a;
  --coral-soft: #fff0e9;
  --charcoal: #1f211f;
  --shadow: 0 24px 70px rgba(17, 19, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
strong,
span {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 0 32px;
  background: rgba(246, 243, 237, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--ink);
  color: var(--accent);
  border-radius: 8px;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.nav {
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  white-space: nowrap;
}

.nav a:hover,
.site-footer a:hover,
.tool-card a:hover {
  color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.header-cta,
.button-primary {
  background: var(--ink);
  color: var(--surface);
}

.button-secondary {
  background: var(--accent);
  color: var(--ink);
}

.button-ghost {
  background: rgba(255, 253, 248, 0.72);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  padding: 74px 0;
}

.hero-product,
.hero-account {
  min-height: 560px;
}

.eyebrow,
.app-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(44px, 6.7vw, 88px);
}

.hero-text,
.section-heading p,
.cue-feature-copy p,
.split-section p,
.login-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-text {
  max-width: 760px;
  margin: 26px 0 0;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-visual,
.credit-panel,
.login-card,
.mini-workbench,
.account-dashboard,
.app-preview,
.script-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.visual-topbar,
.output-header,
.dashboard-header,
.site-footer,
.script-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.visual-topbar,
.script-card-header {
  padding-bottom: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.visual-topbar strong,
.script-card-header strong {
  color: var(--ink);
}

.pipeline-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #f8f5ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pipeline-card span,
.workflow-grid span,
.funnel-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(20, 143, 127, 0.24);
  border-radius: 8px;
  font-weight: 900;
}

.pipeline-card p,
.tool-card p,
.platform-grid p,
.workflow-grid p,
.trust-grid p,
.schema-grid p,
.dashboard-grid p,
.scene-card p,
.metrics-grid p,
.demo-grid p,
.pricing-grid p,
.comparison-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.64;
}

.pipeline-card.active {
  background: #eff8d8;
  border-color: #cbe897;
}

.pipeline-card.active span,
.pipeline-card.highlighted span,
.dashboard-nav .active {
  background: var(--accent);
  color: var(--ink);
  border-color: rgba(17, 19, 18, 0.18);
}

.pipeline-card.highlighted {
  background: var(--teal-soft);
  border-color: rgba(20, 143, 127, 0.28);
}

.visual-grid,
.platform-grid,
.tool-grid,
.workflow-grid,
.trust-grid,
.schema-grid,
.dashboard-grid,
.funnel-grid,
.metrics-grid,
.demo-grid,
.pricing-grid,
.comparison-grid {
  display: grid;
  gap: 14px;
}

.visual-grid {
  grid-template-columns: repeat(3, 1fr);
}

.visual-grid div,
.platform-grid article,
.tool-card,
.workflow-grid article,
.trust-grid article,
.schema-grid article,
.dashboard-grid article,
.funnel-grid article,
.metrics-grid article,
.demo-grid article,
.pricing-grid article,
.comparison-grid article {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visual-grid .risk-tile {
  background: var(--coral-soft);
  border-color: rgba(216, 102, 74, 0.34);
}

.visual-grid span,
.platform-grid span,
.card-label,
.credit-panel span,
.login-card span,
.dashboard-grid span,
.usage-table span,
.event-list span,
.select-card span,
.prompt-label,
.script-card-header span,
.script-row span,
.metrics-grid span,
.demo-grid span,
.pricing-grid span,
.comparison-grid span,
.summary-list span {
  color: #8a857c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.visual-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-band {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  background: #ece8df;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading h2,
.cue-feature-copy h2,
.split-section h2,
.cta-section h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  text-wrap: balance;
}

.platform-grid,
.pricing-grid,
.demo-grid,
.schema-grid {
  grid-template-columns: repeat(3, 1fr);
}

.metrics-grid,
.tool-grid,
.trust-grid,
.funnel-grid {
  grid-template-columns: repeat(4, 1fr);
}

.platform-grid h3,
.tool-card h3,
.workflow-grid h3,
.trust-grid h3,
.schema-grid h3,
.metrics-grid h3,
.demo-grid h3,
.pricing-grid h3,
.comparison-grid h3 {
  margin-top: 22px;
  font-size: 23px;
}

.metrics-grid article:first-child,
.featured-plan,
.after-card {
  background: var(--charcoal);
  color: #f9f6ed;
}

.metrics-grid article:first-child p,
.metrics-grid article:first-child span,
.featured-plan p,
.featured-plan span,
.after-card p,
.after-card span {
  color: #cec8bc;
}

.tool-card.featured {
  background: var(--charcoal);
  color: #f9f6ed;
}

.tool-card.featured p,
.tool-card.featured .card-label {
  color: #cec8bc;
}

.tool-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 900;
}

.compact-tools .tool-grid .tool-card:not(.featured) {
  box-shadow: none;
}

.cue-feature,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 32px;
  align-items: center;
}

.script-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  align-self: center;
}

.script-card.compact {
  gap: 16px;
}

.script-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.script-row:last-of-type {
  border-bottom: 0;
}

.script-row p {
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
}

.script-output-card {
  gap: 18px;
}

.shot-card {
  padding: 20px;
  background: #fbf8f1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shot-card + .shot-card {
  margin-top: 10px;
}

.shot-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.shot-title span {
  flex: 0 0 auto;
  padding: 8px 11px;
  background: #ede9df;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shot-title h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-row span {
  padding: 8px 10px;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(20, 143, 127, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.status-row .risk-status,
.risk-card {
  background: var(--coral-soft);
  color: var(--coral);
  border-color: rgba(216, 102, 74, 0.28);
}

.workflow-grid {
  grid-template-columns: repeat(6, 1fr);
}

.split-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-grid {
  grid-template-columns: repeat(2, 1fr);
}

.comparison-grid strong {
  display: block;
  margin-top: 18px;
  line-height: 1.5;
}

.pilot-plan,
.queue-board,
.event-list,
.usage-table,
.summary-list {
  display: grid;
  gap: 10px;
}

.pilot-plan div,
.queue-board div,
.event-list div,
.usage-table div,
.summary-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pilot-plan div,
.queue-board div,
.summary-list div {
  grid-template-columns: 150px minmax(0, 1fr);
}

.summary-list .risk-line {
  background: var(--coral-soft);
  border-color: rgba(216, 102, 74, 0.3);
}

.credit-panel,
.login-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  align-self: center;
}

.credit-panel strong,
.login-card strong {
  padding: 16px;
  background: #f6f2ea;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  background: #f1eee7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.app-preview {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  overflow: hidden;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  background: var(--surface);
  border-right: 1px solid var(--line);
}

.app-sidebar h3 {
  font-size: 34px;
}

.app-sidebar p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.select-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #f8f5ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.app-output {
  padding: 36px;
  min-width: 0;
}

.output-header {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.output-header h3 {
  font-size: 26px;
}

.output-header > span {
  flex: 0 0 auto;
  padding: 9px 12px;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(20, 143, 127, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.scene-card {
  padding: 24px;
  margin-bottom: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.scene-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.scene-title span {
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  padding: 0 10px;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.risk-card .scene-title span {
  background: var(--coral);
  color: var(--surface);
}

.prompt-label {
  margin: 18px 0 8px;
}

.script-prompt {
  margin: 0;
  padding: 14px;
  background: #f6f2ea;
  border: 1px solid #e5ddd0;
  border-radius: 8px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 1.7;
}

.muted-prompt {
  color: #5c5a54;
}

.voice-block {
  padding-left: 14px;
  border-left: 3px solid var(--teal);
  font-weight: 900;
}

.screen-text {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 12px;
  background: var(--charcoal);
  color: var(--accent);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.cue-workbench {
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
}

.app-form-panel {
  gap: 22px;
}

.cue-form,
.generated-list {
  display: grid;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span,
.generated-title span,
.generated-section-header h5,
.generated-scene p span,
.empty-state span {
  color: #8a857c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select,
.status-select {
  width: 100%;
  min-height: 42px;
  padding: 11px 12px;
  background: #fbf8f1;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}

.form-field textarea {
  resize: vertical;
  line-height: 1.55;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.status-select:focus {
  outline: 2px solid rgba(20, 143, 127, 0.24);
  border-color: rgba(20, 143, 127, 0.55);
}

.generate-button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.button:disabled,
.mini-button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.form-note {
  margin: 0;
  padding: 12px;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(20, 143, 127, 0.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.form-note.is-error {
  background: var(--coral-soft);
  color: var(--coral);
  border-color: rgba(216, 102, 74, 0.32);
}

.empty-state {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: #fbf8f1;
  border: 1px dashed #cfc6b8;
  border-radius: 8px;
}

.empty-state h4 {
  font-size: 24px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.generated-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.generated-card-header,
.generated-section-header,
.script-controls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.generated-title {
  min-width: 0;
}

.generated-title h4 {
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.14;
}

.generated-title p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.script-controls {
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  background: var(--accent);
  color: var(--ink);
  border: 1px solid rgba(17, 19, 18, 0.2);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.status-select {
  width: auto;
  min-width: 132px;
  min-height: 34px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 900;
}

.generated-section {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.generated-section-header h5 {
  margin: 0;
}

.prompt-block {
  max-width: 100%;
  margin: 0;
  padding: 14px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  background: #f6f2ea;
  border: 1px solid #e5ddd0;
  border-radius: 8px;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 1.68;
}

.generated-scene {
  display: grid;
  gap: 8px;
  padding: 14px 0 0;
  border-top: 1px solid #ebe3d7;
}

.generated-scene:first-of-type {
  border-top: 0;
}

.generated-scene strong {
  color: var(--ink);
  line-height: 1.45;
}

.generated-scene p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.account-dashboard {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
}

.dashboard-nav {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 22px;
  background: var(--charcoal);
  color: #f7f4ec;
}

.dashboard-nav span {
  padding: 12px;
  border-radius: 8px;
  color: #bdb7ab;
  font-weight: 900;
}

.dashboard-main {
  padding: 28px;
}

.dashboard-header {
  margin-bottom: 20px;
}

.dashboard-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.dashboard-header h3 {
  margin-top: 6px;
  font-size: 30px;
}

.usage-table div:first-child {
  background: var(--charcoal);
  color: var(--surface);
}

.usage-table em,
.event-list em {
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
}

.cta-section {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 112px;
  text-align: center;
}

.cta-section .hero-actions {
  justify-content: center;
}

.hero-clean {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  min-height: calc(100vh - 70px);
  padding: 112px 0 104px;
  text-align: center;
}

.hero-clean .hero-copy {
  max-width: 980px;
  margin: 0 auto;
}

.hero-clean h1 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1.02;
  white-space: nowrap;
}

.hero-slogan-sub {
  margin: 18px 0 0;
  color: #514d46;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.18;
}

.hero-clean .hero-text {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.hero-clean .hero-actions {
  justify-content: center;
}

.problem-grid,
.process-grid,
.capability-grid,
.audience-grid,
.business-grid {
  display: grid;
  gap: 14px;
}

.problem-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-grid,
.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.business-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.process-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-card span,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  background: #f1eee7;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-card h3,
.process-card h3 {
  margin-top: 22px;
  font-size: 22px;
}

.info-card p,
.process-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.64;
}

.process-card {
  background: #fbf8f1;
}

.process-card span {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

.featured-info {
  background: var(--charcoal);
  color: #f9f6ed;
}

.featured-info span {
  background: rgba(255, 253, 248, 0.12);
  color: var(--accent);
  border-color: rgba(255, 253, 248, 0.2);
}

.featured-info p {
  color: #cec8bc;
}

.site-footer {
  min-height: 84px;
  padding: 0 32px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .nav {
    gap: 12px;
    font-size: 13px;
  }
}

@media (max-width: 1080px) {
  .hero,
  .cue-feature,
  .split-section,
  .app-preview,
  .account-dashboard {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .tool-grid,
  .workflow-grid,
  .trust-grid,
  .schema-grid,
  .funnel-grid,
  .metrics-grid,
  .pricing-grid,
  .demo-grid,
  .problem-grid,
  .process-grid,
  .capability-grid,
  .audience-grid,
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cue-workbench {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero,
  .section,
  .cta-section {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-clean h1 {
    font-size: clamp(28px, 5.7vw, 38px);
    white-space: nowrap;
  }

  .hero-clean {
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .hero-text,
  .section-heading p,
  .cue-feature-copy p,
  .split-section p {
    font-size: 16px;
  }

  .platform-grid,
  .tool-grid,
  .workflow-grid,
  .trust-grid,
  .schema-grid,
  .funnel-grid,
  .visual-grid,
  .mini-workbench,
  .dashboard-grid,
  .metrics-grid,
  .pricing-grid,
  .demo-grid,
  .comparison-grid,
  .problem-grid,
  .process-grid,
  .capability-grid,
  .audience-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section-band,
  .product-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .app-output,
  .app-sidebar,
  .dashboard-main {
    padding: 20px;
  }

  .output-header,
  .scene-title,
  .dashboard-header,
  .site-footer,
  .script-card-header,
  .generated-card-header,
  .generated-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .script-controls {
    justify-content: flex-start;
    width: 100%;
  }

  .mini-button,
  .status-select {
    width: 100%;
  }

  .pilot-plan div,
  .queue-board div,
  .event-list div,
  .usage-table div,
  .summary-list div,
  .script-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
    white-space: normal;
  }

  .site-footer {
    padding: 24px 18px;
  }
}
