/* =============================================
   SMARTly Landing — Design System & Styles
   ============================================= */

/* ── Tokens ── */
:root {
  --brand: #2563EB;
  --brand-dark: #1d4ed8;
  --brand-light: #eff6ff;
  --accent: #7c3aed;
  --success: #059669;
  --warning: #d97706;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-400: #9ca3af;
  --neutral-600: #4b5563;
  --neutral-900: #111827;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 48px rgba(37,99,235,.12), 0 8px 24px rgba(0,0,0,.07);
  --max-width: 1080px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--neutral-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Accessibility ── */
.skip-link {
  position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: static; width: auto; height: auto;
  padding: 8px 14px; background: #fff; border: 2px solid var(--brand);
  border-radius: var(--radius-sm); margin: 8px; z-index: 9999;
}
:focus-visible { outline: 3px solid rgba(37,99,235,.45); outline-offset: 3px; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  line-height: 1; transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--brand); color: #fff; padding: 12px 22px; }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 4px 14px rgba(37,99,235,.35); }
.btn-ghost { background: transparent; color: var(--brand); padding: 12px 22px; border: 2px solid var(--neutral-200); }
.btn-ghost:hover { border-color: var(--brand); background: var(--brand-light); }
.btn-outline { background: transparent; color: var(--brand); padding: 10px 18px; border: 1.5px solid var(--brand); }
.btn-outline:hover { background: var(--brand-light); }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: var(--radius-md); }
.btn-full { width: 100%; }

/* ── Navigation ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 800; color: var(--neutral-900);
  text-decoration: none;
}
.logo-mark {
  width: 30px; height: 30px; background: var(--brand); color: #fff;
  border-radius: 8px; display: inline-flex; align-items: center;
  justify-content: center; font-size: 16px; font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { font-size: 14px; font-weight: 500; color: var(--neutral-600); }
.nav-links a:not(.btn):hover { color: var(--brand); text-decoration: none; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  background: #0b1120;
  padding: 96px 0 80px;
}
/* Subtle dot-grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Bottom fade so grid blends into body */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, #0b1120);
  pointer-events: none;
}
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: .35;
}
.blob-1 {
  width: 600px; height: 600px; top: -120px; right: -120px;
  background: radial-gradient(circle, #2563eb, #0f172a);
}
.blob-2 {
  width: 440px; height: 440px; bottom: -80px; left: -80px;
  background: radial-gradient(circle, #16a34a, #0f172a);
}
.hero-container {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero-text { position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,99,235,.15); color: #93c5fd;
  font-size: 13px; font-weight: 600; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 24px;
  border: 1px solid rgba(37,99,235,.35);
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(34px, 4.2vw, 54px); font-weight: 800; line-height: 1.12;
  letter-spacing: -.03em; margin-bottom: 20px;
  color: #f1f5f9;
}
.highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  font-size: 17px; color: #94a3b8; margin-bottom: 32px; line-height: 1.7;
  max-width: 480px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-sub { font-size: 13px; color: #64748b; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

/* Hero inline email capture */
.hero-email-form { max-width: 520px; margin-bottom: 0; }
.hero-email-row {
  display: flex; gap: 8px; margin-bottom: 10px;
}
.hero-email-row input[type="email"] {
  flex: 1; min-width: 0;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #f1f5f9;
  font-size: 15px;
  font-family: inherit;
}
.hero-email-row input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.hero-email-row input[type="email"]:focus {
  outline: none;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
}
/* Primary CTA — brighter on dark bg */
.hero .btn-primary {
  background: #2563eb;
  box-shadow: 0 0 0 1px rgba(96,165,250,.3), 0 4px 20px rgba(37,99,235,.4);
}
.hero .btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 0 0 1px rgba(96,165,250,.4), 0 6px 28px rgba(37,99,235,.5);
}
/* Ghost CTA — visible on dark bg */
.hero .btn-ghost {
  color: #e2e8f0; border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
}
.hero .btn-ghost:hover {
  border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08);
  color: #fff;
}

/* ── Phone Mockup ── */
.phone-frame {
  position: relative;
  width: 285px; margin: 0 auto;
  background: #0d1117;
  border-radius: 46px;
  padding: 14px 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 0 0 2px rgba(37,99,235,.25),
    0 30px 90px rgba(0,0,0,.7),
    0 0 60px rgba(37,99,235,.2),
    0 0 120px rgba(22,163,74,.1);
  z-index: 1;
}
.phone-notch {
  width: 80px; height: 22px;
  background: #111827;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 6px;
  position: relative; z-index: 2;
}
.phone-screen {
  background: #f9fafb;
  border-radius: 34px;
  overflow: hidden;
  min-height: 500px;
  display: flex; flex-direction: column;
  font-size: 12px;
}
/* Status bar */
.ps-status {
  background: #fff; padding: 6px 16px 4px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700; color: #111;
}
.ps-icons { letter-spacing: -2px; font-size: 8px; }
/* App header */
.ps-header {
  background: #fff; padding: 10px 16px 12px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--neutral-100);
}
.ps-greeting { font-size: 13px; font-weight: 700; color: var(--neutral-900); }
.ps-date { font-size: 11px; color: var(--neutral-400); margin-top: 1px; }
.ps-streak {
  background: #fef3c7; color: #92400e;
  font-size: 13px; font-weight: 800;
  padding: 4px 10px; border-radius: 100px; border: 1px solid #fde68a;
}
/* Goal card */
.ps-goal-card {
  background: linear-gradient(135deg, #2563EB, #7c3aed);
  margin: 10px; border-radius: 16px;
  padding: 12px 14px; display: flex;
  justify-content: space-between; align-items: center;
  color: #fff;
}
.ps-goal-left { display: flex; align-items: center; gap: 10px; }
.ps-goal-emoji { font-size: 22px; }
.ps-goal-name { font-size: 13px; font-weight: 700; }
.ps-goal-sub { font-size: 10px; opacity: .75; }
.ps-ring { width: 44px; height: 44px; }
/* Section label */
.ps-section-label {
  padding: 6px 16px 3px;
  font-size: 9px; font-weight: 700; letter-spacing: .08em;
  color: var(--neutral-400);
}
/* Session card */
.ps-session-card {
  background: #fff; margin: 0 10px; border-radius: 12px;
  padding: 10px 12px; display: flex; justify-content: space-between;
  align-items: center; border: 1.5px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
}
.ps-session-title { font-size: 12px; font-weight: 700; color: var(--neutral-900); margin-bottom: 3px; }
.ps-session-meta { font-size: 10px; color: var(--neutral-400); }
.ps-start-btn {
  background: var(--brand); color: #fff;
  border: none; border-radius: 8px;
  padding: 6px 12px; font-size: 11px; font-weight: 700;
  cursor: default;
}
/* Milestones */
.ps-milestones { padding: 4px 16px 8px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.ps-mile { font-size: 11px; padding: 4px 0; }
.ps-mile-done { color: var(--neutral-400); text-decoration: line-through; }
.ps-mile-active { color: var(--brand); font-weight: 700; }
.ps-mile-todo { color: var(--neutral-400); }
.ps-now {
  background: var(--brand); color: #fff;
  font-size: 9px; padding: 1px 6px; border-radius: 100px; margin-left: 4px;
}
/* Bottom nav */
.ps-nav {
  background: #fff; border-top: 1px solid var(--neutral-100);
  display: flex; padding: 8px 0 10px; margin-top: auto;
}
.ps-nav-item {
  flex: 1; text-align: center; font-size: 9px; color: var(--neutral-400);
  line-height: 1.3; cursor: default;
}
.ps-nav-active { color: var(--brand) !important; font-weight: 700; }

/* ── Proof Bar ── */
.proof-bar {
  background: #fff; border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md); padding: 24px 32px; margin: 48px 0;
  box-shadow: var(--shadow-sm);
}
.proof-items {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-num { display: block; font-size: 16px; font-weight: 800; color: var(--brand); }
.proof-label { font-size: 12px; color: var(--neutral-600); font-weight: 500; }
.proof-divider { width: 1px; height: 36px; background: var(--neutral-200); }

/* ── Section Shared ── */
section { padding: 64px 0; }
h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 12px; color: var(--neutral-900);
}
.section-sub {
  font-size: 17px; color: var(--neutral-600); margin-bottom: 40px; max-width: 560px;
}

/* ── Problem Section ── */
.problem-section { text-align: center; }
.problem-section .section-sub { margin-left: auto; margin-right: auto; }
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; text-align: left; }
.vs-card {
  padding: 24px; border-radius: var(--radius-md); border: 1.5px solid var(--neutral-200);
}
.vs-bad { background: #fff7f7; border-color: #fecdd3; }
.vs-good { background: #f0fdf4; border-color: #bbf7d0; }
.vs-icon { font-size: 28px; margin-bottom: 10px; }
.vs-card strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.vs-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.vs-card li { font-size: 14px; color: var(--neutral-600); padding-left: 16px; position: relative; }
.vs-bad li::before { content: "✗"; position: absolute; left: 0; color: #e11d48; font-weight: 700; }
.vs-good li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }

/* ── How It Works ── */
.how-section { background: var(--neutral-50); border-radius: var(--radius-lg); padding: 56px 48px; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 16px; }
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.step-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--neutral-600); }
.step-arrow { font-size: 22px; color: var(--neutral-400); padding-top: 12px; }

/* ── Sample Plans ── */
.samples-section { text-align: center; }
.plan-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
  margin-top: 8px; text-align: left;
}
.plan-card {
  border: 1.5px solid var(--neutral-200); border-radius: var(--radius-md);
  padding: 24px; background: #fff; display: flex; flex-direction: column;
  gap: 16px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s;
  position: relative;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan-card-featured {
  border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), var(--shadow-md);
}
.plan-featured-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 100px;
  letter-spacing: .04em; white-space: nowrap;
}
.plan-emoji { font-size: 32px; line-height: 1; }
.plan-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.plan-body p { font-size: 14px; color: var(--neutral-600); margin-bottom: 10px; }
.plan-meta { display: flex; flex-wrap: wrap; gap: 4px; font-size: 12px; color: var(--neutral-400); font-weight: 500; }
.sep { color: var(--neutral-200); }
.plan-card .btn { margin-top: auto; align-self: flex-start; }

/* ── Features ── */
.features-section { background: var(--neutral-50); border-radius: var(--radius-lg); padding: 56px 48px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  font-size: 24px; width: 48px; height: 48px; flex-shrink: 0;
  background: var(--brand-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.feature h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.feature p { font-size: 14px; color: var(--neutral-600); }

/* ── Testimonials ── */
.testimonials-section { text-align: center; }
.testimonial-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
  text-align: left; margin-top: 8px;
}
.testimonial-card {
  background: var(--neutral-50); border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-sm);
}
.testimonial-featured {
  background: #eff6ff; border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-md);
}
.testimonial-card p {
  font-size: 15px; line-height: 1.65; color: var(--neutral-900);
  font-style: italic; flex: 1;
}
.testimonial-card footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card footer strong { font-size: 14px; font-weight: 700; }
.testimonial-card footer span { font-size: 12px; color: var(--success); font-weight: 600; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(145deg, #eff6ff, #f5f3ff);
  border-radius: var(--radius-lg); border: 1.5px solid #ddd6fe; padding: 56px 48px;
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.cta-text h2 { font-size: 30px; }
.cta-text p { font-size: 16px; color: var(--neutral-600); margin-bottom: 20px; }
.cta-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cta-checklist li { font-size: 15px; color: var(--neutral-900); font-weight: 500; }
.cta-form-wrap {
  background: #fff; border-radius: var(--radius-md); padding: 32px;
  box-shadow: var(--shadow-md); border: 1px solid var(--neutral-200);
}
.field-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field-hint { font-weight: 400; color: var(--neutral-400); font-size: 12px; }
.field-group label { font-size: 13px; font-weight: 600; color: var(--neutral-900); }
.field-group input, .field-group select, input[type="text"], input[type="email"] {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 15px;
  color: var(--neutral-900); background: #fff; transition: border-color .15s;
}
.field-group input:focus, .field-group select:focus { border-color: var(--brand); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-status {
  padding: 12px 14px; border-radius: var(--radius-sm); font-size: 14px;
  margin-bottom: 14px; border: 1.5px solid;
}
.form-status:not(.error) { background: #f0fdf4; border-color: #bbf7d0; color: #065f46; }
.form-status.error { background: #fff1f2; border-color: #fecdd3; color: #881337; }
.form-privacy { font-size: 12px; color: var(--neutral-400); margin-top: 10px; text-align: center; }
.form-privacy a { color: var(--neutral-400); }
.form-urgency { font-size: 13px; color: #dc2626; font-weight: 600; margin: 8px 0 4px; text-align: center; }

/* ── Footer ── */
.site-footer {
  background: var(--neutral-900); color: var(--neutral-400);
  margin-top: 80px; padding: 40px 0;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .logo-mark { background: var(--brand-light); color: var(--brand); }
.footer-brand strong { color: #fff; font-size: 16px; }
.footer-tagline { font-size: 13px; color: var(--neutral-600); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--neutral-400); }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-copy { font-size: 13px; color: var(--neutral-600); }
.footer-copy a { color: var(--neutral-600); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { padding: 72px 0 56px; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-sub { justify-content: center; }
  .hero-email-form { margin-left: auto; margin-right: auto; }
  .phone-frame { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .how-section, .features-section, .cta-section { padding: 40px 24px; }
}
@media (max-width: 640px) {
  .hero-email-row { flex-direction: column; }
  .hero-email-row .btn { width: 100%; justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 48px 0 40px; }
  .proof-divider { display: none; }
  .proof-items { gap: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════
   Plan Generator UI
   ══════════════════════════════════════════════ */

/* Step title */
.step-title {
  font-size: 18px; font-weight: 800; color: var(--neutral-900);
  margin-bottom: 18px;
}

/* Vague goal hint */
.goal-hint {
  font-size: 13px; color: var(--warning); font-weight: 500;
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: var(--radius-sm); padding: 8px 12px;
  margin-bottom: 10px;
}

/* Plan output header */
.plan-out-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1.5px solid var(--neutral-200);
}
.plan-out-left { display: flex; align-items: center; gap: 12px; }
.plan-out-emoji { font-size: 34px; line-height: 1; }
.plan-out-name { font-size: 17px; font-weight: 800; color: var(--neutral-900); }
.plan-out-meta {
  font-size: 12px; color: var(--neutral-600); font-weight: 500; margin-top: 3px;
}

/* Section label */
.plan-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  color: var(--neutral-400); margin-bottom: 8px; margin-top: 4px;
}

/* Milestones list */
.plan-milestones { margin-bottom: 18px; }
.ms-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--neutral-100);
}
.ms-item:last-child { border-bottom: none; }
.ms-num {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--neutral-200); color: var(--neutral-600);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ms-active .ms-num { background: var(--brand); color: #fff; }
.ms-body { display: flex; flex-direction: column; gap: 2px; }
.ms-title { font-size: 13px; font-weight: 600; color: var(--neutral-900); }
.ms-weeks { font-size: 11px; color: var(--neutral-400); font-weight: 500; }

/* Sample week */
.plan-week-sample { margin-bottom: 6px; }
.pws-row {
  display: flex; gap: 10px; align-items: baseline;
  padding: 6px 0; border-bottom: 1px solid var(--neutral-100); font-size: 13px;
}
.pws-row:last-child { border-bottom: none; }
.pws-day { font-weight: 700; color: var(--brand); width: 32px; flex-shrink: 0; }
.pws-desc { color: var(--neutral-600); line-height: 1.4; }

/* Save / email bar */
.plan-save-bar {
  background: var(--neutral-50); border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md); padding: 16px; margin-top: 20px;
}
.save-bar-label {
  font-size: 14px; font-weight: 600; color: var(--neutral-900); margin-bottom: 12px;
}
.save-field-row {
  display: flex; gap: 8px; margin-bottom: 0;
}
.save-field-row input { flex: 1; min-width: 0; }
.save-field-row .btn { flex-shrink: 0; padding: 11px 18px; }

@media (max-width: 480px) {
  .save-field-row { flex-direction: column; }
  .save-field-row .btn { width: 100%; }
  .plan-out-header { flex-wrap: wrap; }
}


