:root {
  --bg: #f6f2e9;
  --bg-soft: #fbf8f1;
  --ink: #0f201a;
  --ink-soft: #1f332c;
  --muted: #55625a;
  --brand: #153f33;
  --brand-strong: #0f2f26;
  --accent: #b3863d;
  --accent-soft: rgba(183, 134, 61, 0.14);
  --card: rgba(255, 253, 247, 0.84);
  --line: rgba(15, 32, 26, 0.14);
  --line-strong: rgba(15, 32, 26, 0.28);
  --radius: 12px;
  --shadow-soft: 0 12px 28px rgba(15, 32, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 10%, rgba(183, 134, 61, 0.13), transparent 38%),
    radial-gradient(circle at 86% 15%, rgba(21, 63, 51, 0.1), transparent 38%),
    linear-gradient(132deg, #fcfaf4 0%, #f8f3e8 42%, #f4eee2 100%);
}

.topbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background: rgba(252, 249, 241, 0.9);
  z-index: 40;
}

.brand {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.45rem;
}

.topbar nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar nav a {
  font-size: 0.95rem;
  color: var(--muted);
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.topbar nav a:hover,
.topbar nav a:focus-visible {
  color: var(--brand);
  border-color: rgba(15, 47, 38, 0.3);
}

main {
  padding-bottom: 96px;
}

.section-wrap {
  width: min(1120px, calc(100vw - 32px));
  margin: 28px auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.hero h1,
.section-head h2,
.card h3,
.hero-panel h2,
.feedback-page h1,
.simple-page h1 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero h1 {
  font-size: clamp(1.95rem, 3.8vw, 2.5rem);
  line-height: 1.1;
  margin: 10px 0 16px;
  max-width: 30ch;
  text-wrap: balance;
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
  max-width: 54ch;
}

.entry-mode-banner {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 10px 12px;
  display: grid;
  gap: 7px;
}

.entry-mode-title {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

.entry-mode-body {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.entry-mode-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.entry-mode-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.entry-mode-links a:hover,
.entry-mode-links a:focus-visible {
  border-color: rgba(15, 47, 38, 0.34);
  color: var(--brand);
}

.entry-mode-links a.active {
  border-color: rgba(183, 134, 61, 0.55);
  background: rgba(252, 248, 236, 0.96);
  color: #5f4620;
}

.mini-eyebrow {
  margin: 0 0 8px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.hero-panel,
.card,
.demo-controls,
.deck-card,
.feedback-form,
.simple-page,
.feedback-page {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  padding: 24px 22px;
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.93), rgba(250, 245, 235, 0.88));
}

.hero-panel p {
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.6;
}

.entry-hint {
  margin-top: 10px;
  border: 1px solid rgba(21, 63, 51, 0.2);
  border-radius: 10px;
  padding: 7px 10px;
  background: rgba(236, 245, 241, 0.65);
  color: var(--brand);
  font-size: 0.88rem;
}

.hero-panel ul,
.card ul,
.checklist-card ul,
.price-card ul {
  padding-left: 20px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-cta,
.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 47, 38, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-strong);
}

.btn-secondary {
  background: var(--accent-soft);
  border-color: rgba(183, 134, 61, 0.35);
  color: #4e3b1b;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
  color: var(--ink);
}

.hero-scenario-row {
  margin-top: 14px;
  margin-bottom: 12px;
}

#instantDemoBtn {
  width: 100%;
}

.hero-preview {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 11px;
}

.slide-frame {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  padding: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(246, 241, 229, 0.86));
}

.slide-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(21, 63, 51, 0.24);
  background: rgba(236, 245, 241, 0.84);
  color: var(--brand);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.slide-line {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(21, 63, 51, 0.2), rgba(183, 134, 61, 0.3));
  margin-bottom: 8px;
}

.slide-line:last-child {
  margin-bottom: 0;
}

.line-1 {
  width: 94%;
}

.line-2 {
  width: 72%;
}

.line-3 {
  width: 88%;
}

.line-4 {
  width: 64%;
}

.route-links {
  margin-top: 18px;
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.58);
}

.route-links-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}

.route-links a {
  font-size: 0.9rem;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(183, 134, 61, 0.5);
  overflow-wrap: anywhere;
}

.route-links a:hover,
.route-links a:focus-visible {
  color: var(--brand-strong);
}

body[data-entry-mode="talk"] .hero-panel {
  background: linear-gradient(145deg, rgba(250, 245, 255, 0.93), rgba(244, 237, 251, 0.9));
}

body[data-entry-mode="talk"] .entry-mode-banner {
  background: rgba(248, 243, 255, 0.78);
}

body[data-entry-mode="voice"] .hero-panel {
  background: linear-gradient(145deg, rgba(238, 248, 243, 0.93), rgba(232, 244, 238, 0.9));
}

body[data-entry-mode="voice"] .entry-mode-banner {
  background: rgba(235, 246, 240, 0.78);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.hero-metrics article {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  padding: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.hero-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-metrics strong {
  font-size: 1.12rem;
  line-height: 1.35;
  text-wrap: balance;
}

.quickflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quickflow-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  padding: 14px 14px 15px;
  box-shadow: var(--shadow-soft);
  animation: saydeck-rise 0.35s ease both;
}

.quickflow-card:nth-child(2) {
  animation-delay: 0.05s;
}

.quickflow-card:nth-child(3) {
  animation-delay: 0.1s;
}

.quickflow-card:nth-child(4) {
  animation-delay: 0.15s;
}

.quickflow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  border-radius: 999px;
  border: 1px solid rgba(183, 134, 61, 0.45);
  color: #5f4620;
  background: rgba(252, 248, 236, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
}

.quickflow-card h3 {
  margin: 10px 0 4px;
}

.quickflow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.sample-lab {
  display: grid;
  gap: 12px;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sample-input pre {
  margin: 10px 0 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--ink-soft);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.sample-slides {
  margin: 10px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.sample-slides li {
  color: var(--muted);
  line-height: 1.45;
}

.sample-slides strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}

.sample-note {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes saydeck-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin: 0 0 6px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  padding: 18px;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.demo-wrap {
  display: grid;
  gap: 12px;
}

.trial-banner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
}

.trial-banner h3 {
  margin: 0 0 4px;
  font-size: 1.12rem;
}

.trial-banner p {
  margin: 0;
  color: var(--muted);
}

.trial-meters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 210px;
}

.trial-meters article {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.76);
  padding: 10px;
}

.trial-meters span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.trial-meters strong {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
}

.demo-controls {
  padding: 18px;
}

.scenario-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.voice-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
}

.voice-beta {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.58);
}

.voice-beta summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-soft);
  list-style: none;
}

.voice-beta summary::-webkit-details-marker {
  display: none;
}

.voice-beta summary::after {
  content: " +";
  color: var(--muted);
}

.voice-beta[open] summary::after {
  content: " -";
}

.voice-beta .voice-row {
  margin-top: 10px;
}

.voice-beta .control-block {
  margin-top: 8px;
  margin-bottom: 0;
}

.voice-status {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.66);
}

.voice-status[data-tone="active"] {
  color: var(--brand);
  border-color: rgba(21, 63, 51, 0.34);
  background: rgba(236, 245, 241, 0.9);
}

.voice-status[data-tone="warn"] {
  color: #6e4f22;
  border-color: rgba(183, 134, 61, 0.48);
  background: rgba(251, 246, 232, 0.95);
}

.scenario-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.scenario-chip:hover,
.scenario-chip:focus-visible,
.scenario-chip.active {
  border-color: rgba(183, 134, 61, 0.6);
  background: rgba(252, 248, 236, 0.95);
}

.input-source-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.input-source-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 32, 49, 0.08);
  border: 1px solid rgba(17, 32, 49, 0.12);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.input-source-row {
  margin-bottom: 10px;
}

.input-source-actions {
  margin-bottom: 8px;
}

.control-block {
  margin-bottom: 14px;
}

.control-inline {
  margin-bottom: 14px;
}

.toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 0;
}

.toggle-label input {
  width: auto;
  margin: 0;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

textarea,
select,
input {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(15, 32, 26, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

textarea:focus,
select:focus,
input:focus {
  outline: 2px solid rgba(21, 63, 51, 0.32);
  outline-offset: 1px;
}

.help,
.status {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 8px 0 0;
}

.status[data-tone="loading"] {
  color: var(--brand);
}

.status[data-tone="success"] {
  color: var(--brand);
}

.status[data-tone="warn"] {
  color: #6e4f22;
}

.status[data-tone="error"] {
  color: #7f1d1d;
}

.status.warning {
  margin-top: 6px;
  border: 1px solid rgba(183, 134, 61, 0.45);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(251, 246, 232, 0.95);
}

.demo-journey {
  margin-top: 12px;
  padding: 12px 14px;
}

.demo-journey h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.journey-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.journey-item {
  color: var(--muted);
  line-height: 1.45;
}

.journey-item.done {
  color: var(--brand);
  font-weight: 700;
}

.trial-upgrade {
  margin-top: 12px;
  border: 1px solid rgba(183, 134, 61, 0.42);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(251, 246, 232, 0.9);
  color: #5f4620;
  font-size: 0.93rem;
}

.trial-upgrade a {
  text-decoration: underline;
  font-weight: 700;
}

.workflow-row {
  margin-bottom: 14px;
}

.project-actions {
  margin-top: 12px;
  border: 1px solid rgba(17, 32, 49, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.8);
}

.project-actions h3 {
  margin: 0;
  font-size: 1rem;
}

.project-actions-grid {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.project-actions-row {
  margin-top: 0;
}

#projectNameInput {
  max-width: 520px;
}

.refine-panel {
  margin-top: 12px;
  border: 1px solid rgba(21, 63, 51, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(236, 245, 241, 0.66);
}

.refine-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.refine-source {
  border: 1px solid rgba(21, 63, 51, 0.3);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
}

.refine-summary {
  margin: 8px 0 0;
  color: var(--ink);
  line-height: 1.45;
}

.refine-points {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 5px;
}

.refine-sections {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.refine-section-item {
  border: 1px solid rgba(17, 32, 49, 0.14);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.72);
}

.refine-section-item strong {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 3px;
}

.refine-section-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.outline-review-panel,
.style-candidate-panel {
  margin-top: 12px;
  border: 1px solid rgba(17, 32, 49, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.82);
}

.visual-pack-panel {
  margin-top: 12px;
  border: 1px solid rgba(17, 32, 49, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.84);
}

#outlineEditor {
  min-height: 180px;
  resize: vertical;
}

.style-candidate-list {
  margin-top: 10px;
  display: grid;
  gap: 9px;
}

.style-candidate-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  padding: 10px;
  display: grid;
  gap: 7px;
}

.style-candidate-card.active {
  border-color: rgba(21, 63, 51, 0.42);
  background: rgba(236, 245, 241, 0.74);
}

.style-candidate-head {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

.style-candidate-head strong {
  font-size: 0.95rem;
}

.style-candidate-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.style-candidate-bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  display: grid;
  gap: 4px;
}

.visual-pack-list {
  margin-top: 10px;
  display: grid;
  gap: 9px;
}

.visual-pack-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  display: grid;
  gap: 7px;
}

.visual-pack-card.image-ready {
  border-color: rgba(21, 63, 51, 0.38);
  background: rgba(236, 245, 241, 0.76);
}

.visual-pack-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.visual-pack-head strong {
  font-size: 0.95rem;
}

.visual-pack-source {
  border: 1px solid rgba(17, 32, 49, 0.22);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.76rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
}

.visual-pack-point {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.4;
}

.visual-pack-prompt {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  border-radius: 8px;
  border: 1px dashed rgba(17, 32, 49, 0.24);
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 9px;
}

.visual-pack-foot {
  display: flex;
  align-items: center;
  gap: 8px;
}

.visual-pack-link {
  font-size: 0.86rem;
  color: var(--brand);
  text-decoration: underline;
}

.visual-pack-link.muted {
  color: var(--muted);
  text-decoration: none;
}

.audit-panel {
  margin-top: 12px;
  border: 1px solid rgba(17, 32, 49, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.78);
}

.audit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.audit-score {
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 0.86rem;
  border: 1px solid rgba(17, 32, 49, 0.2);
  background: rgba(245, 246, 248, 0.9);
}

.audit-score[data-tier="good"] {
  color: var(--brand);
  border-color: rgba(21, 63, 51, 0.35);
  background: rgba(236, 245, 241, 0.92);
}

.audit-score[data-tier="warn"] {
  color: #6e4f22;
  border-color: rgba(183, 134, 61, 0.45);
  background: rgba(251, 246, 232, 0.95);
}

.audit-score[data-tier="bad"] {
  color: #7f1d1d;
  border-color: rgba(127, 29, 29, 0.4);
  background: rgba(254, 242, 242, 0.95);
}

.audit-actions {
  margin-top: 8px;
}

.audit-checklist {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.audit-checklist li {
  color: var(--muted);
}

.audit-checklist li.audit-pass {
  color: var(--brand);
}

.audit-checklist li.audit-warn {
  color: #6e4f22;
}

.demo-insights {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demo-insights .card {
  display: grid;
  gap: 4px;
  align-content: center;
}

.demo-insights span {
  color: var(--muted);
  font-size: 0.84rem;
}

.demo-insights strong {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
}

.deck-output {
  display: grid;
  gap: 10px;
}

.deck-empty {
  border: 1px dashed rgba(17, 32, 49, 0.26);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.deck-empty h3 {
  margin: 0 0 6px;
}

.deck-empty p {
  margin: 0;
  color: var(--muted);
}

.deck-card {
  padding: 14px;
  display: grid;
  gap: 8px;
  border-left: 3px solid var(--accent);
}

.deck-card.is-frozen {
  border-left-color: var(--brand);
  background: rgba(250, 245, 233, 0.92);
}

.deck-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.deck-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.slide-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.slide-body {
  white-space: pre-wrap;
  min-height: 68px;
}

.slide-bullets {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.slide-bullets li {
  line-height: 1.45;
}

.slide-toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.slide-toolbar button {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  padding: 7px 11px;
  cursor: pointer;
  font-weight: 700;
}

.btn.is-loading {
  position: relative;
  pointer-events: none;
}

.btn.is-loading::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  animation: saydeck-spin 0.8s linear infinite;
}

@keyframes saydeck-spin {
  to {
    transform: rotate(360deg);
  }
}

.price {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  margin: 12px 0;
}

.billing-toggle {
  display: inline-flex;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.9);
}

.billing-option {
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  background: transparent;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.billing-option.active {
  background: var(--accent);
  color: #fff;
}

.upsell-badge {
  margin: -6px 0 10px;
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5f4620;
  background: rgba(183, 134, 61, 0.2);
}

.pricing-grid {
  align-items: stretch;
}

.pricing-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card ul {
  margin: 12px 0 14px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.price-card li {
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}

.price-card li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-weight: 700;
}

.price-card .btn {
  align-self: flex-start;
  margin-top: 2px;
}

.price-card .btn.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.plan-fit {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-includes {
  margin: 12px 0 0;
  color: #1f344c;
  font-size: 0.9rem;
  font-weight: 700;
}

.plan-badge {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.79rem;
  font-weight: 700;
  color: #5f4620;
  background: rgba(183, 134, 61, 0.18);
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card.featured {
  border-color: rgba(21, 63, 51, 0.32);
}

.price-note {
  font-size: 0.87rem;
  color: #5f4620;
  margin-top: 10px;
  margin-bottom: 8px;
}

.pricing-bundle,
.pricing-compare {
  margin-top: 14px;
  padding: 16px 18px;
}

.pricing-bundle h3,
.pricing-compare h3 {
  margin: 0;
}

.bundle-list {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
  display: grid;
  gap: 6px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-wrap {
  margin-top: 10px;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.pricing-table thead th {
  font-family: "Fraunces", serif;
  font-size: 0.9rem;
}

.pricing-table th,
.pricing-table td {
  border-top: 1px solid var(--line);
  padding: 9px 8px;
  text-align: left;
  vertical-align: top;
  color: var(--ink);
}

.pricing-table tbody th {
  font-weight: 700;
  width: 28%;
  color: var(--ink);
}

.pricing-table tbody td {
  color: var(--muted);
}

.readiness-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
}

details summary {
  font-weight: 700;
  cursor: pointer;
}

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

.site-footer {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto 36px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.feedback-widget {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
}

.feedback-trigger {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(15, 47, 38, 0.26);
}

.feedback-panel {
  margin-top: 8px;
  width: min(360px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 14px;
  display: none;
}

.feedback-panel.open {
  display: block;
}

.feedback-form {
  padding: 16px;
}

.form-error {
  color: #7f1d1d;
  font-size: 0.88rem;
  min-height: 1.2em;
  margin: 6px 0 10px;
}

.simple-page,
.feedback-page {
  padding: 24px;
}

:root {
  --bg: #eef1f7;
  --bg-soft: #f8f8fb;
  --ink: #111827;
  --ink-soft: #182131;
  --muted: #607087;
  --brand: #111827;
  --brand-strong: #090f18;
  --accent: #f2c879;
  --accent-soft: rgba(242, 200, 121, 0.14);
  --card: rgba(255, 255, 255, 0.88);
  --line: rgba(17, 24, 39, 0.1);
  --line-strong: rgba(17, 24, 39, 0.22);
  --radius: 18px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.08);
}

body {
  font-family: "Public Sans", sans-serif;
  line-height: 1.55;
}

.site-bg {
  background:
    radial-gradient(circle at 8% 8%, rgba(242, 200, 121, 0.26), transparent 28%),
    radial-gradient(circle at 88% 2%, rgba(93, 137, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #f7f8fc 0%, #eff2f8 55%, #f8f3ea 100%);
}

.topbar {
  width: min(1180px, calc(100vw - 32px));
  margin: 14px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(10, 14, 22, 0.78);
  box-shadow: 0 18px 42px rgba(9, 15, 24, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f8f6ef;
  font-family: "Libre Bodoni", serif;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4d594 0%, #ffffff 100%);
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
}

.topbar nav {
  gap: 18px;
}

.topbar nav a {
  color: rgba(248, 246, 239, 0.7);
  border-bottom: none;
}

.topbar nav a:hover,
.topbar nav a:focus-visible {
  color: #ffffff;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4d594 0%, #ffffff 100%);
  color: #101828;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(242, 200, 121, 0.22);
}

.section-wrap {
  width: min(1180px, calc(100vw - 32px));
  margin: 34px auto;
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 26px;
  padding: 38px;
  border-radius: 32px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background:
    radial-gradient(circle at 18% 16%, rgba(242, 200, 121, 0.18), transparent 24%),
    linear-gradient(145deg, #111827 0%, #162233 58%, #1b2a21 100%);
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero h1,
.section-head h2,
.card h3,
.hero-panel h2,
.feedback-page h1,
.simple-page h1,
.faq-list summary {
  font-family: "Libre Bodoni", serif;
  letter-spacing: -0.02em;
}

.hero h1,
.hero-panel h2 {
  color: #fbfaf6;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  max-width: 11ch;
  margin: 12px 0 18px;
}

.eyebrow,
.mini-eyebrow {
  color: #f2c879;
}

.lead {
  max-width: 54ch;
  color: rgba(248, 245, 237, 0.78);
  font-size: 1.1rem;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(248, 245, 237, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 600;
}

.entry-mode-banner {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.entry-mode-title {
  color: #f2c879;
}

.entry-mode-body,
.entry-mode-links a {
  color: rgba(248, 245, 237, 0.74);
}

.entry-mode-links a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.entry-mode-links a.active {
  background: rgba(242, 200, 121, 0.16);
  border-color: rgba(242, 200, 121, 0.4);
  color: #fff5de;
}

.btn {
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.94rem;
}

.btn-primary {
  background: linear-gradient(135deg, #f4d594 0%, #ffffff 100%);
  color: #101828;
  box-shadow: 0 12px 28px rgba(242, 200, 121, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #f2cf83 0%, #fff3d7 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f8f6ef;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f8f6ef;
}

.hero-metrics article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-metrics span {
  color: rgba(248, 245, 237, 0.6);
}

.hero-metrics strong {
  color: #ffffff;
}

.hero-panel {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-panel p {
  color: rgba(248, 245, 237, 0.74);
}

.hero-panel .entry-hint {
  color: #17324a;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(17, 24, 39, 0.08);
  font-weight: 600;
}

.hero-source-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
}

.hero-source-label {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(17, 24, 39, 0.08);
  color: #425166;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-source-card .hero-source-text {
  margin: 0;
  color: #172133;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 600;
}

.hero-transform-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-transform-row span {
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 245, 237, 0.86);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-style-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.hero-style-card {
  display: grid;
  gap: 10px;
  min-height: 156px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.hero-style-card strong {
  font-size: 1rem;
  line-height: 1.35;
}

.hero-style-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(17, 24, 39, 0.08);
  color: #455164;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-style-lines {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.hero-style-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.84), rgba(17, 24, 39, 0.18));
}

.hero-style-card.narrative {
  background: linear-gradient(180deg, #fff7ea 0%, #ffffff 100%);
}

.hero-style-card.launch {
  background: linear-gradient(180deg, #eff5ff 0%, #ffffff 100%);
}

.route-links {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.route-links-label {
  color: rgba(248, 245, 237, 0.58);
}

.route-links a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.route-links a:hover,
.route-links a:focus-visible {
  color: #ffffff;
  border-color: rgba(242, 200, 121, 0.38);
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.signal-chip-card {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-soft);
}

.signal-chip-label {
  display: block;
  margin-bottom: 8px;
  color: #7b8798;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quickflow {
  gap: 14px;
}

.quickflow-card,
.card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-soft);
}

.quickflow-card {
  padding: 18px;
}

.quickflow-step {
  background: rgba(17, 24, 39, 0.06);
  border-color: rgba(17, 24, 39, 0.1);
  color: #394658;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: #141d2a;
  margin-bottom: 6px;
}

.section-head p {
  max-width: 62ch;
  color: #607087;
}

.sample-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
}

.sample-input pre {
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(180deg, #f9fafc 0%, #eef2f9 100%);
  border-color: rgba(17, 24, 39, 0.08);
}

.style-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.style-showcase-card {
  display: grid;
  gap: 12px;
  min-height: 240px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 245, 233, 0.92));
  box-shadow: var(--shadow-soft);
}

.style-showcase-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 249, 237, 0.94), rgba(255, 255, 255, 0.92));
}

.style-showcase-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(239, 245, 255, 0.94), rgba(255, 255, 255, 0.92));
}

.style-showcase-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(17, 24, 39, 0.08);
  color: #4c5a6d;
  font-size: 0.78rem;
  font-weight: 700;
}

.style-showcase-card strong {
  font-size: 1.22rem;
  color: #141d2a;
}

.style-showcase-card p {
  margin: 0;
  color: #4b5b70;
  line-height: 1.6;
}

.style-showcase-preview {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.style-showcase-preview.narrative {
  background: rgba(255, 249, 237, 0.88);
}

.style-showcase-preview.launch {
  background: rgba(239, 245, 255, 0.9);
}

.preview-chip {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(17, 24, 39, 0.08);
  color: #42536a;
  font-size: 0.75rem;
  font-weight: 700;
}

.preview-line {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.14));
}

.preview-line-strong {
  height: 12px;
}

.preview-line-short {
  width: 68%;
}

.demo-wrap {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 242, 234, 0.92));
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
}

.trial-banner {
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f7efde 100%);
}

.trial-meters article {
  border-radius: 18px;
}

.trial-meters strong {
  font-family: "Libre Bodoni", serif;
}

.demo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 18px;
  align-items: start;
}

.demo-column {
  display: grid;
  gap: 14px;
}

.demo-controls {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #111827 0%, #182436 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.demo-controls,
.demo-controls p,
.demo-controls label,
.demo-controls strong,
.demo-controls summary {
  color: #f8f6ef;
}

.demo-controls .help,
.demo-controls .status,
.demo-controls .refine-source,
.demo-controls .audit-meta,
.demo-controls .price-note {
  color: rgba(248, 246, 239, 0.72);
}

.demo-controls textarea,
.demo-controls select,
.demo-controls input {
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  border-color: rgba(17, 24, 39, 0.08);
}

.demo-controls .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f8f6ef;
}

.demo-controls .btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f8f6ef;
}

.demo-controls .scenario-chip,
.demo-controls .voice-status,
.demo-controls .voice-beta {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f8f6ef;
}

.demo-controls .input-source-badge {
  background: rgba(242, 200, 121, 0.14);
  border-color: rgba(242, 200, 121, 0.28);
  color: #fff1cf;
}

.demo-controls .scenario-chip:hover,
.demo-controls .scenario-chip:focus-visible,
.demo-controls .scenario-chip.active {
  background: rgba(242, 200, 121, 0.16);
  border-color: rgba(242, 200, 121, 0.34);
}

.demo-controls .voice-status[data-tone="active"] {
  background: rgba(242, 200, 121, 0.14);
  border-color: rgba(242, 200, 121, 0.36);
  color: #fff1cf;
}

.demo-controls .project-actions.card,
.demo-controls .demo-journey.card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.refine-panel,
.outline-review-panel,
.style-candidate-panel,
.visual-pack-panel,
.audit-panel {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.demo-insights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.demo-insights .card {
  background: rgba(17, 24, 39, 0.96);
  border-color: rgba(17, 24, 39, 0.18);
  color: #ffffff;
}

.demo-insights span {
  color: rgba(255, 255, 255, 0.6);
}

.demo-insights strong {
  font-family: "Libre Bodoni", serif;
  color: #ffffff;
}

.deck-output {
  gap: 14px;
}

.deck-empty {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
}

.deck-card {
  padding: 18px;
  border-left: none;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-soft);
}

.deck-card.is-frozen {
  background: linear-gradient(180deg, rgba(255, 248, 229, 0.95), rgba(255, 255, 255, 0.95));
}

.style-candidate-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.style-candidate-card {
  min-height: 220px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.style-candidate-card.active {
  border-color: rgba(242, 200, 121, 0.36);
  background: linear-gradient(180deg, rgba(255, 248, 228, 0.98), rgba(255, 255, 255, 0.96));
}

.style-candidate-head {
  align-items: flex-start;
  flex-direction: column;
}

.style-candidate-head .btn {
  margin-top: 4px;
  color: #111827;
  background: rgba(17, 24, 39, 0.06);
  border-color: rgba(17, 24, 39, 0.08);
}

.style-candidate-preview {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.style-candidate-kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(17, 24, 39, 0.06);
  color: #5f6c7d;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.style-candidate-summary {
  font-family: "Libre Bodoni", serif;
  font-size: 1.18rem;
  color: #152032;
}

.style-candidate-bullets {
  color: #57677b;
}

.visual-pack-list {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.visual-pack-card {
  border-radius: 20px;
}

.pricing-grid,
.readiness-grid {
  gap: 16px;
}

.price-card.featured {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
}

#pricing {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 200, 121, 0.12), transparent 20%),
    linear-gradient(180deg, #121b29 0%, #162334 100%);
  box-shadow: 0 34px 72px rgba(9, 15, 24, 0.18);
}

#pricing .section-head h2 {
  color: #f8fafc;
}

#pricing .section-head p {
  color: rgba(235, 241, 248, 0.78);
}

#pricing .pricing-pill {
  color: rgba(244, 247, 251, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

#pricing .price-card,
#pricing .pricing-bundle,
#pricing .pricing-compare {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.98));
  border-color: rgba(17, 24, 39, 0.08);
}

#pricing .price-card {
  padding: 24px 22px;
  min-height: 100%;
}

#pricing .price-card:not(.featured) {
  background: linear-gradient(180deg, rgba(252, 253, 255, 0.98), rgba(244, 247, 251, 0.98));
}

#pricing .price-card.featured {
  transform: translateY(-8px);
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  border-color: rgba(242, 200, 121, 0.42);
  box-shadow: 0 28px 56px rgba(12, 19, 30, 0.2);
}

#pricing .price-card h3,
#pricing .pricing-bundle h3,
#pricing .pricing-compare h3,
#pricing .pricing-table th,
#pricing .pricing-table tbody th {
  color: #162233;
}

#pricing .price {
  color: #213852;
}

#pricing .plan-fit,
#pricing .plan-includes,
#pricing .price-card li,
#pricing .price span,
#pricing .pricing-bundle,
#pricing .pricing-compare,
#pricing .pricing-table td,
#pricing .price-card p {
  color: #314a67;
}

#pricing .pricing-bundle li,
#pricing .bundle-list,
#pricing .pricing-table td,
#pricing .pricing-table tbody td {
  color: #314a67;
}

#pricing .price-card li,
#pricing .pricing-table td,
#pricing .pricing-bundle li {
  font-weight: 500;
}

#pricing .plan-includes {
  color: #1f344b;
}

#pricing .price-card li::before {
  color: #c9902d;
}

#pricing .price-note {
  color: #51657d;
}

#pricing .price-card .btn {
  min-height: 54px;
  border-radius: 999px;
  font-weight: 700;
}

#pricing .price-card .btn.is-disabled {
  opacity: 1;
  color: #223349;
  background: linear-gradient(180deg, #f1e4c7 0%, #ebdcc0 100%);
  border-color: rgba(34, 51, 73, 0.12);
  box-shadow: none;
}

#pricing .price-card .btn.btn-ghost {
  color: #223349;
  background: #ffffff;
  border-color: rgba(34, 51, 73, 0.14);
}

#pricing .price-card .btn.btn-ghost:hover,
#pricing .price-card .btn.btn-ghost:focus-visible {
  background: #f7f9fc;
}

#pricing .price-card .btn.btn-primary {
  color: #18202e;
  background: linear-gradient(135deg, #f3d188 0%, #fbf0d0 100%);
  border-color: rgba(17, 24, 39, 0.08);
}

#pricing .billing-toggle {
  background: rgba(17, 24, 39, 0.04);
}

#pricing .billing-option {
  color: #42566f;
  font-weight: 700;
}

#pricing .billing-option.active {
  color: #ffffff;
  background: linear-gradient(135deg, #d6a74f 0%, #edc979 100%);
}

#pricing .pricing-bundle,
#pricing .pricing-compare {
  margin-top: 18px;
  padding: 22px 24px;
}

#pricing .pricing-table thead th,
#pricing .pricing-table tbody th,
#pricing .pricing-table td {
  border-top-color: rgba(17, 24, 39, 0.08);
}

.faq-list {
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0 16px;
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  padding: 16px 0;
  color: #141d2a;
  cursor: pointer;
}

.faq-list p {
  color: #607087;
}

.site-footer {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto 34px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(17, 24, 39, 0.92);
  color: rgba(248, 246, 239, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 980px) {
  .hero,
  .quickflow,
  .sample-grid,
  .grid-3,
  .demo-insights,
  .readiness-grid,
  .hero-metrics,
  .signal-band,
  .style-gallery-grid,
  .hero-style-preview,
  .demo-stage {
    grid-template-columns: 1fr;
  }

  .trial-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .bundle-list {
    grid-template-columns: 1fr;
  }

  .voice-row {
    align-items: flex-start;
  }

  #instantDemoBtn {
    width: auto;
  }

  .topbar {
    width: min(1180px, calc(100vw - 24px));
    padding: 12px 14px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .topbar-cta {
    width: 100%;
  }

  .hero {
    padding: 24px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-transform-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-wrap {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .topbar {
    position: static;
  }

  .topbar nav {
    gap: 8px;
  }

  .topbar-cta {
    display: none;
  }

  .feedback-widget {
    top: auto;
    bottom: 18px;
    right: 14px;
    transform: none;
  }

  .feedback-trigger {
    padding: 10px 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
