  :root {
    /* Ovia color tokens */
    --charcoal: #231F20;
    --white: #FFFFFF;
    --form-white: #FAFAFC;
    --seashell: #FFFCFC;

    --gray-10: #F4F4F4;
    --gray-20: #E0E0E0;
    --gray-30: #C6C6C6;
    --gray-40: #929292;
    --gray-50: #787878;
    --gray-60: #5E5E5E;
    --gray-70: #444444;

    --royal: #1A2188;
    --royal-00: #EEECF2;
    --royal-10: #ECEDF9;
    --royal-20: #DBDDF8;
    --royal-30: #B6BAF1;
    --royal-40: #9298EA;
    --royal-50: #4953DC;
    --royal-60: #212AAE;
    --royal-70: #5A5E9A;

    --midnight: #131967;
    --midnight-10: #B6BAF1;
    --midnight-30: #5B64E1;

    --fuchsia: #E33E69;
    --fuchsia-80: #E7577D;
    --fuchsia-90: #F62467;
    --fuchsia-100: #BF1B47;

    --blush: #F8A4B2;
    --blush-20: #FEF4F5;

    --rose: #F7758C;
    --rose-30: #FCCBD4;

    --error: #D0021B;

    /* Site chrome */
    --sidebar-width: 260px;
    --sidebar-bg: #0E1350;
    --sidebar-text: #C8CAEA;
    --sidebar-active: #FFFFFF;
    --sidebar-section: #5A5E9A;
    --content-bg: #F7F7FA;
    --card-bg: #FFFFFF;
    --border: #E4E4EE;
    --text-primary: #231F20;
    --text-secondary: #5E5E5E;
    --text-muted: #929292;
    --accent: #1A2188;

    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 1px 3px rgba(26,33,136,0.08), 0 4px 16px rgba(26,33,136,0.06);
    --shadow-sm: 0 1px 2px rgba(26,33,136,0.06);
  }

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

  body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--content-bg);
    color: var(--text-primary);
    display: flex;
    min-height: 100vh;
    font-size: 15px;
    line-height: 1.5;
  }

  /* ── SIDEBAR ── */
  .sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    position: fixed;
    top: 0; left: 0; bottom: 0;
    overflow-y: auto;
    z-index: 100;
    display: flex;
    flex-direction: column;
  }

  .sidebar-header {
    padding: 28px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .sidebar-logo {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }

  .sidebar-meta {
    font-size: 11px;
    color: var(--sidebar-section);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .sidebar-nav { padding: 16px 0 40px; flex: 1; }

  .nav-section {
    padding: 14px 20px 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--sidebar-section);
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    color: var(--sidebar-text);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 400;
    transition: all 0.15s;
    border-left: 2px solid transparent;
    cursor: pointer;
  }

  .nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
  .nav-link.active { color: #fff; border-left-color: var(--fuchsia-90); background: rgba(255,255,255,0.06); font-weight: 600; }

  .nav-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
    flex-shrink: 0;
  }
  .nav-link.active .nav-dot { opacity: 1; background: var(--fuchsia-90); }
  /* ── COLLAPSIBLE NAV GROUPS ── */
  .nav-top-label {
    padding: 18px 20px 5px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
  }

  .nav-group { }

  .nav-group-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px 7px 16px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--sidebar-section);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    transition: color 0.15s;
  }

  .nav-group-header:hover { color: #fff; }

  .nav-group-arrow {
    font-size: 9px;
    transition: transform 0.2s;
    flex-shrink: 0;
    line-height: 1;
  }

  .nav-group-header.collapsed .nav-group-arrow {
    transform: rotate(-90deg);
  }

  .nav-group-items {
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  .nav-group-items.collapsed {
    max-height: 0 !important;
  }

  .nav-child {
    padding-left: 30px !important;
    font-size: 13px !important;
  }

  .nav-placeholder {
    opacity: 0.45;
    font-style: italic;
    pointer-events: none;
  }
  .nav-placeholder:hover { background: none !important; }



  /* ── MAIN ── */
  .main {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-width: 0;
  }

  .topbar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .topbar-breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .topbar-breadcrumb strong { color: var(--text-primary); }

  .version-badge {
    background: var(--royal-10);
    color: var(--royal);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
  }

  .content {
    padding: 40px;
    max-width: 1100px;
  }

  /* ── SECTIONS ── */
  .section { display: none; }
  .section.active { display: block; }

  /* ── PAGE TITLES ── */
  .page-title {
    font-family: 'Source Serif Pro', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.6;
  }

  /* ── CARDS ── */
  .card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    overflow: hidden;
  }

  .card-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.1px;
  }

  .card-body { padding: 24px; }

  /* ── PLATFORM TABS ── */
  .platform-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    background: var(--gray-10);
    border-radius: var(--radius-sm);
    padding: 3px;
    width: fit-content;
  }

  .platform-tab {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.15s;
    border: none;
    background: none;
    letter-spacing: 0.2px;
  }

  .platform-tab.active {
    background: white;
    color: var(--royal);
    box-shadow: var(--shadow-sm);
  }

  .platform-pane { display: none; }
  .platform-pane.active { display: block; }

  /* ── COLOR SYSTEM ── */
  .color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .color-swatch {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: default;
  }

  .color-swatch:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

  .swatch-block {
    height: 60px;
    position: relative;
  }

  .swatch-block.light-text .swatch-check { color: rgba(255,255,255,0.5); }
  .swatch-block.dark-text .swatch-check { color: rgba(0,0,0,0.2); }

  .swatch-info {
    padding: 8px 10px;
    background: white;
  }

  .swatch-name {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
  }

  .swatch-hex {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 10.5px;
    color: var(--text-muted);
  }

  .swatch-usage {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 3px;
    line-height: 1.3;
  }

  .color-family-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 28px 0 12px;
  }

  .color-family-title:first-of-type { margin-top: 0; }

  /* ── KNOWN ISSUE BADGE ── */
  .issue-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FFF8E1;
    color: #8B6200;
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #F0D060;
  }

  /* ── CONTRAST TABLE ── */
  .contrast-table-wrap { overflow-x: auto; }

  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
  }

  th {
    background: var(--gray-10);
    padding: 10px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
  }

  td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
  }

  tr:last-child td { border-bottom: none; }
  tr:hover td { background: var(--form-white); }

  .pass { color: #1A8840; font-weight: 700; font-size: 13px; }
  .fail { color: var(--error); font-weight: 700; font-size: 13px; }

  .color-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Ubuntu Mono', monospace;
    font-size: 11.5px;
  }

  .chip-dot {
    width: 14px; height: 14px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
  }

  /* ── TYPOGRAPHY RAMP ── */
  .type-row {
    display: grid;
    grid-template-columns: 180px 1fr 100px;
    align-items: baseline;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .type-row:last-child { border-bottom: none; }

  .type-meta { font-size: 12px; color: var(--text-muted); }
  .type-meta strong { display: block; font-size: 13px; color: var(--text-primary); font-weight: 700; margin-bottom: 2px; }

  .type-spec {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
  }

  .em-badge {
    display: inline-block;
    background: var(--royal-10);
    color: var(--royal);
    font-size: 9.5px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    letter-spacing: 0.3px;
    vertical-align: middle;
    margin-left: 6px;
  }

  /* ── COMPONENT PREVIEWS ── */
  .preview-area {
    background: var(--form-white);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
  }

  .preview-area.dark-bg { background: var(--midnight); }
  .preview-area.blush-bg { background: var(--blush-20); }
  .preview-area.form-bg { background: var(--form-white); }

  /* iOS Form Field */
  .field-ios {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 280px;
  }

  .field-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--midnight);
    line-height: 21px;
  }

  .field-label.disabled { color: var(--gray-40); }

  .field-label .required-star { color: var(--fuchsia-100); }

  .field-input {
    background: white;
    border: 1px solid var(--midnight);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    line-height: 22px;
    color: var(--charcoal);
    outline: none;
    transition: border 0.15s;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 50px;
  }

  .field-input.placeholder { color: var(--gray-50); }
  .field-input.focused { border-color: var(--royal); border-bottom-width: 3px; padding-bottom: 13px; }
  .field-input.error { border-color: var(--error); }
  .field-input.disabled { background: var(--gray-10); border-color: var(--gray-40); }

  .cursor {
    width: 1px; height: 22px;
    background: var(--fuchsia-100);
    display: inline-block;
    animation: blink 1s step-end infinite;
    flex-shrink: 0;
  }

  @keyframes blink { 50% { opacity: 0; } }

  .cursor.android { width: 1.5px; }

  .field-helper {
    font-size: 12px;
    color: var(--charcoal);
    line-height: 16px;
    padding: 0 16px;
  }

  .field-error {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0 16px;
    color: var(--error);
    font-size: 16px;
    line-height: 21px;
  }

  .field-error-icon {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: var(--error);
  }

  /* Android field */
  .field-android {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 280px;
  }

  .field-android-input {
    background: white;
    border: 1px solid var(--royal);
    border-radius: 12px;
    padding: 8px 16px;
    height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    transition: border 0.15s;
  }

  .field-android-input.focused { border-bottom-width: 3px; border-color: var(--royal); }
  .field-android-input.error { border-color: var(--error); }
  .field-android-input.disabled { background: var(--gray-10); border-color: var(--gray-40); }

  .android-label-idle {
    font-size: 17px;
    font-weight: 600;
    color: var(--midnight);
    line-height: 22px;
  }

  .android-label-idle.disabled { color: var(--gray-40); }

  .android-label-small {
    font-size: 12px;
    font-weight: 600;
    color: var(--midnight);
    line-height: 16px;
  }

  .android-value {
    font-size: 17px;
    color: var(--charcoal);
    line-height: 22px;
    display: flex;
    align-items: center;
    gap: 2px;
  }

  /* State label pill */
  .state-pill {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--gray-10);
    color: var(--text-muted);
    align-self: flex-start;
    white-space: nowrap;
  }

  .preview-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  /* Buttons */
  .btn-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .preview-btn {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    border: none;
    cursor: default;
    text-align: center;
    white-space: nowrap;
  }

  /* Registration pill buttons */
  .btn-reg-48 { height: 48px; padding: 13px 24px; border-radius: 28px; font-size: 17px; line-height: 22px; min-width: 200px; }
  .btn-reg-40 { height: 40px; padding: 10px 20px; border-radius: 28px; font-size: 16px; line-height: 21px; min-width: 180px; }

  /* Default rounded buttons */
  .btn-lg50 { height: 50px; padding: 14px 20px; border-radius: 6px; font-size: 16px; line-height: 21px; min-width: 160px; }
  .btn-md44 { height: 44px; padding: 14px 16px; border-radius: 6px; font-size: 16px; line-height: 21px; min-width: 140px; }
  .btn-md32 { height: 32px; padding: 7px 16px; border-radius: 6px; font-size: 13px; line-height: 18px; min-width: 120px; }

  /* State colors */
  .btn-cta-avail { background: var(--royal); color: white; }
  .btn-cta-hover { background: var(--royal-00); color: var(--royal); border: 1px solid var(--royal); }
  .btn-cta-press { background: var(--royal-50); color: white; }
  .btn-cta-cond  { background: var(--gray-10); color: var(--gray-70); border: 1px solid var(--gray-70); }
  .btn-cta-dis   { background: var(--gray-10); color: var(--gray-30); border: 1px solid var(--gray-20); }

  .btn-def-avail { background: var(--midnight); color: white; }
  .btn-def-hover { background: var(--royal-00); color: var(--charcoal); border: 1px solid var(--midnight); }
  .btn-def-press { background: var(--midnight-10); color: var(--charcoal); }
  .btn-def-cond  { background: var(--gray-10); color: var(--gray-60); border: 1px solid var(--gray-40); }
  .btn-def-dis   { background: var(--gray-10); color: var(--gray-30); border: 1px solid var(--gray-20); }

  .btn-sec-avail { background: transparent; color: var(--royal); border: 1px solid var(--royal); }
  .btn-sec-hover { background: var(--royal-00); color: var(--midnight); border: 1px solid var(--midnight); }

  /* ── RADIO BUTTONS / ACTION SHEET ── */
  .radio-card {
    background: white;
    border-radius: 12px;
    padding: 8px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: all 0.15s;
  }

  .radio-card.selected {
    background: var(--royal-10);
    border-color: var(--midnight);
  }

  .radio-icon {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-40);
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
  }

  .radio-icon.filled {
    border-color: var(--midnight);
    background: var(--midnight);
  }

  .radio-icon.filled::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: white;
  }

  .radio-text-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 22px;
  }

  .radio-text-desc {
    font-size: 13px;
    color: var(--charcoal);
    line-height: 18px;
  }

  .action-sheet-row {
    background: white;
    padding: 12px 16px 14px;
    border-bottom: 0.333px solid var(--charcoal);
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .action-sheet-row:first-child { border-radius: 14px 14px 0 0; }
  .action-sheet-row:last-child { border-bottom: none; border-radius: 0 0 14px 14px; }

  .action-sheet-check {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--charcoal);
    opacity: 0;
  }

  .action-sheet-check.visible { opacity: 1; }

  .action-sheet-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 20px;
    margin-bottom: 2px;
  }

  .action-sheet-desc {
    font-size: 13px;
    color: var(--charcoal);
    line-height: 18px;
  }

  /* ── SPEC TABLES ── */
  .spec-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .spec-row {
    display: contents;
  }

  .spec-label {
    background: var(--gray-10);
    padding: 9px 14px;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
  }

  .spec-value {
    background: white;
    padding: 9px 14px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    font-family: 'Ubuntu Mono', monospace;
    font-size: 12px;
  }

  .spec-label:last-of-type, .spec-value:last-of-type { border-bottom: none; }

  /* ── COMPARISON TABLE ── */
  .compare-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: var(--gray-10);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
    overflow: hidden;
  }

  .compare-header-cell {
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-right: 1px solid var(--border);
  }

  .compare-header-cell:last-child { border-right: none; }

  /* ── CALLOUTS ── */
  .callout {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    line-height: 1.6;
    margin: 12px 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .callout-info { background: var(--royal-10); border-left: 3px solid var(--royal); color: var(--royal); }
  .callout-warn { background: #FFF8E1; border-left: 3px solid #F0B429; color: #7A5C00; }
  .callout-legacy { background: var(--blush-20); border-left: 3px solid var(--fuchsia); color: #8B2040; }

  .callout-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }

  /* ── PHILOSOPHY BLOCK ── */
  .philosophy-block {
    background: linear-gradient(135deg, var(--midnight) 0%, #1A2188 100%);
    border-radius: var(--radius);
    padding: 28px 32px;
    color: white;
    margin-bottom: 24px;
  }

  .philosophy-block h3 {
    font-family: 'Source Serif Pro', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.95;
  }

  .philosophy-block p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 640px;
  }

  .philosophy-block .form-white-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 14px;
  }

  .fwb-dot { width: 14px; height: 14px; border-radius: 3px; background: #FAFAFC; flex-shrink: 0; }

  /* ── DIVIDERS ── */
  hr.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
  }

  /* ── SECTION HEADER CHIPS ── */
  .section-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--royal-10);
    color: var(--royal);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  /* ── TOKENS ── */
  .token-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--form-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 8px;
    font-family: 'Ubuntu Mono', monospace;
    font-size: 11.5px;
    color: var(--text-primary);
    white-space: nowrap;
  }

  .token-dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }

  /* ── SCREEN SECTION ── */
  .screens-tbd {
    background: var(--gray-10);
    border: 1px dashed var(--gray-30);
    border-radius: var(--radius);
    padding: 24px;
  }

  .screens-tbd h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 10px;
  }

  .screens-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .screens-list li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .screens-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gray-30);
    flex-shrink: 0;
  }

  /* ── OVERVIEW STATS ── */
  .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
  }

  .stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
  }

  .stat-number {
    font-family: 'Source Serif Pro', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--royal);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }

  .stat-sub {
    font-size: 11px;
    color: var(--gray-40);
    margin-top: 4px;
  }

  /* ── LEGACY SWAP TABLE ── */
  .legacy-arrow {
    color: var(--fuchsia);
    font-weight: 700;
    font-size: 16px;
    padding: 0 4px;
  }

  /* ── MORE + PROFILE COMPONENTS ── */

  /* Phone mockup wrapper */
  .phone-frame {
    width: 375px;
    border-radius: 40px;
    border: 8px solid #1a1a2e;
    box-shadow: 0 20px 60px rgba(26,33,136,0.2), 0 4px 16px rgba(0,0,0,0.15);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
  }

  .phone-frame .phone-inner {
    overflow-y: auto;
    max-height: 700px;
    background: #fef4f5;
  }

  /* iOS status bar */
  .ios-status-bar {
    background: white;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 44px;
    flex-shrink: 0;
  }

  .ios-time {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
  }

  .ios-icons {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .ios-signal { display: flex; gap: 1.5px; align-items: flex-end; }
  .ios-signal span {
    background: var(--charcoal);
    border-radius: 1px;
    width: 3px;
  }
  .ios-signal span:nth-child(1) { height: 4px; }
  .ios-signal span:nth-child(2) { height: 6px; }
  .ios-signal span:nth-child(3) { height: 8px; }
  .ios-signal span:nth-child(4) { height: 10px; }

  .ios-wifi {
    width: 14px;
    height: 10px;
    border: 2px solid var(--charcoal);
    border-radius: 50% 50% 0 0;
    border-bottom: none;
    position: relative;
  }
  .ios-wifi::before {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px;
    height: 4px;
    border: 2px solid var(--charcoal);
    border-radius: 50% 50% 0 0;
    border-bottom: none;
  }
  .ios-wifi::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 3px;
    background: var(--charcoal);
    border-radius: 50%;
  }

  .ios-battery {
    display: flex;
    align-items: center;
    gap: 1px;
  }
  .ios-battery-body {
    width: 22px; height: 11px;
    border: 1.5px solid var(--charcoal);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
  }
  .ios-battery-fill {
    position: absolute;
    top: 1.5px; left: 1.5px; bottom: 1.5px;
    width: 75%;
    background: var(--charcoal);
    border-radius: 1px;
  }
  .ios-battery-cap {
    width: 2px; height: 5px;
    background: var(--charcoal);
    border-radius: 0 1px 1px 0;
  }

  /* App nav header */
  .app-header {
    background: white;
    border-bottom: 1px solid var(--fuchsia);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px 12px;
  }

  .app-header-back {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .app-header-back .chevron {
    font-size: 20px;
    line-height: 1;
    margin-top: -1px;
  }

  .app-header-title {
    font-family: 'Source Serif Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
  }

  .app-header-action {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    color: var(--charcoal);
    min-width: 80px;
    text-align: right;
  }

  /* Profile picture component */
  .profile-pic-component {
    background: var(--blush-20);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    width: 375px;
  }

  .profile-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--midnight);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .profile-avatar-icon {
    color: white;
    font-size: 52px;
    line-height: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-top: 12px;
  }

  .profile-avatar-head {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
  }

  .profile-avatar-body {
    width: 54px;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
  }

  .profile-add-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    line-height: 21px;
  }

  /* Category label component */
  .category-label-component {
    background: var(--blush);
    height: 36px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    width: 375px;
    flex-shrink: 0;
  }

  .category-label-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

  .category-label-info {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .category-label-info .info-icon {
    color: var(--midnight);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
  }

  /* More list item component */
  .more-list-item {
    background: white;
    border-bottom: 1px solid var(--gray-20);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 375px;
    padding: 0;
    flex-shrink: 0;
  }

  .more-list-item.h-49 { height: 49px; }
  .more-list-item.h-79 { height: 79px; padding: 4px 0 9px; }
  .more-list-item.hover { background: var(--gray-10); border-color: var(--gray-10); }
  .more-list-item.pressed { background: var(--rose-30); border-color: var(--gray-10); }

  .more-list-left {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 0 12px;
  }

  .more-list-label-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .more-list-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 22px;
    white-space: nowrap;
  }

  .more-list-info-icon {
    color: var(--royal);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
  }

  .more-list-subtext {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: var(--gray-60);
    line-height: 21px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .more-list-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    width: 107px;
    flex-shrink: 0;
  }

  .chevron-right {
    color: var(--gray-50);
    font-size: 14px;
    font-weight: 600;
    transform: rotate(180deg);
    display: inline-block;
    line-height: 1;
  }

  /* Toggle / Selector */
  .toggle-track {
    width: 51px;
    height: 31px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
  }

  .toggle-track.off { background: var(--gray-50); padding-left: 1px; }
  .toggle-track.on { background: var(--royal); padding-left: 19px; }

  .toggle-knob {
    width: 27px;
    height: 27px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    transition: all 0.2s;
  }

  /* More List Group Button component */
  .more-list-group-btn {
    background: var(--blush-20);
    border-bottom: 1px solid var(--gray-20);
    height: 50px;
    width: 375px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }

  .mlgb-settings-left {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-left: 12px;
  }

  .mlgb-settings-icon {
    font-size: 16px;
    color: var(--charcoal);
  }

  .mlgb-settings-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: var(--charcoal);
  }

  .mlgb-settings-right {
    padding-right: 12px;
  }

  /* Grouped list (multiple rows + side action button) */
  .grouped-list {
    display: flex;
    width: 375px;
    flex-shrink: 0;
  }

  .grouped-list-rows {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .grouped-list-rows .more-list-item {
    width: 100%;
  }

  .grouped-list-action {
    width: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
  }

  .group-btn {
    width: 48px;
    background: white;
    border-bottom: 1px solid var(--gray-20);
    border-left: 1px solid var(--gray-20);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 1;
  }

  .group-btn.ovia-plus {
    background: var(--fuchsia);
  }

  /* "I'm pregnant" CTA button */
  .pregnant-cta-wrap {
    background: white;
    padding: 24px;
    display: flex;
    width: 375px;
    flex-shrink: 0;
  }

  .pregnant-cta-btn {
    background: var(--midnight);
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    line-height: 21px;
  }

  /* Goal management section (reused inside profile) */
  .goal-mgmt-section {
    background: var(--blush-20);
    padding: 20px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 375px;
    flex-shrink: 0;
  }

  .goal-mgmt-title {
    font-family: 'Source Serif Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
  }

  .goal-btns-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 280px;
  }

  /* More footer section */
  .more-footer {
    background: var(--blush-20);
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 375px;
    flex-shrink: 0;
  }

  .more-footer-section-title {
    font-family: 'Source Serif Pro', serif;
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 16px;
  }

  .more-footer-app-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .more-footer-app-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .app-icon-placeholder {
    width: 42px;
    height: 42px;
    background: var(--midnight);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
    text-align: center;
  }

  .more-footer-get-app-btn {
    background: var(--midnight);
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    font-weight: 600;
    height: 32px;
    width: 130px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social-icons-row {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .social-icon {
    width: 24px;
    height: 24px;
    background: var(--charcoal);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .more-footer-legal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    color: var(--charcoal);
    line-height: 22px;
  }

  .more-footer-legal a {
    color: var(--royal);
    font-weight: 600;
    text-decoration: underline;
  }

  /* Privacy + Terms footer row */
  .privacy-row {
    background: white;
    padding: 24px 12px;
    width: 375px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 20px;
    flex-shrink: 0;
    border-bottom: 1px solid var(--gray-10);
  }

  .privacy-row a {
    color: var(--fuchsia);
    text-decoration: underline;
  }

  /* Component doc table pattern for More components */
  .spec-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    font-size: 13px;
  }

  .spec-grid dt {
    font-weight: 700;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }

  .spec-grid dd {
    padding: 8px 0 8px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'Ubuntu Mono', monospace;
    font-size: 12px;
  }

  .spec-grid dt:last-of-type,
  .spec-grid dd:last-of-type {
    border-bottom: none;
  }

  /* Variant row used in More List Item docs */
  .variant-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
  }

  .variant-row:last-child { border-bottom: none; }

  .variant-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: 120px;
    flex-shrink: 0;
  }

  /* Crown icon (Ovia+) */
  .ovia-crown {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    line-height: 1;
  }

  /* Social icon symbols */
  .si-insta::before { content: "▣"; }
  .si-fb::before { content: "f"; font-weight: 700; font-family: serif; }
  .si-tw::before { content: "𝕏"; font-size: 11px; }
  .si-pin::before { content: "P"; font-weight: 700; font-family: serif; font-size: 13px; }

  /* ── OVIA+ COMPONENTS ── */

  /* Small Card */
  .ovia-small-card {
    background: var(--rose-30);
    width: 120px;
    height: 135px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
  }

  .ovia-small-card-img {
    width: 100%;
    height: 75px;
    background: var(--gray-20);
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    flex-shrink: 0;
    position: relative;
  }

  .ovia-small-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ovia-small-card-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px 12px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    color: var(--charcoal);
    line-height: 18px;
    text-align: center;
  }

  .ovia-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .ovia-carousel::-webkit-scrollbar { display: none; }

  /* Health Profile Question Card */
  .hp-card {
    background: white;
    border-radius: 10px;
    padding: 8px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  .hp-card-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }

  .hp-card-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 20px;
  }

  .hp-card-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--royal);
    text-decoration: underline;
    line-height: 20px;
    white-space: pre;
    cursor: pointer;
  }

  .hp-card-right {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
    padding-top: 2px;
    flex-shrink: 0;
    width: 130px;
  }

  .hp-checkmark-bullet {
    background: var(--midnight);
    width: 14px;
    height: 14px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .hp-checkmark-bullet::after {
    content: '✓';
    color: white;
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
  }

  .hp-timestamp {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    color: var(--charcoal);
    line-height: 16px;
    text-align: right;
    flex: 1;
  }

  /* Ring Progress Chart */
  .ring-progress-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .ring-progress-svg {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
  }

  .ring-progress-track {
    fill: none;
    stroke: var(--rose-30);
    stroke-width: 8;
  }

  .ring-progress-fill {
    fill: none;
    stroke: var(--fuchsia);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
  }

  .ring-progress-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 1px;
  }

  .ring-number {
    font-family: 'Source Serif Pro', serif;
    font-size: 22px;
    color: var(--charcoal);
    line-height: 1;
  }

  .ring-pct {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 11px;
    color: var(--charcoal);
    line-height: 1;
  }

  /* Ovia+ text link */
  .ovia-text-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--royal);
    text-decoration: underline;
    cursor: pointer;
    white-space: pre;
    display: inline-block;
  }

  /* Ovia+ star bullet */
  .ovia-star-bullet {
    width: 16px;
    height: 16px;
    background: var(--fuchsia);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ovia-star-bullet::after {
    content: '★';
    color: white;
    font-size: 9px;
    line-height: 1;
  }

  /* Care team portrait circles */
  .care-team-portraits {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .care-portrait {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-20);
    flex-shrink: 0;
    border: 2px solid white;
  }

  .care-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Member photo */
  .member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-20);
    flex-shrink: 0;
  }

  .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Ovia+ welcome section */
  .ovia-welcome-section {
    background: var(--blush-20);
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 375px;
    flex-shrink: 0;
  }

  .ovia-welcome-name {
    font-family: 'Source Serif Pro', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--midnight);
    line-height: 28px;
    text-align: center;
  }

  .ovia-membership-tag {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .ovia-crown-small {
    color: var(--fuchsia);
    font-size: 11px;
    line-height: 1;
  }

  .ovia-membership-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    color: var(--midnight);
    line-height: 16px;
  }

  /* Ovia+ sponsor section */
  .ovia-sponsor-section {
    background: white;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 375px;
    flex-shrink: 0;
  }

  .ovia-sponsor-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 20px;
    text-align: center;
  }

  .ovia-sponsor-logo-area {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }

  .sponsor-logo-pill {
    background: white;
    border: 1px solid var(--gray-20);
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--midnight);
  }

  /* Content sections within Ovia+ screen */
  .ovia-content-section {
    background: white;
    padding: 32px 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 375px;
    flex-shrink: 0;
  }

  .ovia-content-section.blush { background: var(--blush-20); }

  .ovia-section-title {
    font-family: 'Source Serif Pro', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 28px;
    text-align: center;
    width: 100%;
  }

  .ovia-text-pairing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .ovia-text-pairing-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 21px;
  }

  .ovia-text-pairing-body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 20px;
  }

  .ovia-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-20);
    flex-shrink: 0;
  }

  /* Care team panel */
  .care-team-panel {
    background: var(--blush-20);
    border-radius: 0 0 4px 4px;
    width: 100%;
  }

  .care-team-portraits-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    border-bottom: 2px solid var(--blush-20);
  }

  .care-team-bullets {
    padding: 16px 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .care-bullet-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .care-bullet-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 20px;
    flex: 1;
  }

  /* Checklist section (ring + text) */
  .checklist-section {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .checklist-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 178px;
    flex-shrink: 0;
  }

  .checklist-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .checklist-caption {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 16px;
    text-align: center;
  }

  /* About button at bottom */
  .ovia-about-section {
    background: var(--blush-20);
    padding: 40px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 375px;
    flex-shrink: 0;
  }

  .btn-sm-royal {
    background: var(--royal);
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    padding: 0 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 21px;
    white-space: nowrap;
  }

  .btn-sm-keep-going {
    background: var(--royal);
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    font-weight: 600;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 10px;
    white-space: nowrap;
  }

  /* ── CHECKLIST COMPONENTS ── */

  .checklist-progress-bar {
    background: var(--blush-20);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 375px;
    flex-shrink: 0;
  }

  .checklist-progress-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    padding-right: 24px;
  }

  .checklist-progress-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 22px;
  }

  .checklist-progress-sub {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    color: var(--charcoal);
    line-height: 16px;
  }

  .checklist-portraits {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .checklist-portrait {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-20);
    flex-shrink: 0;
  }

  .checklist-msg-btn {
    background: var(--royal);
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    font-weight: 600;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    white-space: nowrap;
    cursor: pointer;
  }

  .checklist-progress-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 140px;
    flex-shrink: 0;
    justify-content: center;
    align-self: stretch;
  }

  /* Trimester Selector */
  .trimester-selector {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 24px 12px 12px;
    width: 375px;
    flex-shrink: 0;
  }

  .trimester-btn {
    flex: 1;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .trimester-btn.selected {
    background: var(--rose-30);
    color: var(--charcoal);
    border: none;
  }

  .trimester-btn.available {
    background: transparent;
    border: 1px solid var(--rose-30);
    color: var(--midnight);
  }

  .trimester-btn.hover {
    background: var(--blush-20);
    border: 1px solid var(--rose-30);
    color: var(--charcoal);
  }

  .trimester-btn.pressed {
    background: var(--blush);
    color: var(--charcoal);
    border: none;
  }

  /* Expanding List */
  .expanding-list-item {
    background: var(--blush);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  .expanding-list-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
  }

  .expanding-list-name {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 21px;
  }

  .expanding-list-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    color: var(--charcoal);
    line-height: 18px;
  }

  .expanding-list-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    padding-top: 4px;
    flex-shrink: 0;
    color: var(--midnight);
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
  }

  .expanding-list-wrap {
    padding: 0 12px 12px;
    width: 375px;
    flex-shrink: 0;
  }

  .expanding-list-wrap.first { padding-top: 24px; }

  /* Checkbox 24×24 */
  .checkbox-24 {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .checkbox-24.checked {
    background: var(--midnight);
  }

  .checkbox-24.unchecked {
    background: white;
    border: 1px solid var(--midnight);
  }

  .checkbox-24 .check-glyph {
    color: white;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }

  /* Checkbox + Text row */
  .checkbox-text-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0 32px 12px;
    width: 100%;
    flex-shrink: 0;
  }

  .checkbox-text {
    flex: 1;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 20px;
  }

  .checkbox-text a {
    color: var(--royal);
    font-weight: 600;
    text-decoration: underline;
  }

  /* Article Action Button */
  .article-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px 12px;
    width: 253px;
  }

  .article-action-btn.top-pad { padding-top: 12px; }

  .article-action-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-40);
    flex-shrink: 0;
  }

  .article-action-icon svg {
    width: 20px;
    height: 11px;
  }

  .article-action-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 20px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Article Topic Button */
  .article-topic-btn {
    background: var(--blush-20);
    border-radius: 6px;
    width: 206px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    cursor: pointer;
  }

  .article-topic-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 20px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
  }

  .article-topic-pair {
    display: flex;
    gap: 8px;
    padding: 0 12px 8px;
    width: 375px;
    flex-shrink: 0;
  }

  .article-topic-pair .article-topic-btn {
    flex: 1;
    width: auto;
  }

  /* Floating Content Block */
  .floating-content-block {
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
  }

  .floating-content-block.blush { background: var(--blush-20); }
  .floating-content-block.white { background: white; }
  .floating-content-block.none { background: transparent; padding-left: 0; padding-right: 0; }

  .fcb-logo {
    width: 76px;
    height: 76px;
    border-radius: 40px;
    background: var(--rose);
    flex-shrink: 0;
  }

  .fcb-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
  }

  .fcb-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .fcb-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 21px;
  }

  .fcb-body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 20px;
  }

  .fcb-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--royal);
    text-decoration: none;
    cursor: pointer;
    line-height: 20px;
  }

  .fcb-btn {
    background: var(--royal);
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    font-weight: 600;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    max-width: 180px;
    cursor: pointer;
    white-space: nowrap;
  }

  .fcb-btn.midnight { background: var(--midnight); }

