    /* Font faces removed for the packaged dashboard — the font-family stack
       falls back to system fonts automatically. Host-specific forks can
       re-add @font-face blocks above if desired. */

    :root {
      --orange: #ff5200;
      --orange-hover: #e64a00;
      --orange-light: rgba(255, 82, 0, 0.08);
      --charcoal: #1a1c20;
      --charcoal-light: #2a2c30;
      --cream-50: #faf9f4;
      --cream-100: #f5f2e2;
      --cream-200: #ebe7d3;
      --grey: #e5e5e5;
      --font-body: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --font-heading: 'PP Gosha Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --radius-sm: 12px;
      --radius-md: 16px;
      --radius-lg: 20px;
    }

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

    body {
      font-family: var(--font-body);
      background: var(--cream-100);
      color: var(--charcoal);
      min-height: 100vh;
      font-size: 14px;
    }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      font-weight: 500;
      font-family: var(--font-body);
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-primary:hover { background: var(--orange-hover); }
    .btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
    .btn-primary.full { width: 100%; }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: transparent;
      color: inherit;
      border: none;
      padding: 0.4rem 0.75rem;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 500;
      font-family: var(--font-body);
      cursor: pointer;
      transition: background 0.15s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.1); }

    .btn-sm { padding: 0.35rem 0.75rem; font-size: 0.75rem; }

    /* ===== LOGIN PAGE ===== */
    #login-page {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .login-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      max-width: 780px;
      width: 100%;
      align-items: center;
    }
    .login-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
    }
    .login-logo { width: 160px; height: auto; }
    .login-left input {
      width: 100%;
      max-width: 300px;
      padding: 0.75rem 1rem;
      background: var(--cream-50);
      border: 1px solid rgba(26, 28, 32, 0.15);
      border-radius: var(--radius-sm);
      color: var(--charcoal);
      font-size: 0.875rem;
      font-family: var(--font-body);
      text-align: center;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .login-left input:focus {
      outline: none;
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(255, 82, 0, 0.15);
    }
    .login-left input::placeholder { color: var(--charcoal); opacity: 0.35; }
    .login-error {
      color: #dc2626;
      font-size: 0.8rem;
      display: none;
      text-align: center;
    }

    .login-right {
      background: var(--charcoal);
      border-radius: var(--radius-lg);
      padding: 2.25rem;
      color: #fff;
    }
    .login-right h2 {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 400;
      margin-bottom: 1.25rem;
      line-height: 1.3;
    }
    .login-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    .login-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      font-size: 0.875rem;
      opacity: 0.85;
      line-height: 1.4;
    }
    .login-features li::before {
      content: '';
      width: 5px;
      height: 5px;
      background: var(--orange);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 0.45em;
    }

    @media (max-width: 700px) {
      .login-container { grid-template-columns: 1fr; }
      .login-right { display: none; }
    }

    /* ===== APP SHELL ===== */
    #app-shell { display: none; height: 100vh; flex-direction: column; }

    .app-header {
      height: 48px;
      background: var(--charcoal);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      flex-shrink: 0;
    }
    .app-header-logo { height: 22px; width: auto; margin-right: auto; }
    .app-header-actions { display: flex; align-items: center; gap: 0.4rem; }
    .app-header .btn-ghost {
      color: rgba(255,255,255,0.6); font-size: 0.75rem;
      display: inline-flex; align-items: center; gap: 0.4rem;
    }
    .app-header .btn-ghost svg { opacity: 0.85; }
    .app-header .btn-ghost:hover { color: #fff; }

    .app-body {
      display: flex;
      flex: 1;
      overflow: hidden;
    }

    /* Sidebar */
    .sidebar {
      width: 200px;
      background: var(--cream-50);
      border-right: 1px solid var(--grey);
      padding: 0.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      flex-shrink: 0;
    }
    .sidebar-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.55rem 0.75rem;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--charcoal);
      cursor: pointer;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      transition: background 0.15s;
    }
    .sidebar-item:hover { background: rgba(26,28,32,0.05); }
    .sidebar-item.active {
      background: var(--orange);
      color: #fff;
    }
    .sidebar-item svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* Main content */
    .main-content {
      flex: 1;
      overflow-y: auto;
      padding: 1.5rem;
      background: var(--cream-100);
    }
    .main-inner { max-width: 1000px; }

    .section-panel { display: none; }
    .section-panel.active { display: block; animation: fadeIn 0.2s ease; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Mobile bottom tab bar */
    .bottom-tabs {
      display: none;
      background: var(--cream-50);
      border-top: 1px solid var(--grey);
      flex-shrink: 0;
    }
    .bottom-tabs-inner {
      display: flex;
      justify-content: space-around;
    }
    .bottom-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.15rem;
      padding: 0.4rem 0.75rem;
      border: none;
      background: none;
      font-family: var(--font-body);
      font-size: 0.6rem;
      color: var(--charcoal);
      opacity: 0.5;
      cursor: pointer;
    }
    .bottom-tab.active { opacity: 1; color: var(--orange); }
    .bottom-tab svg { width: 20px; height: 20px; }

    @media (max-width: 768px) {
      .sidebar { display: none; }
      .bottom-tabs { display: block; }
      .main-content { padding: 1rem; }
    }

    /* ===== PUBLISH SECTION ===== */
    .columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
    }
    @media (max-width: 720px) {
      .columns { grid-template-columns: 1fr; gap: 2rem; }
    }

    .dropzone {
      background: #fff;
      border: 2px dashed rgba(26, 28, 32, 0.15);
      border-radius: var(--radius-md);
      padding: 2.5rem 1.5rem;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      text-align: center;
    }
    .dropzone:hover, .dropzone.dragover {
      border-color: var(--orange);
      background: rgba(255, 82, 0, 0.03);
    }
    .dropzone-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 1rem;
      background: var(--orange-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .dropzone-icon svg { width: 20px; height: 20px; color: var(--orange); }
    .dropzone-text {
      color: var(--charcoal);
      opacity: 0.5;
      font-size: 0.85rem;
      line-height: 1.7;
    }
    .dropzone-text strong { color: var(--orange); opacity: 1; }
    input[type="file"] { display: none; }

    .file-list {
      margin-top: 0.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .file-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.5rem 0.75rem;
      background: #fff;
      border: 1px solid rgba(26, 28, 32, 0.08);
      border-radius: 8px;
      font-size: 0.8rem;
    }
    .file-item-icon {
      width: 24px;
      height: 24px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .file-item-icon.md { background: rgba(255, 82, 0, 0.1); }
    .file-item-icon.img { background: rgba(26, 28, 32, 0.06); }
    .file-item-icon svg { width: 12px; height: 12px; }
    .file-item-name {
      flex: 1;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .file-item-size {
      color: rgba(26, 28, 32, 0.4);
      font-size: 0.75rem;
      white-space: nowrap;
    }
    .file-item-remove {
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(26, 28, 32, 0.3);
      padding: 2px;
      display: flex;
      transition: color 0.15s;
    }
    .file-item-remove:hover { color: #dc2626; }
    .file-item-remove svg { width: 14px; height: 14px; }

    .publish-btn-wrapper { margin-top: 1rem; }

    .status {
      margin-top: 1rem;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
      display: none;
      font-size: 0.85rem;
      line-height: 1.6;
      text-align: left;
    }
    .status.success { display: block; background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
    .status.error { display: block; background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
    .status.loading {
      display: block;
      background: #fff;
      border: 1px solid rgba(26, 28, 32, 0.1);
      color: var(--charcoal);
      text-align: center;
      opacity: 0.7;
      animation: pulse 1.5s ease-in-out infinite;
    }
    .status a { color: inherit; font-weight: 500; }
    @keyframes pulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }

    .pipeline-label {
      font-size: 0.65rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--orange);
      margin-bottom: 1rem;
    }

    .steps { list-style: none; position: relative; }
    .steps::before {
      content: '';
      position: absolute;
      left: 13px;
      top: 28px;
      bottom: 14px;
      width: 1px;
      background: rgba(26, 28, 32, 0.1);
    }
    .step { display: flex; gap: 0.75rem; padding-bottom: 1.25rem; position: relative; }
    .step:last-child { padding-bottom: 0; }
    .step-dot {
      width: 27px; height: 27px; flex-shrink: 0; border-radius: 50%;
      background: #fff; border: 1px solid rgba(26, 28, 32, 0.12);
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
    }
    .step-dot svg { width: 13px; height: 13px; color: var(--orange); }
    .step:last-child .step-dot { background: var(--orange); border-color: var(--orange); }
    .step:last-child .step-dot svg { color: #fff; }
    .step-body { padding-top: 3px; }
    .step-title { font-weight: 500; font-size: 0.85rem; margin-bottom: 0.15rem; }
    .step-desc { font-size: 0.75rem; color: var(--charcoal); opacity: 0.45; line-height: 1.5; }

    /* ===== ANALYTICS SECTION ===== */

    /* Toolbar — single row */
    .analytics-toolbar {
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(26,28,32,0.1);
      border-radius: 0;
      padding: 0.5rem 0;
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.35rem;
      flex-wrap: wrap;
    }
    .toolbar-sep {
      width: 1px;
      height: 16px;
      background: rgba(26,28,32,0.15);
      margin: 0 0.3rem;
    }

    /* Date pills */
    .date-pill {
      padding: 0.2rem 0.55rem;
      border: 1px solid transparent;
      border-radius: 6px;
      background: transparent;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.15s;
      color: var(--charcoal);
      opacity: 0.5;
    }
    .date-pill:hover { opacity: 1; border-color: rgba(26,28,32,0.12); }
    .date-pill.active {
      background: var(--charcoal);
      color: #fff;
      opacity: 1;
      border-color: var(--charcoal);
    }

    .date-inline {
      display: none;
      align-items: center;
      gap: 0.35rem;
    }
    .date-inline.visible { display: flex; }
    .date-inline input[type="date"] {
      padding: 0.25rem 0.4rem;
      border: 1px solid rgba(26,28,32,0.15);
      border-radius: 6px;
      font-family: var(--font-body);
      font-size: 0.75rem;
    }
    .date-inline-sep { opacity: 0.3; font-size: 0.75rem; }

    /* Segmented control */
    .segmented-control {
      display: inline-flex;
      background: rgba(26,28,32,0.06);
      border-radius: 6px;
      padding: 2px;
      gap: 1px;
    }
    .segment {
      padding: 0.2rem 0.55rem;
      border: none;
      border-radius: 4px;
      background: transparent;
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.15s;
      color: var(--charcoal);
      opacity: 0.5;
      white-space: nowrap;
    }
    .segment:hover { opacity: 0.9; }
    .segment.active {
      background: #fff;
      color: var(--charcoal);
      opacity: 1;
      box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }

    /* Chart controls */
    .chart-controls {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.3rem 0;
      margin-bottom: 0.25rem;
    }
    .chart-toggle {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 500;
      color: var(--charcoal);
      opacity: 0.6;
      cursor: pointer;
    }
    .chart-toggle:hover { opacity: 1; }
    .chart-toggle input[type="checkbox"] { accent-color: var(--orange); width: 13px; height: 13px; }
    .chart-toggle select {
      padding: 0.15rem 0.35rem;
      border: 1px solid rgba(26,28,32,0.12);
      border-radius: 4px;
      font-family: var(--font-body);
      font-size: 0.65rem;
      background: #fff;
      color: var(--charcoal);
      cursor: pointer;
    }
    .chart-control-sep {
      width: 1px;
      height: 14px;
      background: rgba(26,28,32,0.12);
    }

    /* Realtime badge */
    .realtime-badge {
      display: none;
      align-items: center;
      gap: 0.3rem;
      padding: 0.2rem 0.5rem;
      background: rgba(22, 163, 74, 0.08);
      border: 1px solid rgba(22, 163, 74, 0.2);
      border-radius: 9999px;
      font-size: 0.7rem;
      font-weight: 500;
      color: #166534;
      margin-left: 0;
    }
    .realtime-dot {
      width: 5px; height: 5px; background: #16a34a; border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

    /* Filter chips */
    .filter-chips {
      display: flex;
      gap: 0.35rem;
      flex-wrap: wrap;
      margin-bottom: 0.75rem;
    }
    .filter-chips:empty { display: none; margin-bottom: 0; }
    .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.2rem 0.6rem;
      background: var(--orange-light);
      border: 1px solid rgba(255, 82, 0, 0.2);
      border-radius: 9999px;
      font-size: 0.7rem;
      color: var(--orange);
      font-weight: 500;
    }
    .filter-chip button {
      background: none; border: none; cursor: pointer;
      color: var(--orange); font-size: 0.85rem; line-height: 1; padding: 0; display: flex;
    }

    /* Analytics sub-nav */
    .analytics-subnav {
      display: flex;
      gap: 0;
      margin-bottom: 0.75rem;
      background: #fff;
      border: 1px solid rgba(26,28,32,0.08);
      border-radius: var(--radius-sm);
      padding: 0 0.25rem;
      overflow-x: auto;
    }
    .subnav-tab {
      padding: 0.6rem 1rem;
      border: none;
      background: none;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--charcoal);
      opacity: 0.4;
      cursor: pointer;
      position: relative;
      transition: opacity 0.15s;
      white-space: nowrap;
    }
    .subnav-tab:hover { opacity: 0.7; }
    .subnav-tab.active { opacity: 1; }
    .subnav-tab.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0.5rem;
      right: 0.5rem;
      height: 2px;
      background: var(--orange);
      border-radius: 1px;
    }

    .analytics-view { display: none; }
    .analytics-view.active { display: block; }

    /* Summary cards */
    .summary {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    @media (max-width: 900px) { .summary { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 500px) { .summary { grid-template-columns: 1fr 1fr; } }
    .card {
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 1rem 1.15rem;
      border: 1px solid rgba(26, 28, 32, 0.08);
    }
    .card { position: relative; }
    .card-hint {
      position: absolute;
      top: 0.5rem;
      right: 0.6rem;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(26,28,32,0.06);
      color: var(--charcoal);
      opacity: 0.3;
      font-size: 0.55rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: help;
      transition: opacity 0.15s;
    }
    .card-hint:hover { opacity: 0.7; }
    .card-label {
      font-size: 0.65rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--charcoal);
      opacity: 0.4;
      margin-bottom: 0.3rem;
    }
    .card-value {
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    .card-internal {
      font-size: 0.7rem;
      color: var(--orange);
      opacity: 0.7;
      margin-top: 0.1rem;
    }
    .card-detail {
      font-size: 0.7rem;
      color: var(--charcoal);
      opacity: 0.45;
      margin-top: 0.15rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .card-delta {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 500;
      margin-top: 0.25rem;
      padding: 0.1rem 0.4rem;
      border-radius: 4px;
    }
    .card-delta.up { color: #166534; background: rgba(22,163,74,0.1); }
    .card-delta.down { color: #dc2626; background: rgba(220,38,38,0.1); }
    .card-delta.neutral { color: var(--charcoal); opacity: 0.25; }
    .card-delta-label {
      font-size: 0.6rem;
      color: var(--charcoal);
      opacity: 0.3;
      margin-left: 0.25rem;
    }

    /* Chart */
    .chart-wrapper {
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 1rem;
      border: 1px solid rgba(26, 28, 32, 0.08);
      margin-bottom: 1.25rem;
    }
    .chart-wrapper canvas {
      width: 100% !important;
      max-height: 240px;
    }

    /* Grid panels */
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }
    @media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }

    .panel {
      background: #fff;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(26, 28, 32, 0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .panel-header {
      background: var(--cream-50);
      padding: 0.6rem 1rem;
      font-size: 0.7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--charcoal);
      opacity: 0.5;
      border-bottom: 1px solid rgba(26,28,32,0.04);
    }
    .panel-hint {
      font-size: 0.65rem;
      font-weight: 400;
      text-transform: none;
      letter-spacing: 0;
      opacity: 0.5;
      margin-left: 0.5rem;
    }
    .panel-body { padding: 0.75rem 1rem; flex: 1; }

    .panel-footer {
      padding: 0.5rem 1rem;
      border-top: 1px solid rgba(26,28,32,0.06);
      font-size: 0.7rem;
      color: var(--charcoal);
      opacity: 0.4;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }
    .panel-footer select {
      font-size: 0.65rem;
      border: 1px solid rgba(26,28,32,0.15);
      border-radius: 3px;
      padding: 0.1rem 0.25rem;
      background: #fff;
      color: var(--charcoal);
      opacity: 1;
      cursor: pointer;
    }

    .panel-full { grid-column: 1 / -1; }

    .list-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.35rem 0.2rem;
      font-size: 0.8rem;
      cursor: pointer;
      transition: background 0.1s;
      border-radius: 4px;
    }
    .list-row:hover { background: rgba(255, 82, 0, 0.04); }
    .list-row + .list-row { border-top: 1px solid rgba(26, 28, 32, 0.04); }
    .list-name {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      flex: 1;
      margin-right: 0.75rem;
    }
    .list-count {
      font-weight: 500;
      color: var(--orange);
      flex-shrink: 0;
      font-size: 0.8rem;
    }
    .list-internal {
      font-size: 0.7rem;
      color: var(--charcoal);
      opacity: 0.35;
      margin-left: 0.3rem;
      flex-shrink: 0;
    }

    .empty {
      color: var(--charcoal);
      opacity: 0.3;
      font-size: 0.8rem;
      padding: 0.4rem 0;
    }

    /* Loading overlay */
    .analytics-loading {
      display: none;
      position: fixed;
      top: 48px;
      left: 200px;
      right: 0;
      bottom: 0;
      background: rgba(245, 242, 226, 0.7);
      z-index: 50;
      align-items: center;
      justify-content: center;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Progress bar */
    .analytics-progress {
      position: fixed;
      top: 48px;
      left: 200px;
      right: 0;
      height: 2px;
      z-index: 60;
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .analytics-progress.active { opacity: 1; }
    .analytics-progress .progress-bar {
      height: 100%;
      background: var(--orange);
      width: 0%;
      transition: width 2s ease-out;
    }
    .analytics-progress .progress-bar.done { transition: width 0.2s ease-out; }
    @media (max-width: 768px) {
      .analytics-progress { left: 0; }
    }

    /* Skeleton loading */
    .skeleton {
      display: inline-block;
      height: 1em;
      width: 55%;
      background: linear-gradient(90deg, var(--grey) 25%, #f0f0f0 50%, var(--grey) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s ease-in-out infinite;
      border-radius: 4px;
      vertical-align: middle;
    }
    .skeleton-line {
      display: block;
      height: 12px;
      margin-bottom: 0.4rem;
      background: linear-gradient(90deg, var(--grey) 25%, #f0f0f0 50%, var(--grey) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s ease-in-out infinite;
      border-radius: 3px;
    }
    .skeleton-line:nth-child(odd) { width: 85%; }
    .skeleton-line:nth-child(even) { width: 65%; }
    @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

    /* Content performance table */
    .perf-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.8rem;
    }
    .perf-table th {
      text-align: left;
      font-weight: 500;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--charcoal);
      opacity: 0.4;
      padding: 0.4rem 0.6rem;
      border-bottom: 1px solid rgba(26, 28, 32, 0.08);
      cursor: pointer;
    }
    .perf-table th:hover { opacity: 0.7; }
    .perf-table td {
      padding: 0.4rem 0.6rem;
      border-bottom: 1px solid rgba(26, 28, 32, 0.04);
    }
    .perf-table tr:hover td { background: rgba(255, 82, 0, 0.02); }
    .score-bar {
      display: inline-block;
      height: 5px;
      border-radius: 3px;
      background: var(--orange);
      vertical-align: middle;
      margin-right: 0.3rem;
    }

    /* SEO score badge */
    .seo-score {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 18px;
      border-radius: 3px;
      font-size: 0.65rem;
      font-weight: 500;
      color: #fff;
    }
    .seo-score.good { background: #16a34a; }
    .seo-score.ok { background: #ca8a04; }
    .seo-score.poor { background: #dc2626; }

    /* Keyword detail panel */
    .seo-checks { list-style: none; padding: 0; }
    .seo-checks li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      padding: 0.3rem 0;
      font-size: 0.8rem;
      border-bottom: 1px solid rgba(26,28,32,0.04);
    }
    .seo-check-icon { flex-shrink: 0; width: 16px; text-align: center; }
    .seo-check-pass { color: #16a34a; }
    .seo-check-fail { color: #dc2626; }
    .seo-recs { margin-top: 0.5rem; }
    .seo-rec {
      font-size: 0.75rem;
      padding: 0.25rem 0.5rem;
      margin-bottom: 0.25rem;
      background: rgba(220,38,38,0.04);
      border-left: 2px solid #dc2626;
      border-radius: 0 3px 3px 0;
    }

    .perf-table tr.kw-expandable { cursor: pointer; }
    .perf-table tr.kw-expandable:hover td { background: rgba(255, 82, 0, 0.04); }

    /* Regions map */
    .regions-map {
      display: flex;
      flex-wrap: wrap;
      gap: 3px;
      margin-top: 0.25rem;
    }
    .region-block {
      border-radius: 3px;
      padding: 0.3rem 0.5rem;
      font-size: 0.65rem;
      font-weight: 500;
      color: #fff;
      min-width: 50px;
      display: flex;
      flex-direction: column;
      gap: 1px;
      cursor: default;
      transition: opacity 0.15s;
    }
    .region-block:hover { opacity: 0.85; }
    .region-block .rb-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .region-block .rb-count { font-size: 0.6rem; opacity: 0.8; }

    /* Redirect button + modal */
    .redirect-btn {
      display: inline-block;
      cursor: pointer;
      font-size: 0.85rem;
      opacity: 0.3;
      transition: opacity 0.15s;
      vertical-align: middle;
    }
    .redirect-btn:hover { opacity: 1; color: var(--orange); }
    .redirect-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .redirect-modal {
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 1.5rem;
      width: 380px;
      max-width: 90vw;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    .redirect-modal h3 {
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    .redirect-modal label {
      font-size: 0.7rem;
      opacity: 0.5;
      display: block;
      margin-bottom: 0.2rem;
    }
    .redirect-modal input {
      width: 100%;
      padding: 0.4rem 0.5rem;
      border: 1px solid rgba(26,28,32,0.15);
      border-radius: 4px;
      font-size: 0.8rem;
      margin-bottom: 0.75rem;
    }
    .redirect-modal input:focus { outline: none; border-color: var(--orange); }
    .redirect-modal .modal-actions {
      display: flex;
      gap: 0.5rem;
      justify-content: flex-end;
    }
    .redirect-modal .modal-actions button {
      padding: 0.35rem 0.75rem;
      border-radius: 4px;
      font-size: 0.75rem;
      cursor: pointer;
      border: 1px solid rgba(26,28,32,0.15);
      background: #fff;
    }
    .redirect-modal .modal-actions button.primary {
      background: var(--orange);
      color: #fff;
      border-color: var(--orange);
    }
    .redirect-modal .modal-status {
      font-size: 0.7rem;
      margin-top: 0.5rem;
      text-align: center;
    }

    /* Chart tooltip */
    .chart-wrapper { position: relative; }
    .chart-tooltip {
      position: absolute;
      background: var(--charcoal);
      color: #fff;
      border-radius: 10px;
      padding: 0.75rem 1rem;
      font-size: 0.7rem;
      pointer-events: none;
      z-index: 10;
      min-width: 180px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: opacity 0.15s;
    }
    .chart-tooltip-date { font-weight: 500; margin-bottom: 0.3rem; font-size: 0.75rem; }
    .chart-tooltip-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.1rem 0; opacity: 0.8; }
    .chart-tooltip-section { margin-top: 0.35rem; padding-top: 0.35rem; border-top: 1px solid rgba(255,255,255,0.15); }
    .chart-tooltip-section-title { font-weight: 500; opacity: 0.6; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.15rem; }

    /* Funnel step details */
    .funnel-step-meta { font-size: 0.6rem; color: var(--charcoal); opacity: 0.45; margin-top: 0.25rem; line-height: 1.4; }

    /* Contact stats */
    .contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 0.75rem; }
    @media (max-width: 500px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
    .contact-card { text-align: center; padding: 0.6rem; background: var(--cream-50); border-radius: 8px; }
    .contact-card-value { font-size: 1.1rem; font-weight: 500; }
    .contact-card-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.5; }
    .mini-funnel { display: flex; align-items: center; justify-content: center; gap: 0; padding: 0.5rem 0; }
    .mini-funnel-step { text-align: center; flex: 1; }
    .mini-funnel-step-count { font-size: 1rem; font-weight: 500; }
    .mini-funnel-step-label { font-size: 0.6rem; opacity: 0.5; }
    .mini-funnel-arrow { color: var(--orange); font-size: 0.8rem; padding: 0 0.3rem; }

    /* Session stats */
    .session-big { font-size: 2rem; font-weight: 500; text-align: center; padding: 0.5rem 0; }
    .session-dist { display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.4rem; }
    .session-dist-item { text-align: center; padding: 0.4rem 0.75rem; background: var(--cream-50); border-radius: 8px; }
    .session-dist-val { font-weight: 500; font-size: 0.9rem; }
    .session-dist-label { font-size: 0.6rem; opacity: 0.5; }

    /* Funnel view */
    .funnel-steps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 1.25rem 0;
    }
    .funnel-step { text-align: center; flex: 1; max-width: 180px; }
    .funnel-step-count { font-size: 1.25rem; font-weight: 500; color: var(--charcoal); }
    .funnel-step-label { font-size: 0.7rem; color: var(--charcoal); opacity: 0.5; margin-top: 0.15rem; }
    .funnel-arrow {
      color: var(--orange);
      font-size: 1rem;
      padding: 0 0.4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .funnel-dropoff { font-size: 0.65rem; color: #dc2626; font-weight: 500; }
    .funnel-conversion {
      text-align: center;
      font-size: 0.8rem;
      color: var(--charcoal);
      opacity: 0.5;
      padding-top: 0.4rem;
    }
    .funnel-conversion strong { color: var(--orange); opacity: 1; }

    .loading-msg { text-align: center; padding: 2.5rem 0; color: var(--charcoal); opacity: 0.4; }

    /* ===== Sites section ===== */
    .sites-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 1.25rem;
    }
    .sites-title { font-size: 1.25rem; font-weight: 600; margin: 0; }
    .sites-list {
      border: 1px solid var(--grey); border-radius: 8px; overflow: hidden;
    }
    .site-row {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr) auto auto auto;
      gap: 0.9rem; align-items: center;
      padding: 0.85rem 1rem;
      border-bottom: 1px solid var(--grey);
    }
    .site-row:last-child { border-bottom: none; }
    .site-favicon {
      width: 24px; height: 24px;
      border-radius: 5px;
      background: var(--cream-100);
      display: block;
      object-fit: contain;
    }
    .site-favicon-fallback {
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 600;
      color: var(--charcoal); opacity: 0.7;
    }
    .site-row-id-block { min-width: 0; }
    .site-row-name {
      font-weight: 600; font-size: 0.88rem;
      color: var(--charcoal);
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }
    .site-row-url {
      display: block;
      font-size: 0.72rem;
      color: var(--charcoal); opacity: 0.55;
      text-decoration: none;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
      margin-top: 0.1rem;
    }
    .site-row-url:hover { opacity: 0.85; text-decoration: underline; }
    .site-row-lasthit {
      font-size: 0.72rem; color: var(--charcoal); opacity: 0.6;
      white-space: nowrap;
    }
    .site-row-pips { display: flex; gap: 0.4rem; }
    .pip {
      display: inline-flex; align-items: center; gap: 0.3rem;
      font-size: 0.65rem; padding: 0.15rem 0.5rem;
      border-radius: 9999px;
      background: rgba(26, 28, 32, 0.06); color: var(--charcoal);
    }
    .pip.pass { background: rgba(22, 163, 74, 0.12); color: #16a34a; }
    .pip.fail { background: rgba(220, 38, 38, 0.12); color: #dc2626; }
    .pip.pending { opacity: 0.55; }
    .pip-dot {
      width: 6px; height: 6px; border-radius: 50%; background: currentColor;
    }
    .site-row-actions { display: flex; gap: 0.35rem; }
    .btn-tiny {
      font-size: 0.7rem; padding: 0.25rem 0.55rem;
      border: 1px solid var(--grey); border-radius: 5px;
      background: transparent; cursor: pointer; color: var(--charcoal);
    }
    .btn-tiny:hover { background: rgba(26, 28, 32, 0.05); }
    .btn-tiny.danger { color: #dc2626; border-color: rgba(220, 38, 38, 0.3); }
    .btn-tiny.danger:hover { background: rgba(220, 38, 38, 0.08); }

    /* ===== Modal ===== */
    .modal-overlay {
      position: fixed; inset: 0; background: rgba(17, 17, 17, 0.4);
      display: flex; align-items: center; justify-content: center;
      z-index: 100; padding: 1rem;
    }
    .modal {
      background: var(--cream-50); border-radius: 12px;
      width: 100%; max-width: 480px; padding: 1.75rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    .modal-title { font-size: 1.1rem; font-weight: 600; margin: 0 0 1.25rem; }
    .modal-actions {
      display: flex; justify-content: flex-end; gap: 0.5rem;
      margin-top: 1.25rem;
    }
    .field { margin-bottom: 0.9rem; }
    .field label {
      display: block; font-size: 0.75rem; font-weight: 500;
      margin-bottom: 0.35rem; color: var(--charcoal);
    }
    .field input {
      width: 100%; font-size: 0.85rem; padding: 0.5rem 0.65rem;
      border: 1px solid var(--grey); border-radius: 6px;
      background: white; color: var(--charcoal); box-sizing: border-box;
    }
    .field input:focus { outline: 2px solid var(--orange); outline-offset: 1px; }
    .field-hint { font-size: 0.7rem; color: var(--charcoal); opacity: 0.55; margin: 0.3rem 0 0; }
    .field-error { font-size: 0.75rem; color: #dc2626; margin: 0; word-wrap: break-word; overflow-wrap: anywhere; }
    .field-error:empty { min-height: 0; padding: 0; }
    .field-error:not(:empty) { padding: 0.55rem 0.7rem; background: rgba(220, 38, 38, 0.06); border-radius: 6px; margin-top: 0.6rem; }
    .field-error a { word-break: break-all; }
    .snippet {
      background: #111; color: #e5e7eb;
      padding: 0.85rem 1rem; border-radius: 6px;
      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 0.7rem; line-height: 1.55;
      overflow-x: auto; white-space: pre; margin: 0.5rem 0;
    }

    .pip.off { background: rgba(26, 28, 32, 0.04); color: var(--charcoal); opacity: 0.5; }
    .gsc-steps li code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.7rem; background: rgba(26, 28, 32, 0.06); padding: 0.05rem 0.3rem; border-radius: 3px; }
    .gsc-steps li a { color: var(--orange); }
    .modal-actions .btn-tiny.danger { margin-right: auto; }

    /* ===== Toasts (auto-dismissing) ===== */
    .toast-container {
      position: fixed; top: 1rem; right: 1rem;
      display: flex; flex-direction: column; gap: 0.5rem;
      z-index: 200; pointer-events: none;
    }
    .toast {
      background: var(--charcoal); color: #fff;
      padding: 0.65rem 0.9rem; border-radius: 8px;
      font-size: 0.8rem; line-height: 1.4;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      max-width: 28rem; pointer-events: auto;
      opacity: 0; transform: translateX(20px);
      transition: opacity 0.2s, transform 0.2s;
    }
    .toast.in { opacity: 1; transform: translateX(0); }
    .toast.success { background: #16a34a; }
    .toast.error { background: #dc2626; }
    .toast.info { background: var(--charcoal); }
    .toast strong { display: block; margin-bottom: 0.15rem; font-weight: 500; }
    .modal .danger-action { background: #dc2626; color: #fff; }
    .modal .danger-action:hover { background: #b91c1c; }

    .status-pill {
      display: flex; align-items: flex-start; gap: 0.55rem;
      padding: 0.55rem 0.75rem; border-radius: 6px;
      font-size: 0.75rem; line-height: 1.5;
      margin: 0 0 1rem;
    }
    .status-pill.grey { background: rgba(26, 28, 32, 0.06); color: var(--charcoal); }
    .status-pill.amber { background: rgba(255, 159, 28, 0.15); color: #92400e; }
    .status-pill.green { background: rgba(22, 163, 74, 0.12); color: #15803d; }
    .status-pill .status-pill-dot {
      flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
      background: currentColor; margin-top: 0.45em;
    }
    .status-pill strong { font-weight: 500; }

    /* Copyable: text + copy button laid out together */
    .copyable {
      display: flex; align-items: stretch; gap: 0.4rem;
      margin-top: 0.4rem; min-width: 0;
    }
    .copyable code {
      flex: 1; min-width: 0;
      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 0.78rem; line-height: 1.4;
      padding: 0.55rem 0.7rem;
      background: rgba(26, 28, 32, 0.06);
      color: var(--charcoal);
      border-radius: 6px;
      overflow-x: auto; white-space: nowrap;
      user-select: all;
    }
    .btn-copy {
      flex-shrink: 0;
      font-size: 0.7rem; padding: 0 0.7rem;
      border: 1px solid var(--grey); border-radius: 6px;
      background: var(--cream-50); color: var(--charcoal);
      cursor: pointer; font-family: var(--font-body);
      transition: background 0.15s;
    }
    .btn-copy:hover { background: rgba(26, 28, 32, 0.05); }

    /* Sidebar groups: section label ("Analytics", "Publish") above a
       cream-backed list of sub-items (one per registered site, etc.).
       Active sub-item gets the orange accent rule + tinted background. */
    .sidebar-group { margin: 0 0 0.85rem; }
    .sidebar-group-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--charcoal); opacity: 0.85;
      padding: 0 0.6rem 0.45rem;
    }
    .sidebar-sub-item {
      width: 100%;
      font-size: 0.8rem; padding: 0.45rem 0.65rem;
      border: 1px solid transparent; border-radius: 5px;
      background: transparent; color: var(--charcoal);
      cursor: pointer; font-family: var(--font-body); font-weight: 500;
      transition: background 0.15s, color 0.15s, box-shadow 0.15s;
      display: flex; align-items: center; gap: 0.4rem;
      text-align: left;
      opacity: 0.78;
    }
    .sidebar-sub-item + .sidebar-sub-item { margin-top: 0.15rem; }
    .sidebar-sub-item:hover {
      background: rgba(255, 255, 255, 0.6);
      opacity: 1;
    }
    .sidebar-sub-item.active {
      background: rgba(255, 82, 0, 0.14);
      color: var(--charcoal);
      font-weight: 600;
      opacity: 1;
      box-shadow: inset 2px 0 0 var(--orange);
    }
    .sidebar-sub-item[data-site-id="__all"] {
      opacity: 0.6;
      font-size: 0.74rem;
    }
    .sidebar-sub-item[data-site-id="__all"].active {
      background: rgba(26, 28, 32, 0.08);
      color: var(--charcoal);
      box-shadow: inset 2px 0 0 var(--charcoal);
      opacity: 1;
    }
    .sidebar-group-empty {
      font-size: 0.7rem; color: var(--charcoal); opacity: 0.55;
      padding: 0.3rem 0.65rem;
    }

    /* ===== PUBLISH SECTION (FFF-only) ===== */
    .publish-banner {
      background: var(--cream-200);
      border: 1px solid rgba(26, 28, 32, 0.06);
      border-radius: 6px;
      padding: 0.5rem 0.75rem;
      font-size: 0.7rem;
      color: var(--charcoal); opacity: 0.8;
      margin-bottom: 1rem;
    }
    .publish-banner strong { font-weight: 600; opacity: 1; }

    .columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
    }
    @media (max-width: 720px) {
      .columns { grid-template-columns: 1fr; gap: 2rem; }
    }

    .dropzone {
      background: #fff;
      border: 2px dashed rgba(26, 28, 32, 0.15);
      border-radius: var(--radius-md);
      padding: 2.5rem 1.5rem;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      text-align: center;
    }
    .dropzone:hover, .dropzone.dragover {
      border-color: var(--orange);
      background: rgba(255, 82, 0, 0.03);
    }
    .dropzone-icon {
      width: 40px; height: 40px;
      margin: 0 auto 1rem;
      background: var(--orange-light);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .dropzone-icon svg { width: 20px; height: 20px; color: var(--orange); }
    .dropzone-text { color: var(--charcoal); opacity: 0.5; font-size: 0.85rem; line-height: 1.7; }
    .dropzone-text strong { color: var(--orange); opacity: 1; }
    input[type="file"] { display: none; }

    .file-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
    .file-item {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.5rem 0.75rem;
      background: #fff;
      border: 1px solid rgba(26, 28, 32, 0.08);
      border-radius: 8px;
      font-size: 0.8rem;
    }
    .file-item-icon {
      width: 24px; height: 24px; border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .file-item-icon.md { background: rgba(255, 82, 0, 0.1); }
    .file-item-icon.img { background: rgba(26, 28, 32, 0.06); }
    .file-item-icon svg { width: 12px; height: 12px; }
    .file-item-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .file-item-size { color: rgba(26, 28, 32, 0.4); font-size: 0.75rem; white-space: nowrap; }
    .file-item-remove {
      background: none; border: none; cursor: pointer;
      color: rgba(26, 28, 32, 0.3);
      padding: 2px; display: flex; transition: color 0.15s;
    }
    .file-item-remove:hover { color: #dc2626; }
    .file-item-remove svg { width: 14px; height: 14px; }

    .publish-btn-wrapper { margin-top: 1rem; }

    .status {
      margin-top: 1rem; padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
      display: none; font-size: 0.85rem; line-height: 1.6; text-align: left;
    }
    .status.success { display: block; background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
    .status.error { display: block; background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
    .status.loading {
      display: block; background: #fff;
      border: 1px solid rgba(26, 28, 32, 0.1);
      color: var(--charcoal); text-align: center;
      opacity: 0.7; animation: pulse 1.5s ease-in-out infinite;
    }
    .status a { color: inherit; font-weight: 500; }
    @keyframes pulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }

    .pipeline-label {
      font-size: 0.65rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--orange); margin-bottom: 1rem;
    }

    .steps { list-style: none; position: relative; }
    .steps::before {
      content: ''; position: absolute;
      left: 13px; top: 28px; bottom: 14px;
      width: 1px; background: rgba(26, 28, 32, 0.1);
    }
    .step { display: flex; gap: 0.75rem; padding-bottom: 1.25rem; position: relative; }
    .step:last-child { padding-bottom: 0; }
    .step-dot {
      width: 27px; height: 27px; flex-shrink: 0; border-radius: 50%;
      background: #fff; border: 1px solid rgba(26, 28, 32, 0.12);
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
    }
    .step-dot svg { width: 13px; height: 13px; color: var(--orange); }
    .step:last-child .step-dot { background: var(--orange); border-color: var(--orange); }
    .step:last-child .step-dot svg { color: #fff; }
    .step-body { padding-top: 3px; }
    .step-title { font-weight: 500; font-size: 0.85rem; margin-bottom: 0.15rem; }
    .step-desc { font-size: 0.75rem; color: var(--charcoal); opacity: 0.45; line-height: 1.5; }
