:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EFE9;
  --fg: #1E1E1E;
  --fg-muted: #6B6560;
  --accent: #8A9E8B;
  --accent-light: #B8C9B9;
  --accent-warm: #C9A87C;
  --border: #DDD9D1;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: 6rem 3rem 5rem;
  background: linear-gradient(160deg, var(--bg) 0%, #F5F2EC 60%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 10%;
  width: 45%;
  height: 80%;
  background: radial-gradient(ellipse at center, var(--accent-light) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
}

/* Visual grid */
.vis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.vis-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.vis-card:hover { transform: translateY(-2px); }
.card-1 { border-left: 3px solid var(--accent); }
.card-2 { border-left: 3px solid var(--accent-warm); }
.card-3 { border-left: 3px solid var(--fg); }
.card-4 { border-left: 3px solid var(--fg-muted); }
.vis-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.vis-task {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}
.vis-done {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 500;
}
.vis-progress {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--accent-warm);
  border-radius: 2px;
}
.vis-waiting {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
}

/* ── Philosophy / Pillars ── */
.philosophy {
  padding: 6rem 3rem;
  background: var(--fg);
  color: var(--bg);
}
.philosophy .section-label { color: var(--accent-light); }
.philosophy .section-heading { color: var(--bg); }
.philosophy .pillar p { color: rgba(250,248,245,0.65); }
.philosophy .pillar-icon { color: var(--accent-light); }

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 1.2rem;
}
.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 3.5rem;
}
.philosophy-inner, .products-inner, .manifesto-inner, .closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.pillar-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.pillar p { font-size: 0.9rem; line-height: 1.65; }

/* ── Products ── */
.products { padding: 6rem 3rem; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.2rem;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: var(--accent); }
.product-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(138,158,139,0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}
.product-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.product-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Manifesto ── */
.manifesto {
  padding: 6rem 3rem;
  background: var(--bg-alt);
  text-align: center;
}
.manifesto blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 500;
  color: var(--fg);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.35;
}
.manifesto p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 1rem;
  line-height: 1.75;
}

/* ── Closing ── */
.closing {
  padding: 8rem 3rem;
  background: linear-gradient(180deg, var(--bg) 0%, #EEEAE0 100%);
  text-align: center;
}
.closing h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
}

/* ── Footer ── */
.footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.footer-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ── Daily Plan Generator ── */
.planner {
  padding: 6rem 3rem;
  background: var(--bg);
}
.planner-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.planner-header {
  max-width: 600px;
  margin-bottom: 3rem;
}
.planner-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: -1.5rem;
}
.planner-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.planner-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.planner-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.planner-field label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.planner-field textarea,
.planner-field input[type="number"] {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--fg);
  resize: none;
  transition: border-color 0.18s;
  outline: none;
}
.planner-field textarea:focus,
.planner-field input[type="number"]:focus {
  border-color: var(--accent);
}
.planner-hint {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.7;
}
.planner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.energy-buttons {
  display: flex;
  gap: 0.5rem;
}
.energy-btn {
  flex: 1;
  padding: 0.6rem 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--fg-muted);
  font-size: 0.82rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.energy-btn:hover { border-color: var(--accent-light); color: var(--fg); }
.energy-btn.active {
  border-color: var(--accent);
  background: rgba(138,158,139,0.12);
  color: var(--fg);
}
.hours-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hours-input-wrap input[type="number"] {
  width: 72px;
  text-align: center;
}
.hours-unit {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.planner-generate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1.6rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  width: 100%;
}
.planner-generate-btn:hover { background: #333; }
.planner-generate-btn:active { transform: scale(0.98); }

/* Output panel */
.planner-output {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  min-height: 340px;
  padding: 1.5rem;
  overflow-y: auto;
  max-height: 600px;
}
.planner-output-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 280px;
  gap: 1rem;
  color: var(--fg-muted);
  opacity: 0.5;
}
.planner-output-empty p { font-size: 0.88rem; }

/* Schedule blocks */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.schedule-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left-width: 3px;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.8rem;
}
.block-focus-high  { border-left-color: var(--fg); }
.block-focus       { border-left-color: var(--accent); }
.block-focus-low   { border-left-color: var(--accent-light); }
.block-break       { border-left-color: var(--accent-warm); }
.block-admin       { border-left-color: var(--fg-muted); }
.block-shutdown    { border-left-color: var(--fg-muted); }
.sb-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.1rem;
}
.sb-time {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
}
.sb-type {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.sb-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.15rem;
}
.sb-task {
  font-size: 0.88rem;
  color: var(--fg);
  margin-bottom: 0.3rem;
}
.sb-rationale {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.5;
}

/* Action row */
.planner-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.planner-copy-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 1.1rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.15s;
}
.planner-copy-btn:hover { border-color: var(--accent); }
.planner-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  border-radius: 8px;
  padding: 0.65rem 1.2rem;
  font-size: 0.84rem;
  font-weight: 500;
  transition: background 0.15s;
}
.planner-cta-btn:hover { background: #7A9070; }

/* Waitlist anchor target */
#waitlist { scroll-margin-top: 4rem; }

/* ── Waitlist form component ── */
.waitlist-form { width: 100%; }
.waitlist-input-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.waitlist-email {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s;
}
.waitlist-email:focus { border-color: var(--accent); }
.waitlist-submit-btn {
  flex-shrink: 0;
  padding: 0.75rem 1.4rem;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.waitlist-submit-btn:hover { background: #333; }
.waitlist-submit-btn:disabled { opacity: 0.6; cursor: default; }
.waitlist-message {
  font-size: 0.82rem;
  margin-top: 0.5rem;
  min-height: 1.2em;
}
.waitlist-message--error { color: #B34A4A; }
.waitlist-success {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  padding: 0.5rem 0;
  margin: 0;
}

/* Hero waitlist block */
.hero-waitlist { margin-top: 2rem; }
.hero-waitlist-pitch {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.hero-waitlist-pitch strong { color: var(--fg); }

/* Closing waitlist block */
.closing-waitlist {
  margin-top: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.closing-waitlist-pitch {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.closing-waitlist-pitch strong { color: var(--fg); }

/* Planner waitlist nudge (shown after schedule generation) */
.planner-waitlist-nudge {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.planner-waitlist-nudge-inner { max-width: 480px; }
.planner-waitlist-nudge-copy {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.planner-waitlist-nudge-copy strong { color: var(--fg); }

/* ── Weekly Review ── */
.weekly-review {
  padding: 6rem 3rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.wr-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wr-header {
  max-width: 600px;
  margin-bottom: 3rem;
}
.wr-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: -1.5rem;
}
.wr-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.wr-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.wr-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wr-field label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.wr-field textarea,
.wr-field input[type="text"] {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--fg);
  resize: none;
  transition: border-color 0.18s;
  outline: none;
}
.wr-field textarea:focus,
.wr-field input[type="text"]:focus {
  border-color: var(--accent);
}
.wr-hint {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* Slider */
.wr-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.wr-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.wr-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--fg);
  cursor: pointer;
  border: 2px solid var(--bg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.wr-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--fg);
  cursor: pointer;
  border: 2px solid var(--bg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.wr-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--fg-muted);
  padding: 0 2px;
}
.wr-energy-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  min-height: 1.4em;
}

/* Generate button */
.wr-generate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1.6rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  width: 100%;
}
.wr-generate-btn:hover { background: #333; }
.wr-generate-btn:active { transform: scale(0.98); }

/* Output panel */
.wr-output {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  min-height: 340px;
  padding: 1.5rem;
  overflow-y: auto;
  max-height: 600px;
}
.wr-output-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 280px;
  gap: 1rem;
  color: var(--fg-muted);
  opacity: 0.5;
}
.wr-output-empty p { font-size: 0.88rem; }

/* Review card */
.wr-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.wr-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.wr-week-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
}
.wr-energy-badge {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.25rem 0.7rem;
}
.wr-card-section {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.wr-card-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-weight: 500;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.wr-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.wr-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--fg);
  line-height: 1.5;
}
.wr-item-num {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  margin-top: 1px;
}
.wr-focus-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  background: rgba(138,158,139,0.08);
  border: 1.5px solid var(--accent-light);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  line-height: 1.5;
}

/* Energy bar */
.wr-energy-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}
.wr-energy-track-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.wr-energy-track {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.wr-energy-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s ease;
}
.wr-energy-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* Actions row */
.wr-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Waitlist nudge */
.wr-waitlist-nudge {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.wr-waitlist-nudge-inner { max-width: 480px; }
.wr-waitlist-nudge-copy {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
  cursor: pointer;
}
.wr-waitlist-nudge-copy strong { color: var(--fg); }

/* ── Share buttons (planner) ── */
.planner-share-btn,
.planner-x-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 1.1rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.planner-share-btn:hover { border-color: var(--accent); }
.planner-x-btn:hover { border-color: var(--fg); }
.planner-share-btn:disabled,
.planner-x-btn:disabled { opacity: 0.6; cursor: default; }

/* Toast notification */
.planner-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--fg);
  color: var(--bg);
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  white-space: nowrap;
}
.planner-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Brain Dump → Sorted ── */
.brain-dump {
  padding: 6rem 3rem;
  background: var(--bg-alt);
}
.bd-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.bd-header {
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.bd-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: -1.5rem;
}
.bd-form {
  margin-bottom: 2rem;
}
.bd-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 680px;
}
.bd-textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  resize: vertical;
  transition: border-color 0.18s;
  outline: none;
  line-height: 1.7;
  min-height: 130px;
}
.bd-textarea:focus { border-color: var(--accent); }
.bd-sort-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.8rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.18s;
}
.bd-sort-btn:hover { opacity: 0.85; }

/* Columns */
.bd-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.bd-col {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
}
.bd-col-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1.5px solid var(--border);
}
.bd-col-icon { font-size: 1rem; line-height: 1; }
.bd-col-title {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex: 1;
}
.bd-col-count {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 0.15rem 0.55rem;
  color: var(--fg-muted);
  min-width: 1.4rem;
  text-align: center;
}
.bd-today { background: rgba(138,158,139,0.08); }
.bd-today .bd-col-title { color: var(--accent); }
.bd-week { background: rgba(201,168,124,0.08); }
.bd-week .bd-col-title { color: var(--accent-warm); }
.bd-someday { background: rgba(107,101,96,0.06); }
.bd-someday .bd-col-title { color: var(--fg-muted); }
.bd-delete { background: rgba(179,74,74,0.06); }
.bd-delete .bd-col-title { color: #B34A4A; }

/* Items */
.bd-list {
  list-style: none;
  padding: 0.6rem 0;
}
.bd-item {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
}
.bd-item:hover { background: var(--bg-alt); }
.bd-item-text { flex: 1; }
.bd-remove {
  background: none;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 0.1rem;
  opacity: 0.4;
  transition: opacity 0.15s;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.bd-remove:hover { opacity: 1; color: #B34A4A; }

/* Actions */
.bd-actions {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Waitlist nudge */
.bd-waitlist-nudge {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 2rem 2.2rem;
  margin-top: 0.5rem;
}
.bd-waitlist-nudge-inner { max-width: 560px; }
.bd-waitlist-nudge-copy {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .hero { padding: 3rem 1.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { font-size: 2.8rem; }
  .philosophy { padding: 4rem 1.5rem; }
  .pillars { grid-template-columns: 1fr; gap: 2rem; }
  .products { padding: 4rem 1.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .planner { padding: 4rem 1.5rem; }
  .planner-form { grid-template-columns: 1fr; }
  .planner-row { grid-template-columns: 1fr 1fr; }
  .schedule-block { grid-template-columns: 80px 1fr; }
  .planner-actions { flex-direction: column; align-items: stretch; }
  .planner-cta-btn { justify-content: center; }
  .waitlist-input-row { flex-direction: column; }
  .waitlist-submit-btn { width: 100%; }
  .closing-waitlist { margin-top: 2rem; }
  .weekly-review { padding: 4rem 1.5rem; }
  .wr-form { grid-template-columns: 1fr; }
  .wr-actions { flex-direction: column; align-items: stretch; }
  .wr-card-head { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .brain-dump { padding: 4rem 1.5rem; }
  .bd-columns { grid-template-columns: 1fr 1fr; }
  .bd-actions { flex-direction: column; align-items: stretch; }
}