/* ============================================================
   Gennme — Global Styles
   Design Language: Calm, Colorful, Inviting (Wellness-forward)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand */
  --brand-primary: #1e6f8e;
  --brand-teal: #2a9db5;
  --brand-teal-light: #4dc4dc;
  --brand-dark: #0d2f3f;

  /* Accent (CTA) */
  --accent: #f0845a;
  --accent-warm: #e8a44a;
  --accent-gradient: linear-gradient(135deg, #f0845a, #e8a44a);

  /* Background */
  --bg-page: #f7f5f2;
  --bg-surface: #ffffff;
  --bg-surface-warm: #fdf9f6;
  --bg-overlay: rgba(247, 245, 242, 0.96);

  /* Text */
  --text-primary: #1a2a32;
  --text-secondary: #4a6572;
  --text-muted: #8fa8b4;

  /* Category Colors */
  --cat-professional: #4a72a8;
  --cat-interests: #3a8c6e;
  --cat-design: #e07a5f;
  --cat-shopping: #d4a843;
  --cat-aspirations: #8b6bbf;
  --cat-communication: #3aacbf;

  /* Utility */
  --border: rgba(0,0,0,0.07);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Type */
  --font-headline: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container { max-width: min(1180px, 100% - 2rem); margin: 0 auto; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-headline); line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { line-height: 1.75; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-headline);
  font-weight: 700; font-size: 1rem;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 6px 20px rgba(240,132,90,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(240,132,90,0.45); }
.btn-outline {
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}
.btn-outline:hover { background: var(--brand-primary); color: #fff; }
.btn-ghost { color: var(--text-secondary); }
.btn-ghost:hover { color: var(--brand-primary); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.1rem; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-overlay);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-headline); font-size: 1.5rem; font-weight: 800;
  color: var(--brand-dark);
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.9rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500; color: var(--text-secondary);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--brand-primary); background: rgba(30,111,142,0.07); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }

/* ── Hero ── */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30,111,142,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(30,111,142,0.08); color: var(--brand-primary);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-teal); display: block; }
.hero h1 {
  max-width: 820px; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 60%, var(--brand-teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.2rem; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto 2.5rem; font-weight: 400;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-visual {
  max-width: 900px; margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  position: relative;
}
.hero-visual img { width: 100%; object-fit: cover; }
.hero-visual-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, var(--bg-page), transparent);
}

/* ── Section ── */
.section { padding: 5rem 0; }
.section-center { text-align: center; }
.section-eyebrow {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-teal); margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto 3rem;
}

/* ── Feature Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.25rem;
}
.feature-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ── How It Works ── */
.how-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; position: relative;
}
.how-step {
  text-align: center; padding: 2rem 1.5rem;
}
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff; font-family: var(--font-headline); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 18px rgba(240,132,90,0.3);
}
.how-step h3 { margin-bottom: 0.5rem; }
.how-step p { color: var(--text-secondary); font-size: 0.95rem; }

/* ── Interview Modes ── */
.modes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.mode-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 2px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.mode-card:hover { border-color: var(--brand-teal-light); box-shadow: var(--shadow-md); }
.mode-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.badge-scheduled { background: rgba(74,114,168,0.12); color: var(--cat-professional); }
.badge-now { background: rgba(240,132,90,0.12); color: var(--accent); }
.badge-quick { background: rgba(58,172,191,0.12); color: var(--cat-communication); }
.mode-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.mode-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.mode-card .btn { width: 100%; justify-content: center; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
  border-radius: var(--radius-xl); padding: 4rem 2rem; text-align: center; color: #fff;
  margin: 2rem 0;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.1rem; }
.btn-white {
  background: #fff; color: var(--brand-primary);
  font-family: var(--font-headline); font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }

/* ── Footer ── */
.footer {
  background: var(--brand-dark); color: rgba(255,255,255,0.6);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: var(--font-headline); font-weight: 800; font-size: 1.2rem; color: #fff; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-teal-light); }
.footer-copy { font-size: 0.85rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: none; flex-direction: column; gap: 0.5rem; padding: 1rem 0; border-top: 1px solid var(--border); }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { padding: 0.75rem 1rem; border-radius: 10px; font-size: 1rem; color: var(--text-secondary); }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   Dashboard Styles
   ============================================================ */

.app-layout {
  display: flex; min-height: 100vh;
}

/* ── Sidebar ── */
.sidebar {
  width: 260px; flex-shrink: 0;
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 1.5rem 1rem;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.sidebar-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-headline); font-weight: 800; font-size: 1.3rem;
  color: var(--brand-dark); margin-bottom: 2rem; padding: 0 0.5rem;
}
.sidebar-logo img { width: 30px; height: 30px; }
.sidebar-nav { flex: 1; }
.sidebar-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); padding: 0 0.75rem; margin-bottom: 0.5rem; margin-top: 1.5rem;
}
.sidebar-label:first-child { margin-top: 0; }
.sidebar-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.75rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 500; color: var(--text-secondary);
  transition: all 0.2s; margin-bottom: 0.2rem;
}
.sidebar-link:hover { background: rgba(30,111,142,0.06); color: var(--brand-primary); }
.sidebar-link.active { background: rgba(30,111,142,0.1); color: var(--brand-primary); font-weight: 600; }
.sidebar-link .icon { font-size: 1.1rem; width: 22px; text-align: center; }
.sidebar-bottom { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.sidebar-user {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem; border-radius: 12px; background: var(--bg-page);
}
.sidebar-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.sidebar-user-info { font-size: 0.88rem; }
.sidebar-user-info strong { display: block; font-weight: 600; color: var(--text-primary); }
.sidebar-user-info span { color: var(--text-muted); }

/* ── Main Dashboard ── */
.main-content {
  flex: 1; padding: 2rem; overflow-y: auto;
  background: var(--bg-page);
}
.dash-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.dash-greeting { font-family: var(--font-headline); }
.dash-greeting small { font-size: 0.9rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.dash-greeting h2 { font-size: 1.7rem; color: var(--text-primary); margin-top: 0.15rem; }
.dash-actions-top { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }

/* ── Action Buttons ── */
.action-btn {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.25rem; border-radius: 50px;
  font-family: var(--font-headline); font-weight: 700; font-size: 0.92rem;
  transition: all 0.25s; cursor: pointer; border: none;
}
.action-btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(240,132,90,0.35);
}
.action-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(240,132,90,0.45); }
.action-btn-secondary {
  background: rgba(42,157,181,0.12);
  color: var(--brand-primary);
}
.action-btn-secondary:hover { background: rgba(42,157,181,0.2); }
.action-btn-outline {
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}
.action-btn-outline:hover { border-color: var(--brand-teal); color: var(--brand-primary); }

/* ── Dashboard Grid ── */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.5rem;
}
.dash-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.dash-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.dash-card-title {
  font-family: var(--font-headline); font-weight: 700; font-size: 1rem;
  color: var(--text-primary);
}
.dash-card-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.15rem; }
.dash-card-link { font-size: 0.85rem; color: var(--brand-teal); font-weight: 600; }
.dash-card-link:hover { text-decoration: underline; }

/* ── Maturity Card ── */
.maturity-card { grid-column: 1; }
.maturity-visual {
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem 0;
}
.maturity-plant {
  position: relative; width: 120px; height: 130px;
  margin-bottom: 1.25rem;
}
.maturity-plant svg { width: 100%; height: 100%; }
.maturity-stage-name {
  font-family: var(--font-headline); font-weight: 800; font-size: 1.5rem;
  color: var(--brand-primary); margin-bottom: 0.2rem;
}
.maturity-pct { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.maturity-message {
  font-size: 0.9rem; color: var(--text-secondary); text-align: center;
  max-width: 220px; margin-bottom: 1rem; line-height: 1.55;
  font-style: italic;
}
.maturity-progress {
  width: 100%; height: 8px; background: rgba(0,0,0,0.07);
  border-radius: 50px; overflow: hidden;
}
.maturity-progress-fill {
  height: 100%; border-radius: 50px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-teal-light));
  transition: width 1s ease;
}
.maturity-next { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; display: flex; justify-content: space-between; width: 100%; }

/* ── Coverage Wheel Card ── */
.coverage-card { grid-column: 2; }
.coverage-chart-wrap {
  display: flex; align-items: center; gap: 1.5rem;
}
.coverage-chart { flex-shrink: 0; }
.coverage-legend { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.legend-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.83rem; color: var(--text-secondary);
}
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-name { flex: 1; font-weight: 500; }
.legend-pct { font-weight: 700; color: var(--text-primary); }

/* ── Sessions Card ── */
.sessions-card { grid-column: 1 / -1; }
.sessions-list { display: flex; flex-direction: column; gap: 0.75rem; }
.session-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  background: var(--bg-page); border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.session-item:hover { box-shadow: var(--shadow-sm); }
.session-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.session-info { flex: 1; }
.session-topic { font-weight: 600; font-size: 0.95rem; }
.session-meta { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.15rem; }
.session-status {
  padding: 0.25rem 0.75rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
}
.status-upcoming { background: rgba(74,114,168,0.1); color: var(--cat-professional); }
.status-completed { background: rgba(58,140,110,0.1); color: var(--cat-interests); }
.status-suggested { background: rgba(212,168,67,0.1); color: var(--cat-shopping); }
.session-btn {
  padding: 0.4rem 0.9rem; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  background: var(--bg-surface); border: 1.5px solid var(--border);
  color: var(--text-secondary); cursor: pointer; transition: all 0.2s;
}
.session-btn:hover { border-color: var(--brand-teal); color: var(--brand-primary); }

/* ── Quick Hits Recent ── */
.recent-card { grid-column: 1 / -1; }
.quick-hits-list { display: flex; flex-direction: column; gap: 0.6rem; }
.quick-hit-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.9rem 1.1rem; border-radius: 10px;
  background: var(--bg-page); border: 1px solid var(--border);
}
.qh-cat-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 0.5rem;
}
.qh-text { flex: 1; font-size: 0.92rem; color: var(--text-primary); line-height: 1.5; }
.qh-time { font-size: 0.78rem; color: var(--text-muted); flex-shrink: 0; }

/* ── Modal / Session UI ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13, 47, 63, 0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem; width: min(520px, 95vw);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.75rem; }
.modal-close {
  width: 32px; height: 32px; border-radius: 50%; background: var(--bg-page);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--text-secondary); cursor: pointer;
  border: none; transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }
.session-ui { display: flex; flex-direction: column; align-items: center; text-align: center; }
.session-agent-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(30,111,142,0.3);
}
.session-agent-name { font-family: var(--font-headline); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem; }
.session-status-text { font-size: 0.88rem; color: var(--brand-teal); font-weight: 600; margin-bottom: 1.5rem; }
.session-bubble {
  background: var(--bg-page); border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem; width: 100%; text-align: left;
  font-size: 1rem; line-height: 1.65; margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  min-height: 80px;
}
.session-input-area {
  display: flex; gap: 0.75rem; width: 100%;
}
.session-input {
  flex: 1; padding: 0.85rem 1.1rem; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--bg-page);
  font-family: var(--font-body); font-size: 0.95rem; outline: none;
  transition: border-color 0.2s;
}
.session-input:focus { border-color: var(--brand-teal); }
.session-send {
  padding: 0.85rem 1.25rem; border-radius: 12px;
  background: var(--accent-gradient);
  color: #fff; font-weight: 700; border: none; cursor: pointer;
  font-size: 1rem; transition: all 0.2s;
}
.session-send:hover { transform: scale(1.04); }
.session-controls {
  display: flex; gap: 0.75rem; margin-top: 1.25rem; width: 100%;
}
.session-ctrl {
  flex: 1; padding: 0.65rem; border-radius: 10px; border: 1.5px solid var(--border);
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s;
}
.session-ctrl:hover { border-color: var(--text-muted); color: var(--text-primary); }
.session-ctrl.end { color: #e05a5a; border-color: rgba(224,90,90,0.3); }
.session-ctrl.end:hover { background: rgba(224,90,90,0.07); border-color: #e05a5a; }

/* ── Quick Hit Modal ── */
.quickhit-ui { display: flex; flex-direction: column; gap: 1rem; }
.quickhit-prompt { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.quickhit-input {
  width: 100%; min-height: 100px; padding: 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-page); font-family: var(--font-body); font-size: 1rem;
  resize: vertical; outline: none; transition: border-color 0.2s;
}
.quickhit-input:focus { border-color: var(--brand-teal); }
.quickhit-cats {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.cat-chip {
  padding: 0.35rem 0.85rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  background: var(--bg-page); border: 1.5px solid var(--border);
  cursor: pointer; transition: all 0.2s;
}
.cat-chip:hover, .cat-chip.selected { border-color: currentColor; opacity: 0.9; }
.chip-professional { color: var(--cat-professional); }
.chip-interests { color: var(--cat-interests); }
.chip-design { color: var(--cat-design); }
.chip-shopping { color: var(--cat-shopping); }
.chip-aspirations { color: var(--cat-aspirations); }
.chip-communication { color: var(--cat-communication); }

/* ── Profile Page ── */
.profile-categories { display: flex; flex-direction: column; gap: 1rem; }
.cat-card {
  background: var(--bg-surface); border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cat-card-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; cursor: pointer;
  transition: background 0.2s;
}
.cat-card-header:hover { background: var(--bg-page); }
.cat-color-bar { width: 4px; border-radius: 4px; align-self: stretch; flex-shrink: 0; }
.cat-icon { font-size: 1.5rem; }
.cat-info { flex: 1; }
.cat-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.cat-progress-bar {
  height: 5px; background: rgba(0,0,0,0.07); border-radius: 50px; overflow: hidden; margin-top: 0.4rem; width: 160px;
}
.cat-progress-fill { height: 100%; border-radius: 50px; transition: width 1s; }
.cat-pct { font-size: 0.85rem; color: var(--text-muted); flex-shrink: 0; }
.cat-card-body { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); display: none; }
.cat-card-body.open { display: block; }
.data-points { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.data-tag {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.8rem; border-radius: 8px;
  background: var(--bg-page); border: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-primary);
}
.data-tag .tag-del { color: var(--text-muted); cursor: pointer; font-size: 1rem; line-height: 1; }
.data-tag .tag-del:hover { color: #e05a5a; }
.empty-cat {
  color: var(--text-muted); font-size: 0.9rem; font-style: italic;
  padding: 0.25rem 0;
}

/* ── Toast ── */
.toast-wrap {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 300;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.toast {
  background: var(--brand-dark); color: #fff;
  padding: 0.85rem 1.25rem; border-radius: 12px;
  font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: slideUp 0.3s ease;
  display: flex; align-items: center; gap: 0.6rem;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: 0.4; } }

/* ── Responsive dashboard ── */
@media (max-width: 900px) {
  .sidebar { display: none; }
  .dash-grid { grid-template-columns: 1fr; }
  .maturity-card, .coverage-card, .sessions-card, .recent-card { grid-column: 1; }
  .coverage-chart-wrap { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .main-content { padding: 1.25rem; }
  .dash-header { flex-direction: column; }
}
