/*
 * Marketing/Unauthenticated User Stylesheet
 * "Busy" Theme — shared styles for public pages
 */

@import "theme.css";
@import "legal.css";

/* Prevent horizontal overflow on narrow viewports */
html, body { overflow-x: hidden; max-width: 100vw; }

/* Flash Messages Container */
.flash-messages-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 1000;
  max-width: 400px;
  width: calc(100vw - 40px);
}

@media (max-width: 768px) {
  .flash-messages-container {
    top: 70px;
    right: 10px;
    left: 10px;
    width: calc(100vw - 20px);
    max-width: none;
  }
}

/* ============================================
   BUSY THEME — UTILITY CLASSES
   ============================================ */

.wrap { width: 100%; max-width: 1600px; margin: 0 auto; padding-left: clamp(20px, 3vw, 48px); padding-right: clamp(20px, 3vw, 48px); }

.mono { font-family: var(--font-mono); }
.ed   { font-family: var(--font-editorial); font-weight: 400; font-style: italic; }
.dpy  { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.025em; }
.phos { color: var(--phos); }

.label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome-300);
}
.label.phos { color: var(--phos); }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes tickmove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }

/* ============================================
   TOP BAR (Ticker + Nav for public pages)
   ============================================ */

.topbar {
  position: sticky; top: 0; z-index: 60;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.tick-strip {
  display: none;
}
.tick-strip .now { color: var(--phos); flex-shrink: 0; }
.tick-strip .now::before {
  content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--phos); box-shadow: 0 0 10px var(--phos-glow);
  animation: blink 1.4s ease-in-out infinite;
  margin-right: 6px; vertical-align: middle;
}
.ticker { flex: 1; overflow: hidden; white-space: nowrap; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.tick-track { display: inline-flex; gap: 40px; animation: tickmove 80s linear infinite; }
.tick-track span b { color: var(--chrome-100); font-weight: 500; margin-right: 10px; }

.busy-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 3vw, 48px);
}
.busy-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.busy-brand img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.busy-brand .wordmark {
  font-family: var(--font-display); font-weight: 500; letter-spacing: -0.035em;
  font-size: 22px; line-height: 1; color: var(--chrome-100);
}
.busy-brand .sub {
  display: block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .22em; color: var(--chrome-300); text-transform: uppercase; margin-top: 2px;
}
.busy-nav-links { display: flex; align-items: center; gap: 32px; }
.busy-nav-links a { font-family: var(--font-mono); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--chrome-200); transition: color .15s ease; text-decoration: none; }
.busy-nav-links a:hover { color: var(--phos); }
.busy-nav-links a.active { color: var(--phos); }
.nav-login {
  font-family: var(--font-mono) !important; font-size: 14px !important; letter-spacing: .08em; text-transform: uppercase;
  color: var(--chrome-100) !important; text-decoration: none; transition: color .15s ease;
}
.nav-login:hover { color: var(--phos) !important; }

.nav-cta {
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 16px; border: 1px solid var(--chrome-100); color: var(--chrome-100);
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .15s ease, color .15s ease; text-decoration: none;
}
.nav-cta::after { content: "\2192"; transition: transform .15s ease; }
.nav-cta:hover { background: var(--chrome-100); color: var(--bg-primary); }
.nav-cta:hover::after { transform: translateX(3px); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 24px; display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid transparent; transition: all .15s ease; text-decoration: none; cursor: pointer;
}
.btn::after { content: "\2192"; transition: transform .15s ease; }
.btn:hover::after { transform: translateX(4px); }
.btn-phos { background: var(--phos); color: var(--bg-primary); border-color: var(--phos); }
.btn-phos:hover { box-shadow: 0 0 30px var(--phos-glow); transform: translateY(-1px); }
.btn-line { color: var(--chrome-100); border-color: var(--chrome-400); }
.btn-line:hover { border-color: var(--chrome-100); background: var(--bg-card); }

/* ============================================
   SECTION SCAFFOLD
   ============================================ */

section.panel { padding: clamp(60px, 7vw, 100px) 0; border-bottom: 1px solid var(--rule); }
.section-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 5vw, 80px); margin-bottom: clamp(40px, 5vw, 72px); align-items: end; }
@media (max-width: 900px) { .section-head { grid-template-columns: 1fr; } }
.section-num { font-family: var(--font-mono); font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--phos); padding-bottom: 12px; border-bottom: 1px solid var(--phos); display: inline-block; margin-bottom: 20px; }
.section-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4.4vw, 68px); letter-spacing: -0.04em; line-height: 0.98; text-wrap: balance; margin: 0; }
.section-title em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; }
.section-desc { font-size: 21px; color: var(--chrome-200); line-height: 1.5; max-width: 52ch; margin: 0; padding-bottom: 6px; }

/* ============================================
   PRODUCT GRID
   ============================================ */

.product { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2px; background: var(--rule); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.cell { background: var(--bg-primary); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.cell.span-3 { grid-column: span 3; }
.cell.span-4 { grid-column: span 4; }
.cell.span-6 { grid-column: span 6; }
.cell.span-8 { grid-column: span 8; }
.cell.span-12 { grid-column: span 12; }
@media (max-width: 900px) { .cell.span-3,.cell.span-4,.cell.span-6,.cell.span-8 { grid-column: span 12; } }
.big { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 4.2vw, 64px); letter-spacing: -0.04em; line-height: 1; color: var(--chrome-100); font-variant-numeric: tabular-nums; }
.big.phos { color: var(--phos); }

/* Feature cells (toolkit cards) */
.feat-cell { gap: 16px; }
.feat-icon { margin-bottom: 4px; }
.feat-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 2.4vw, 36px); letter-spacing: -0.03em; line-height: 1.05; }
.feat-title em { font-family: var(--font-editorial); font-style: italic; color: var(--chrome-200); }
.feat-desc { font-size: 19px; line-height: 1.55; color: var(--chrome-200); max-width: 36ch; }

/* Habits showcase (§02) */
.habits-showcase { padding: clamp(32px, 4vw, 48px); }
.habits-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.habit-item {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 48px); letter-spacing: -0.03em; line-height: 1;
  color: var(--chrome-100); padding: 8px 16px;
  border: 1px solid var(--rule); border-radius: 4px;
  transition: border-color .15s ease, color .15s ease;
}
.habit-item:hover { border-color: var(--phos); color: var(--phos); }

/* Tier cards */
.tier-card { min-height: 120px; }

/* ============================================
   MANIFESTO
   ============================================ */

.manifesto { padding: clamp(100px, 14vw, 200px) 0; border-bottom: 1px solid var(--rule); position: relative; overflow: hidden; }
.manifesto::before { content: ""; position: absolute; inset: -10% -5%; background: radial-gradient(600px 400px at 50% 50%, var(--phos-glow) 0%, transparent 60%); pointer-events: none; }
.manifesto .wrap { position: relative; }
.manifesto h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(48px, 8vw, 160px); letter-spacing: -0.05em; line-height: 0.92; text-wrap: balance; max-width: 22ch; margin: 0 auto; text-align: center; }
.manifesto h2 em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; color: var(--phos); padding: 0 4px; }
.attribution { text-align: center; margin-top: 60px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--chrome-300); display: flex; gap: 14px; align-items: center; justify-content: center; }
.attribution::before, .attribution::after { content: ""; width: 40px; height: 1px; background: var(--chrome-500); }

/* ============================================
   CTA
   ============================================ */

.busy-cta { padding: clamp(80px, 10vw, 140px) 0; text-align: center; border-bottom: 1px solid var(--rule); }
.busy-cta h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(48px, 7vw, 120px); letter-spacing: -0.045em; line-height: 0.95; text-wrap: balance; max-width: 16ch; margin: 0 auto 40px; }
.busy-cta h2 em { font-family: var(--font-editorial); font-style: italic; color: var(--phos); font-weight: 400; }
.busy-cta p { color: var(--chrome-200); max-width: 46ch; margin: 0 auto 32px; font-size: 15px; line-height: 1.6; }

/* ============================================
   HERO (Homepage)
   ============================================ */

.hero { position: relative; padding: clamp(16px, 2vw, 28px) 0 clamp(40px, 5vw, 72px); border-bottom: 1px solid var(--rule); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
@media (max-width: 1100px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(56px, 7.4vw, 128px);
  letter-spacing: -0.045em; line-height: 0.92;
  text-wrap: balance; margin-bottom: 32px;
}
.hero-h1 em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; color: var(--chrome-200); }
.hero-h1 .phos { color: var(--phos); font-style: italic; font-family: var(--font-editorial); font-weight: 400; }
.hero-sub {
  font-family: var(--font-body); font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55; color: var(--chrome-200); max-width: 48ch; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Trust bar (under hero subline) */
.trust-bar {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.trust-bar li {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: .04em; color: var(--chrome-200);
}
.trust-bar svg { color: var(--phos); flex-shrink: 0; }
@media (max-width: 900px) {
  .trust-bar { gap: 8px 16px; margin-bottom: 24px; }
  .trust-bar li { font-size: 12px; }
}

/* Interactive preview wrap */
.instrument-wrap {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--rule);
  padding: clamp(20px, 2.5vw, 32px);
}
.instrument-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--phos);
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--phos); box-shadow: 0 0 8px var(--phos-glow);
  animation: blink 1.6s ease-in-out infinite;
}

/* Gauge instrument */
.instrument { position: relative; aspect-ratio: 1; width: 100%; max-width: 520px; margin: 0 auto; }
.instrument svg { width: 100%; height: 100%; display: block; }
.bezel-num { font-family: var(--font-mono); font-size: 14px; font-weight: 500; fill: var(--chrome-200); }
.ring-track { fill: none; stroke: var(--rule); stroke-width: 2; }
.tick-minor { stroke: var(--chrome-400); stroke-width: 1; }
.tick-major { stroke: var(--chrome-100); stroke-width: 1.5; }
.progress { fill: none; stroke: var(--phos); stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(200, 245, 98, 0.5)); }
.big-num { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.05em; fill: var(--chrome-100); }
.micro { font-family: var(--font-mono); fill: var(--chrome-300); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }

/* Statement */
.statement { padding: clamp(60px, 7vw, 100px) 0; border-bottom: 1px solid var(--rule); }
.statement .wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
@media (max-width: 900px) { .statement .wrap { grid-template-columns: 1fr; } }
.statement-col { display: flex; flex-direction: column; }
.statement h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 4.8vw, 72px); letter-spacing: -0.04em; line-height: 1.02; text-wrap: balance; margin: 0; }
.statement h2 em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; color: var(--phos); }
.statement .pull-quote { font-family: var(--font-editorial); font-style: italic; font-weight: 400; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.35; color: var(--chrome-100); max-width: 32ch; margin: 0; text-wrap: balance; }
.statement .tag { font-family: var(--font-mono); font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--chrome-300); margin: 0 0 28px 0; padding-bottom: 12px; border-bottom: 1px solid var(--rule); align-self: stretch; }

/* How it works */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--rule); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }
.how-cell {
  background: var(--bg-primary); padding: clamp(32px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 20px;
}
.how-num {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--phos);
  padding-bottom: 12px; border-bottom: 1px solid var(--phos); display: inline-block;
}
.how-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 2.8vw, 44px); letter-spacing: -0.03em; line-height: 1.05;
}
.how-title em { font-family: var(--font-editorial); font-style: italic; color: var(--chrome-200); }
.how-desc { font-size: 14px; line-height: 1.6; color: var(--chrome-200); max-width: 36ch; }

/* ============================================
   SCORING PAGE
   ============================================ */

.scoring-hero-busy { padding: clamp(60px, 7vw, 100px) 0; border-bottom: 1px solid var(--rule); }
.scoring-hero-busy h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 6vw, 100px);
  letter-spacing: -0.045em; line-height: 0.92;
  text-wrap: balance; margin-bottom: 24px;
}
.scoring-hero-busy h1 em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; color: var(--chrome-200); }
.scoring-hero-busy p { font-size: 15px; line-height: 1.65; color: var(--chrome-200); max-width: 60ch; }

/* Rank ladder */
.ladder-wrap { display: grid; grid-template-columns: 3fr 2fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
@media (max-width: 900px) { .ladder-wrap { grid-template-columns: 1fr; } }
.ladder { border-top: 1px solid var(--rule); }
.ladder-row {
  position: relative; display: grid; grid-template-columns: 72px 140px 1fr auto;
  gap: 28px; align-items: center; padding: 22px 0;
  border-bottom: 1px solid var(--rule); cursor: pointer;
  transition: background .2s ease, padding-left .2s ease;
}
.ladder-row:hover, .ladder-row.active { background: var(--bg-secondary); padding-left: 16px; }
.ladder-row.active .tier-rank { color: var(--phos); }
.tier-rank { font-family: var(--font-mono); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--chrome-400); }
.tier-range { font-family: var(--font-mono); font-size: 16px; font-weight: 500; color: var(--chrome-200); font-variant-numeric: tabular-nums; }
.tier-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 2.2vw, 36px); letter-spacing: -0.025em; line-height: 1.05; color: var(--chrome-100); }
.tier-name em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; color: var(--chrome-300); }
.tier-meter { width: 220px; height: 3px; background: var(--rule); position: relative; overflow: hidden; }
.tier-meter i { display: block; height: 100%; background: var(--chrome-100); transform-origin: left; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.ladder-row.active .tier-meter i { background: var(--phos); }

.ladder-preview {
  position: sticky; top: 100px; border: 1px solid var(--rule); padding: 32px;
  aspect-ratio: .86; background: var(--bg-secondary); display: flex; flex-direction: column; justify-content: space-between;
}
.prev-rank { font-family: var(--font-mono); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--chrome-300); }
.prev-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.035em; line-height: .95; text-wrap: balance; }
.prev-name em { font-family: var(--font-editorial); font-style: italic; color: var(--chrome-300); }
.prev-range { font-family: var(--font-mono); font-size: 46px; letter-spacing: -0.02em; font-weight: 500; color: var(--phos); font-variant-numeric: tabular-nums; line-height: 1; }
.prev-range small { font-size: 14px; color: var(--chrome-300); letter-spacing: .12em; text-transform: uppercase; font-weight: 400; margin-left: 4px; }
.prev-desc { font-family: var(--font-body); font-size: 15px; color: var(--chrome-200); line-height: 1.6; }

/* Breakdown dials */
.dials-wrap { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--rule); }
@media (max-width: 1100px) { .dials-wrap { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .dials-wrap { grid-template-columns: repeat(2, 1fr); } }
.dial { background: var(--bg-primary); padding: 28px 22px; display: flex; flex-direction: column; gap: 20px; cursor: pointer; transition: background .2s ease; position: relative; }
.dial:hover, .dial.active { background: var(--bg-secondary); }
.dial.active::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--phos); }
.d-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--chrome-300); min-height: 28px; }
.dial.active .d-label { color: var(--phos); }
.d-pts { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 3.6vw, 52px); letter-spacing: -0.04em; line-height: 1; color: var(--chrome-100); font-variant-numeric: tabular-nums; }
.d-pts small { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--chrome-400); margin-top: 6px; }
.d-bar { height: 3px; background: var(--rule-soft); position: relative; overflow: hidden; }
.d-bar i { display: block; height: 100%; background: var(--chrome-200); transform-origin: left; transition: transform .4s cubic-bezier(.2,.7,.2,1), background .2s ease; }
.dial.active .d-bar i { background: var(--phos); }

.detail-panel { margin-top: 2px; background: var(--bg-secondary); padding: 40px clamp(28px, 4vw, 56px); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; border-top: 2px solid var(--phos); }
@media (max-width: 900px) { .detail-panel { grid-template-columns: 1fr; gap: 24px; } }
.detail-panel h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 2.8vw, 44px); letter-spacing: -0.03em; line-height: 1.05; color: var(--chrome-100); max-width: 14ch; }
.detail-panel h3 em { font-family: var(--font-editorial); font-style: italic; color: var(--phos); }
.detail-panel p { font-size: 14px; line-height: 1.6; color: var(--chrome-200); max-width: 42ch; }
.chips-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--chrome-300); margin-bottom: 14px; }
.chip { display: block; padding: 10px 0; font-family: var(--font-mono); font-size: 14px; color: var(--chrome-200); border-bottom: 1px solid var(--rule); }
.chip:last-child { border-bottom: 0; }
.chip.good::before { content: "+ "; color: var(--phos); font-weight: 700; }
.chip.bad::before  { content: "\2212 "; color: var(--signal); font-weight: 700; }

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-hero-busy { padding: clamp(60px, 7vw, 100px) 0; border-bottom: 1px solid var(--rule); }
.pricing-hero-busy h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 6vw, 100px);
  letter-spacing: -0.045em; line-height: 0.92;
  text-wrap: balance; margin-bottom: 24px;
}
.pricing-hero-busy h1 em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; color: var(--chrome-200); }
.pricing-hero-busy p { font-size: 15px; line-height: 1.65; color: var(--chrome-200); max-width: 60ch; }

.plan-header { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.plan-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 3vw, 48px); letter-spacing: -0.03em; line-height: 1; }
.plan-badge { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--phos); border: 1px solid var(--phos); padding: 4px 10px; }
.plan-price { font-family: var(--font-display); font-weight: 400; font-size: clamp(48px, 5vw, 80px); letter-spacing: -0.04em; line-height: 1; color: var(--chrome-100); margin: 20px 0 8px; }
.plan-price small { font-family: var(--font-mono); font-size: 16px; color: var(--chrome-300); letter-spacing: .08em; text-transform: uppercase; font-weight: 400; }
.plan-desc { font-size: 14px; color: var(--chrome-200); line-height: 1.6; margin-bottom: 24px; }
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 12px 0; border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 19px; color: var(--chrome-200);
  display: flex; align-items: center; gap: 10px;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before { content: "+"; color: var(--phos); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.cell.premium { background: var(--bg-secondary); border: 1px solid var(--phos-dim); position: relative; }
.cell.premium::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--phos); }

/* Pricing FAQ (reuse from existing) */
.pricing-faq .faq-list { max-width: 700px; margin: 0 auto; }
.pricing-faq details { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; margin-bottom: 0.75rem; transition: all 0.2s ease; }
.pricing-faq details:hover { background: var(--bg-card-hover); }
.pricing-faq details[open] { background: var(--bg-card-hover); }
.pricing-faq summary { padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 500; font-size: 1rem; color: var(--text-primary); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.pricing-faq summary::-webkit-details-marker { display: none; }
.pricing-faq summary::after { content: "+"; font-size: 1.4rem; font-weight: 300; color: var(--text-muted); transition: transform 0.2s ease; flex-shrink: 0; margin-left: 1rem; }
.pricing-faq details[open] summary::after { content: "-"; }
.faq-answer { padding: 0 1.5rem 1.25rem; }
.faq-answer p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0; }

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-hero-busy { padding: clamp(60px, 7vw, 100px) 0; border-bottom: 1px solid var(--rule); }
.faq-hero-busy h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 6vw, 100px);
  letter-spacing: -0.045em; line-height: 0.92;
  text-wrap: balance; margin-bottom: 24px;
}
.faq-hero-busy h1 em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; color: var(--chrome-200); }
.faq-hero-busy p { font-size: 15px; line-height: 1.65; color: var(--chrome-200); max-width: 60ch; }

/* Standalone FAQ list (shared with pricing FAQ) */
.faq-list details { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; margin-bottom: 0.75rem; transition: all 0.2s ease; }
.faq-list details:hover { background: var(--bg-card-hover); }
.faq-list details[open] { background: var(--bg-card-hover); }
.faq-list summary { padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 500; font-size: 1rem; color: var(--text-primary); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.4rem; font-weight: 300; color: var(--text-muted); transition: transform 0.2s ease; flex-shrink: 0; margin-left: 1rem; }
.faq-list details[open] summary::after { content: "-"; }
.faq-answer a { color: var(--phos); text-decoration: underline; font-weight: 500; }
.faq-answer a:hover { color: var(--chrome-100); }

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-hero-busy { padding: clamp(60px, 7vw, 100px) 0; border-bottom: 1px solid var(--rule); }
.blog-hero-busy h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 6vw, 100px);
  letter-spacing: -0.045em; line-height: 0.92;
  text-wrap: balance; margin-bottom: 24px;
}
.blog-hero-busy h1 em { font-family: var(--font-editorial); font-style: italic; font-weight: 400; color: var(--chrome-200); }
.blog-hero-busy p { font-size: 15px; line-height: 1.65; color: var(--chrome-200); max-width: 60ch; }

.blog-list { border-top: 1px solid var(--rule); }
.blog-row {
  display: grid; grid-template-columns: 140px 1fr;
  gap: clamp(24px, 3vw, 48px); align-items: baseline;
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-bottom: 1px solid var(--rule);
  transition: background .2s ease, padding-left .2s ease;
  cursor: pointer; text-decoration: none; color: inherit;
}
.blog-row:hover { background: var(--bg-secondary); padding-left: 16px; }
.blog-date {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--chrome-400);
  font-variant-numeric: tabular-nums;
}
.blog-content { display: flex; flex-direction: column; gap: 8px; }
.blog-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 36px); letter-spacing: -0.025em; line-height: 1.1;
  color: var(--chrome-100);
}
.blog-row:hover .blog-title { color: var(--phos); }
.blog-excerpt { font-size: 13px; line-height: 1.6; color: var(--chrome-300); max-width: 64ch; }
.blog-author { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--chrome-400); }
@media (max-width: 700px) { .blog-row { grid-template-columns: 1fr; gap: 8px; } }

.blog-empty { padding: clamp(60px, 8vw, 120px) 0; text-align: center; }
.blog-empty p { font-family: var(--font-editorial); font-style: italic; font-size: clamp(20px, 2vw, 28px); color: var(--chrome-300); }

/* ============================================
   MOBILE NAV RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .busy-nav { flex-direction: column; gap: 16px; }
  .busy-nav-links { flex-wrap: wrap; gap: 16px; justify-content: center; }

  /* Tighten vertical rhythm on mobile */
  section.panel { padding: clamp(36px, 5vw, 60px) 0; }
  .section-head { gap: 20px; margin-bottom: 28px; }
  .section-desc { margin-top: 16px; }
  .statement { padding: clamp(36px, 5vw, 60px) 0; }
  .statement .wrap { gap: 24px; }
  .statement .tag { margin-bottom: 16px; }
  .busy-cta { padding: clamp(48px, 7vw, 80px) 0; }
  .busy-cta h2 { margin-bottom: 24px; }
  .busy-cta p { margin-bottom: 20px; }
  .hero { padding: 12px 0 28px; }
  .hero-h1 { font-size: clamp(36px, 8.4vw, 56px); margin-bottom: 16px; word-break: normal; overflow-wrap: break-word; }
  .hero-sub { font-size: 14px; margin-bottom: 18px; max-width: none; }
  .hero-grid { gap: 24px; }
  .instrument-wrap { padding: 14px; }
  .instrument { max-width: 100%; }
  .statement h2 { font-size: clamp(28px, 7vw, 56px); overflow-wrap: break-word; }
  .statement .pull-quote { font-size: clamp(18px, 4.4vw, 28px); max-width: none; }
  .demo-cta-btn { font-size: 12px; letter-spacing: .08em; padding: 14px 16px; }
  .demo-input-wrap input { font-size: 18px; padding: 10px 12px; }
  .demo-prefix { font-size: 16px; padding-left: 12px; }
  .demo-toggle { font-size: 12px; }
  .demo-note { font-size: 10px; }
  .how-cell { padding: clamp(20px, 3vw, 32px); gap: 14px; }
  .cell { padding: 18px; gap: 10px; }
  .habits-showcase { padding: 20px; }
  .habit-item { font-size: clamp(20px, 5vw, 32px); padding: 6px 12px; }
  .tier-card { min-height: 80px; }
  .feat-title { font-size: clamp(22px, 5vw, 30px); }
  .section-title { font-size: clamp(28px, 7.2vw, 48px); overflow-wrap: break-word; }
  .busy-cta h2 { font-size: clamp(38px, 10vw, 80px); overflow-wrap: break-word; }
  .manifesto h2 { font-size: clamp(40px, 12vw, 96px); overflow-wrap: break-word; }
  .how-title { font-size: clamp(22px, 5.5vw, 32px); overflow-wrap: break-word; }
}

/* ============================================
   INTERACTIVE DEMO FORM
   ============================================ */

.demo-form {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 4px;
}
.demo-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.demo-field {
  display: flex; flex-direction: column; gap: 6px;
}
.demo-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--chrome-300);
}
.demo-input-wrap {
  display: flex; align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--rule);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.demo-input-wrap:focus-within {
  border-color: var(--phos);
  box-shadow: 0 0 0 3px var(--phos-glow);
}
.demo-prefix {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--chrome-300);
  padding: 0 0 0 14px;
  font-size: 18px;
  line-height: 1;
}
.demo-input-wrap input {
  flex: 1; width: 100%;
  background: transparent; border: 0; outline: none;
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.02em;
  color: var(--chrome-100);
  padding: 12px 14px;
  -moz-appearance: textfield;
  font-variant-numeric: tabular-nums;
}
.demo-input-wrap input::-webkit-outer-spin-button,
.demo-input-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.demo-toggle {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--chrome-200);
  cursor: pointer;
  padding: 6px 0;
}
.demo-toggle input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--chrome-400);
  background: var(--bg-primary);
  position: relative; cursor: pointer; flex-shrink: 0;
  transition: all .15s ease;
}
.demo-toggle input[type="checkbox"]:checked {
  background: var(--phos); border-color: var(--phos);
}
.demo-toggle input[type="checkbox"]:checked::after {
  content: ""; position: absolute;
  left: 4px; top: 0; width: 6px; height: 12px;
  border: solid var(--bg-primary);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.demo-cta { margin-top: 4px; }
.demo-cta-btn { width: 100%; justify-content: center; text-align: center; }
.demo-toggle-hint { color: var(--chrome-400); }
@media (max-width: 600px) {
  .demo-toggle-hint { display: none; }
}
.demo-note {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--chrome-400); margin: 10px 0 0;
  line-height: 1.5; letter-spacing: .02em;
}
@media (max-width: 600px) {
  .demo-row { grid-template-columns: 1fr; }
}

