    /* Self-hosted Inter (Google Fonts blocked by prod CSP style-src 'self') */
    @import url('/vendors/fonts/inter/inter.css');

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--retire-bg);
      color: var(--retire-text);
      margin: 0;
      padding: 1.5rem;
      font-size: var(--font-body);
      line-height: var(--line-height-body);
    }

    .health-container {
      max-width: 72rem;
      margin: 0 auto;
    }

    /* Header */
    .health-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .health-header h1 {
      font-size: var(--font-heading-lg);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .health-header h1 i { color: var(--retire-secondary); }
    .health-header-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    /* Quick Stats Row */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .stat-card {
      background: var(--retire-surface-elevated);
      border: 0.0625rem solid var(--retire-border);
      border-radius: var(--card-radius);
      padding: 1.25rem;
      text-align: center;
      transition: box-shadow var(--transition-normal);
    }
    .stat-card:hover {
      box-shadow: var(--retire-shadow-md);
    }
    .stat-icon {
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 0.625rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }
    .stat-value {
      font-size: var(--font-heading-md);
      font-weight: 700;
      line-height: 1.2;
    }
    .stat-label {
      font-size: 0.875rem;
      color: var(--retire-text-muted);
      margin-top: 0.25rem;
    }

    /* Cards Grid */
    .health-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .health-grid-2col {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    /* Card common */
    .health-card {
      background: var(--retire-surface-elevated);
      border: 0.0625rem solid var(--retire-border);
      border-radius: var(--card-radius);
      padding: 1.5rem;
      transition: box-shadow var(--transition-normal);
    }
    .health-card:hover {
      box-shadow: var(--retire-shadow-md);
    }
    .health-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.25rem;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .health-card-title {
      font-size: var(--font-heading-sm);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .count-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 1.5rem;
      height: 1.5rem;
      padding: 0 0.375rem;
      border-radius: 1rem;
      font-size: 0.75rem;
      font-weight: 700;
      color: #FFFFFF;
      background: var(--retire-secondary);
    }

    /* Health Profile */
    .profile-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
      gap: 1rem;
    }
    .profile-field {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .profile-field-label {
      font-size: 0.8125rem;
      color: var(--retire-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.03em;
      font-weight: 600;
    }
    .profile-field-value {
      font-size: var(--font-body);
      font-weight: 600;
      color: var(--retire-text);
    }
    .bmi-indicator {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
    }
    .bmi-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
    }

    /* Profile CTA */
    .profile-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      padding: 2rem 1rem;
      text-align: center;
      color: var(--retire-text-muted);
    }
    .profile-cta i {
      font-size: 2.5rem;
      opacity: 0.5;
    }

    /* Medication List */
    .med-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .med-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.875rem 0;
      border-bottom: 0.0625rem solid var(--retire-border-light);
    }
    .med-item:last-child { border-bottom: none; }
    .med-icon-wrap {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.5rem;
      background: rgba(5, 150, 105, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--retire-secondary);
      font-size: 1rem;
      flex-shrink: 0;
    }
    [data-theme="dark"] .med-icon-wrap {
      background: rgba(16, 185, 129, 0.15);
    }
    .med-details {
      flex: 1;
      min-width: 0;
    }
    .med-name {
      font-weight: 600;
      font-size: var(--font-body);
      color: var(--retire-text);
    }
    .med-dosage {
      font-size: 0.875rem;
      color: var(--retire-text-muted);
      margin-top: 0.125rem;
    }
    .med-refill {
      text-align: right;
      flex-shrink: 0;
    }
    .med-refill-label {
      font-size: 0.75rem;
      color: var(--retire-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .med-refill-date {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--retire-text);
    }

    /* Care Plans */
    .plan-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .plan-item {
      background: var(--retire-surface);
      border: 0.0625rem solid var(--retire-border-light);
      border-radius: 0.5rem;
      padding: 1rem;
    }
    .plan-item:hover {
      border-color: var(--retire-border);
    }
    .plan-top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      flex-wrap: wrap;
    }
    .plan-title {
      font-weight: 600;
      font-size: var(--font-body);
      color: var(--retire-text);
    }
    .plan-provider {
      font-size: 0.875rem;
      color: var(--retire-text-muted);
      margin-bottom: 0.75rem;
    }
    .plan-progress-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .plan-progress-bar {
      flex: 1;
      height: 0.5rem;
      background: var(--retire-border);
      border-radius: 1rem;
      overflow: hidden;
    }
    .plan-progress-fill {
      height: 100%;
      border-radius: 1rem;
      transition: width 0.5s ease;
      background: var(--retire-secondary);
    }
    .plan-progress-pct {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--retire-text);
      min-width: 2.75rem;
      text-align: right;
    }

    /* Health Records */
    .record-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .record-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.875rem 0;
      border-bottom: 0.0625rem solid var(--retire-border-light);
    }
    .record-item:last-child { border-bottom: none; }
    .record-icon-wrap {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.5rem;
      background: rgba(30, 64, 175, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--retire-primary);
      font-size: 1rem;
      flex-shrink: 0;
    }
    [data-theme="dark"] .record-icon-wrap {
      background: rgba(59, 130, 246, 0.15);
    }
    .record-details {
      flex: 1;
      min-width: 0;
    }
    .record-title {
      font-weight: 600;
      font-size: var(--font-body);
      color: var(--retire-text);
    }
    .record-date {
      font-size: 0.875rem;
      color: var(--retire-text-muted);
      margin-top: 0.125rem;
    }

    /* View All Link */
    .view-all-link {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--retire-primary);
      text-decoration: none;
      min-height: var(--touch-min);
      cursor: pointer;
      border: none;
      background: transparent;
      padding: 0.25rem 0;
      transition: color var(--transition-fast);
    }
    .view-all-link:hover {
      color: var(--retire-primary-dark);
    }

    /* Responsive */
    @media (min-width: 48rem) {
      .health-grid-2col { grid-template-columns: 1fr 1fr; }
    }
    @media (min-width: 64rem) {
      .health-grid-2col { grid-template-columns: 3fr 2fr; }
    }
    @media (max-width: 40rem) {
      body { padding: 1rem; }
      .profile-grid { grid-template-columns: 1fr 1fr; }
    }
