:root {
  --sand: #f5f0e8;
  --sand-2: #ebe4d8;
  --espresso: #1a1410;
  --espresso-2: #2a221c;
  --espresso-3: #3d3229;
  --gold: #c49a3c;
  --gold-light: #ddb85a;
  --sunset: #e8a87c;
  --terra: #b85c38;
  --twilight: #141018;
  --incense: #6b5b7a;
  --river: #4a6b7a;
  --muted: #8a7f72;
  --border: rgba(26, 20, 16, 0.1);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 76px;
  --radius: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 24px); }

body {
  font-family: var(--sans);
  background: var(--sand);
  color: var(--espresso);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: 52px;
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  overscroll-behavior-y: contain;
  -webkit-tap-highlight-color: transparent;
}

.container { width: min(1080px, calc(100% - 48px)); margin-inline: auto; }
.container-wide { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }

/* Progress */
.read-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--sunset));
  width: 0%; transition: width .1s linear;
}

/* Header */
.site-header {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 100;
  height: var(--header);
  transition: all .4s var(--ease);
}
.site-header.scrolled .header-inner {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(26, 20, 16, 0.06);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid transparent; border-radius: 999px;
  transition: all .4s var(--ease);
}
.logo {
  font-family: var(--display);
  font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-decoration: none; color: var(--espresso);
}
.nav { display: flex; gap: 1.75rem; list-style: none; }
.nav a {
  font-size: 0.82rem; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--espresso); }
.nav-cta {
  padding: 0.55rem 1.2rem !important;
  background: var(--espresso) !important;
  color: var(--sand) !important;
  border-radius: 999px;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 24px; height: 18px; position: relative; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--espresso); position: absolute; left: 0; }
.nav-toggle span:first-child { top: 0; } .nav-toggle span:last-child { bottom: 0; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--header) + 48px) 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(196, 154, 60, 0.08), transparent),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(232, 168, 124, 0.18), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(196, 154, 60, 0.15), transparent),
    var(--sand);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center;
}
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1.25rem; font-weight: 500;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300; line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead {
  font-size: 1.15rem; color: var(--muted); max-width: 34rem;
  margin-bottom: 2rem; line-height: 1.75;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.pill {
  font-size: 0.75rem; padding: 0.4rem 0.9rem;
  background: var(--sand-2); border: 1px solid var(--border);
  border-radius: 999px; color: var(--espresso-3);
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.6rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .25s var(--ease); font-family: inherit;
}
.btn-dark { background: var(--espresso); color: var(--sand); }
.btn-dark:hover { background: var(--espresso-2); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1.5px solid var(--espresso); color: var(--espresso); }
.btn-outline:hover { background: var(--espresso); color: var(--sand); }
.btn-gold { background: var(--gold); color: var(--espresso); }
.btn-gold:hover { background: var(--gold-light); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.78rem; }

.hero-card {
  background: var(--espresso);
  color: var(--sand);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative; overflow: hidden;
}
.hero-card::after {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(196,154,60,0.2), transparent 70%);
  pointer-events: none;
}
.hero-card-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.hero-card-quote {
  font-family: var(--serif);
  font-size: 1.65rem; font-style: italic;
  line-height: 1.35; margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.hero-card-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; position: relative; z-index: 1; }
.hero-card-meta div { text-align: center; padding-top: 1rem; border-top: 1px solid rgba(245,240,232,0.12); }
.hero-card-meta strong { display: block; font-family: var(--display); font-size: 1.5rem; color: var(--gold); }
.hero-card-meta span { font-size: 0.68rem; color: rgba(245,240,232,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* Sections */
.section { padding: 5.5rem 0; }
.section-dark { background: var(--espresso); color: var(--sand); }
.section-warm { background: var(--sand-2); }
.section-header { margin-bottom: 3rem; max-width: 640px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-lead { color: var(--muted); font-size: 1.05rem; }
.section-dark .section-lead { color: rgba(245,240,232,0.55); }

/* Archetype */
.archetype-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.archetype-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.archetype-card.is { border-left: 4px solid var(--gold); }
.archetype-card.not { border-left: 4px solid var(--terra); opacity: 0.85; }
.archetype-card h3 { font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.archetype-card ul { list-style: none; }
.archetype-card li { padding: 0.5rem 0; font-size: 0.95rem; color: var(--espresso-3); border-bottom: 1px solid var(--border); }
.archetype-card li:last-child { border: none; }

.lane-card {
  margin-top: 2rem;
  background: var(--espresso); color: var(--sand);
  border-radius: var(--radius); padding: 2.5rem;
  text-align: center;
}
.lane-card p { font-family: var(--serif); font-size: 1.5rem; font-style: italic; max-width: 36rem; margin: 0 auto; line-height: 1.45; }

/* Pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.pillar-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: all .3s var(--ease); cursor: default;
}
.pillar-card.you {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fff, rgba(196,154,60,0.08));
  box-shadow: 0 12px 40px rgba(196,154,60,0.12);
}
.pillar-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.pillar-card h3 { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 1rem; }
.pillar-score {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
}
.pillar-bar { height: 4px; background: var(--sand-2); border-radius: 2px; margin-top: 0.35rem; overflow: hidden; }
.pillar-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.pillar-card.you .pillar-score span { color: var(--terra); }

.stack-callout {
  margin-top: 2rem; padding: 2rem;
  background: white; border-radius: var(--radius);
  border: 1px dashed var(--gold);
}
.stack-callout h4 { font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.75rem; }
.stack-callout p { font-size: 1.05rem; line-height: 1.6; }

/* Positioning */
.pos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pos-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius); padding: 2rem;
}
.pos-block.light { background: white; border-color: var(--border); }
.pos-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.pos-block.light .pos-label { color: var(--terra); }
.pos-value { font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; }
.pos-copy {
  margin-top: 0.75rem; padding: 1rem 1.25rem;
  background: rgba(0,0,0,0.2); border-radius: 12px;
  font-family: ui-monospace, monospace; font-size: 0.82rem;
  line-height: 1.6; color: rgba(245,240,232,0.85);
  position: relative;
}
.pos-block.light .pos-copy { background: var(--sand); color: var(--espresso-3); }
.copy-btn {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--gold); color: var(--espresso);
  border: none; border-radius: 8px; padding: 0.3rem 0.6rem;
  font-size: 0.68rem; cursor: pointer; font-weight: 600;
}

/* Lifestyle visual */
.visual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.visual-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--espresso-2); min-height: 220px;
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.visual-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,20,16,0.9) 0%, transparent 60%);
}
.visual-card.v1 { background: linear-gradient(135deg, #3d2914, #1a1410); }
.visual-card.v2 { background: linear-gradient(135deg, #2a3d2e, #1a1410); }
.visual-card.v3 { background: linear-gradient(135deg, #3d2a1a, #1a1410); }
.visual-card.v4 { background: linear-gradient(135deg, #1a2a3d, #1a1410); }
.visual-card.v5 { background: linear-gradient(135deg, #3d1a2a, #1a1410); }
.visual-card.v6 { background: linear-gradient(135deg, #2a2a1a, #1a1410); }
.visual-card h4 { position: relative; font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.06em; color: var(--sand); }
.visual-card p { position: relative; font-size: 0.8rem; color: rgba(245,240,232,0.6); margin-top: 0.25rem; }

.palette { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.swatch { text-align: center; }
.swatch-color { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 0.5rem; border: 2px solid var(--border); }
.swatch span { font-size: 0.7rem; color: var(--muted); }

/* Content system */
.content-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
}
.content-half { padding: 2.5rem; }
.content-half.data { background: var(--espresso); color: var(--sand); }
.content-half h3 { font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.content-half.data h3 { color: var(--gold); }
.content-half p { font-size: 0.95rem; line-height: 1.65; }
.content-half.data p { color: rgba(245,240,232,0.7); }
.content-formula {
  margin-top: 2rem; text-align: center;
  padding: 2rem; background: var(--sand-2); border-radius: var(--radius);
  font-family: var(--serif); font-size: 1.25rem; font-style: italic;
}

.pillars-content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.content-pillar {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
}
.content-pillar .pct { font-family: var(--display); font-size: 2rem; color: var(--gold); opacity: 0.4; }
.content-pillar h4 { font-family: var(--serif); font-size: 1.2rem; margin: 0.5rem 0; }
.content-pillar p { font-size: 0.88rem; color: var(--muted); }
.content-pillar ul { margin-top: 1rem; list-style: none; }
.content-pillar li { font-size: 0.82rem; padding: 0.35rem 0; color: var(--espresso-3); }
.content-pillar li::before { content: '→ '; color: var(--gold); }

/* Attack plan */
.phases { display: flex; flex-direction: column; gap: 1rem; }
.phase {
  display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  align-items: start;
}
.phase.active { border-color: var(--gold); box-shadow: 0 8px 32px rgba(196,154,60,0.1); }
.phase-num {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--espresso); color: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
}
.phase.active .phase-num { background: var(--gold); color: var(--espresso); }
.phase h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.35rem; }
.phase-meta { font-size: 0.78rem; color: var(--terra); font-weight: 500; margin-bottom: 0.75rem; }
.phase ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 1.5rem; }
.phase li { font-size: 0.88rem; color: var(--muted); }
.phase li::before { content: '✓ '; color: var(--gold); font-weight: 600; }

.platform-card {
  background: var(--espresso); color: var(--sand);
  border-radius: var(--radius); padding: 2.5rem;
  margin-top: 2rem;
}
.platform-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.platform-item { text-align: center; padding: 1.25rem; background: rgba(255,255,255,0.04); border-radius: 14px; }
.platform-item.primary { background: rgba(196,154,60,0.15); border: 1px solid rgba(196,154,60,0.3); }
.platform-item strong { display: block; font-family: var(--display); margin-bottom: 0.25rem; }
.platform-item span { font-size: 0.75rem; color: rgba(245,240,232,0.5); }

/* Daily */
.daily-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.daily-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.daily-card h3 { font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.check-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity .2s;
}
.check-item:last-child { border: none; }
.check-item.done { opacity: 0.45; }
.check-item.done .check-text { text-decoration: line-through; }
.check-item input { margin-top: 0.2rem; accent-color: var(--gold); width: 16px; height: 16px; cursor: pointer; }
.check-text strong { display: block; font-size: 0.92rem; }
.check-text span { font-size: 0.8rem; color: var(--muted); }

.quality-tests { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.quality-test {
  padding: 1.25rem; background: var(--sand-2); border-radius: 14px;
  font-family: var(--serif); font-style: italic; font-size: 1rem; line-height: 1.45;
}

/* Captions */
.caption-list { display: flex; flex-direction: column; gap: 1rem; }
.caption-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.caption-tag {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; background: var(--sand-2);
  border-radius: 6px; color: var(--terra); flex-shrink: 0; margin-top: 0.15rem;
}
.caption-body { flex: 1; font-size: 0.92rem; line-height: 1.6; color: var(--espresso-3); }
.caption-card .btn-sm { flex-shrink: 0; }

/* Footer */
.site-footer {
  padding: 3rem 0; border-top: 1px solid var(--border);
  text-align: center;
}
.site-footer p { font-size: 0.85rem; color: var(--muted); }
.site-footer strong { color: var(--espresso); font-family: var(--display); letter-spacing: 0.1em; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .archetype-grid, .pos-grid, .content-split, .daily-grid, .pillars-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-grid, .pillars-content { grid-template-columns: 1fr 1fr; }
  .phase ul, .platform-row { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav {
    display: flex; flex-direction: column;
    position: fixed; inset: var(--header) 24px auto 24px;
    background: var(--sand); padding: 1.5rem;
    border-radius: var(--radius); border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  }
}
@media (max-width: 600px) {
  .pillars-grid, .visual-grid, .pillars-content, .quality-tests { grid-template-columns: 1fr; }
  .platform-row { grid-template-columns: 1fr; }
}

/* ── Command card (hero) ── */
.command-card {
  background: var(--espresso);
  color: var(--sand);
  border-radius: 28px;
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
}
.command-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(196,154,60,0.18), transparent 70%);
  pointer-events: none;
}
.command-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.command-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.command-stat { text-align: center; }
.command-stat span {
  display: block; font-size: 0.65rem; color: rgba(245,240,232,0.45);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.35rem;
}
.command-stat strong {
  font-family: var(--display); font-size: 1.75rem; color: var(--gold);
}
.ring {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 0.5rem;
  background: conic-gradient(var(--gold) 0deg, var(--sand-2) 0);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ring::before {
  content: attr(data-label);
  position: absolute; inset: 6px; border-radius: 50%;
  background: var(--espresso);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 600; color: var(--gold);
}
.command-note { font-size: 0.82rem; color: rgba(245,240,232,0.55); margin-bottom: 1rem; position: relative; z-index: 1; }
.command-btns { display: flex; gap: 0.5rem; position: relative; z-index: 1; }

/* ── FAB + Modal + Toast ── */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  background: var(--espresso); color: var(--sand);
  border: 1px solid rgba(196, 154, 60, 0.35);
  border-radius: 999px;
  padding: 1rem 1.5rem; font-family: var(--display);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em;
  cursor: pointer; box-shadow: 0 12px 40px rgba(196,154,60,0.35);
  transition: all .25s var(--ease);
}
.fab:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold); }

.modal-backdrop {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(26,20,16,0.55); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--sand); border-radius: 24px;
  padding: 2.5rem; max-width: 520px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative; transform: translateY(16px);
  transition: transform .3s var(--ease);
  box-shadow: 0 32px 80px rgba(26,20,16,0.2);
}
.modal-backdrop.open .modal { transform: none; }
.modal-x {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--muted); line-height: 1;
}
.modal-kicker {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 0.5rem;
}
.modal h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 1rem; }
.modal-hook {
  font-family: var(--serif); font-size: 1.2rem; font-style: italic;
  line-height: 1.45; margin-bottom: 1.25rem; color: var(--espresso-3);
}
.modal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.modal-grid div {
  background: var(--sand-2); border-radius: 12px; padding: 0.75rem;
}
.modal-grid span {
  display: block; font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.25rem;
}
.modal-grid strong { font-size: 0.82rem; }
.modal-bullets {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 1rem 1.25rem; margin-bottom: 1rem;
}
.modal-bullets span {
  display: block; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--terra); margin-bottom: 0.5rem;
}
.modal-bullets ol { margin: 0; padding-left: 1.2rem; }
.modal-bullets li { font-size: 0.9rem; padding: 0.25rem 0; color: var(--espresso-3); }
.modal-caption-wrap { margin-bottom: 1.25rem; }
.modal-caption-wrap span {
  display: block; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.5rem;
}
.modal-caption-wrap pre {
  background: var(--espresso); color: rgba(245,240,232,0.85);
  border-radius: 12px; padding: 1rem; font-size: 0.82rem;
  line-height: 1.55; white-space: pre-wrap; margin-bottom: 0.75rem;
}
.modal-actions { display: flex; gap: 0.75rem; }

.toast-wrap {
  position: fixed; bottom: 100px; right: 28px; z-index: 200;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.toast {
  background: var(--espresso); color: var(--sand);
  border-radius: 14px; padding: 0.85rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  animation: toastIn .3s var(--ease);
  max-width: 280px;
}
.toast strong { display: block; font-size: 0.85rem; margin-bottom: 0.15rem; }
.toast span { font-size: 0.78rem; color: rgba(245,240,232,0.6); }
.toast.out { opacity: 0; transform: translateX(20px); transition: all .3s; }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } }

/* ── Identity block + flywheel ── */
.identity-block {
  background: white; border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 2.5rem; margin-bottom: 2rem;
}
.identity-block blockquote {
  font-family: var(--serif); font-size: 1.5rem; font-style: italic;
  line-height: 1.4; margin-bottom: 0.75rem;
}
.identity-source { font-size: 0.82rem; color: var(--muted); }
.thesis-card {
  background: var(--espresso); color: var(--sand);
  border-radius: var(--radius); padding: 2rem; margin-bottom: 2rem;
  text-align: center;
}
.thesis-card p {
  font-family: var(--serif); font-size: 1.35rem; font-style: italic;
  line-height: 1.5; max-width: 36rem; margin: 0 auto;
}
.flywheel {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; margin-bottom: 2rem;
}
.flywheel h4 {
  font-family: var(--display); font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1rem;
}
.flywheel-chain {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.flywheel-chain span {
  font-size: 0.82rem; padding: 0.35rem 0.75rem;
  background: var(--sand-2); border-radius: 999px;
}
.flywheel-chain span:nth-child(odd) { background: var(--espresso); color: var(--sand); }
.flywheel p { font-size: 0.95rem; color: var(--muted); }

/* ── Engines ── */
.engines-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.engine-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  border-top: 4px solid var(--ec, var(--gold));
}
.engine-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.engine-card h4 {
  font-family: var(--display); font-size: 0.82rem;
  letter-spacing: 0.06em; margin-bottom: 0.5rem;
}
.engine-thesis {
  font-size: 0.88rem; color: var(--muted); line-height: 1.55;
  margin-bottom: 1rem; font-style: italic;
}
.engine-thesis em { color: var(--espresso-3); font-style: normal; font-weight: 500; }
.engine-film { list-style: none; margin-bottom: 1rem; }
.engine-film li {
  font-size: 0.8rem; padding: 0.3rem 0; color: var(--espresso-3);
  border-bottom: 1px solid var(--border);
}
.engine-film li::before { content: '→ '; color: var(--gold); }
.engine-daily {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--terra);
  padding-top: 0.75rem; border-top: 1px dashed var(--border);
}

/* ── Stories grid ── */
.stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.story-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: all .3s var(--ease);
}
.story-card:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(196,154,60,0.1); }
.story-pillar {
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 0.5rem;
}
.story-card h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.5rem; }
.story-hook {
  font-size: 0.88rem; font-style: italic; color: var(--muted);
  line-height: 1.5; flex: 1; margin-bottom: 0.75rem;
}
.story-angle {
  font-size: 0.8rem; color: var(--espresso-3); margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem; background: var(--sand-2); border-radius: 8px;
}
.story-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--muted); margin-bottom: 1rem;
  gap: 0.5rem; flex-wrap: wrap;
}
.story-source { opacity: 0.7; }
.story-card .btn { margin-top: auto; align-self: flex-start; }

/* ── Skills grid ── */
.skills-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.skill-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius); padding: 1.5rem;
}
.skill-top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.5rem;
}
.skill-top h4 { font-size: 0.88rem; }
.skill-pct { font-family: var(--display); font-size: 0.9rem; color: var(--gold); }
.skill-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-bottom: 0.75rem; overflow: hidden; }
.skill-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.skill-leverage { font-size: 0.78rem; color: rgba(245,240,232,0.55); line-height: 1.5; }

/* ── Formats grid ── */
.formats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-bottom: 2rem;
}
.format-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
}
.format-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.5rem;
}
.format-head h4 { font-family: var(--display); font-size: 0.9rem; }
.format-time {
  font-size: 0.72rem; font-weight: 600; color: var(--terra);
  background: var(--sand-2); padding: 0.25rem 0.6rem; border-radius: 999px;
}
.format-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.75rem; }
.format-how, .format-best {
  font-size: 0.8rem; color: var(--espresso-3); line-height: 1.5;
  padding-top: 0.5rem; border-top: 1px solid var(--border);
}
.format-how { margin-bottom: 0.35rem; }

.mix-bar {
  background: var(--espresso); color: var(--sand);
  border-radius: var(--radius); padding: 2rem;
}
.mix-bar h4 {
  font-family: var(--display); font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.mix-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.mix-item { font-size: 0.88rem; color: rgba(245,240,232,0.7); }
.mix-pct {
  display: block; font-family: var(--display); font-size: 1.5rem;
  color: var(--gold); margin-bottom: 0.25rem;
}

/* ── 3-3-3 system ── */
.simple-system {
  background: linear-gradient(160deg, var(--espresso), var(--espresso-2));
  color: var(--sand); border-radius: 28px;
  padding: 3rem; margin-bottom: 2.5rem;
}
.simple-system h3 {
  font-family: var(--serif); font-size: 2rem; margin-bottom: 0.5rem;
}
.simple-system .sub { color: rgba(245,240,232,0.55); margin-bottom: 2rem; }
.three-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.three-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.three-num {
  font-family: var(--display); font-size: 2.5rem;
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.three-card h4 { font-size: 0.9rem; margin-bottom: 0.35rem; }
.three-card p { font-size: 0.78rem; color: rgba(245,240,232,0.5); }

.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.slot-card {
  background: white; border: 2px dashed var(--border);
  border-radius: var(--radius); padding: 1.25rem; min-height: 140px;
  cursor: pointer; transition: all .25s var(--ease);
}
.slot-card.filled { border-style: solid; border-color: var(--gold); background: rgba(196,154,60,0.06); }
.slot-label {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 0.35rem;
}
.slot-window { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.75rem; }
.slot-hook {
  font-family: var(--serif); font-size: 0.95rem; font-style: italic;
  line-height: 1.4; color: var(--espresso-3);
}
.slot-empty { font-size: 0.82rem; color: var(--muted); font-style: italic; }

/* ── Shoot protocol ── */
.protocol-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.protocol-step {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; text-align: center;
}
.protocol-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--espresso); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700;
  margin: 0 auto 0.75rem; font-size: 0.9rem;
}
.protocol-step h4 { font-size: 0.85rem; margin-bottom: 0.25rem; }
.protocol-time { font-size: 0.68rem; color: var(--terra); font-weight: 600; margin-bottom: 0.5rem; }
.protocol-step p { font-size: 0.78rem; color: var(--muted); line-height: 1.45; }

.pipeline-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  list-style: none;
}
.pipeline-list li {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem; font-size: 0.85rem;
  color: var(--espresso-3);
}
.pipeline-list li::before { content: '→ '; color: var(--gold); font-weight: 700; }

/* ── Flow table ── */
.flow-table-wrap { overflow-x: auto; margin-bottom: 2rem; }
.flow-table {
  width: 100%; border-collapse: collapse;
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.flow-table th {
  text-align: left; padding: 1rem 1.25rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--sand-2); color: var(--muted);
}
.flow-table td { padding: 0.85rem 1.25rem; font-size: 0.9rem; border-top: 1px solid var(--border); }
.flow-time { font-family: var(--display); font-weight: 600; color: var(--terra); white-space: nowrap; }
.flow-film { color: var(--muted); font-size: 0.82rem; }
.flow-post { background: rgba(196,154,60,0.06); }
.flow-post td:first-child { color: var(--gold); }

.volume-rules { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.rule {
  background: white; border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0; padding: 1rem 1.25rem;
  font-size: 0.92rem; color: var(--espresso-3);
}

.batch-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.batch-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 0.85rem 1rem; cursor: pointer;
  font-size: 0.88rem; transition: opacity .2s;
}
.batch-item:has(input:checked) { opacity: 0.5; text-decoration: line-through; }
.batch-item input { accent-color: var(--gold); margin-top: 0.15rem; }

/* ── Phase grid + daily status ── */
.phase-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
.phase-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.phase-card.active { border-color: var(--gold); box-shadow: 0 8px 32px rgba(196,154,60,0.1); }
.phase-card span {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra); display: block; margin-bottom: 0.5rem;
}
.phase-card h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.35rem; }
.phase-card p { font-size: 0.82rem; color: var(--muted); }
.daily-status {
  text-align: center; font-family: var(--display);
  font-size: 0.9rem; color: var(--muted); margin-top: 1.5rem;
}

.adjacent-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem;
}
.adjacent-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.adjacent-card h4 { font-size: 0.88rem; margin-bottom: 0.35rem; }
.adjacent-card p { font-size: 0.78rem; color: var(--muted); }

.weekly-bar {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(245,240,232,0.1);
}
.weekly-stat strong {
  font-family: var(--display); font-size: 1.25rem; color: var(--gold);
}
.weekly-stat span {
  font-size: 0.72rem; color: rgba(245,240,232,0.45);
  text-transform: uppercase; letter-spacing: 0.08em;
}

@media (max-width: 960px) {
  .engines-grid, .stories-grid, .formats-grid, .skills-grid,
  .three-grid, .slots-grid, .protocol-grid, .pipeline-list,
  .phase-grid, .adjacent-grid, .mix-items, .batch-list { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .stories-grid, .skills-grid, .formats-grid { grid-template-columns: 1fr; }
  .fab { bottom: 16px; right: 16px; padding: 0.85rem 1.2rem; font-size: 0.8rem; }
}

/* ── Competitors + Ideas ── */
.lane-gap {
  background: rgba(196,154,60,0.12);
  border: 1px solid rgba(196,154,60,0.35);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.lane-gap p { font-size: 1.05rem; line-height: 1.55; color: rgba(245,240,232,0.85); }

.kallaway-rules {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem;
  margin-bottom: 2rem;
}
.k-rule {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 14px; padding: 1rem;
}
.k-rule strong {
  display: block; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem;
}
.k-rule span { font-size: 0.78rem; color: rgba(245,240,232,0.55); line-height: 1.45; }

.competitors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.comp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius); padding: 1.5rem;
  transition: border-color .25s;
}
.comp-card:hover { border-color: var(--gold); }
.comp-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.5rem; gap: 0.5rem;
}
.comp-card h4 { font-family: var(--display); font-size: 0.95rem; }
.comp-subs { font-size: 0.68rem; color: var(--gold); white-space: nowrap; }
.comp-lane {
  font-size: 0.72rem; color: var(--terra); font-weight: 500;
  margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.comp-steal { list-style: none; margin: 0.75rem 0; }
.comp-steal li {
  font-size: 0.78rem; color: rgba(245,240,232,0.65);
  padding: 0.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comp-steal li::before { content: '↗ '; color: var(--gold); }
.comp-series {
  margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 1px dashed rgba(245,240,232,0.15);
}
.comp-series span {
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.35rem;
}
.comp-series p { font-size: 0.8rem; font-style: italic; color: rgba(245,240,232,0.7); }

.series-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}
.series-tab {
  font-size: 0.75rem; padding: 0.45rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: 999px; color: rgba(245,240,232,0.7);
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.series-tab.active, .series-tab:hover {
  background: var(--gold); color: var(--espresso); border-color: var(--gold);
}

.ideas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.idea-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 12px; padding: 1rem 1.1rem;
  font-size: 0.85rem; line-height: 1.45;
  color: rgba(245,240,232,0.8);
  cursor: pointer; text-align: left;
  transition: all .2s; font-family: inherit;
}
.idea-chip:hover {
  border-color: var(--gold);
  background: rgba(196,154,60,0.1);
  transform: translateY(-2px);
}
.idea-chip .idea-meta {
  display: block; font-size: 0.62rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

.calendar-wrap { margin-top: 2rem; }
.calendar-today {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-bottom: 1.5rem;
}
.cal-slot {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,154,60,0.3);
  border-radius: var(--radius); padding: 1.25rem;
}
.cal-slot-label {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.35rem;
}
.cal-slot-series { font-family: var(--display); font-size: 0.88rem; margin-bottom: 0.5rem; }
.cal-slot-idea { font-size: 0.82rem; font-style: italic; color: rgba(245,240,232,0.65); line-height: 1.4; }

.calendar-details summary {
  cursor: pointer; font-size: 0.85rem; color: var(--gold);
  margin-bottom: 1rem; user-select: none;
}
.calendar-table-wrap { overflow-x: auto; }
.cal-table {
  width: 100%; border-collapse: collapse; font-size: 0.78rem;
}
.cal-table th, .cal-table td {
  padding: 0.5rem 0.75rem; border: 1px solid rgba(245,240,232,0.1);
  text-align: left;
}
.cal-table th { color: var(--gold); font-size: 0.68rem; text-transform: uppercase; }
.cal-table td { color: rgba(245,240,232,0.6); }

.topic-take {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 2rem;
}
.tt-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 14px; padding: 1.25rem;
}
.tt-card .tt-label {
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.content-plans { margin-bottom: 2rem; }
.plan-heading {
  font-family: var(--display); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.content-weekly { display: flex; flex-direction: column; gap: 0.5rem; }
.plan-day {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 0.85rem 1rem;
  display: grid; grid-template-columns: 2.5rem 1fr; gap: 0.25rem 1rem;
}
.plan-day strong { color: var(--gold); font-size: 0.82rem; }
.plan-slots { grid-column: 2; font-size: 0.82rem; color: rgba(245,240,232,0.85); }
.plan-batch { grid-column: 2; font-size: 0.72rem; color: rgba(245,240,232,0.45); font-style: italic; }
.content-arcs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0.75rem;
}
.plan-arc {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 1rem;
}
.plan-arc-weeks { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.plan-arc h4 { font-size: 1rem; margin: 0.35rem 0; }
.plan-arc p { font-size: 0.82rem; color: rgba(245,240,232,0.65); line-height: 1.5; }
.plan-series { display: block; font-size: 0.72rem; color: rgba(245,240,232,0.4); margin-top: 0.5rem; }
.content-clipfarm {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
}
.content-clipfarm li {
  font-size: 0.85rem; padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  color: rgba(245,240,232,0.8);
}

.tt-card .tt-label.data { color: var(--terra); }
.tt-card .tt-label.creative { color: var(--gold); }
.tt-card p { font-size: 0.85rem; line-height: 1.5; color: rgba(245,240,232,0.75); }

@media (max-width: 960px) {
  .kallaway-rules, .competitors-grid, .ideas-grid, .calendar-today, .topic-take { grid-template-columns: 1fr; }
  .kallaway-rules { grid-template-columns: 1fr 1fr; }
  .competitors-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .kallaway-rules, .competitors-grid, .ideas-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE APP SHELL ── */
.app-dock {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 180;
  background: rgba(26, 20, 16, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(196, 154, 60, 0.2);
  padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
  justify-content: space-around;
  align-items: stretch;
  gap: 0.15rem;
}
.dock-btn {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.15rem;
  background: none; border: none;
  color: rgba(245, 240, 232, 0.45);
  font-family: inherit;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.2rem;
  border-radius: 12px;
  cursor: pointer;
  min-height: 52px;
  transition: all .2s;
}
.dock-btn .dock-icon { font-size: 1.15rem; line-height: 1; }
.dock-btn.active { color: var(--gold); background: rgba(196, 154, 60, 0.1); }
.dock-btn.dock-shoot {
  color: var(--sand);
  background: var(--espresso-2);
  border: 1px solid rgba(196, 154, 60, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(26, 20, 16, 0.4);
  min-height: 56px;
}
.dock-btn.dock-shoot span:last-child { color: var(--gold); }

.idea-chip.naval {
  border-left: 3px solid var(--gold);
  font-style: italic;
}

.install-banner {
  position: fixed;
  bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  left: 12px; right: 12px;
  z-index: 175;
  background: var(--espresso);
  color: var(--sand);
  border: 1px solid rgba(196, 154, 60, 0.35);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: 0 12px 40px rgba(26, 20, 16, 0.35);
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  animation: slide-up .4s var(--ease);
}
.install-banner.hidden { display: none; }
.install-banner p { font-size: 0.78rem; line-height: 1.4; flex: 1; }
.install-banner-actions { display: flex; gap: 0.35rem; flex-shrink: 0; }
@keyframes slide-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .site-footer { display: none; }
  .app-dock { display: flex; }
  .fab { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); right: 16px; }
  .toast-wrap { bottom: calc(88px + env(safe-area-inset-bottom, 0px)); right: 12px; left: 12px; }
  .toast { max-width: none; }
  .site-header { display: none; }
  body { padding-top: 48px; }
  .read-progress { top: 0; }
  .push-bar-inner { padding: 0.5rem 12px; }
  .push-bar-msg { font-size: 0.75rem; min-width: 0; flex: 1 1 100%; text-align: center; order: -1; }
  .push-bar-actions { flex: 1; justify-content: center; width: 100%; }
  .push-btn { flex: 1; padding: 0.55rem 0.4rem; font-size: 0.68rem; min-height: 44px; }
  .container, .container-wide { width: calc(100% - 24px); }
  .hero-outflow { padding-top: 1rem; padding-bottom: 2rem; }
  .outflow-title { font-size: 2rem; }
  .outflow-interrogate { font-size: 1rem; }
  .mode-actions .btn { flex: 1 1 100%; min-height: 48px; }
  .command-btns-row .btn { flex: 1; min-height: 48px; }
  .modal { margin: 12px; max-height: calc(100vh - 100px); border-radius: 20px; }
  .modal-actions { flex-direction: column; }
  .modal-actions .btn { width: 100%; min-height: 48px; }
  .gate-actions .btn { min-height: 52px; }
  .story-card, .tale-card { min-height: auto; }
  .tale-actions { flex-direction: column; }
  .tale-actions .btn { width: 100%; min-height: 44px; }
  .outflow-stat strong { font-size: 1.65rem; }
}

@media (display-mode: standalone) {
  body { padding-top: 44px; }
  .push-bar { padding-top: env(safe-area-inset-top, 0px); }
}

/* ── OUTFLOW COMMAND ── */
.push-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 190;
  background: var(--twilight);
  color: var(--sand);
  border-bottom: 1px solid rgba(196, 154, 60, 0.15);
  transition: background .3s;
}
.push-bar.urgent {
  background: linear-gradient(90deg, #1f1814, var(--espresso));
  border-bottom-color: rgba(196, 154, 60, 0.35);
}
.push-bar-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0.55rem 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.push-bar-msg {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(245,240,232,0.85);
  flex: 1; min-width: 200px;
}
.push-bar-actions { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.push-btn {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  border: none; cursor: pointer; font-family: inherit;
  transition: all .2s;
}
.push-btn.reflect { background: rgba(255,255,255,0.08); color: var(--sand); }
.push-btn.reflect:hover { background: rgba(255,255,255,0.14); }
.push-btn.shoot { background: var(--gold); color: var(--espresso); }
.push-btn.shoot:hover { background: var(--gold-light); }
.push-btn.blitz { background: var(--terra); color: var(--sand); }
.push-btn.blitz:hover { filter: brightness(1.1); }

.hero-outflow {
  min-height: auto;
  padding: calc(var(--header) + 32px) 0 4rem;
  background: var(--twilight);
  color: var(--sand);
  position: relative;
}
.hero-outflow .hero-bg {
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(107, 91, 122, 0.35), transparent),
    radial-gradient(ellipse 50% 40% at 15% 70%, rgba(74, 107, 122, 0.2), transparent),
    radial-gradient(ellipse 40% 35% at 85% 40%, rgba(196, 154, 60, 0.15), transparent),
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(255,255,255,0.12) 1px, transparent 0),
    radial-gradient(1px 1px at 65% 15%, rgba(255,255,255,0.08) 1px, transparent 0),
    radial-gradient(1px 1px at 45% 60%, rgba(255,255,255,0.06) 1px, transparent 0),
    var(--twilight);
}
.hero-outflow .eyebrow { color: rgba(196, 154, 60, 0.7); letter-spacing: 0.2em; }
.hero-outflow .outflow-title {
  letter-spacing: -0.02em;
  color: var(--sand);
  font-weight: 300;
}
.hero-outflow .outflow-interrogate { color: rgba(245, 240, 232, 0.65); }
.hero-outflow .outflow-stat {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(196, 154, 60, 0.18);
  color: var(--sand);
}
.hero-outflow .outflow-stat strong { color: var(--gold-light); }
.hero-outflow .outflow-stat span { color: rgba(245, 240, 232, 0.45); }
.hero-outflow .stat-bar { background: rgba(255,255,255,0.08); }
.hero-outflow .command-btns-row .btn-outline {
  border-color: rgba(196, 154, 60, 0.3);
  color: rgba(245, 240, 232, 0.75);
}

/* ── TREND PULSE ── */
.trend-pulse-wrap {
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  border: 1px solid rgba(74, 107, 122, 0.35);
  border-radius: 22px;
  padding: 1.25rem;
  background: rgba(74, 107, 122, 0.08);
  box-shadow: 0 0 48px rgba(74, 107, 122, 0.12);
}
.trend-pulse-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.trend-pulse-kicker {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--river); display: block; margin-bottom: 0.35rem;
}
.trend-pulse-title {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  color: var(--sand); margin-bottom: 0.35rem;
}
.trend-pulse-status { font-size: 0.72rem; color: rgba(245,240,232,0.45); }
.trend-pulse-btns { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.trend-pulse-hero {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196, 154, 60, 0.25);
  border-radius: 16px; padding: 1.15rem;
  margin-bottom: 1rem;
}
.trend-hero-badge {
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.5rem;
}
.trend-hero-topic {
  font-size: 0.92rem; line-height: 1.45; color: rgba(245,240,232,0.75);
  margin-bottom: 0.75rem;
}
.trend-hero-hook {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--sand); line-height: 1.4; margin-bottom: 0.5rem;
}
.trend-hero-take { font-size: 0.82rem; color: rgba(245,240,232,0.5); margin-bottom: 1rem; }

/* Intel ticker */
.intel-ticker-wrap {
  display: flex; align-items: center; gap: 0.65rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(74, 107, 122, 0.3);
  border-radius: 12px; padding: 0.55rem 0.75rem;
  margin-bottom: 0.85rem; overflow: hidden;
}
.intel-ticker-label {
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--river); white-space: nowrap; display: flex; align-items: center; gap: 0.35rem;
  flex-shrink: 0;
}
.intel-ticker {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(245,240,232,0.7);
  overflow: hidden; white-space: nowrap; flex: 1; min-width: 0;
  animation: ticker-fade 0.4s ease;
}
@keyframes ticker-fade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.ticker-pill {
  font-size: 0.58rem; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(74, 107, 122, 0.35); color: var(--sand);
  padding: 0.15rem 0.45rem; border-radius: 6px; flex-shrink: 0;
}
.ticker-text {
  overflow: hidden; text-overflow: ellipsis; flex-shrink: 1; min-width: 0;
}
.ticker-hook { color: var(--gold); font-style: italic; flex-shrink: 0; font-size: 0.72rem; }
.ticker-btn {
  font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--gold); color: var(--espresso);
  border: none; border-radius: 6px; padding: 0.25rem 0.55rem;
  cursor: pointer; flex-shrink: 0; font-weight: 600;
}

/* Live loop dots */
.loop-live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  animation: loop-pulse 2s ease infinite; flex-shrink: 0;
}
.loop-live-dot.scanning {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(196, 154, 60, 0.7);
  animation: loop-scan 0.6s ease infinite;
}
@keyframes loop-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
@keyframes loop-scan {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Loop indicators row */
.loop-indicators {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.loop-indicator {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.65rem; letter-spacing: 0.04em;
  color: rgba(245,240,232,0.55);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 0.3rem 0.65rem;
}
.loop-indicator em {
  font-style: normal; font-size: 0.58rem;
  color: rgba(245,240,232,0.35);
}

/* Section tabs */
.trend-section-tabs {
  display: flex; gap: 0.35rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.trend-section-tab {
  font-size: 0.68rem; letter-spacing: 0.04em;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,240,232,0.55);
  border-radius: 20px; padding: 0.4rem 0.75rem;
  cursor: pointer; transition: all 0.2s ease;
}
.trend-section-tab:hover { border-color: rgba(196, 154, 60, 0.35); color: var(--sand); }
.trend-section-tab.active {
  background: rgba(196, 154, 60, 0.15);
  border-color: rgba(196, 154, 60, 0.45);
  color: var(--gold);
}

/* Sectioned feeds grid */
.trend-sections-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem;
}
.trend-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 0.9rem;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.trend-section-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 0.5rem; flex-wrap: wrap;
}
.trend-section-title-row {
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.trend-section-title-row h3 {
  font-size: 0.88rem; font-weight: 600; color: var(--sand);
  margin: 0 0 0.15rem;
}
.trend-section-sub {
  font-size: 0.62rem; color: rgba(245,240,232,0.4);
  display: block;
}
.trend-section-meta {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 0.15rem; font-size: 0.58rem;
  color: rgba(245,240,232,0.38); text-align: right;
}
.trend-section-cards {
  display: flex; flex-direction: column; gap: 0.55rem;
}
.trend-section-more { align-self: flex-start; margin-top: 0.15rem; }
.trend-empty {
  font-size: 0.78rem; color: rgba(245,240,232,0.4);
  font-style: italic; padding: 0.5rem 0;
}

.trend-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 0.9rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.trend-card-top { display: flex; justify-content: space-between; gap: 0.5rem; }
.trend-source {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--river);
}
.trend-score { font-size: 0.62rem; color: var(--gold); font-weight: 600; }
.trend-title { font-size: 0.85rem; line-height: 1.4; color: var(--sand); font-weight: 500; }
.trend-hook-preview {
  font-family: var(--serif); font-style: italic; font-size: 0.88rem;
  color: rgba(245,240,232,0.7); line-height: 1.35;
}
.trend-take-preview { font-size: 0.72rem; color: rgba(245,240,232,0.42); line-height: 1.4; flex: 1; }
.trend-card-actions { display: flex; gap: 0.35rem; margin-top: 0.35rem; }
.trend-chip { border-left: 3px solid var(--river) !important; }
.trend-shoot-grid { margin-bottom: 1.25rem; }

@media (max-width: 768px) {
  .trend-sections-grid { grid-template-columns: 1fr; }
  .trend-section:not(.active) { display: none; }
  .trend-sections-grid.show-all .trend-section { display: flex; }
  .trend-pulse-btns { width: 100%; }
  .trend-pulse-btns .btn { flex: 1; min-height: 44px; }
  .intel-ticker { font-size: 0.72rem; }
  .ticker-hook { display: none; }
  .loop-indicators { gap: 0.3rem; }
  .loop-indicator { font-size: 0.6rem; padding: 0.25rem 0.5rem; }
}
@media (min-width: 769px) {
  .trend-section-tabs { display: none; }
}

.next-action-card {
  background: rgba(255, 255, 255, 0.03);
  color: var(--sand);
  border-radius: 20px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(196, 154, 60, 0.3);
  box-shadow: 0 0 40px rgba(107, 91, 122, 0.15), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.next-action-kicker {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.5rem;
}
.next-action-text {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  line-height: 1.45; margin-bottom: 1rem; opacity: 0.9;
}
.btn-block { width: 100%; display: block; }

.win-pace {
  margin-bottom: 1.5rem;
  font-size: 0.72rem; color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.06em;
  position: relative; z-index: 1;
}
.win-pace-bar {
  height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px;
  margin-top: 0.45rem; overflow: hidden;
}
.win-pace-fill {
  height: 100%; background: linear-gradient(90deg, var(--incense), var(--gold), var(--river));
  border-radius: 2px; transition: width .4s var(--ease);
  width: 0%;
}

.modal-social {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.65rem;
}
.modal-social .btn { flex: 1; min-width: 90px; min-height: 40px; }
#modal-posted.pulse {
  animation: pulse-post 1.2s ease infinite;
  box-shadow: 0 0 0 0 rgba(196, 154, 60, 0.5);
}
@keyframes pulse-post {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 154, 60, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(196, 154, 60, 0); }
}
.outflow-header { margin-bottom: 2rem; }
.outflow-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 1rem;
}
.outflow-interrogate {
  font-size: 1.2rem; font-style: italic;
  color: var(--espresso-3); font-family: var(--serif);
  line-height: 1.55; max-width: 40rem;
  opacity: 0.85;
}

.outflow-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.outflow-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.outflow-stat {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.outflow-stat.urgent {
  border-color: rgba(196, 154, 60, 0.45);
  background: rgba(196, 154, 60, 0.05);
}
.outflow-stat strong {
  font-family: var(--display); font-size: 2rem;
  color: var(--espresso); display: block; line-height: 1;
}
.outflow-stat span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-bar { height: 4px; background: var(--sand-2); border-radius: 2px; margin-top: 0.65rem; overflow: hidden; }
.stat-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width .4s var(--ease); }
.outflow-stat.urgent .stat-fill { background: var(--gold); }

.mode-panel {
  background: var(--espresso); color: var(--sand);
  border-radius: 24px; padding: 1.5rem;
  border: 1px solid rgba(196, 154, 60, 0.12);
  box-shadow: 0 20px 60px rgba(26, 20, 16, 0.15);
}
.mode-tabs { display: flex; gap: 0.35rem; margin-bottom: 1.25rem; }
.mode-tab {
  flex: 1; padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; color: rgba(245,240,232,0.55);
  font-family: var(--display); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.mode-tab.active { background: var(--gold); color: var(--espresso); border-color: var(--gold); }
.mode-body.hidden { display: none; }
.mode-lead { font-size: 0.88rem; color: rgba(245,240,232,0.5); margin-bottom: 1rem; }

.next-clip-card, .reflect-tale-card {
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(245,240,232,0.2);
  border-radius: 16px; padding: 1.25rem;
  margin-bottom: 1rem; cursor: pointer;
  transition: border-color .2s;
}
.next-clip-card:hover, .reflect-tale-card:hover { border-color: var(--gold); }
.next-label {
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.5rem;
}
.next-hook {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  line-height: 1.4; color: var(--sand);
}
.next-meta { font-size: 0.72rem; color: rgba(245,240,232,0.45); display: block; margin-top: 0.5rem; }
.reflect-tale-hook { font-size: 0.88rem; color: rgba(245,240,232,0.55); margin-top: 0.35rem; font-style: italic; }

.mode-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 0.95rem; }
.btn-ghost { background: none; border: none; color: var(--muted); font-size: 0.82rem; cursor: pointer; text-decoration: underline; }

.slots-compact { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.slot-compact {
  font-size: 0.68rem; padding: 0.35rem 0.65rem;
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04); color: rgba(245,240,232,0.6);
  cursor: pointer; font-family: inherit;
}
.slot-compact.filled { border-color: var(--gold); color: var(--gold); }
.slot-compact.empty { opacity: 0.7; }

.north-star {
  font-family: var(--serif); font-style: italic;
  font-size: 0.9rem; color: rgba(245,240,232,0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem; margin-top: 0.5rem;
}

.command-btns-row {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}

.modal-push { text-align: center; }
.modal-wide { max-width: 600px; }
.gate-question {
  font-family: var(--serif); font-size: 1.35rem; font-style: italic;
  line-height: 1.45; margin: 1rem 0; color: var(--espresso-3);
}
.gate-stats { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.gate-actions { display: flex; flex-direction: column; gap: 0.65rem; align-items: stretch; }

.reflect-hook {
  font-family: var(--serif); font-size: 1.2rem; font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 1rem; margin: 1rem 0;
}
.reflect-angle { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.reflect-q {
  font-size: 0.92rem; padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--espresso-3); line-height: 1.5;
}
.reflect-journal { display: block; margin: 1rem 0; }
.reflect-journal span {
  display: block; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.5rem;
}
.reflect-journal textarea {
  width: 100%; border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem;
  font-family: inherit; font-size: 0.9rem; resize: vertical;
}

.blitz-progress { margin-bottom: 1rem; }
.blitz-progress span { font-size: 0.75rem; color: var(--terra); font-weight: 600; }
.blitz-bar { height: 6px; background: var(--sand-2); border-radius: 3px; margin-top: 0.5rem; overflow: hidden; }
.blitz-fill { height: 100%; background: var(--gold); transition: width .3s; }
.blitz-push { font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; }

.tale-actions { display: flex; gap: 0.5rem; margin-top: auto; padding-top: 0.75rem; }
.tale-card { min-height: 200px; }

#ideas-grid-shoot .idea-chip {
  background: white; border: 1px solid var(--border);
  color: var(--espresso-3); text-align: left;
}
#ideas-grid-shoot .idea-chip:hover {
  border-color: var(--gold); background: rgba(196,154,60,0.08);
}

.archive-wrap { margin: 0; }
.archive-toggle {
  display: block; padding: 1.25rem 24px;
  background: var(--sand-2); cursor: pointer;
  font-family: var(--display); font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-align: center;
  list-style: none;
}
.archive-toggle::-webkit-details-marker { display: none; }
.archive-inner { background: var(--sand); }

.site-header { top: 52px; }

@media (max-width: 960px) {
  .outflow-grid { grid-template-columns: 1fr; }
  .push-bar-inner { justify-content: center; text-align: center; }
}