:root {
  --bg: #0b0d13;
  --bg-soft: #141822;
  --card: #1a1f2e;
  --card-hover: #1f2536;
  --border: #2a3040;
  --border-hover: #3a4255;
  --text: #e8eaf0;
  --text-dim: #9aa1b0;
  --text-bright: #ffffff;
  --primary: #8b5cf6;
  --primary-light: #a78bfa;
  --primary-hover: #7c4ae0;
  --success: #22c55e;
  --success-light: #4ade80;
  --danger: #ef4444;
  --warning: #f59e0b;
  --warning-light: #fbbf24;
  --info: #3b82f6;
  --info-light: #60a5fa;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,.25);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.3);
  --glow: 0 0 20px rgba(139,92,246,.15);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-brand { font-size: 18px; font-weight: 800; display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); }
.nav-brand .logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px;
  box-shadow: 0 0 12px rgba(139,92,246,.3);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-dim); font-weight: 500; font-size: 13px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: all .15s ease;
}
.nav-links a:hover { color: var(--text); background: var(--card); }
.nav-links a.active { color: var(--primary-light); background: rgba(139,92,246,.1); }
.nav-links a svg { opacity: .8; }
.nav-links a.active svg { opacity: 1; }
.nav-user { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-dim); }
.nav-brand-form { margin: 0; }
.nav-user-info { display: flex; align-items: center; gap: 8px; }
.nav-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(139,92,246,.2);
}
.nav-avatar.lg { width: 48px; height: 48px; font-size: 20px; }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border); color: var(--text);
  cursor: pointer; padding: 6px; border-radius: var(--radius-sm);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  transition: background .15s ease;
}
.btn:hover { background: var(--primary-hover); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { background: var(--card); color: var(--text); }
.btn-success { background: var(--success); }
.btn-success:hover { background: #16a34a; }
.btn-danger { background: transparent; color: var(--danger); border: 1px solid var(--danger); }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-block { width: 100%; }

/* FORMS */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dim); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--primary); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { appearance: none; }

/* LAYOUT */
.container { max-width: 1080px; margin: 0 auto; padding: 28px 24px; }
.container-narrow { max-width: 480px; margin: 0 auto; padding: 40px 20px; }
.page-title { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.page-sub { color: var(--text-dim); font-size: 14px; margin-bottom: 24px; }

/* CARD */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .15s ease;
}
.card:hover { border-color: var(--border-hover); }
.card h3 { font-size: 15px; margin-bottom: 12px; }

/* GRID */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; gap: 10px; padding: 10px 16px; }
}

/* STATS */
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: all .15s ease;
}
.stat:hover { border-color: var(--border-hover); background: var(--card-hover); }
.stat .value { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.stat .label { font-size: 13px; color: var(--text-dim); margin-top: 2px; }
.stat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon-purple { background: rgba(139,92,246,.12); color: var(--primary-light); }
.stat-icon-yellow { background: rgba(245,158,11,.12); color: var(--warning-light); }
.stat-icon-green { background: rgba(34,197,94,.12); color: var(--success-light); }
.stat-icon-blue { background: rgba(59,130,247,.12); color: var(--info-light); }

/* PROGRESS BAR */
.dash-progress-bar { padding: 14px 0; }
.progress-track {
  height: 8px; background: var(--bg-soft); border-radius: 999px; overflow: hidden;
  border: 1px solid var(--border);
}
.progress-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--pink));
  transition: width .5s ease;
  box-shadow: 0 0 12px rgba(139,92,246,.4);
}
.mb-1 { margin-bottom: 6px; }

/* TABLE */
.table-wrap { overflow-x: auto; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
th { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-dim); background: var(--bg-soft); }
tr:last-child td { border-bottom: none; }
td .dim { color: var(--text-dim); font-size: 13px; }

/* BADGES */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.badge-green { background: rgba(34,197,94,.15); color: var(--success); }
.badge-yellow { background: rgba(245,158,11,.15); color: var(--warning); }
.badge-gray { background: rgba(154,161,176,.15); color: var(--text-dim); }
.badge-red { background: rgba(239,68,68,.15); color: var(--danger); }
.badge-purple { background: rgba(139,92,246,.15); color: var(--primary); }

/* PLATFORM PILLS */
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #fff;
}
.pill-plain {
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--text-dim);
  font-weight: 500;
}

/* AUTH / LANDING */
.auth-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.auth-box h1 { font-size: 22px; margin-bottom: 4px; }
.auth-box .sub { color: var(--text-dim); font-size: 14px; margin-bottom: 22px; }
.alert {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: var(--danger);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}

.hero {
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 760px;
  margin: 0 auto;
}
.hero h1 { font-size: 44px; font-weight: 900; line-height: 1.15; }
.hero h1 .grad {
  background: linear-gradient(135deg, var(--primary), #ec4899, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { color: var(--text-dim); font-size: 17px; margin: 20px 0 30px; }
.hero .cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.feature-row { max-width: 960px; margin: 40px auto; display: grid; gap: 20px; }
.feature-row h2 { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 8px; }

/* CREATE */
.gen-result {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  white-space: pre-wrap;
  font-size: 14px;
  margin: 14px 0;
}

/* CALENDAR */
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cal-day {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  min-height: 110px; padding: 8px; font-size: 13px;
}
.cal-day .num { font-weight: 700; color: var(--text-dim); }
.cal-item {
  background: rgba(139,92,246,.15); color: var(--primary);
  border-radius: 6px; padding: 4px 6px; margin-top: 4px;
  font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

@media (max-width: 700px) {
  .cal-grid { grid-template-columns: repeat(2, 1fr); }
  .cal-day { min-height: 80px; }
}
@media (max-width: 480px) {
  .cal-grid { grid-template-columns: 1fr; }
}

/* PRICING */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .price-cards { grid-template-columns: 1fr; } }
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 26px; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 10px 30px rgba(139,92,246,.15); }
.price-card .name { font-size: 15px; font-weight: 700; color: var(--text-dim); }
.price-card .price { font-size: 38px; font-weight: 900; margin: 8px 0 2px; }
.price-card .period { font-size: 13px; color: var(--text-dim); margin-bottom: 18px; }
.price-card ul { list-style: none; margin-bottom: 22px; flex: 1; }
.price-card ul li { padding: 6px 0; font-size: 14px; color: var(--text-dim); }
.price-card ul li::before { content: '✓ '; color: var(--success); font-weight: 700; }

/* FOOTER */
.footer {
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

/* MISC */
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 14px; }
.mt-4 { margin-top: 20px; }
.mb-3 { margin-bottom: 14px; }
.flex { display: flex; gap: 10px; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.empty { text-align: center; color: var(--text-dim); padding: 40px 0; font-size: 14px; }
.muted { color: var(--text-dim); font-size: 13px; }
.text-pretty { text-wrap: pretty; }
.text-balance { text-wrap: balance; }
.tabular, .tabular-nums, .value { font-variant-numeric: tabular-nums; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* NAV numbered */
.nav-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 999px; font-size: 11px; font-weight: 700;
  background: var(--border); color: var(--text); margin-right: 4px;
}
.nav-links a.active .nav-n { background: var(--primary); color: #fff; }
.nav-more { position: relative; }
.nav-more summary {
  display: flex; align-items: center; gap: 6px;
  list-style: none; cursor: pointer; color: var(--text-dim); font-size: 13px; font-weight: 500;
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: all .15s ease;
}
.nav-more summary::-webkit-details-marker { display: none; }
.nav-more summary:hover { color: var(--text); background: var(--card); }
.nav-more-panel {
  position: absolute; right: 0; top: 120%; min-width: 200px;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 8px; display: flex; flex-direction: column; gap: 2px; z-index: 40;
  box-shadow: var(--shadow-lg);
}
.nav-more-panel a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 8px; color: var(--text-dim); font-size: 14px;
  transition: all .15s ease;
}
.nav-more-panel a:hover { background: var(--bg-soft); color: var(--text); }
.nav-more-panel a svg { opacity: .7; }
.nav-admin-link { color: var(--warning) !important; }
.nav-admin-link:hover { background: rgba(245,158,11,.1) !important; }
.brand-select { max-width: 200px; padding: 8px 10px; font-size: 13px; }

/* NAV mobile */
@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; }
  .nav-links-main {
    position: fixed; top: 56px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-soft); border-bottom: 1px solid var(--border);
    padding: 0; max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
    z-index: 49;
  }
  .nav-links-main.open { max-height: 500px; padding: 8px 0; }
  .nav-links-main a {
    width: 100%; padding: 14px 20px; border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-more { width: 100%; }
  .nav-more summary { padding: 14px 20px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav-more-panel { position: static; box-shadow: none; border: none; padding: 0; }
  .nav-more-panel a { padding: 12px 36px; border-bottom: 1px solid var(--border); }
  .nav-user { gap: 8px; }
  .nav-brand-text { display: none; }
  .brand-select { max-width: 140px; }
}

/* DASHBOARD — guided steps */
.dash { padding-bottom: 48px; }
.dash-hero {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px;
  align-items: stretch; margin-bottom: 22px;
}
.dash-hero-left { display: flex; flex-direction: column; gap: 8px; }
.dash-greeting { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.dash-kicker { color: var(--text-dim); font-size: 13px; margin-bottom: 2px; }
.dash-hero .page-title { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; text-wrap: balance; }
.dash-next { padding: 22px; border-color: rgba(139,92,246,.45); background: linear-gradient(180deg, rgba(139,92,246,.12), var(--card)); }
.dash-next-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.dash-next-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(139,92,246,.15); color: var(--primary-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dash-next-label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dim); font-weight: 600; }
.dash-next-num { color: var(--primary-light); font-weight: 700; font-size: 13px; margin-top: 2px; }
.dash-next-title { font-size: 20px; font-weight: 700; margin: 4px 0 8px; text-wrap: balance; }

.section-title { font-size: 16px; font-weight: 700; margin-bottom: 14px; }

.step-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.step-card { display: grid; grid-template-columns: 40px 1fr; gap: 12px; }
.step-rail { display: flex; flex-direction: column; align-items: center; }
.step-badge {
  width: 32px; height: 32px; border-radius: 999px; display: inline-flex;
  align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--text);
  flex-shrink: 0; transition: all .15s ease;
}
.step-card.is-current .step-badge {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 0 12px rgba(139,92,246,.4);
}
.step-card.is-done .step-badge {
  background: rgba(34,197,94,.15); border-color: rgba(34,197,94,.4); color: var(--success-light);
}
.step-line {
  width: 2px; flex: 1; min-height: 18px; background: var(--border); margin: 4px 0;
}
.step-card.is-done .step-line { background: rgba(34,197,94,.35); }
.step-body { margin-bottom: 12px; padding: 18px 20px; }
.step-card.is-current .step-body {
  border-color: rgba(139,92,246,.5);
  box-shadow: 0 0 0 1px rgba(139,92,246,.2), var(--glow);
}
.step-top { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.step-meta { font-size: 12px; color: var(--text-dim); font-weight: 600; margin-bottom: 4px; }
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; text-wrap: balance; }
.step-hint { margin-top: 10px; font-size: 13px; color: var(--text); opacity: .85; }
.step-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; min-width: 140px; }

.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quick-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--bg-soft); color: var(--text); transition: all .15s ease;
  text-decoration: none;
}
.quick-item:hover { border-color: var(--primary); background: var(--card-hover); }
.quick-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.quick-icon-purple { background: rgba(139,92,246,.12); color: var(--primary-light); }
.quick-icon-blue { background: rgba(59,130,247,.12); color: var(--info-light); }
.quick-icon-yellow { background: rgba(245,158,11,.12); color: var(--warning-light); }
.quick-icon-green { background: rgba(34,197,94,.12); color: var(--success-light); }
.quick-icon-gray { background: rgba(154,161,176,.12); color: var(--text-dim); }
.quick-item b { display: block; font-size: 14px; font-weight: 650; }
.quick-item small { display: block; color: var(--text-dim); font-size: 12px; margin-top: 2px; }

.activity-list { list-style: none; display: flex; flex-direction: column; gap: 0; max-height: 280px; overflow: auto; }
.activity-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.activity-list li:last-child { border-bottom: none; }
.activity-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  margin-top: 6px; flex-shrink: 0;
  box-shadow: 0 0 6px rgba(139,92,246,.3);
}
.activity-msg { display: block; line-height: 1.5; }
.activity-list time { color: var(--text-dim); font-size: 11px; display: block; margin-top: 2px; }
.dash-foot { margin-top: 28px; text-align: center; }

/* Empty state */
.empty-state { text-align: center; padding: 32px 16px; }
.empty-icon { color: var(--text-dim); margin-bottom: 12px; opacity: .5; }
.empty-state p { font-size: 13px; line-height: 1.6; }

@media (max-width: 900px) {
  .dash-hero { grid-template-columns: 1fr; }
  .step-top { flex-direction: column; }
  .step-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .activity-list li { flex-direction: row; }
  .quick-grid { grid-template-columns: 1fr; }
  .stat { padding: 14px 16px; }
  .stat .value { font-size: 24px; }
  .stat-icon { width: 36px; height: 36px; }
}

@media (max-width: 600px) {
  .dash-greeting { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav-avatar.lg { width: 40px; height: 40px; font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* === Carousel Preview === */
.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.carousel-slide-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* === Phone Frame (Story 9:16) === */
.phone-frame {
  width: 180px;
  border: 8px solid #222;
  border-radius: 28px;
  padding: 4px;
  background: #222;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-soft);
}
.phone-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
}

/* === Progress Steps === */
.progress-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.progress-step {
  font-size: 13px;
  padding: 4px 0;
}
.progress-bar-wrap {
  height: 8px;
  background: var(--bg-soft);
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--primary);
  transition: width 0.5s ease;
}

/* === Cal Item Link === */
.cal-item-link {
  display: block;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 11px;
  margin-bottom: 4px;
  border-left: 3px solid;
  transition: background 0.2s;
}
.cal-item-link:hover { background: var(--bg-soft); }
.cal-item-link.cal-draft { border-color: #999; color: #666; }
.cal-item-link.cal-processing { border-color: #f59e0b; color: #b45309; }
.cal-item-link.cal-approved { border-color: #22c55e; color: #15803d; }
.cal-item-link.cal-published { border-color: #3b82f6; color: #1d4ed8; }
.cal-item-link.cal-rejected { border-color: #ef4444; color: #b91c1c; }

@media (max-width: 600px) {
  .carousel-slide-card { flex: 0 0 140px; }
  .phone-frame { width: 140px; }
}

/* === LANDING PAGE === */
.hero { text-align: center; padding: 60px 24px 40px; max-width: 760px; margin: 0 auto; }
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-kicker {
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--primary); padding: 6px 14px; border-radius: 999px;
  background: rgba(139,92,246,.12); border: 1px solid rgba(139,92,246,.25);
}
.hero h1 { font-size: 40px; font-weight: 800; line-height: 1.15; max-width: 620px; }
.hero h1 .grad {
  background: linear-gradient(135deg, var(--primary), #ec4899);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 16px; color: var(--text-dim); max-width: 540px; }
.hero .cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.hero-foot { font-size: 13px; }

.pipeline { max-width: 1000px; margin: 48px auto; text-align: center; }
.pipeline h2 { font-size: 26px; font-weight: 800; margin-bottom: 28px; }
.pipeline-grid {
  display: flex; align-items: stretch; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.pipeline-step {
  flex: 1; min-width: 180px; max-width: 220px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 18px; text-align: center;
}
.pipeline-num {
  width: 36px; height: 36px; border-radius: 999px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff;
  background: var(--primary);
}
.pipeline-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pipeline-step p { font-size: 13px; line-height: 1.5; }
.pipeline-arrow {
  display: flex; align-items: center; font-size: 22px; color: var(--text-dim);
  padding: 0 4px;
}
@media (max-width: 800px) {
  .pipeline-arrow { display: none; }
  .pipeline-step { max-width: 100%; }
}

.features { max-width: 1000px; margin: 48px auto; }
.features h2 { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 28px; }
.feature-card { text-align: left; }
.feature-icon { font-size: 28px; margin-bottom: 10px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 13px; line-height: 1.5; }

.pricing-preview { max-width: 960px; margin: 48px auto; text-align: center; }
.pricing-preview h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.pricing-preview > .muted { margin-bottom: 28px; }
.pricing-preview .price-cards { max-width: 800px; margin: 0 auto; }
.text-center { text-align: center; }

.faq { max-width: 720px; margin: 48px auto; }
.faq h2 { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 24px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 10px;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 15px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--text-dim); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 12px; font-size: 14px; line-height: 1.6; }

/* Pricing page extras */
.pricing-hero { text-align: center; margin-bottom: 32px; }
.pricing-hero .page-title { font-size: 28px; }
.trial-badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; margin-bottom: 16px;
  background: rgba(139,92,246,.15); color: var(--primary);
}

/* ===================================================================
   LANDING PAGE — full redesign
   =================================================================== */

.lp-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* --- Hero --- */
.lp-hero {
  padding: 56px 0 48px;
  text-align: center;
}
.lp-hero-content { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lp-badge {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--text-dim);
  background: var(--card); border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color .15s ease;
}
.lp-badge:hover { border-color: var(--primary); color: var(--text); }
.lp-hero-title {
  font-size: 42px; font-weight: 800; line-height: 1.12;
  max-width: 680px; letter-spacing: -0.03em;
  text-wrap: balance;
}
.lp-hero-accent { color: var(--primary); }
.lp-hero-sub {
  font-size: 17px; line-height: 1.6; color: var(--text-dim);
  max-width: 560px; text-wrap: pretty;
}
.lp-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lp-btn-primary {
  background: var(--primary); color: #fff; font-weight: 700;
  padding: 14px 30px; font-size: 15px;
  box-shadow: 0 4px 20px rgba(139,92,246,.3);
}
.lp-btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.lp-hero-note { font-size: 13px; color: var(--text-dim); }

/* --- Platform logos --- */
.lp-platforms { margin-top: 40px; }
.lp-platforms-label {
  font-size: 13px; color: var(--text-dim); text-align: center; margin-bottom: 16px;
  font-weight: 600;
}
.lp-platforms-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.lp-plat {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text-dim);
  transition: all .15s ease;
}
.lp-plat:hover {
  border-color: var(--primary); color: var(--text);
  transform: translateY(-2px);
}
.lp-plat svg { opacity: .8; }

/* --- Sections --- */
.lp-section { padding: 64px 0; }
.lp-section-title {
  font-size: 30px; font-weight: 800; letter-spacing: -0.03em;
  text-align: center; margin-bottom: 12px; text-wrap: balance;
}
.lp-section-sub {
  text-align: center; color: var(--text-dim); font-size: 16px;
  margin-bottom: 40px; text-wrap: pretty;
}

/* --- Problem --- */
.lp-problem { background: var(--bg-soft); }
.lp-problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 36px;
}
.lp-problem-item { text-align: center; padding: 28px 20px; }
.lp-problem-icon { font-size: 36px; margin-bottom: 14px; }
.lp-problem-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.lp-problem-item p { font-size: 14px; color: var(--text-dim); line-height: 1.6; text-wrap: pretty; }
@media (max-width: 768px) { .lp-problem-grid { grid-template-columns: 1fr; } }

/* --- Flow --- */
.lp-flow { max-width: 720px; margin: 0 auto; }
.lp-flow-step {
  display: grid; grid-template-columns: 48px 1fr; gap: 18px;
  align-items: start;
}
.lp-flow-num {
  width: 40px; height: 40px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff;
  background: var(--primary); flex-shrink: 0;
}
.lp-flow-body { padding-bottom: 8px; }
.lp-flow-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.lp-flow-body p { font-size: 14px; color: var(--text-dim); line-height: 1.6; text-wrap: pretty; }
.lp-flow-line {
  width: 2px; height: 28px; background: var(--border);
  margin-left: 19px; margin-bottom: 4px;
}

/* --- Benefits --- */
.lp-benefits { background: var(--bg-soft); }
.lp-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.lp-benefit {
  padding: 28px 22px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
}
.lp-benefit-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139,92,246,.12); color: var(--primary);
  margin-bottom: 16px;
}
.lp-benefit h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.lp-benefit p { font-size: 14px; color: var(--text-dim); line-height: 1.6; text-wrap: pretty; }
@media (max-width: 768px) { .lp-benefits-grid { grid-template-columns: 1fr; } }

/* --- Stats --- */
.lp-stats { padding: 48px 0; }
.lp-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.lp-stat { text-align: center; padding: 24px 12px; }
.lp-stat-num {
  font-size: 40px; font-weight: 800; color: var(--primary);
  font-variant-numeric: tabular-nums; letter-spacing: -0.03em;
}
.lp-stat-label { font-size: 13px; color: var(--text-dim); margin-top: 6px; text-wrap: pretty; }
@media (max-width: 600px) { .lp-stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- Pricing preview --- */
.lp-pricing-preview { background: var(--bg-soft); }
.lp-price-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 880px; margin: 0 auto;
}
.lp-price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px; display: flex; flex-direction: column;
  position: relative;
}
.lp-price-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 12px 40px rgba(139,92,246,.15);
}
.lp-price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: #fff;
  background: var(--primary); white-space: nowrap;
}
.lp-price-name { font-size: 14px; font-weight: 600; color: var(--text-dim); }
.lp-price-amount { font-size: 36px; font-weight: 800; margin: 8px 0 2px; font-variant-numeric: tabular-nums; }
.lp-price-period { font-size: 13px; color: var(--text-dim); margin-bottom: 20px; }
.lp-price-features { list-style: none; margin-bottom: 24px; flex: 1; }
.lp-price-features li { padding: 7px 0; font-size: 14px; color: var(--text-dim); }
.lp-price-features li::before { content: '\2713  '; color: var(--success); font-weight: 700; }
.lp-pricing-note { text-align: center; margin-top: 28px; }
.lp-pricing-note a { font-size: 14px; font-weight: 600; }
@media (max-width: 768px) { .lp-price-cards { grid-template-columns: 1fr; } }

/* --- FAQ --- */
.lp-faq-list { max-width: 720px; margin: 0 auto; }
.lp-faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 10px;
}
.lp-faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 15px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: '+'; font-size: 22px; color: var(--text-dim); }
.lp-faq-item[open] summary::after { content: '\2212'; }
.lp-faq-item p { margin-top: 14px; font-size: 14px; color: var(--text-dim); line-height: 1.7; text-wrap: pretty; }

/* --- Final CTA --- */
.lp-cta {
  padding: 72px 24px; text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.lp-cta-title {
  font-size: 32px; font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 14px; text-wrap: balance;
}
.lp-cta-sub { font-size: 16px; color: var(--text-dim); margin-bottom: 24px; text-wrap: pretty; }
.lp-cta-note { font-size: 13px; color: var(--text-dim); margin-top: 16px; }

/* --- Footer --- */
.landing-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 40px 24px;
}
.landing-footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.landing-footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 20px; font-weight: 800; margin-bottom: 12px;
}
.landing-footer-links {
  display: flex; justify-content: center; gap: 24px;
  margin: 16px 0;
}
.landing-footer-links a { font-size: 14px; font-weight: 600; }

@media (max-width: 600px) {
  .lp-hero-title { font-size: 32px; }
  .lp-section-title { font-size: 24px; }
  .lp-cta-title { font-size: 26px; }
  .lp-stat-num { font-size: 32px; }
  .lp-plat span { display: none; }
  .lp-plat { padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-plat:hover, .lp-btn-primary:hover { transform: none; }
}

/* ===================================================================
   3D HERO CANVAS + NEON THEME
   =================================================================== */

/* --- Landing Nav --- */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.lp-nav.scrolled {
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.lp-nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.lp-nav-brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 20px; font-weight: 800; color: var(--text);
}
.lp-nav-brand .logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), #ec4899);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.3);
}
.lp-nav-links {
  display: flex; align-items: center; gap: 24px;
}
.lp-nav-links a {
  color: var(--text-dim); font-weight: 500; font-size: 14px;
  transition: color .15s ease;
}
.lp-nav-links a:hover { color: var(--text); }
.lp-nav-cta {
  padding: 8px 18px; border-radius: var(--radius);
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff !important; font-weight: 600;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.3);
  transition: box-shadow .15s ease, transform .15s ease;
}
.lp-nav-cta:hover {
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.5);
  transform: translateY(-1px);
}
.lp-nav-toggle {
  display: none;
  background: none; border: none; color: var(--text);
  cursor: pointer; padding: 4px;
}

@media (max-width: 768px) {
  .lp-nav-toggle { display: block; }
  .lp-nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(15, 17, 23, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .lp-nav-links.open { max-height: 300px; padding: 8px 0; }
  .lp-nav-links a {
    width: 100%; padding: 14px 24px;
    border-bottom: 1px solid var(--border);
  }
  .lp-nav-cta { text-align: center; margin: 8px 24px; border-radius: var(--radius); }
}

/* --- 3D Canvas --- */
.hero-3d-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.hero-3d-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    transparent 40%,
    rgba(10, 10, 15, 0.4) 70%,
    var(--bg) 100%
  );
}

/* Hero above canvas */
.lp-hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  background: transparent;
}

/* Neon accent text */
.lp-hero-accent {
  color: var(--primary);
  text-shadow:
    0 0 20px rgba(168, 85, 247, 0.5),
    0 0 40px rgba(168, 85, 247, 0.2);
}

/* Neon badge */
.lp-badge {
  border-color: rgba(168, 85, 247, 0.4);
  background: rgba(168, 85, 247, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.15);
}

/* Neon primary button */
.lp-btn-primary {
  position: relative;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  box-shadow:
    0 0 24px rgba(168, 85, 247, 0.4),
    0 4px 20px rgba(139, 92, 246, 0.3);
  border: 1px solid rgba(168, 85, 247, 0.5);
}

.lp-btn-primary:hover {
  background: linear-gradient(135deg, #b46cf8, #8b4df0);
  box-shadow:
    0 0 32px rgba(168, 85, 247, 0.6),
    0 4px 24px rgba(139, 92, 246, 0.4);
}

/* Neon outline button */
.lp-hero-cta .btn-outline {
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(28, 32, 41, 0.5);
  color: var(--text);
}

.lp-hero-cta .btn-outline:hover {
  border-color: var(--primary);
  background: rgba(168, 85, 247, 0.1);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.2);
}

/* Neon platform cards */
.lp-plat {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(28, 32, 41, 0.6);
  border-color: rgba(42, 47, 58, 0.8);
}

.lp-plat:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(28, 32, 41, 0.8);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

/* Neon section titles */
.lp-section-title {
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}

/* Neon stat numbers */
.lp-stat-num {
  text-shadow: 0 0 24px rgba(168, 85, 247, 0.4);
}

/* Neon pricing featured card */
.lp-price-featured {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.5),
    0 0 32px rgba(168, 85, 247, 0.15),
    0 12px 40px rgba(139, 92, 246, 0.1);
}

/* Neon flow number */
.lp-flow-num {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.4);
}

/* Neon benefit icon */
.lp-benefit-icon {
  background: rgba(168, 85, 247, 0.12);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.1);
}

/* Neon CTA section */
.lp-cta {
  background: radial-gradient(
    ellipse at center,
    rgba(168, 85, 247, 0.08) 0%,
    transparent 70%
  ), linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.lp-cta-title {
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Selection */
::selection {
  background: rgba(168, 85, 247, 0.3);
  color: var(--text);
}

/* Loading state before 3D init */
.hero-3d-canvas:not(.loaded) {
  opacity: 0;
}
.hero-3d-canvas {
  transition: opacity 0.8s ease;
}

@media (max-width: 768px) {
  .hero-3d-canvas { height: 70vh; }
  .hero-3d-overlay { height: 70vh; }
  .lp-hero { min-height: 70vh; }
}

/* ===================================================================
   NEW FEATURES: AI toggle, weekday chips, format badges, repurpose
   =================================================================== */

/* AI Toggle Switch */
.ai-toggle {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; padding: 10px 14px;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg-soft);
  transition: all .15s ease;
}
.ai-toggle:hover { border-color: var(--primary); }
.ai-toggle input { display: none; }
.ai-toggle-slider {
  width: 44px; height: 24px; border-radius: 999px;
  background: var(--border); position: relative;
  transition: background .2s ease; flex-shrink: 0;
}
.ai-toggle-slider::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; transition: transform .2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.ai-toggle input:checked + .ai-toggle-slider {
  background: linear-gradient(135deg, var(--primary), var(--pink));
}
.ai-toggle input:checked + .ai-toggle-slider::after {
  transform: translateX(20px);
}
.ai-toggle-label { font-weight: 600; font-size: 14px; color: var(--text); }

/* Weekday chips */
.weekday-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.weekday-chip {
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer;
}
.weekday-chip input { display: none; }
.weekday-chip span {
  display: inline-block; padding: 8px 12px;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--text-dim); transition: all .15s ease;
}
.weekday-chip input:checked + span {
  background: rgba(139,92,246,.15); border-color: var(--primary);
  color: var(--primary-light);
}

/* Content format badges */
.format-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
}
.format-text { background: rgba(59,130,247,.12); color: var(--info-light); }
.format-image { background: rgba(34,197,94,.12); color: var(--success-light); }
.format-reel { background: rgba(236,72,153,.12); color: var(--pink); }
.format-carousel { background: rgba(139,92,246,.12); color: var(--primary-light); }
.format-video { background: rgba(245,158,11,.12); color: var(--warning-light); }
.format-thread { background: rgba(6,182,212,.12); color: var(--cyan); }

/* Repurpose items */
.repurpose-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; margin-bottom: 12px; background: var(--bg-soft);
}
.repurpose-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.repurpose-header h4 { font-size: 15px; font-weight: 700; margin: 0; }
.repurpose-body { font-size: 14px; line-height: 1.6; color: var(--text); white-space: pre-wrap; }

/* Nav new link */
.nav-more-panel a[href="/repurpose"] svg { color: var(--pink); }

@media (max-width: 600px) {
  .ai-toggle { flex-wrap: wrap; }
  .weekday-chip span { padding: 6px 10px; font-size: 12px; }
}
