/* =========================================================================
   Monk Router — Landing page styles
   =========================================================================
   Built on tokens.css + components.css. Adds: hero, live routing stream,
   savings calculator, bento grid, story steps, comparison, personas,
   social proof, and scroll-reveal animations.
   ========================================================================= */

/* ---- Editorial font pairing ----
   Serif headlines (Apple New York / Georgia fallback) give an editorial,
   human feel. Body stays system sans, tightened. */
.hero h1,
.section-title,
.story-content h3,
.bento-cell h3,
.enterprise-section h3,
.calc-savings-amount,
.bento-metric-value,
.social-stat,
.counter-value,
.persona-name,
.cta-section h2 {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "Palatino", Georgia, serif;
  font-weight: 700;
}

/* ---- Bento SVG icons ---- */
.bento-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.bento-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Nav ---- */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.landing-nav .brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--font-lg);
  color: var(--text);
  text-decoration: none;
}
.landing-nav .brand:hover { text-decoration: none; }
.landing-nav .brand .mark {
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--surface);
  display: grid; place-items: center;
  font-size: var(--font-base);
}
.landing-nav .nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.landing-nav .nav-links a {
  color: var(--text-muted);
  font-size: var(--font-sm);
  font-weight: 500;
}
.landing-nav .nav-links a:hover { color: var(--text); text-decoration: none; }

.landing {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ---- Layout helpers ---- */
.section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
  border-top: 1px solid var(--border);
}
.section-title {
  font-size: var(--font-2xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: var(--font-lg);
  color: var(--text-muted);
  text-align: center;
  max-width: 56ch;
  margin: 0 auto var(--space-6);
}
.accent-text { color: var(--accent); }
.success-text { color: var(--success); }
.check { color: var(--success); font-weight: 700; }
.dash { color: var(--text-muted); }

/* ---- Hero ---- */
.hero {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-8) var(--space-6) var(--space-7);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: var(--font-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-4);
}
.hero .subhead {
  font-size: var(--font-lg);
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 0 var(--space-5);
  line-height: 1.6;
}
.cta-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}
.trust-item {
  font-size: var(--font-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ---- Window chrome (shared) ---- */
.window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.titlebar {
  background: var(--surface-alt);
  padding: var(--space-2) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border-bottom: 1px solid var(--border);
}
.titlebar .dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.titlebar .dot.red { background: #FF5F57; }
.titlebar .dot.yellow { background: #FEBC2E; }
.titlebar .dot.green { background: #28C840; }
.titlebar .title {
  flex: 1;
  text-align: center;
  font-size: var(--font-sm);
  color: var(--text-muted);
}
.titlebar .status-running {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-sm);
  color: var(--success);
}
.titlebar .status-running .badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.window-body { padding: var(--space-5); }

/* ---- Live routing stream ---- */
.stream-counter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.counter-stat {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
}
.counter-value {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--success);
  font-variant-numeric: tabular-nums;
}
.counter-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
}
.stream-table {
  font-size: var(--font-sm);
}
.stream-header {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.5fr 0.8fr 0.6fr 0.8fr;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.stream-rows {
  display: flex;
  flex-direction: column;
  height: 252px;
  overflow: hidden;
}
.stream-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.5fr 0.8fr 0.6fr 0.8fr;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--border);
  align-items: center;
  animation: slideIn 0.4s ease;
}
.stream-row:last-child { border-bottom: none; }
.stream-row .mono { font-size: var(--font-sm); }
.stream-row .save { color: var(--success); font-weight: 600; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Savings calculator ---- */
.section-calc {
  background: var(--surface-alt);
}
.calc-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.calc-inputs {
  padding: var(--space-6);
  border-right: 1px solid var(--border);
}
.calc-field {
  margin-bottom: var(--space-5);
}
.calc-field:last-child { margin-bottom: 0; }
.spend-input-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.spend-prefix {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--text-muted);
}
.spend-input {
  flex: 1;
  font-size: var(--font-lg);
  font-weight: 700;
}
.spend-suffix {
  font-size: var(--font-sm);
  color: var(--text-muted);
}
.calc-dial .dial-option {
  padding: var(--space-3);
}
.calc-dial .dial-option .dial-name {
  font-size: var(--font-base);
}
.calc-dial .dial-option .dial-desc {
  color: var(--success);
  font-weight: 600;
}

.calc-results {
  padding: var(--space-6);
  background: color-mix(in srgb, var(--accent) 4%, var(--surface));
}
.calc-result-hero {
  text-align: center;
  margin-bottom: var(--space-5);
}
.calc-savings-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.calc-savings-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
}
.calc-result-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.calc-mini-stat {
  text-align: center;
}
.calc-mini-value {
  font-size: var(--font-lg);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.calc-mini-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
}
.calc-mix {
  margin-bottom: var(--space-4);
}
.calc-mix-title {
  font-size: var(--font-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.calc-mix-bar {
  display: flex;
  height: 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.calc-mix-segment {
  transition: width 0.4s ease;
}
.calc-mix-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--font-sm);
}
.calc-mix-legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.calc-mix-legend-item .sw {
  width: 10px; height: 10px; border-radius: var(--radius-sm);
}
.calc-disclaimer {
  font-size: var(--font-sm);
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-4) var(--space-6);
  margin: 0;
  border-top: 1px solid var(--border);
}

/* ---- Bento grid ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: var(--space-4);
}
.bento-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.bento-cell:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-medium {
  grid-column: span 1;
  grid-row: span 2;
}
.bento-wide {
  grid-column: span 3;
}
.bento-small {
  grid-column: span 1;
}
.bento-icon {
  font-size: 2rem;
  margin-bottom: var(--space-1);
}
.bento-cell h3 {
  font-size: var(--font-lg);
  font-weight: 700;
  margin: 0;
}
.bento-cell p {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.bento-metric {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}
.bento-metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.bento-metric-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
}
.bento-code {
  margin-top: auto;
  font-family: "SF Mono", Menlo, monospace;
  font-size: var(--font-sm);
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  line-height: 1.6;
}
.bento-code-comment {
  color: var(--text-muted);
}
.bento-floor {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.floor-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-sm);
}
.bento-tags {
  margin-top: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ---- Story steps ---- */
.section-story {
  background: var(--surface-alt);
}
.story-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}
.story-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}
.story-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.story-content h3 {
  font-size: var(--font-xl);
  font-weight: 700;
  margin: 0 0 var(--space-3);
}
.story-content p {
  font-size: var(--font-base);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-4);
}
.story-code {
  font-family: "SF Mono", Menlo, monospace;
  font-size: var(--font-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
}
.story-prompt {
  color: var(--accent);
  font-weight: 700;
  margin-right: var(--space-2);
}
.story-flow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.flow-node {
  padding: var(--space-2) var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--font-sm);
  font-weight: 600;
}
.flow-highlight {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  color: var(--accent);
}
.flow-arrow {
  color: var(--text-muted);
}
.story-savings {
  display: flex;
  gap: var(--space-5);
}
.story-savings-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}
.story-savings-value {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--success);
}
.story-savings-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
}

/* Mini windows for story visuals */
.mini-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mini-window .titlebar {
  padding: var(--space-2) var(--space-3);
}
.mini-window-body {
  padding: var(--space-4);
}
.mini-step {
  font-size: var(--font-sm);
  padding: var(--space-2) 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mini-step:last-child { border-bottom: none; }
.mini-step.active { color: var(--success); }
.mini-step.current { color: var(--accent); font-weight: 600; }
.mini-decision {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mini-decision-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-sm);
}
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  height: 80px;
}
.mini-bar {
  flex: 1;
  background: var(--success);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  min-height: 4px;
  opacity: 0.7;
}
.mini-bar.highlight {
  background: var(--accent);
  opacity: 1;
}
.mini-chart-axis {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.mini-chart-axis span {
  flex: 1;
  text-align: center;
  font-size: var(--font-sm);
  color: var(--text-muted);
}

/* ---- Product cards ---- */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.product-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}
.product-card .product-name {
  font-size: var(--font-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.product-card .product-price {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--accent);
}
.product-blurb {
  font-size: var(--font-sm);
  margin: 0;
}
.product-card .product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.product-card .product-features li {
  font-size: var(--font-sm);
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}
.product-card .product-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Comparison ---- */
.comparison-card {
  padding: 0;
  overflow-x: auto;
}
.comparison-table {
  font-size: var(--font-sm);
}
.comparison-table th,
.comparison-table td {
  padding: var(--space-3) var(--space-4);
  text-align: center;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}
.comparison-table .col-monk {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  font-weight: 600;
}
.comparison-table th.col-monk {
  color: var(--accent);
}

/* ---- Pricing ---- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-sm);
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: var(--space-4);
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-table td:first-child {
  font-weight: 600;
}
.pricing-note {
  text-align: center;
  font-size: var(--font-sm);
  margin-top: var(--space-4);
}

/* ---- Personas ---- */
.persona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.persona-card-cta {
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  border-color: var(--accent);
  justify-content: center;
  text-align: center;
}
.persona-role {
  font-size: var(--font-sm);
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.persona-name {
  font-size: var(--font-xl);
  font-weight: 700;
}
.persona-quote {
  font-size: var(--font-base);
  font-style: italic;
  color: var(--text);
  margin: 0;
}
.persona-card .text-muted {
  font-size: var(--font-sm);
  margin: 0;
}

/* ---- Enterprise ---- */
.enterprise-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.enterprise-section h3 {
  font-size: var(--font-xl);
  font-weight: 700;
  margin: 0 0 var(--space-3);
}
.ent-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.ent-features li {
  font-size: var(--font-sm);
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}
.ent-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Social proof ---- */
.section-social {
  text-align: center;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.social-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  text-align: center;
}
.social-stat {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.social-stat-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
}
.social-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-5);
  padding: var(--space-5) 0;
}
.social-logo {
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--text-muted);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

/* ---- CTA ---- */
.cta-section {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-top: 1px solid var(--border);
}
.cta-section h2 {
  font-size: var(--font-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.cta-section p {
  font-size: var(--font-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-row {
  justify-content: center;
}

/* ---- Footer ---- */
.landing-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-6);
  background: var(--surface);
}
.landing-footer .footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.landing-footer .brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--font-lg);
  color: var(--text);
}
.landing-footer .brand .mark {
  width: 24px; height: 24px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--surface);
  display: grid; place-items: center;
  font-size: var(--font-sm);
}
.landing-footer .footer-links {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.landing-footer .footer-links a {
  font-size: var(--font-sm);
  color: var(--text-muted);
}
.landing-footer .footer-links a:hover { color: var(--text); text-decoration: none; }
.footer-copy {
  font-size: var(--font-sm);
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-visual { order: -1; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-inputs { border-right: none; border-bottom: 1px solid var(--border); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-large, .bento-medium, .bento-wide { grid-column: span 2; grid-row: span 1; }
  .story-step { grid-template-columns: 60px 1fr; }
  .story-visual { grid-column: 2; }
  .enterprise-section { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .landing-nav .nav-links a:not(.btn) { display: none; }
  .section { padding: var(--space-6) var(--space-4); }
  .hero { padding: var(--space-6) var(--space-4); }
  .section-title { font-size: var(--font-xl); }
  .hero h1 { font-size: 1.8rem; }
  .bento { grid-template-columns: 1fr; }
  .bento-large, .bento-medium, .bento-wide, .bento-small { grid-column: span 1; }
  .calc-result-row { grid-template-columns: 1fr; gap: var(--space-3); }
  .stream-header { font-size: 0.7rem; }
  .stream-row { font-size: 0.7rem; }
  .comparison-table { font-size: 0.75rem; }
  .story-flow { font-size: var(--font-sm); }
  .cta-section { padding: var(--space-6) var(--space-4); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .stream-row { animation: none; }
  .badge-dot { animation: none; }
  .bento-cell:hover { transform: none; }
}
