/* ── Design Tokens (matching thinkbudgets-app) ──────────────── */
:root {
  /* Surfaces */
  --bg: #f4f3ef;
  --surface: #ffffff;
  --surface2: #f9f8f5;
  --border: #e8e5de;

  /* Typography */
  --text: #1a1814;
  --muted: #8a8578;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Brand */
  --brand: #7b9cbf;

  /* Status */
  --good: #5a9e82;
  --good-bg: #eef6f2;
  --warn: #c97b22;
  --warn-bg: #fdf4e7;
  --bad: #c03a2b;
  --bad-bg: #fdf0ee;
  --neutral: #4a6fa5;
  --neutral-bg: #eef2f9;

  /* Accent */
  --accent: #2d5f8a;
  --accent-light: #eef2f9;
  --accent-hover: #245079;

  /* Sidebar */
  --sidebar-bg: #1a1814;

  /* Misc */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--surface);
  border-color: #d4d0c8;
}

.btn--white {
  background: #fff;
  color: var(--accent);
  font-weight: 600;
}
.btn--white:hover {
  background: #f5f5f5;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 12px;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 243, 239, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo svg {
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-mobile-toggle {
  display: none;
  color: var(--text);
  padding: 4px;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-accent {
  font-weight: 700;
  color: var(--brand);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

/* Hero app visual */
.hero-app {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Logo bar */
.hero-logo-bar {
  padding: 0 0 4px;
}
.hero-logo-bar img {
  display: block;
}

/* Stat strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.hero-stat {
  background: var(--surface2);
  border-radius: 10px;
  padding: 10px;
}
.hero-stat-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-stat-label svg { flex-shrink: 0; }
.hero-stat-val {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2px;
}
.hero-stat-val--good { color: var(--good); }
.hero-stat-sub {
  font-size: 9px;
  color: var(--muted);
}
.hero-stat-sub--good { color: var(--good); }

/* Health banner */
.hero-health {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--good);
  border-radius: 10px;
  padding: 10px 14px;
}
.hero-health-left { flex: 1; }
.hero-health-chips {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}
.hero-chip {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}
.hero-chip--balanced { background: var(--good-bg); color: var(--good); border: 1px solid #a3d4bb; }
.hero-chip--ontrack { background: var(--good-bg); color: var(--good); border: 1px solid #a3d4bb; }
.hero-health-sub {
  font-size: 10px;
  color: var(--muted);
}
.hero-health-bars { flex-shrink: 0; }
.hero-health-bar-label {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero-hb-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}
.hero-hb-name { font-size: 9px; color: var(--muted); width: 38px; }
.hero-hb-track { width: 60px; height: 4px; background: rgba(0,0,0,0.08); border-radius: 2px; overflow: hidden; display: inline-block; vertical-align: middle; }
.hero-hb-fill { height: 100%; border-radius: 2px; display: block; }
.hero-hb-pct { font-size: 9px; font-weight: 600; width: 24px; }

/* Overview grid */
.hero-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Overview card */
.hero-ov-card {
  background: var(--surface2);
  border-radius: 10px;
  overflow: hidden;
}
.hero-ov-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
}
.hero-ov-link { font-size: 9px; color: var(--accent); font-weight: 500; }
.hero-ov-aside { font-size: 9px; color: var(--muted); font-weight: 400; }
.hero-ov-aside strong { color: var(--text); }

/* Transactions in hero */
.hero-tx {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
}
.hero-tx:last-child { border-bottom: none; }
.hero-tx-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.hero-tx-info { flex: 1; min-width: 0; }
.hero-tx-desc { font-size: 10px; font-weight: 600; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-tx-meta { font-size: 9px; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-top: 1px; }
.hero-tx-tag { font-size: 8px; font-weight: 600; padding: 0 5px; border-radius: 3px; }
.hero-tx-amount { font-size: 10px; font-weight: 600; flex-shrink: 0; }
.hero-tx-amount--income { color: var(--good); }

/* Daily spend chart */
.hero-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 60px;
  padding: 8px 12px;
}
.hero-chart-bar {
  flex: 1;
  background: var(--brand);
  border-radius: 2px 2px 0 0;
  opacity: 0.6;
  min-height: 2px;
}
.hero-chart-bar--today { background: var(--accent); opacity: 1; }
.hero-chart-bar--future { background: var(--border); opacity: 0.4; }

/* Daily insight */
.hero-insight {
  background: var(--good-bg);
  border: 1px solid #c2ddd2;
  border-radius: 10px;
  padding: 10px 12px;
}
.hero-insight-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.hero-insight-label { font-size: 9px; font-weight: 600; color: var(--muted); }
.hero-insight-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--good); margin-left: auto; }
.hero-insight-headline { font-size: 11px; font-weight: 600; margin-bottom: 2px; }
.hero-insight-body { font-size: 10px; color: var(--muted); line-height: 1.4; }

/* Categories needing attention */
.hero-attention-list {
  display: flex;
  flex-direction: column;
}
.hero-attention-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
.hero-attention-row:last-child { border-bottom: none; }
.hero-attention-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-cat-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-cat-top { display: flex; justify-content: space-between; }
.hero-cat-name { font-size: 11px; font-weight: 600; }
.hero-cat-pct { font-size: 10px; font-weight: 600; }
.hero-cat-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.hero-cat-fill { display: block; height: 100%; border-radius: 2px; }
.hero-cat-bottom { font-size: 9px; color: var(--muted); }

/* ── Section header ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Features ───────────────────────────────────────────────── */
.features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon--green {
  background: var(--good-bg);
  color: var(--good);
}
.feature-icon--warm {
  background: var(--warn-bg);
  color: var(--warn);
}
.feature-icon--purple {
  background: #f3eef9;
  color: #7c5cbf;
}
.feature-icon--teal {
  background: #eef8f6;
  color: #3a8f7a;
}
.feature-icon--rose {
  background: #fdf0ee;
  color: var(--bad);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── How It Works ───────────────────────────────────────────── */
.how-it-works {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  max-width: 200px;
  flex-shrink: 0;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  flex-shrink: 0;
}
.step-icon--1 { background: var(--accent-light); color: var(--accent); }
.step-icon--2 { background: var(--good-bg); color: var(--good); }
.step-icon--3 { background: var(--warn-bg); color: var(--warn); }
.step-icon--4 { background: #f3eef9; color: #7c5cbf; }

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 16px;
  flex-shrink: 0;
  margin: 0 12px;
}

.step h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.step-number, .step-connector, .step-label, .step-content {
  display: none;
}

/* ── For You ────────────────────────────────────────────────── */
.for-you {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.for-you-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

.for-you-visual {
  min-width: 0;
}

/* For-you layout: side by side */
.for-you .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.for-you-text h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 12px;
}

.for-you-text .coaches-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* OG Preview Image (For You section) */
.og-preview-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Workspace nav tabs (pill chips) */
.mock-ws-tabs {
  display: flex;
  gap: 6px;
  padding: 12px 20px;
  background: var(--bg);
}
.mock-ws-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.mock-ws-tab svg {
  display: inline-flex;
  flex-shrink: 0;
}
.mock-ws-tab--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Budget sub-nav */
.mock-budget-subnav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -16px -20px 14px;
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.mock-budget-tab {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mock-budget-tab svg {
  flex-shrink: 0;
}
.mock-budget-tab--active {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}
/* Plan controls (right side of sub-nav row) */
.mock-plan-controls {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-active-plan-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mock-active-plan-label svg {
  flex-shrink: 0;
}
.mock-budget-share {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mock-budget-share svg {
  flex-shrink: 0;
}

/* Budget content */
.mock-budget-content {
  padding: 16px 20px;
}

/* Summary strip */
.mock-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.mock-summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.mock-summary-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.mock-summary-val {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}
.mock-summary-sub {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 8px;
}
.mock-summary-bar {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.mock-summary-fill {
  height: 100%;
  border-radius: 3px;
}
.mock-summary-sub-badge {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}
.mock-summary-sub-badge--good {
  background: var(--good-bg);
  color: var(--good);
}

/* Budget grid: categories + transactions */
.mock-budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mock-budget-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.mock-budget-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.mock-budget-card-title {
  font-size: 12px;
  font-weight: 600;
}
.mock-budget-add {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
}

/* Category rows */
.mock-cat-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.mock-cat-row:last-child {
  border-bottom: none;
}
.mock-cat-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.mock-cat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mock-cat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-cat-name {
  font-size: 12px;
  font-weight: 600;
}
.mock-cat-pct {
  font-size: 11px;
  font-weight: 600;
}
.mock-cat-bar {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.mock-cat-fill {
  height: 100%;
  border-radius: 3px;
}
.mock-cat-bottom {
  font-size: 10px;
  color: var(--muted);
}
.mock-cat-left {
  color: var(--good);
  font-weight: 500;
  margin-left: 6px;
}
.mock-cat-left--warn {
  color: var(--warn);
}

/* Transaction rows */
.mock-tx-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
}
.mock-tx-row:last-child {
  border-bottom: none;
}
.mock-tx-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-tx-info {
  flex: 1;
  min-width: 0;
}
.mock-tx-desc {
  font-size: 11px;
  font-weight: 600;
  display: block;
}
.mock-tx-meta {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.mock-tx-tag {
  font-size: 9px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
}
.mock-tx-amount {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.mock-tx-amount--income {
  color: var(--good);
}

/* ── For Coaches ────────────────────────────────────────────── */
.coaches {
  padding: 80px 0;
}

.coaches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.coaches-content {
  text-align: center;
}


.coaches-content h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 12px;
}

.coaches-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.coaches-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.coaches-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.coaches-list li svg {
  flex-shrink: 0;
}

/* Coach dashboard mockup — full app shell */
.mock-shell {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: scale(0.62);
  transform-origin: top center;
  min-width: 1100px;
  margin: 0 auto;
  margin-bottom: -320px;
}

/* Sidebar */
.mock-sidebar {
  width: 210px;
  background: #1a1814;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.mock-sidebar-logo {
  padding: 0 16px 20px;
}
.mock-sidebar-logo svg {
  display: block;
}
.mock-sidebar-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #55514a;
  padding: 12px 20px 4px;
}
.mock-sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin: 0 8px 1px;
  border-radius: 8px;
  font-size: 12px;
  color: #9b9690;
}
.mock-sidebar-item--active {
  background: rgba(123, 156, 191, 0.15);
  color: #7b9cbf;
}
.mock-sidebar-icon {
  font-size: 10px;
  width: 16px;
  text-align: center;
}
.mock-sidebar-svg {
  flex-shrink: 0;
  display: inline-flex;
}
.mock-sidebar-footer {
  margin-top: auto;
  padding: 14px 16px 0;
  border-top: 1px solid #2a2823;
  margin-left: 8px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-sidebar-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a9eda, #5d3fa5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.mock-sidebar-user {
  display: flex;
  flex-direction: column;
}
.mock-sidebar-user-name {
  font-size: 11px;
  color: #c9c4bc;
  font-weight: 500;
}
.mock-sidebar-user-role {
  font-size: 10px;
  color: #9b9690;
}

/* Main content */
.mock-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

/* Breadcrumb */
.mock-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 11px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.mock-breadcrumb-back { font-size: 13px; cursor: pointer; }
.mock-breadcrumb-parent { cursor: pointer; }
.mock-breadcrumb-sep { color: var(--border); }
.mock-breadcrumb-current { font-weight: 600; color: var(--text); }
.mock-status-pill {
  font-size: 9px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 10px;
  margin-left: 2px;
}
.mock-status-pill--ontrack { background: #e6f4ea; color: #2d7a4f; }
.mock-type-chip {
  font-size: 9px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.mock-type-chip--premium { background: #fdf4e7; color: #c97b22; }
.mock-type-chip--coaching { background: #eef2f9; color: #4a6fa5; }

/* Month navigator */
.mock-month-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 11px;
  border-bottom: 1px solid var(--border);
}
.mock-month-btn {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}
.mock-month-label { font-weight: 500; }

/* Topbar (coach dashboard) */
.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.mock-topbar-title {
  font-size: 14px;
  font-weight: 600;
}
.mock-topbar-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a9eda, #5d3fa5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

/* Dashboard content area */
.mock-dashboard-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Upcoming Sessions */
.mock-sessions {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mock-sessions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.mock-sessions-title {
  font-size: 13px;
  font-weight: 600;
}
.mock-sessions-link {
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
}
.mock-session-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}
.mock-session-item:last-child {
  border-bottom: none;
}
.mock-session-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--surface2);
  color: var(--muted);
  white-space: nowrap;
  min-width: 56px;
  text-align: center;
}
.mock-session-badge--today {
  background: var(--accent-light);
  color: var(--accent);
}
.mock-session-time {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 60px;
}
.mock-session-client {
  flex: 1;
  font-size: 11px;
  font-weight: 600;
}
.mock-session-client small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
.mock-session-duration {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}

.mock-month-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-month-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  line-height: 1;
}
.mock-month-btn--disabled {
  opacity: 0.35;
}
.mock-month-label {
  font-size: 14px;
  font-weight: 600;
  min-width: 120px;
  text-align: center;
}

.mock-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mock-cards-row--3col {
  grid-template-columns: 1.2fr 1.2fr 1fr;
}

.mock-card {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--shadow);
}

.mock-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mock-card-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mock-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
  background: var(--surface2);
  color: var(--muted);
}
.mock-badge--neutral { background: var(--neutral-bg); color: var(--neutral); }
.mock-badge--good { background: var(--good-bg); color: var(--good); }

/* Health grid */
.mock-health-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mock-health-cell {
  border-radius: 10px;
  padding: 10px 12px;
}
.mock-health-cell--good { background: var(--good-bg); border: 1px solid #c2ddd2; }
.mock-health-cell--warn { background: var(--warn-bg); border: 1px solid #f0dbb8; }
.mock-health-cell--neutral { background: var(--neutral-bg); border: 1px solid #c5d4e8; }
.mock-health-cell--bad { background: var(--bad-bg); border: 1px solid #ecc8c3; }

.mock-health-count {
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 3px;
}
.mock-health-cell--good .mock-health-count { color: var(--good); }
.mock-health-cell--warn .mock-health-count { color: var(--warn); }
.mock-health-cell--neutral .mock-health-count { color: var(--neutral); }
.mock-health-cell--bad .mock-health-count { color: var(--bad); }

.mock-health-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
}

/* Month progress */
.mock-progress-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-progress-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-progress-info {
  flex: 1;
  min-width: 0;
}
.mock-progress-name {
  font-size: 12px;
  font-weight: 500;
}
.mock-progress-count {
  font-size: 10px;
  color: var(--muted);
}
.mock-progress-bar {
  flex: 1.5;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.mock-progress-fill {
  height: 100%;
  border-radius: 3px;
}
.mock-progress-pct {
  font-size: 11px;
  font-weight: 600;
  width: 30px;
  text-align: right;
}

/* Top Categories card */
.mock-card-title-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.7;
}
.mock-view-toggle {
  display: flex;
  gap: 2px;
  background: var(--surface2);
  border-radius: 7px;
  padding: 2px;
}
.mock-toggle-btn {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 5px;
  color: var(--muted);
}
.mock-toggle-btn--active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.mock-cat-stat {
  display: flex;
  align-items: center;
  background: var(--surface2);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
  gap: 0;
}
.mock-cat-stat-item {
  text-align: center;
  flex: 1;
}
.mock-cat-stat-val {
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
}
.mock-cat-stat-label {
  font-size: 9px;
  color: var(--muted);
  margin-top: 3px;
}
.mock-cat-stat-item--positive .mock-cat-stat-val { color: var(--good); }
.mock-cat-stat-item--negative .mock-cat-stat-val { color: var(--bad); }
.mock-cat-stat-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 10px;
  flex-shrink: 0;
}

.mock-legend {
  columns: 2;
  column-gap: 12px;
}
.mock-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  break-inside: avoid;
}
.mock-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  flex-shrink: 0;
}
.mock-legend-name {
  font-size: 11px;
  font-weight: 500;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-legend-pct {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

/* Mini workspace table */
.mock-table {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mock-table-header {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.mock-table-title {
  font-size: 14px;
  font-weight: 600;
}
.mock-slot-pills {
  display: flex;
  gap: 4px;
  margin-left: 4px;
}
.mock-slot-pill {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}
.mock-slot-pill--free { background: #e8e5de; color: #8a8578; }
.mock-slot-pill--premium { background: #fdf4e7; color: #c97b22; }
.mock-slot-pill--coaching { background: #eef2f9; color: #4a6fa5; }
.mock-table-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
}
.mock-table-search-text {
  font-size: 10px;
  color: var(--muted);
}
.mock-table-row {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.mock-table-row:last-child {
  border-bottom: none;
}
.mock-table-row--head {
  background: var(--surface2);
  padding: 6px 14px;
}
.mock-table-row--head span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.mock-col-name {
  flex: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mock-col-name strong {
  font-size: 12px;
  font-weight: 600;
}
.mock-col-name small {
  font-size: 10px;
  color: var(--muted);
}
.mock-ws-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 3px;
  margin-left: 2px;
  vertical-align: middle;
  letter-spacing: -0.01em;
}
.mock-ws-badge--free { background: #e8e5de; color: #8a8578; }
.mock-ws-badge--premium { background: #fdf4e7; color: #c97b22; }
.mock-ws-badge--coaching { background: #eef2f9; color: #4a6fa5; }
.mock-col-health,
.mock-col-month {
  flex: 1;
}
.mock-col-ie {
  flex: 1.4;
}
.mock-col-activity {
  flex: 0.8;
  font-size: 10px;
  color: var(--muted);
}
.mock-col-actions {
  flex: 0.4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.mock-action-icon { opacity: 0.7; }
.mock-action-icon--disabled { opacity: 0.35; }
.mock-row-arrow {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}
.mock-table-row--head .mock-col-activity {
  font-size: 9px;
  color: var(--muted);
}
.mock-pill {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.mock-pill--good { background: var(--good-bg); color: var(--good); }
.mock-pill--warn { background: var(--warn-bg); color: var(--warn); }
.mock-pill--bad { background: var(--bad-bg); color: var(--bad); }

/* Income / Expense dual bars */
.mock-ie-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mock-ie-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 16px;
  width: 100%;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.mock-ie-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 4px;
  opacity: 0.2;
}
.mock-ie-fill--income { background: var(--accent); }
.mock-ie-fill--good { background: var(--good); }
.mock-ie-fill--warn { background: var(--warn); }
.mock-ie-fill--bad { background: var(--bad); }

.mock-ie-label,
.mock-ie-pct {
  position: relative;
  z-index: 1;
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  padding: 0 5px;
}
.mock-ie-bar:first-child .mock-ie-label,
.mock-ie-bar:first-child .mock-ie-pct {
  color: var(--accent);
}
.mock-ie-bar:last-child .mock-ie-label,
.mock-ie-bar:last-child .mock-ie-pct {
  color: inherit;
}
.mock-ie-bar:last-child { color: var(--good); }
.mock-ie-fill--warn + .mock-ie-label,
.mock-ie-fill--warn ~ .mock-ie-pct { color: var(--warn); }
.mock-ie-bar:has(.mock-ie-fill--warn) { color: var(--warn); }
.mock-ie-bar:has(.mock-ie-fill--bad) { color: var(--bad); }
.mock-ie-label { opacity: 0.5; }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}
.pricing-grid .pricing-card {
  width: 100%;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pricing-card--highlighted {
  border-color: var(--accent);
  border-width: 2px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.pricing-type-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--neutral-bg);
  color: var(--neutral);
  align-self: flex-start;
  margin-bottom: 14px;
}
.pricing-type-badge--coach {
  background: var(--good-bg);
  color: var(--good);
}

.pricing-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 4px;
}
.pricing-amount {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -1px;
}
.pricing-period {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
}

.pricing-slots {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.pricing-slots-count {
  font-weight: 700;
  color: var(--text);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
}
.pricing-features li svg {
  flex-shrink: 0;
  color: var(--good);
  margin-top: 1px;
}

.pricing-cta {
  width: 100%;
  text-align: center;
}
.pricing-cta--soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta {
  padding: 80px 0;
}

.cta-card {
  background: var(--accent);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
}

.cta-card h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 16px;
  color: #fff;
}

.cta-card p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom span {
  font-size: 13px;
  color: var(--muted);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-visual {
    order: 1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .for-you .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coaches-list {
    grid-template-columns: 1fr;
  }

  .mock-shell {
    transform: scale(0.5);
    min-width: 900px;
    margin-bottom: -200px;
  }

  .mock-cards-row,
  .mock-cards-row--3col {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    max-width: 300px;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }
}

@media (max-width: 640px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav--open .nav-links,
  .nav--open .nav-actions {
    display: flex;
  }

  .nav--open .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 16px;
  }

  .nav--open .nav-links {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

  .nav--open .nav-actions {
    order: 4;
    width: 100%;
    padding-top: 12px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-card h2 {
    font-size: 26px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
