/* Pepperdose — dark editorial funnel */

:root {
  --bg: #0a0b0d;
  --bg-elevated: #12141a;
  --bg-card: #161922;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e8eaef;
  --text-muted: #8b919e;
  --accent: #e85d3b;
  --accent-soft: rgba(232, 93, 59, 0.14);
  --accent-glow: rgba(232, 93, 59, 0.35);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Top bar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(10, 11, 13, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #c43d1f);
  box-shadow: 0 0 20px var(--accent-glow);
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.topbar-end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
}

.lang-select {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1.75rem 0.4rem 0.75rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b919e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  max-width: 9rem;
}

.lang-select:hover,
.lang-select:focus {
  border-color: var(--border-strong);
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.version-tag {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  opacity: 0.7;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  min-height: calc(100vh - var(--header-h));
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: #fff;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 2rem;
}

.hero-lead strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  background: #f06a48;
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: var(--bg-elevated);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stats dt {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.hero-stats dd {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Vial visual */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vial-card {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.vial-cap {
  width: 36px;
  height: 14px;
  margin: 0 auto -2px;
  background: linear-gradient(180deg, #3a3f4d, #252830);
  border-radius: 4px 4px 0 0;
}

.vial-body {
  position: relative;
  width: 120px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--border-strong);
  border-radius: 8px 8px 16px 16px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow:
    0 0 60px var(--accent-glow),
    inset 0 0 40px rgba(0, 0, 0, 0.4);
}

.vial-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62%;
  background: linear-gradient(180deg, rgba(232, 93, 59, 0.5), rgba(232, 93, 59, 0.85));
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.vial-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 4rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Sections */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-alt {
  background: var(--bg-elevated);
  max-width: none;
  padding-left: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.section-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 0 2.5rem;
}

.section-intro strong {
  color: var(--text);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.prose p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.prose strong {
  color: var(--text);
}

.callout {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}

.callout h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.callout p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Pens vs vials warning (optional per locale) */

.section-pens {
  padding-top: 0;
  padding-bottom: 3rem;
}

.pens-warning {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg, rgba(232, 93, 59, 0.1), rgba(232, 93, 59, 0.02));
  border: 1px solid rgba(232, 93, 59, 0.35);
  border-radius: var(--radius-lg);
}

.pens-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  background: rgba(232, 93, 59, 0.15);
  border-radius: 8px;
}

.pens-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.pens-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.pens-content p {
  color: var(--text-muted);
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
}

.pens-content strong {
  color: var(--text);
}

.pens-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.pens-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pens-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.pens-list li:first-child::before {
  content: "✓";
  color: #4ade80;
}

.format-compare {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.format-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 100px;
}

.format-vial {
  border-color: rgba(74, 222, 128, 0.3);
}

.format-pen {
  border-color: rgba(232, 93, 59, 0.35);
  opacity: 0.85;
}

.mini-vial {
  width: 36px;
  height: 56px;
  border: 2px solid var(--border-strong);
  border-radius: 4px 4px 8px 8px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.mini-vial-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.4), rgba(74, 222, 128, 0.7));
}

.mini-pen {
  width: 28px;
  height: 64px;
  border-radius: 4px 4px 12px 12px;
  background: linear-gradient(180deg, #3a3f4d 0%, #3a3f4d 18%, rgba(232, 93, 59, 0.3) 18%, rgba(232, 93, 59, 0.5) 100%);
  border: 2px solid rgba(232, 93, 59, 0.4);
  position: relative;
}

.mini-pen::before {
  content: "?";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.format-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.format-ok { color: #4ade80; }
.format-no { color: var(--accent); }

.format-note {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .pens-warning {
    grid-template-columns: 1fr;
  }

  .pens-visual {
    order: -1;
  }
}

/* Cards grid */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.card:hover {
  border-color: var(--border-strong);
}

.card-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Price block */

.price-block {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-soft), transparent 60%);
  border: 1px solid rgba(232, 93, 59, 0.25);
  padding: 2px;
}

.price-block-inner {
  padding: 2rem 2.25rem;
  background: var(--bg-card);
  border-radius: calc(var(--radius-lg) - 2px);
}

.price-label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.price-amount {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
}

.price-amount span {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
}

.price-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 42rem;
}

/* Checklist */

.checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.check-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.check-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 10px;
}

.check-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.check-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.muted-center {
  text-align: center;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 0.95rem;
}

.muted-center strong {
  color: var(--text);
}

/* Report stack */

.report-stack {
  position: relative;
  height: 220px;
}

.report-sheet {
  position: absolute;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.report-sheet code {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.report-1 { top: 0; transform: rotate(-2deg); z-index: 3; }
.report-2 { top: 70px; transform: rotate(1deg); z-index: 2; opacity: 0.92; }
.report-3 { top: 140px; transform: rotate(-1deg); z-index: 1; opacity: 0.85; }

/* Action list */

.action-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.action-list li {
  position: relative;
  padding: 1.1rem 1.25rem 1.1rem 2.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.action-list li::before {
  content: "→";
  position: absolute;
  left: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}

.action-list strong {
  color: var(--text);
}

/* CTA */

.cta-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.cta-card {
  text-align: center;
  padding: 3.5rem 2rem;
  background:
    radial-gradient(ellipse at top, var(--accent-soft), transparent 55%),
    var(--bg-card);
  border: 1px solid rgba(232, 93, 59, 0.3);
  border-radius: var(--radius-lg);
}

.cta-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-card h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 0 1rem;
}

.cta-lead {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.code-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.75rem 1rem 0.75rem 1.5rem;
  margin-bottom: 0.5rem;
  background: var(--bg);
  border: 1px dashed var(--border-strong);
  border-radius: 999px;
}

.code-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.code-value {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.code-copy {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
}

.code-copy:hover {
  background: var(--bg-card);
}

.code-copy.copied {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.3);
}

.code-hint {
  margin: 0 0 1.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.seller-domain {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Conclusion */

.conclusion {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.conclusion blockquote {
  margin: 0;
  padding: 2rem 2.25rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text-muted);
  border-left: 3px solid var(--accent);
  background: var(--bg-elevated);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.conclusion strong {
  color: var(--text);
  font-style: normal;
}

/* Footer */

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Sticky CTA */

.sticky-cta {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.65rem 0.65rem 1.25rem;
  background: rgba(18, 20, 26, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  color: var(--text-muted);
  animation: slideUp 0.4s ease;
}

.sticky-cta strong {
  color: var(--accent);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .vial-body {
    width: 90px;
    height: 150px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .split,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .report-stack {
    height: 200px;
    margin-top: 1rem;
  }

  .badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .sticky-cta {
    left: 1rem;
    right: 1rem;
    transform: none;
    justify-content: space-between;
    border-radius: var(--radius);
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Story page */

.story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 3rem;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
}

.story-article {
  min-width: 0;
}

.story-article h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 780px;
  margin: 0 0 1.25rem;
}

.story-deck {
  max-width: 720px;
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.story-proof-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 0 3rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-soft), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(232, 93, 59, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.story-proof-card span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-proof-card strong {
  color: var(--text);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.story-chart {
  margin: 0 0 3rem;
  padding: 0.75rem;
  background:
    linear-gradient(135deg, rgba(232, 93, 59, 0.12), transparent 38%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.story-chart img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 6px);
}

.story-content {
  max-width: 760px;
  color: var(--text-muted);
}

.story-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  margin: 3rem 0 1rem;
}

.story-content p,
.story-content li {
  font-size: 1.05rem;
}

.story-content p {
  margin: 0 0 1.1rem;
}

.story-content strong {
  color: var(--text);
}

.story-content ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.2rem;
  margin: 1rem 0 1.5rem;
}

.story-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
}

.story-content blockquote p:last-child {
  margin-bottom: 0;
}

.story-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.story-cta-card {
  padding: 2rem;
}

@media (max-width: 900px) {
  .story-shell {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .story-sidebar {
    position: static;
  }
}
