/* ==========================================================================
   READYSETAI — BESPOKE EDITORIAL LIGHT DESIGN SYSTEM
   Inspired by Demand Curve, Refactoring UI, Relume & Stripe Press
   Warm Architectural Canvas, Deep Obsidian Ink, Tactile Deliverable Cards
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --c-bg:          #fafaf9;   /* Warm architectural stone/ivory */
  --c-surface:     #ffffff;   /* Pure white card elevation */
  --c-surface-sub: #f4f4f5;   /* Subtle zinc inset */
  --c-surface-dark:#09090b;   /* Obsidian accent card */
  --c-border:      #e4e4e7;   /* Refined 1px architectural line */
  --c-border-dark: #18181b;   /* Strong contrast border */
  --c-ink:         #09090b;   /* Deep obsidian ink headlines */
  --c-ink-body:    #3f3f46;   /* Rich editorial reading text */
  --c-ink-muted:   #71717a;   /* Secondary metadata / labels */
  --c-black:       #000000;
  --c-white:       #ffffff;
  
  --font-sans:     'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif:    'Instrument Serif', Georgia, serif;
  --font-mono:     'Space Mono', monospace;
  
  --max-w:         1040px;    /* Focused, Highly Readable Editorial Width */
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     14px;
  
  --shadow-sm:     0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md:     0 4px 20px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg:     0 12px 32px -4px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--c-bg);
}

body {
  background-color: var(--c-bg);
  color: var(--c-ink-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-nav {
  background: rgba(250, 250, 249, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-badge {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  white-space: nowrap;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-ink-muted);
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--c-ink);
}

.btn-nav-cta {
  background: var(--c-ink);
  color: #ffffff !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.15s ease;
  border: 1px solid var(--c-ink);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.btn-nav-cta:hover {
  background: #ffffff;
  color: var(--c-ink) !important;
  border-color: var(--c-ink);
}

/* ==========================================================================
   HERO / STORY HOOK
   ========================================================================== */
.hero-story-banner {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--c-border);
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--c-ink);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-story-h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--c-ink);
  margin-bottom: 24px;
}

.hero-story-h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--c-ink);
}

.hero-story-lead {
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
  color: var(--c-ink-body);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 860px;
}

/* Before / After Real-World Contrast Card */
.story-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.story-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}

.story-card.active-brand {
  border: 2px solid var(--c-ink);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.card-top-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-chat-bubble {
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--c-ink);
  margin-bottom: 14px;
  line-height: 1.5;
}

.card-result-text {
  font-size: 14px;
  color: var(--c-ink-body);
  line-height: 1.6;
}

.citation-chip {
  background: var(--c-ink);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
}

/* ==========================================================================
   INTERACTIVE 30-SECOND DIAGNOSTIC QUIZ
   ========================================================================== */
.diagnostic-quiz-container {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 36px;
  box-shadow: var(--shadow-md);
}

.quiz-question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-surface-sub);
  gap: 16px;
}

.quiz-question-text {
  font-size: 14.5px;
  color: var(--c-ink);
  line-height: 1.5;
}

.quiz-btn-group {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.quiz-btn {
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  color: var(--c-ink-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.quiz-btn.selected-yes {
  background: var(--c-ink);
  color: #ffffff;
  border-color: var(--c-ink);
}

.quiz-btn.selected-no {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}

.quiz-btn.selected-unsure {
  background: #fef3c7;
  color: #92400e;
  border-color: #fcd34d;
}

.quiz-hint {
  display: block;
  font-size: 12.5px;
  color: var(--c-ink-muted);
  margin-top: 4px;
  line-height: 1.45;
}

.quiz-score-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.score-meter-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.score-figure {
  font-size: 38px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--c-ink);
}

/* ==========================================================================
   STORY SECTIONS (THE ARC)
   ========================================================================== */
.story-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--c-border);
}

.chapter-number {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-ink-muted);
  margin-bottom: 8px;
  display: block;
}

.chapter-h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.6px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.chapter-lead-p {
  font-size: 16.5px;
  color: var(--c-ink-body);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* 3-Column Explanatory Cards */
.story-trio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.story-trio-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease;
}

.story-trio-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trio-icon-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.trio-card-title {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 10px;
}

.trio-card-desc {
  font-size: 14px;
  color: var(--c-ink-body);
  line-height: 1.65;
}

/* ==========================================================================
   THE UNBOXING EXPERIENCE (WHAT'S IN THE ZIP)
   ========================================================================== */
.unboxing-container {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
}

.unboxing-header {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.unboxing-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.unbox-step-card {
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.unbox-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-ink-muted);
  margin-bottom: 8px;
  display: block;
}

.unbox-step-h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 8px;
}

.unbox-step-p {
  font-size: 13.5px;
  color: var(--c-ink-body);
  line-height: 1.55;
}

/* Tab Inspector */
.tab-filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--c-ink-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--c-ink);
  color: #ffffff;
  border-color: var(--c-ink);
}

.terminal-box {
  background: #0f172a;
  color: #e2e8f0;
  border: 1px solid #1e293b;
  border-radius: var(--radius-sm);
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
  min-height: 190px;
  box-shadow: var(--shadow-sm);
}

/* 4 Feature Columns */
.quad-deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.quad-col {
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}

.quad-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--c-ink-muted);
  margin-bottom: 4px;
  display: block;
}

.quad-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.quad-desc {
  font-size: 13.5px;
  color: var(--c-ink-body);
  line-height: 1.55;
}

/* ==========================================================================
   "LOOK INSIDE" SAMPLE DELIVERABLE PREVIEWS
   ========================================================================== */
.sample-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.sample-preview-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s ease;
}

.sample-preview-card:hover {
  border-color: var(--c-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.sample-preview-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 6px;
}

.sample-preview-card p {
  font-size: 12.5px;
  color: var(--c-ink-body);
  line-height: 1.5;
  margin-bottom: 14px;
}

.sample-preview-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   WHO THIS IS FOR (2 FOCUSED TRACKS)
   ========================================================================== */
.audience-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.audience-benefit {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-surface-sub);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--c-border);
  width: fit-content;
}

/* ==========================================================================
   DUAL PRICING GRID ($99 SOLO vs $249 AGENCY)
   ========================================================================== */
.pricing-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-md);
}

.pricing-card.solo-tier {
  border: 1px solid var(--c-border);
}

.pricing-card.agency-tier {
  border: 2px solid var(--c-ink);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.pricing-popular-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--c-ink);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-card-header {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.pricing-plan-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-ink);
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 10px;
}

.pricing-price-num {
  font-size: 38px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--c-ink);
}

.pricing-price-term {
  font-size: 13px;
  color: var(--c-ink-muted);
  font-family: var(--font-mono);
}

.pricing-desc {
  font-size: 13.5px;
  color: var(--c-ink-body);
  margin-top: 8px;
  line-height: 1.5;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 13.5px;
  color: var(--c-ink-body);
  padding: 8px 0;
  border-bottom: 1px solid var(--c-surface-sub);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pricing-features-list li span.check-icon {
  color: var(--c-ink);
  font-weight: 800;
  font-size: 12px;
}

.btn-pricing-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--c-surface);
  color: var(--c-ink);
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1.5px solid var(--c-border);
  transition: all 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.btn-pricing-secondary:hover {
  background: var(--c-ink);
  color: #ffffff;
  border-color: var(--c-ink);
}

.btn-pricing-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--c-ink);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  padding: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1.5px solid var(--c-ink);
  transition: all 0.15s ease;
  box-shadow: var(--shadow-md);
}

.btn-pricing-primary:hover {
  background: #ffffff;
  color: var(--c-ink);
  border-color: var(--c-ink);
  transform: translateY(-2px);
}

.docket-trust-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  color: var(--c-ink-muted);
  margin-top: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
}

/* ==========================================================================
   IRONCLAD RISK-REVERSAL GUARANTEE
   ========================================================================== */
.guarantee-badge-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin: 32px auto 0;
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.guarantee-icon {
  font-size: 32px;
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.story-faq-box {
  max-width: 760px;
  margin: 32px auto 0;
}

.story-faq-item {
  border-bottom: 1px solid var(--c-border);
}

.story-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
  text-align: left;
  cursor: pointer;
}

.story-faq-btn svg {
  transition: transform 0.2s ease;
  color: var(--c-ink-muted);
}

.story-faq-content {
  display: none;
  padding-bottom: 20px;
  font-size: 14.5px;
  color: var(--c-ink-body);
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--c-surface);
  color: var(--c-ink-muted);
  padding: 60px 0 40px;
  border-top: 1px solid var(--c-border);
}

.footer-inner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-ink);
}

.footer-brand-title span {
  color: var(--c-ink-muted);
}

.footer-links-row {
  display: flex;
  gap: 20px;
}

.footer-links-row a {
  font-size: 13px;
  color: var(--c-ink-body);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links-row a:hover {
  color: var(--c-ink);
}

/* ==========================================================================
   FREE IN-BROWSER /llms.txt GENERATOR & VALIDATOR TOOL
   ========================================================================== */
.generator-wrapper {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
}

.gen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
}

.gen-field-group {
  margin-bottom: 16px;
}

.gen-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.gen-input {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--c-ink);
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s;
}

.gen-input:focus {
  border-color: var(--c-ink);
  background: #ffffff;
}

.gen-textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--c-ink);
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  outline: none;
  min-height: 64px;
  resize: vertical;
  line-height: 1.5;
  transition: border-color 0.15s;
}

.gen-textarea:focus {
  border-color: var(--c-ink);
  background: #ffffff;
}

.gen-preset-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.gen-preset-btn {
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--c-ink-muted);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
}

.gen-preset-btn:hover, .gen-preset-btn.active {
  background: var(--c-ink);
  color: #ffffff;
  border-color: var(--c-ink);
}

.gen-output-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gen-code-preview {
  background: #0f172a;
  color: #e2e8f0;
  border: 1px solid #1e293b;
  border-radius: var(--radius-sm);
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
  flex-grow: 1;
  min-height: 250px;
  max-height: 380px;
  overflow-y: auto;
}

.gen-actions-bar {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.btn-gen-action {
  background: var(--c-ink);
  color: #ffffff;
  border: 1px solid var(--c-ink);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}

.btn-gen-action:hover {
  background: #ffffff;
  color: var(--c-ink);
}

.btn-gen-action.secondary {
  background: var(--c-surface);
  color: var(--c-ink);
  border-color: var(--c-border);
}

.btn-gen-action.secondary:hover {
  background: var(--c-surface-sub);
  border-color: var(--c-ink);
}

.gen-upsell-banner {
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-nav-toggle {
  display: none;
  background: var(--c-surface-sub);
  border: 1px solid var(--c-border);
  color: var(--c-ink);
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
}

/* Testimonials & Social Proof */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--c-ink-body);
  margin-bottom: 20px;
}

.testimonial-quote strong {
  color: var(--c-ink);
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--c-border);
  padding-top: 14px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-ink);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
}

.testimonial-role {
  font-size: 11.5px;
  color: var(--c-ink-muted);
  font-family: var(--font-mono);
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-inner { position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--c-border);
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    box-shadow: var(--shadow-md);
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .story-comparison-grid { grid-template-columns: 1fr; }
  .unboxing-steps-grid { grid-template-columns: 1fr; }
  .quad-deliverables-grid { grid-template-columns: 1fr; }
  .pricing-dual-grid { grid-template-columns: 1fr; }
  .sample-preview-grid { grid-template-columns: 1fr; }
  .gen-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .guarantee-badge-box { flex-direction: column; text-align: center; }
  .quiz-question-row { flex-direction: column; align-items: flex-start; }
  .quiz-btn-group { width: 100%; justify-content: flex-end; }
}
