﻿:root {
      --bg: #090e17;
      --surface: rgba(18, 28, 45, 0.65);
      --border: rgba(255, 255, 255, 0.1);
      --border-soft: rgba(255, 255, 255, 0.05);
      --navy: #ffffff;
      --navy-mid: #94a3b8;
      --text-primary: #f8fafc;
      --text-secondary: #cbd5e1;
      --text-muted: #64748b;
      --teal: #14f1d9;
      --blue: #3b82f6;
      --risk-low: #10b981;
      --risk-moderate: #f59e0b;
      --risk-high: #ef4444;
      --radius-md: 16px;
      --radius-lg: 22px;
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
      --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
      --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    }

    #bg-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      pointer-events: none;
    }

    .profile-dropdown,
    .modal-content,
    .recording-section,
    .dashboard-grid>div,
    .graph-card,
    .index-card,
    .compare-col-header,
    .compare-metric-row,
    .compare-delta-card,
    .compare-transcript,
    .profile-page-card,
    .settings-card,
    .patient-tab,
    .insight-card {
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      background: var(--surface) !important;
      border: 1px solid var(--border) !important;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text-primary);
      line-height: 1.6;
      min-height: 100vh;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(9, 14, 23, 0.75);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 0 52px;
      height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 11px;
      font-weight: 700;
      font-size: 17px;
      color: var(--navy);
      letter-spacing: -0.3px;
      cursor: pointer;
    }

    .nav-logo-icon {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-logo-icon svg {
      width: 20px;
      height: 20px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .user-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .backend-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(15, 23, 42, 0.55);
      color: var(--text-secondary);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2px;
      cursor: pointer;
      user-select: none;
      transition: all 0.2s ease;
    }

    .backend-status:hover {
      border-color: rgba(255, 255, 255, 0.2);
    }

    .backend-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #64748b;
      flex-shrink: 0;
    }

    .backend-status.checking {
      border-color: rgba(245, 158, 11, 0.35);
      color: #fcd34d;
      background: rgba(245, 158, 11, 0.12);
    }

    .backend-status.checking .backend-dot {
      background: #f59e0b;
      box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.15);
    }

    .backend-status.online {
      border-color: rgba(16, 185, 129, 0.4);
      color: #86efac;
      background: rgba(16, 185, 129, 0.12);
    }

    .backend-status.online .backend-dot {
      background: #10b981;
      box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.15);
    }

    .backend-status.offline {
      border-color: rgba(239, 68, 68, 0.4);
      color: #fca5a5;
      background: rgba(239, 68, 68, 0.12);
    }

    .backend-status.offline .backend-dot {
      background: #ef4444;
      box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.15);
    }

    .user-button {
      background: transparent;
      border: 1.5px solid var(--blue);
      color: var(--blue);
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.2s;
      font-family: inherit;
    }

    .user-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1a6eb5, #18b09e);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      position: relative;
    }

    .user-avatar:hover {
      box-shadow: 0 4px 12px rgba(26, 110, 181, 0.3);
    }

    .user-button:hover {
      background: rgba(26, 110, 181, 0.1);
    }

    .profile-dropdown {
      position: absolute;
      top: 66px;
      right: 52px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: var(--shadow-md);
      padding: 8px;
      display: none;
      min-width: 200px;
      z-index: 999;
    }

    .profile-dropdown.show {
      display: block;
    }

    .profile-menu {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .menu-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--bg);
      border: none;
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      text-align: left;
      font-family: inherit;
    }

    .menu-btn:hover {
      background: var(--border-soft);
    }

    .menu-profile {
      color: var(--blue);
    }

    .menu-profile:hover {
      background: rgba(26, 110, 181, 0.1);
    }

    .menu-compare {
      color: var(--teal);
    }

    .menu-compare:hover {
      background: rgba(24, 176, 158, 0.1);
    }

    .menu-settings {
      color: var(--navy);
    }

    .menu-settings:hover {
      background: rgba(15, 33, 55, 0.1);
    }

    .menu-logout {
      color: #ef4444;
    }

    .menu-logout:hover {
      background: rgba(239, 68, 68, 0.1);
    }

    .menu-btn svg {
      flex-shrink: 0;
    }

    .modal {
      position: fixed;
      inset: 0;
      background: rgba(9, 14, 23, 0.85);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 200;
    }

    .modal.hidden {
      display: none;
    }

    .modal-content {
      background: var(--surface);
      padding: 32px 36px;
      border-radius: 16px;
      width: 360px;
      max-width: 90%;
      box-shadow: var(--shadow-lg);
      text-align: center;
    }

    .modal-content h2 {
      margin-bottom: 20px;
      font-size: 20px;
      color: var(--navy);
    }

    .modal-header {
      margin-bottom: 16px;
    }

    .modal-content label {
      display: block;
      margin-bottom: 14px;
      font-size: 14px;
      text-align: left;
    }

    .modal-content input {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 14px;
      transition: border-color 0.2s;
      margin-top: 4px;
    }

    .modal-content input:focus {
      outline: none;
      border-color: var(--blue);
    }

    .modal-content button {
      margin-top: 10px;
      margin-right: 8px;
    }

    .modal-actions {
      display: flex;
      gap: 8px;
      margin-top: 14px;
    }

    .modal-actions button {
      flex: 1;
    }

    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 7px 14px;
      border-radius: 8px;
      transition: all 0.2s;
    }

    .nav-links a:hover {
      color: var(--navy);
      background: rgba(15, 33, 55, 0.05);
    }

    .nav-links a.active {
      color: var(--blue);
      background: transparent;
      box-shadow: none;
      transform: none;
    }

    /* ── COMPARE FLOAT BUTTON ── */
    .compare-float-btn {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 101;
      background: linear-gradient(135deg, #1a6eb5, #18b09e);
      color: #fff;
      border: none;
      border-radius: 16px;
      padding: 14px 24px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      box-shadow: 0 8px 28px rgba(26, 110, 181, 0.45);
      transition: transform 0.2s, box-shadow 0.2s;
      display: none;
      align-items: center;
      gap: 10px;
      animation: bounceIn 0.5s ease;
    }

    .compare-float-btn.show {
      display: flex;
    }

    .compare-float-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(26, 110, 181, 0.55);
    }

    @keyframes bounceIn {
      0% {
        transform: translateY(20px);
        opacity: 0
      }

      70% {
        transform: translateY(-4px)
      }

      100% {
        transform: translateY(0);
        opacity: 1
      }
    }

    /* ── REDO BUTTON ── */
    .redo-recording-btn {
      display: none;
      align-items: center;
      gap: 7px;
      background: linear-gradient(135deg, #1a6eb5, #18b09e);
      color: #fff;
      border: none;
      border-radius: 100px;
      padding: 9px 20px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      box-shadow: 0 4px 16px rgba(26, 110, 181, 0.3);
      transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
      margin: 0 auto 20px;
      animation: fadeUp 0.4s ease both;
    }

    .redo-recording-btn.show {
      display: flex;
    }

    .redo-recording-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(26, 110, 181, 0.45);
    }

    .redo-recording-btn svg {
      flex-shrink: 0;
    }

    /* ── POST-RECORDING TRANSCRIPT CARD ── */
    .session-transcript-card {
      display: none;
      background: rgba(30, 41, 59, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 14px;
      padding: 16px 20px;
      margin-top: 20px;
      text-align: left;
      animation: fadeUp 0.5s ease both;
      box-shadow: var(--shadow-md);
    }

    .session-transcript-card.show {
      display: block;
    }

    .stc-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .stc-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--blue);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .stc-label-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--teal);
    }

    .stc-session-badge {
      font-size: 11px;
      font-weight: 600;
      background: rgba(59, 130, 246, 0.2);
      color: #93c5fd;
      border-radius: 100px;
      padding: 3px 10px;
    }

    .stc-text {
      font-size: 14px;
      color: #e2e8f0;
      line-height: 1.6;
      font-style: normal;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-left: 3px solid var(--teal);
      border-radius: 6px;
      padding: 12px 16px;
      margin-top: 10px;
    }

    .stc-word-count {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 8px;
      display: flex;
      gap: 14px;
    }

    .stc-word-count span {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ── TRANSCRIPT PANEL ── */
    .transcript-box {
      background: rgba(30, 41, 59, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 18px;
      margin-top: 18px;
      text-align: left;
      min-height: 60px;
      max-height: 120px;
      overflow-y: auto;
      font-size: 13px;
      color: var(--text-primary);
      line-height: 1.6;
      transition: all 0.3s;
      position: relative;
    }

    .transcript-box .transcript-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 6px;
    }

    .transcript-text {
      font-style: italic;
      color: var(--text-secondary);
    }

    .transcript-text.has-text {
      color: var(--text-primary);
      font-style: normal;
    }

    .transcript-cursor {
      display: inline-block;
      width: 2px;
      height: 13px;
      background: var(--blue);
      margin-left: 2px;
      animation: blink 0.8s infinite;
      vertical-align: middle;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0
      }
    }

    .transcript-session-header {
      font-size: 11px;
      font-weight: 700;
      color: var(--teal);
      margin-top: 8px;
      margin-bottom: 2px;
    }

    .transcript-session-header:first-child {
      margin-top: 0;
    }

    /* ── LAYOUT ── */
    section {
      padding: 96px 52px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ── HERO ── */
    .hero {
      text-align: center;
      padding-top: 140px;
      padding-bottom: 80px;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 110, 181, 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26, 110, 181, 0.08);
      border: 1px solid rgba(26, 110, 181, 0.2);
      border-radius: 100px;
      padding: 7px 18px;
      font-size: 11px;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 1.4px;
      text-transform: uppercase;
      margin-bottom: 44px;
      animation: fadeUp 0.6s ease both;
    }

    .hero-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 0 3px rgba(24, 176, 158, 0.2);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.35
      }
    }

    .hero h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(52px, 7.5vw, 92px);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -2.5px;
      color: var(--navy);
      max-width: 820px;
      margin: 0 auto 28px;
      animation: fadeUp 0.7s 0.1s ease both;
    }

    .gradient-text {
      background: linear-gradient(90deg, #1a6eb5 0%, #18b09e 55%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 18px;
      color: var(--text-secondary);
      max-width: 500px;
      margin: 0 auto 52px;
      font-weight: 400;
      line-height: 1.75;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #1a6eb5, #18b09e);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 16px 32px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      box-shadow: 0 8px 28px rgba(26, 110, 181, 0.35);
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(26, 110, 181, 0.45);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--surface);
      color: var(--navy);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 15px 28px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      font-family: inherit;
      box-shadow: var(--shadow-sm);
      transition: border-color 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }

    .btn-secondary:hover {
      border-color: var(--blue);
      box-shadow: var(--shadow-md);
    }

    .hero-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin: 64px auto 0;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 28px 48px;
      max-width: 640px;
      box-shadow: var(--shadow-sm);
      animation: fadeUp 0.7s 0.4s ease both;
    }

    .hero-stat {
      text-align: center;
      flex: 1;
    }

    .hero-stat-num {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--navy);
    }

    .hero-stat-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
      font-weight: 500;
    }

    .hero-divider {
      width: 1px;
      height: 40px;
      background: var(--border);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: 34px;
      font-weight: 700;
      letter-spacing: -0.8px;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .section-sub {
      font-size: 15px;
      color: var(--text-secondary);
      margin-bottom: 48px;
    }

    /* ── RECORDING ── */
    .recording-section {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 60px 52px;
      box-shadow: var(--shadow-lg);
      text-align: center;
      max-width: 620px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .recording-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #1a6eb5, #18b09e);
    }

    .record-button-wrap {
      position: relative;
      width: 148px;
      height: 148px;
      margin: 0 auto 36px;
    }

    .record-ring {
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      border: 2px solid transparent;
      transition: all 0.4s;
    }

    .record-ring.active {
      border-color: rgba(26, 110, 181, 0.3);
      animation: ripple 1.6s ease-out infinite;
    }

    .record-ring2 {
      position: absolute;
      inset: -22px;
      border-radius: 50%;
      border: 1.5px solid transparent;
    }

    .record-ring2.active {
      border-color: rgba(24, 176, 158, 0.2);
      animation: ripple 1.6s 0.4s ease-out infinite;
    }

    @keyframes ripple {
      0% {
        transform: scale(1);
        opacity: 1
      }

      100% {
        transform: scale(1.2);
        opacity: 0
      }
    }

    .record-button {
      width: 148px;
      height: 148px;
      border-radius: 50%;
      background: var(--surface);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s;
      box-shadow: var(--shadow-md);
      position: relative;
      z-index: 1;
      flex-direction: column;
      gap: 6px;
    }

    .record-button:hover {
      border-color: var(--blue);
      box-shadow: 0 8px 32px rgba(26, 110, 181, 0.22);
    }

    .record-button.recording {
      background: linear-gradient(135deg, #1a6eb5, #18b09e);
      border-color: transparent;
      box-shadow: 0 8px 40px rgba(26, 110, 181, 0.4);
    }

    .record-button.disabled {
      opacity: 0.4;
      cursor: not-allowed;
      pointer-events: none;
    }

    .record-icon-idle {
      color: var(--blue);
    }

    .record-icon-active {
      color: #fff;
      display: none;
    }

    .record-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
    }

    .record-label.on {
      color: rgba(255, 255, 255, 0.85);
    }

    .timer {
      font-family: 'Outfit', sans-serif;
      font-size: 54px;
      font-weight: 700;
      letter-spacing: -2px;
      color: var(--navy);
      margin-bottom: 10px;
      font-variant-numeric: tabular-nums;
      transition: color 0.3s;
    }

    .timer.active {
      color: var(--blue);
    }

    .timer-label {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 32px;
    }

    .progress-bar-wrap {
      background: var(--bg);
      border-radius: 100px;
      height: 5px;
      margin-bottom: 40px;
      overflow: hidden;
    }

    .progress-bar {
      height: 100%;
      border-radius: 100px;
      background: linear-gradient(90deg, #1a6eb5, #18b09e);
      transition: width 1s linear;
    }

    .baseline-steps {
      display: flex;
      gap: 12px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .baseline-step {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      transition: all 0.3s;
    }

    .baseline-step.completed {
      background: #ecfdf5;
      border-color: #6ee7b7;
      color: #065f46;
    }

    .baseline-step.active {
      background: #eff6ff;
      border-color: #93c5fd;
      color: #1d4ed8;
    }

    .step-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: currentColor;
      opacity: 0.5;
      flex-shrink: 0;
    }

    .baseline-step.completed .step-dot {
      opacity: 1;
    }

    .baseline-step.active .step-dot {
      opacity: 1;
      animation: pulse 1.2s infinite;
    }

    .baseline-established {
      display: none;
      margin-top: 24px;
      background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
      border: 1px solid #6ee7b7;
      border-radius: 12px;
      padding: 16px 24px;
      color: #065f46;
      font-weight: 600;
      font-size: 15px;
      align-items: center;
      gap: 10px;
      justify-content: center;
    }

    .baseline-established.show {
      display: flex;
    }

    /* ── DASHBOARD GRID ── */
    .dashboard-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .risk-score-card {
      grid-column: 1 / -1;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 44px 52px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 56px;
      position: relative;
      overflow: hidden;
    }

    .risk-score-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--risk-accent, linear-gradient(90deg, #f59e0b, #ef4444));
    }

    .risk-score-card::after {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .score-gauge {
      position: relative;
      flex-shrink: 0;
      width: 180px;
      height: 180px;
    }

    .score-gauge svg {
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }

    .gauge-bg {
      fill: none;
      stroke: var(--bg);
      stroke-width: 14;
    }

    .gauge-fill {
      fill: none;
      stroke-width: 14;
      stroke-linecap: round;
      transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gauge-center {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .gauge-score {
      font-family: 'Outfit', sans-serif;
      font-size: 48px;
      font-weight: 700;
      letter-spacing: -2px;
      line-height: 1;
    }

    .gauge-denom {
      font-size: 13px;
      color: var(--text-muted);
    }

    .risk-info {
      flex: 1;
    }

    .risk-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 100px;
      padding: 7px 16px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .risk-status-badge.moderate {
      background: #fffbeb;
      color: #92400e;
      border: 1px solid #fde68a;
    }

    .risk-status-badge.low {
      background: #ecfdf5;
      color: #065f46;
      border: 1px solid #6ee7b7;
    }

    .risk-status-badge.high {
      background: #fef2f2;
      color: #991b1b;
      border: 1px solid #fca5a5;
    }

    .risk-info h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .risk-info p {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    .risk-csi {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      padding: 7px 12px;
      border-radius: 10px;
      border: 1px solid rgba(20, 241, 217, 0.35);
      background: rgba(20, 241, 217, 0.08);
      color: #bffcf4;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2px;
    }

    .risk-csi strong {
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      color: var(--teal);
      line-height: 1;
    }

    .risk-delta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 20px;
      font-size: 13px;
      font-weight: 600;
      padding: 7px 14px;
      border-radius: 100px;
    }

    .waveform-card {
      grid-column: 1/-1;
      background:
        linear-gradient(135deg, rgba(26, 110, 181, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(10, 24, 44, 0.98) 0%, rgba(7, 17, 33, 0.98) 100%);
      border: 1px solid rgba(75, 121, 184, 0.26);
      border-radius: var(--radius-md);
      padding: 30px;
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
    }

    .waveform-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 22px;
    }

    .waveform-header h3 {
      font-size: 15px;
      font-weight: 600;
      color: #d8e8ff;
    }

    .waveform-header p {
      font-size: 12px;
      color: #7f96b8;
      margin-top: 3px;
    }

    .waveform-legend {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #b8c9e4;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(16, 31, 53, 0.82);
      border: 1px solid rgba(91, 141, 238, 0.22);
    }

    .legend-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(213, 229, 255, 0.14);
    }

    .waveform-container {
      position: relative;
      height: 126px;
      margin-bottom: 10px;
      padding: 8px 0 6px;
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(15, 36, 63, 0.96) 0%, rgba(10, 24, 44, 0.98) 100%);
      border: 1px solid rgba(91, 141, 238, 0.18);
      overflow: hidden;
    }

    .waveform-svg {
      width: 100%;
      height: 92px;
    }

    .waveform-timeline {
      display: flex;
      position: relative;
      border-top: 1px solid rgba(91, 141, 238, 0.2);
      padding-top: 10px;
      height: 26px;
    }

    .timeline-tick {
      position: absolute;
      transform: translateX(-50%);
    }

    .tick-time {
      font-size: 11px;
      color: #8ea4c6;
    }

    .marker-container {
      position: absolute;
      top: 0;
      width: 100%;
      height: 92px;
    }

    .marker {
      position: absolute;
      top: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
    }

    .marker-line {
      width: 1px;
      flex: 1;
      background: repeating-linear-gradient(to bottom, #5b8dee 0, #5b8dee 4px, transparent 4px, transparent 8px);
      opacity: 0.42;
    }

    .marker-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid #d8e8ff;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
      flex-shrink: 0;
      margin-top: -6px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .marker-tooltip {
      position: absolute;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: #17345f;
      color: #fff;
      font-size: 11px;
      font-weight: 500;
      padding: 5px 10px;
      border-radius: 7px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s;
      z-index: 10;
    }

    .marker-tooltip::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 4px solid transparent;
      border-top-color: #17345f;
    }

    .marker:hover .marker-tooltip,
    .marker.active .marker-tooltip {
      opacity: 1;
    }

    .marker:hover .marker-dot,
    .marker.active .marker-dot {
      transform: scale(1.3);
      box-shadow: 0 12px 28px rgba(23, 52, 95, 0.25);
    }

    .waveform-bar {
      transition: transform 0.16s ease, opacity 0.16s ease, filter 0.16s ease;
      transform-origin: center;
      cursor: pointer;
    }

    .waveform-bar.is-dim {
      opacity: 0.42;
    }

    .waveform-bar.is-active {
      transform: scaleY(1.12);
      filter: saturate(1.2) brightness(1.02);
    }

    .waveform-detail-card {
      display: grid;
      gap: 6px;
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(12, 27, 48, 0.9);
      border: 1px solid rgba(91, 141, 238, 0.22);
      box-shadow: inset 0 1px 0 rgba(216,232,255,0.08);
    }

    .waveform-detail-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .waveform-detail-kicker {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      color: #7f96b8;
    }

    .waveform-detail-time {
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #d8e8ff;
    }

    .waveform-detail-title {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #eaf3ff;
      letter-spacing: -0.02em;
    }

    .waveform-detail-copy {
      margin: 0;
      font-size: 13px;
      line-height: 1.6;
      color: #a5b8d4;
    }

    .graphs-section {
      grid-column: 1/-1;
    }

    .graphs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 16px;
    }

    .graphs-grid-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .graph-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
      --graph-accent: #1a6eb5;
      --graph-accent-soft: #60a5fa;
    }

    .graph-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 3px 3px 0 0;
      background: linear-gradient(90deg, var(--graph-accent), var(--graph-accent-soft));
    }

    .graph-card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .graph-card-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .graph-card-desc {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .graph-card-current {
      font-family: 'Outfit', sans-serif;
      font-size: 32px;
      font-weight: 700;
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: 14px;
    }

    .graph-svg {
      width: 100%;
      height: 90px;
    }

    .insight-card {
      background: linear-gradient(135deg, #edf4ff 0%, #e8f8f6 100%);
      border: 1px solid rgba(26, 110, 181, 0.15);
      border-radius: var(--radius-md);
      padding: 28px 32px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .insight-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, #1a6eb5, #18b09e);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(26, 110, 181, 0.3);
    }

    .insight-icon svg {
      width: 22px;
      height: 22px;
      color: #fff;
    }

    .insight-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 7px;
    }

    .insight-text {
      font-size: 14px;
      color: var(--navy);
      line-height: 1.7;
      white-space: pre-line;
    }

    .insight-footer {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .indices-grid {
      grid-column: 1/-1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      position: relative;
      z-index: 5;
    }

    .index-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      position: relative;
    }

    .index-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .index-card-label {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
      flex: 1;
    }

    /* Info icon */
    .info-icon-wrap {
      position: relative;
      flex-shrink: 0;
      margin-left: 8px;
    }

    .info-icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-muted);
      padding: 2px;
      display: flex;
      align-items: center;
      border-radius: 50%;
      transition: color 0.2s, background 0.2s;
    }

    .info-icon-btn:hover {
      color: var(--blue);
      background: rgba(26, 110, 181, 0.08);
    }

    .info-tooltip {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: rgba(9, 14, 23, 0.98);
      color: #fff;
      border-radius: 12px;
      padding: 14px 16px;
      width: 240px;
      z-index: 50;
      box-shadow: 0 8px 32px rgba(15, 33, 55, 0.22);
      animation: fadeUp 0.2s ease both;
    }

    .info-tooltip.show {
      display: block;
    }

    .info-tooltip::before {
      content: '';
      position: absolute;
      bottom: 100%;
      right: 10px;
      border: 6px solid transparent;
      border-bottom-color: rgba(9, 14, 23, 0.98);
    }

    .info-tooltip-title {
      font-size: 12px;
      font-weight: 700;
      color: var(--teal);
      margin-bottom: 7px;
      letter-spacing: 0.3px;
    }

    .info-tooltip p {
      font-size: 12px;
      line-height: 1.65;
      color: rgba(248, 250, 252, 0.92);
    }

    /* Re-record button */
    .rerecord-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1.5px solid var(--blue);
      color: var(--blue);
      border-radius: 10px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      margin-top: 8px;
    }

    .rerecord-btn:hover {
      background: rgba(26, 110, 181, 0.07);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(26, 110, 181, 0.18);
    }

    .index-value {
      font-family: 'Outfit', sans-serif;
      font-size: 44px;
      font-weight: 700;
      letter-spacing: -1.5px;
      line-height: 1;
      margin-bottom: 14px;
    }

    .index-bar-wrap {
      background: var(--bg);
      border-radius: 100px;
      height: 4px;
      margin-bottom: 8px;
    }

    .index-bar {
      height: 100%;
      border-radius: 100px;
      transition: width 1s ease;
    }

    .index-range {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--text-muted);
    }

    /* ── COMPARE PAGE ── */
    #compare-page {
      display: none;
    }

    #compare-page.show {
      display: block;
    }

    .compare-page-inner {
      padding-top: 96px;
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 52px;
      padding-right: 52px;
      padding-bottom: 80px;
    }

    .compare-header {
      margin-bottom: 40px;
    }

    .compare-title {
      font-family: 'Outfit', sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .compare-sub {
      color: var(--text-secondary);
      font-size: 15px;
    }

    .patient-tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }

    .patient-tab {
      background: rgba(30, 41, 59, 0.5);
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .patient-tab:hover {
      border-color: rgba(255, 255, 255, 0.2);
      background: rgba(30, 41, 59, 0.8);
      color: var(--text-primary);
    }

    .patient-tab.active-a {
      border-color: #10b981;
      background: rgba(16, 185, 129, 0.15);
      color: #34d399;
    }

    .patient-tab.active-b {
      border-color: #ef4444;
      background: rgba(239, 68, 68, 0.15);
      color: #fca5a5;
    }

    .patient-tab.active-c {
      border-color: #1a6eb5;
      background: rgba(26, 110, 181, 0.2);
      color: #93c5fd;
    }

    /* Side by side comparison */
    .compare-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 32px;
    }

    .compare-col-header {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px;
      margin-bottom: 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .compare-col-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
    }

    .compare-col-header.user-col::before {
      background: linear-gradient(90deg, #1a6eb5, #18b09e);
    }

    .compare-col-header.ref-col::before {
      background: var(--ref-col-color, #10b981);
    }

    .compare-col-header h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .compare-col-header p {
      font-size: 12px;
      color: var(--text-muted);
    }

    .compare-score-big {
      font-family: 'Outfit', sans-serif;
      font-size: 52px;
      font-weight: 700;
      letter-spacing: -2px;
      margin: 12px 0 4px;
    }

    /* Compare metric rows */
    .compare-metrics {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .compare-metric-row {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 22px;
    }

    .compare-metric-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .compare-bars {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .compare-bar-row {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
    }

    .compare-bar-label {
      width: 80px;
      font-weight: 600;
      color: var(--text-secondary);
      flex-shrink: 0;
      font-size: 11px;
    }

    .compare-bar-track {
      flex: 1;
      background: var(--bg);
      border-radius: 100px;
      height: 8px;
      overflow: hidden;
    }

    .compare-bar-fill {
      height: 100%;
      border-radius: 100px;
      transition: width 1s ease;
    }

    .compare-bar-val {
      width: 40px;
      text-align: right;
      font-weight: 700;
      color: var(--navy);
      font-size: 12px;
    }

    /* Delta summary */
    .compare-delta-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 12px;
      margin-bottom: 24px;
    }

    .compare-delta-card {
      background: rgba(30, 41, 59, 0.5);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 18px;
      text-align: center;
    }

    .compare-delta-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .compare-delta-val {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -1px;
      color: var(--text-primary);
    }

    .compare-delta-note {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* AI compare insight */
    .compare-insight {
      background: rgba(30, 41, 59, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      margin-bottom: 32px;
      color: var(--text-primary);
    }

    /* Transcript compare */
    .compare-transcript {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px;
      margin-bottom: 24px;
    }

    .compare-transcript h4 {
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .transcript-compare-box {
      background: rgba(15, 23, 42, 0.6);
      border: 1px dashed rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 14px 18px;
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .transcript-compare-box strong {
      color: var(--text-primary);
    }

    /* User profile badge in dashboard */
    .user-profile-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 700;
      background: linear-gradient(135deg, rgba(26, 110, 181, 0.1), rgba(24, 176, 158, 0.1));
      border: 1px solid rgba(26, 110, 181, 0.2);
      color: var(--blue);
      margin-bottom: 14px;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 28px 52px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 15px;
      color: var(--navy);
    }

    .footer-brand-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: linear-gradient(135deg, #1a6eb5, #18b09e);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-brand-icon svg {
      width: 15px;
      height: 15px;
    }

    .footer-note {
      font-size: 12px;
      color: var(--text-muted);
    }

    .footer-content {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer-links a,
    .footer-links a:visited {
      color: #ffffff;
      text-decoration: none;
    }

    .footer-links a:hover {
      color: #e5e7eb;
      text-decoration: underline;
    }

    /* Pages */
    #hero-section {
      display: block;
    }

    #recording-section {
      display: block;
    }

    #dashboard {
      display: none;
    }

    #profile-page {
      display: none;
    }

    #settings-page {
      display: none;
    }

    #dashboard.show {
      display: block;
    }

    #profile-page.show {
      display: block;
    }

    #settings-page.show {
      display: block;
    }

    .profile-page-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      max-width: 400px;
      margin: 0 auto;
      box-shadow: var(--shadow-md);
    }

    .profile-avatar-large {
      width: 80px;
      height: 80px;
      margin: 0 auto 16px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1a6eb5, #18b09e);
      color: #fff;
      font-size: 32px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .settings-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      max-width: 500px;
      margin: 0 auto;
      box-shadow: var(--shadow-md);
    }

    .settings-section label {
      display: block;
      margin-bottom: 16px;
      font-size: 14px;
    }

    .settings-section input {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 14px;
      margin-top: 4px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media(max-width:900px) {
      nav {
        padding: 0 20px;
      }

      section {
        padding: 64px 20px;
      }

      .dashboard-grid,
      .graphs-grid,
      .graphs-grid-bottom,
      .indices-grid,
      .compare-columns,
      .compare-delta-row {
        grid-template-columns: 1fr;
      }

      .risk-score-card {
        flex-direction: column;
        gap: 24px;
      }

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

      footer {
        flex-direction: column;
        gap: 12px;
      }

      .hero-stats {
        padding: 24px 20px;
      }

      .nav-links {
        display: none;
      }

      .backend-status {
        padding: 6px;
      }

      .backend-status-text {
        display: none;
      }

      .compare-page-inner {
        padding-left: 20px;
        padding-right: 20px;
      }
    }
