/* ============================================================
   CLIENTOX BRAND COLLAB · SHARED STYLES
   Forest green theme (Stage 2 differentiation per Bible)
   ============================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=JetBrains+Mono:wght@400;500;600&display=swap');

   :root {
     --bg: #FAF6EE;
     --bg-2: #F3EEE4;
     --ink: #1A1814;
     --ink-soft: #5C5448;
     --accent: #E85D2C;
     --accent-dark: #C34A1F;
     --forest: #2A4F3D;
     --forest-dark: #1F3A2D;
     --forest-soft: #3D6B55;
     --cream: #FAF6EE;
     --line: #D4C9B0;
     --muted: #8A8375;
     --error: #C03B1F;
     --success: #3D8B5F;
   }
   
   * { box-sizing: border-box; margin: 0; padding: 0; }
   
   html, body {
     background: var(--bg);
     color: var(--ink);
     font-family: 'Instrument Sans', -apple-system, sans-serif;
     font-size: 16px;
     line-height: 1.55;
     -webkit-font-smoothing: antialiased;
   }
   
   a { color: var(--accent); text-decoration: none; }
   a:hover { color: var(--accent-dark); }
   
   img { max-width: 100%; display: block; }
   
   /* ============================================================
      LAYOUT
      ============================================================ */
   
   .collab-page {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
   }
   
   .collab-container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 24px;
   }
   
   .collab-narrow {
     max-width: 560px;
     margin: 0 auto;
     padding: 0 24px;
   }
   
   /* ============================================================
      NAV
      ============================================================ */
   
   .collab-nav {
     background: var(--forest);
     color: var(--cream);
     padding: 16px 0;
     border-bottom: 1px solid rgba(250, 246, 238, 0.1);
   }
   
   .collab-nav-inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 24px;
   }
   
   .collab-logo {
     font-family: 'Fraunces', serif;
     font-size: 22px;
     font-weight: 400;
     color: var(--cream);
     letter-spacing: -0.02em;
     display: flex;
     align-items: center;
     gap: 10px;
   }
   
   .collab-logo .ox { color: var(--accent); }
   .collab-logo .dot { color: var(--accent); }
   
   .collab-logo-tag {
     font-family: 'JetBrains Mono', monospace;
     font-size: 10px;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--accent);
     padding: 4px 8px;
     background: rgba(232, 93, 44, 0.15);
     border-radius: 100px;
     border: 1px solid rgba(232, 93, 44, 0.3);
   }
   
   .collab-nav-actions {
     display: flex;
     gap: 4px;
     align-items: center;
   }
   
   .collab-nav-actions a {
     color: rgba(250, 246, 238, 0.8);
     font-size: 14px;
     text-decoration: none;
     padding: 8px 14px;
     border-radius: 8px;
     transition: all 0.2s;
   }
   
   .collab-nav-actions a:hover { 
     color: var(--accent); 
     background: rgba(250, 246, 238, 0.05);
   }
   
   /* Visual separator between icon pills group and text links group */
   .collab-nav-actions .nav-icon-pill + a:not(.nav-icon-pill) {
     margin-left: 16px;
     position: relative;
   }
   .collab-nav-actions .nav-icon-pill + a:not(.nav-icon-pill)::before {
     content: '';
     position: absolute;
     left: -10px;
     top: 50%;
     transform: translateY(-50%);
     width: 1px;
     height: 18px;
     background: rgba(250, 246, 238, 0.2);
   }
   
   /* ============================================================
      NAV ICON BUTTONS — Simple icon-only with badge support
      Used for: Inbox + Notifications in dashboard navbars
      Clean, minimal style that matches the original look.
      ============================================================ */
   .nav-icon-pill {
     position: relative;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     background: transparent;
     border: none;
     border-radius: 50%;
     color: rgba(250, 246, 238, 0.8) !important;
     text-decoration: none;
     transition: all 0.2s ease;
     cursor: pointer;
   }
   
   .nav-icon-pill:hover {
     color: var(--accent) !important;
     background: rgba(250, 246, 238, 0.06);
   }
   
   .nav-icon-pill svg {
     width: 18px;
     height: 18px;
     stroke: currentColor;
     stroke-width: 1.8;
     fill: none;
     flex-shrink: 0;
   }
   
   /* Hide the label text - icon only */
   .nav-icon-pill .pill-label {
     display: none;
   }
   
   .nav-icon-pill .pill-count {
     display: none;
     position: absolute;
     top: -2px;
     right: -2px;
     background: var(--accent);
     color: var(--cream);
     padding: 0 5px;
     border-radius: 100px;
     font-family: 'JetBrains Mono', monospace;
     font-size: 9px;
     font-weight: 700;
     min-width: 16px;
     height: 16px;
     text-align: center;
     box-sizing: border-box;
     line-height: 16px;
     border: 2px solid var(--forest);
   }
   
   .nav-icon-pill .pill-count.has-count {
     display: inline-block;
     animation: pill-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
   }
   
   @keyframes pill-pop {
     0% { transform: scale(0); }
     100% { transform: scale(1); }
   }
   
   @media (max-width: 720px) {
     .nav-icon-pill { width: 32px; height: 32px; }
     .nav-icon-pill svg { width: 16px; height: 16px; }
   }
   
   /* ============================================================
      HERO / PAGE HEADER
      ============================================================ */
   
   .collab-hero {
     background: var(--forest);
     color: var(--cream);
     padding: 64px 0;
     position: relative;
     overflow: hidden;
   }
   
   .collab-hero::before {
     content: '';
     position: absolute;
     top: -200px;
     right: -200px;
     width: 500px;
     height: 500px;
     border-radius: 50%;
     background: var(--accent);
     opacity: 0.12;
     filter: blur(60px);
     pointer-events: none;
   }
   
   .collab-hero-tag {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 6px 12px;
     background: rgba(232, 93, 44, 0.15);
     border: 1px solid rgba(232, 93, 44, 0.4);
     border-radius: 100px;
     color: var(--accent);
     font-family: 'JetBrains Mono', monospace;
     font-size: 11px;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-bottom: 24px;
   }
   
   .collab-hero-tag .pulse {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--accent);
     animation: pulse 2s infinite;
   }
   
   @keyframes pulse {
     0%, 100% { opacity: 1; }
     50% { opacity: 0.4; }
   }
   
   .collab-hero h1 {
     font-family: 'Fraunces', serif;
     font-weight: 400;
     font-size: clamp(36px, 5vw, 56px);
     line-height: 1.05;
     letter-spacing: -0.03em;
     color: var(--cream);
     margin-bottom: 16px;
   }
   
   .collab-hero h1 em {
     font-style: italic;
     color: var(--accent);
     font-weight: 500;
   }
   
   .collab-hero p {
     font-size: 17px;
     color: rgba(250, 246, 238, 0.75);
     max-width: 560px;
     line-height: 1.5;
   }
   
   /* ============================================================
      AUTH CARDS
      ============================================================ */
   
   .auth-wrap {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 48px 24px;
     background: var(--bg);
   }
   
   .auth-card {
     background: var(--cream);
     border: 1px solid var(--line);
     border-radius: 24px;
     padding: 40px 36px;
     max-width: 480px;
     width: 100%;
     box-shadow: 0 20px 60px -30px rgba(26, 24, 20, 0.15);
   }
   
   .auth-card-header {
     text-align: center;
     margin-bottom: 32px;
   }
   
   .auth-card-label {
     font-family: 'JetBrains Mono', monospace;
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--accent);
     margin-bottom: 12px;
   }
   
   .auth-card h2 {
     font-family: 'Fraunces', serif;
     font-weight: 400;
     font-size: 32px;
     line-height: 1.1;
     letter-spacing: -0.02em;
     color: var(--ink);
     margin-bottom: 8px;
   }
   
   .auth-card h2 em {
     font-style: italic;
     color: var(--accent);
   }
   
   .auth-card-sub {
     color: var(--ink-soft);
     font-size: 15px;
   }
   
   /* ============================================================
      AUTH TABS
      ============================================================ */
   
   .auth-tabs {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 4px;
     background: var(--bg-2);
     padding: 4px;
     border-radius: 100px;
     margin-bottom: 24px;
   }
   
   .auth-tab {
     padding: 10px 12px;
     background: transparent;
     border: none;
     border-radius: 100px;
     font-family: 'Instrument Sans', sans-serif;
     font-size: 13px;
     font-weight: 500;
     color: var(--ink-soft);
     cursor: pointer;
     transition: all 0.2s;
   }
   
   .auth-tab.active {
     background: var(--ink);
     color: var(--cream);
   }
   
   .auth-tab:hover:not(.active) {
     background: rgba(26, 24, 20, 0.05);
   }
   
   .auth-method {
     display: none;
   }
   
   .auth-method.active {
     display: block;
   }
   
   /* ============================================================
      FORMS
      ============================================================ */
   
   .form-group {
     margin-bottom: 18px;
   }
   
   .form-group label {
     display: block;
     font-size: 13px;
     font-weight: 500;
     color: var(--ink);
     margin-bottom: 6px;
     font-family: 'Instrument Sans', sans-serif;
   }
   
   .form-group label .req {
     color: var(--accent);
     margin-left: 2px;
   }
   
   .form-input,
   .form-select,
   .form-textarea {
     width: 100%;
     padding: 12px 16px;
     border: 1px solid var(--line);
     border-radius: 12px;
     font-family: 'Instrument Sans', sans-serif;
     font-size: 15px;
     color: var(--ink);
     background: var(--bg-2);
     transition: all 0.2s;
   }
   
   .form-input:focus,
   .form-select:focus,
   .form-textarea:focus {
     outline: none;
     border-color: var(--accent);
     background: var(--cream);
     box-shadow: 0 0 0 3px rgba(232, 93, 44, 0.1);
   }
   
   .form-textarea {
     min-height: 100px;
     resize: vertical;
     line-height: 1.5;
   }
   
   .form-hint {
     font-size: 12px;
     color: var(--ink-soft);
     margin-top: 4px;
   }
   
   .phone-input-group {
     display: flex;
     gap: 8px;
   }
   
   .phone-prefix {
     padding: 12px 14px;
     background: var(--bg-2);
     border: 1px solid var(--line);
     border-radius: 12px;
     font-family: 'JetBrains Mono', monospace;
     font-size: 14px;
     color: var(--ink-soft);
     display: flex;
     align-items: center;
   }
   
   /* ============================================================
      BUTTONS
      ============================================================ */
   
   .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 12px 24px;
     border: none;
     border-radius: 100px;
     font-family: 'Instrument Sans', sans-serif;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.2s;
     text-decoration: none;
   }
   
   .btn-primary {
     background: var(--ink);
     color: var(--cream);
   }
   
   a.btn-primary,
   a.btn-primary:visited,
   a.btn-primary:link {
     color: var(--cream);
     text-decoration: none;
   }
   
   .btn-primary:hover,
   .btn-primary:hover:not(:disabled),
   a.btn-primary:hover {
     background: var(--accent);
     color: var(--cream) !important;
     transform: translateY(-1px);
     box-shadow: 0 8px 20px -8px rgba(232, 93, 44, 0.4);
     text-decoration: none;
   }
   
   .btn-primary:active {
     transform: translateY(0);
   }
   
   .btn-primary:disabled {
     opacity: 0.5;
     cursor: not-allowed;
     transform: none;
   }
   
   .btn-google {
     background: var(--cream);
     color: var(--ink);
     border: 1px solid var(--line);
     width: 100%;
     padding: 14px 24px;
   }
   
   .btn-google:hover {
     border-color: var(--ink);
     background: var(--bg-2);
   }
   
   .btn-google svg {
     width: 18px;
     height: 18px;
   }
   
   .btn-full {
     width: 100%;
     padding: 14px 24px;
     font-size: 15px;
   }
   
   .btn-ghost {
     background: transparent;
     color: var(--ink);
     border: 1px solid var(--line);
   }
   
   .btn-ghost:hover {
     border-color: var(--ink);
   }
   
   .btn-back {
     background: transparent;
     color: var(--ink-soft);
     font-size: 14px;
     padding: 8px 0;
   }
   
   .btn-back:hover {
     color: var(--accent);
   }
   
   /* ============================================================
      AUTH DIVIDER
      ============================================================ */
   
   .auth-divider {
     display: flex;
     align-items: center;
     margin: 20px 0;
     color: var(--ink-soft);
     font-size: 12px;
     font-family: 'JetBrains Mono', monospace;
     text-transform: uppercase;
     letter-spacing: 0.1em;
   }
   
   .auth-divider::before,
   .auth-divider::after {
     content: '';
     flex: 1;
     height: 1px;
     background: var(--line);
   }
   
   .auth-divider span { padding: 0 16px; }
   
   .auth-footer {
     text-align: center;
     margin-top: 24px;
     font-size: 14px;
     color: var(--ink-soft);
   }
   
   .auth-footer a {
     color: var(--accent);
     font-weight: 500;
   }
   
   /* ============================================================
      ROLE SELECTION CARDS
      ============================================================ */
   
   .role-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-top: 32px;
   }
   
   @media (max-width: 600px) {
     .role-grid { grid-template-columns: 1fr; }
   }
   
   .role-card {
     background: var(--cream);
     border: 2px solid var(--line);
     border-radius: 20px;
     padding: 32px 28px;
     cursor: pointer;
     transition: all 0.3s;
     text-align: left;
     width: 100%;
     font-family: inherit;
   }
   
   .role-card:hover {
     border-color: var(--accent);
     transform: translateY(-4px);
     box-shadow: 0 20px 40px -20px rgba(26, 24, 20, 0.12);
   }
   
   .role-card.selected {
     border-color: var(--accent);
     background: linear-gradient(180deg, var(--cream) 0%, #FFF8EE 100%);
   }
   
   .role-card-icon {
     width: 56px;
     height: 56px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     font-family: 'Fraunces', serif;
     font-size: 28px;
     font-weight: 500;
     font-style: italic;
   }
   
   .role-card-icon.brand {
     background: var(--forest);
     color: var(--cream);
   }
   
   .role-card-icon.creator {
     background: var(--accent);
     color: var(--cream);
   }
   
   .role-card h3 {
     font-family: 'Fraunces', serif;
     font-weight: 500;
     font-size: 24px;
     letter-spacing: -0.02em;
     margin-bottom: 8px;
     color: var(--ink);
   }
   
   .role-card p {
     color: var(--ink-soft);
     font-size: 14px;
     line-height: 1.5;
     margin-bottom: 16px;
   }
   
   .role-card ul {
     list-style: none;
     padding: 0;
     margin-bottom: 0;
   }
   
   .role-card ul li {
     padding: 5px 0;
     font-size: 13px;
     color: var(--ink-soft);
     display: flex;
     gap: 8px;
     align-items: flex-start;
   }
   
   .role-card ul li::before {
     content: '✦';
     color: var(--accent);
     flex-shrink: 0;
   }
   
   /* ============================================================
      STEPPED ONBOARDING
      ============================================================ */
   
   .onboard-wrap {
     flex: 1;
     background: var(--bg);
     padding: 48px 24px;
   }
   
   .onboard-card {
     background: var(--cream);
     border: 1px solid var(--line);
     border-radius: 24px;
     padding: 48px 40px;
     max-width: 720px;
     margin: 0 auto;
     box-shadow: 0 20px 60px -30px rgba(26, 24, 20, 0.1);
   }
   
   .onboard-progress {
     display: flex;
     gap: 8px;
     margin-bottom: 32px;
   }
   
   .onboard-progress-step {
     flex: 1;
     height: 4px;
     background: var(--line);
     border-radius: 2px;
     transition: background 0.3s;
   }
   
   .onboard-progress-step.done {
     background: var(--accent);
   }
   
   .onboard-progress-step.active {
     background: var(--accent);
   }
   
   .onboard-step-label {
     font-family: 'JetBrains Mono', monospace;
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--accent);
     margin-bottom: 8px;
   }
   
   .onboard-step h2 {
     font-family: 'Fraunces', serif;
     font-weight: 400;
     font-size: 32px;
     line-height: 1.1;
     letter-spacing: -0.02em;
     color: var(--ink);
     margin-bottom: 8px;
   }
   
   .onboard-step h2 em {
     font-style: italic;
     color: var(--accent);
   }
   
   .onboard-step-sub {
     color: var(--ink-soft);
     font-size: 15px;
     margin-bottom: 28px;
   }
   
   .onboard-step {
     display: none;
     animation: stepIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
   }
   
   .onboard-step.active {
     display: block;
   }
   
   @keyframes stepIn {
     from { opacity: 0; transform: translateY(12px); }
     to { opacity: 1; transform: translateY(0); }
   }
   
   .onboard-actions {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 32px;
     padding-top: 24px;
     border-top: 1px solid var(--line);
     gap: 12px;
   }
   
   .onboard-actions .btn-back {
     margin-right: auto;
   }
   
   /* Pill checkbox group */
   .pill-group {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-top: 8px;
   }
   
   .pill-checkbox {
     display: inline-flex;
     cursor: pointer;
   }
   
   .pill-checkbox input { display: none; }
   
   .pill-checkbox span {
     padding: 8px 16px;
     background: var(--bg-2);
     border: 1px solid var(--line);
     border-radius: 100px;
     font-size: 13px;
     color: var(--ink);
     transition: all 0.2s;
   }
   
   .pill-checkbox input:checked + span {
     background: var(--accent);
     color: var(--cream);
     border-color: var(--accent);
   }
   
   .pill-checkbox:hover span {
     border-color: var(--ink);
   }
   
   /* Radio cards */
   .radio-card-group {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
     margin-top: 12px;
   }
   
   @media (max-width: 600px) {
     .radio-card-group { grid-template-columns: 1fr; }
   }
   
   .radio-card {
     display: block;
     cursor: pointer;
   }
   
   .radio-card input { display: none; }
   
   .radio-card-content {
     padding: 16px 18px;
     background: var(--bg-2);
     border: 2px solid var(--line);
     border-radius: 14px;
     transition: all 0.2s;
   }
   
   .radio-card input:checked + .radio-card-content {
     background: var(--cream);
     border-color: var(--accent);
   }
   
   .radio-card-content strong {
     display: block;
     font-family: 'Fraunces', serif;
     font-size: 17px;
     font-weight: 500;
     color: var(--ink);
     margin-bottom: 4px;
   }
   
   .radio-card-content small {
     display: block;
     font-size: 13px;
     color: var(--ink-soft);
     line-height: 1.4;
   }
   
   /* ============================================================
      DASHBOARD
      ============================================================ */
   
   .dash-wrap {
     flex: 1;
     background: var(--bg);
     padding: 0 0 80px 0;
   }
   
   .dash-header {
     background: var(--cream);
     border-bottom: 1px solid var(--line);
     padding: 32px 0 28px;
   }
   
   .dash-header-inner {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 24px;
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     gap: 24px;
     flex-wrap: wrap;
   }
   
   .dash-greeting-label {
     font-family: 'JetBrains Mono', monospace;
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--accent);
     margin-bottom: 8px;
   }
   
   .dash-greeting h1 {
     font-family: 'Fraunces', serif;
     font-weight: 400;
     font-size: clamp(28px, 4vw, 40px);
     letter-spacing: -0.02em;
     color: var(--ink);
   }
   
   .dash-greeting h1 em {
     font-style: italic;
     color: var(--accent);
   }
   
   .dash-user-chip {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 8px 16px 8px 8px;
     background: var(--bg-2);
     border: 1px solid var(--line);
     border-radius: 100px;
   }
   
   .dash-user-avatar {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: var(--forest);
     color: var(--cream);
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: 'Fraunces', serif;
     font-weight: 500;
     font-size: 16px;
   }
   
   .dash-user-name {
     font-size: 14px;
     font-weight: 500;
     color: var(--ink);
   }
   
   .dash-user-role {
     font-family: 'JetBrains Mono', monospace;
     font-size: 10px;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: var(--accent);
   }
   
   .dash-grid {
     max-width: 1200px;
     margin: 32px auto 0;
     padding: 0 24px;
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 20px;
   }
   
   @media (max-width: 900px) {
     .dash-grid { grid-template-columns: 1fr 1fr; }
   }
   
   @media (max-width: 600px) {
     .dash-grid { grid-template-columns: 1fr; }
   }
   
   .dash-card {
     background: var(--cream);
     border: 1px solid var(--line);
     border-radius: 20px;
     padding: 28px 24px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     transition: all 0.3s;
   }
   
   .dash-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 16px 32px -16px rgba(26, 24, 20, 0.1);
     border-color: var(--accent);
   }
   
   .dash-card-tag {
     font-family: 'JetBrains Mono', monospace;
     font-size: 10px;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--accent);
   }
   
   .dash-card h3 {
     font-family: 'Fraunces', serif;
     font-weight: 500;
     font-size: 22px;
     letter-spacing: -0.02em;
     color: var(--ink);
   }
   
   .dash-card p {
     color: var(--ink-soft);
     font-size: 14px;
     line-height: 1.5;
     flex: 1;
   }
   
   .dash-card-action {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     color: var(--accent);
     font-weight: 500;
     font-size: 14px;
     margin-top: 4px;
     cursor: pointer;
     background: none;
     border: none;
     padding: 0;
     font-family: inherit;
   }
   
   .dash-card-action:hover {
     gap: 10px;
   }
   
   .dash-card.featured {
     background: var(--ink);
     color: var(--cream);
   }
   
   .dash-card.featured h3 { color: var(--cream); }
   .dash-card.featured p { color: rgba(250, 246, 238, 0.7); }
   .dash-card.featured .dash-card-action { color: var(--accent); }
   
   /* Empty state */
   .dash-empty {
     text-align: center;
     padding: 64px 24px;
     background: var(--cream);
     border: 2px dashed var(--line);
     border-radius: 20px;
     margin: 32px auto 0;
     max-width: 1152px;
   }
   
   .dash-empty h3 {
     font-family: 'Fraunces', serif;
     font-size: 24px;
     font-weight: 500;
     color: var(--ink);
     margin-bottom: 8px;
   }
   
   .dash-empty h3 em {
     font-style: italic;
     color: var(--accent);
   }
   
   .dash-empty p {
     color: var(--ink-soft);
     font-size: 15px;
     max-width: 480px;
     margin: 0 auto 24px;
   }
   
   /* ============================================================
      ALERTS
      ============================================================ */
   
   .alert {
     padding: 12px 16px;
     border-radius: 12px;
     font-size: 14px;
     margin-bottom: 16px;
     display: flex;
     align-items: flex-start;
     gap: 10px;
   }
   
   .alert-error {
     background: rgba(192, 59, 31, 0.08);
     border: 1px solid rgba(192, 59, 31, 0.3);
     color: var(--error);
   }
   
   .alert-success {
     background: rgba(61, 139, 95, 0.08);
     border: 1px solid rgba(61, 139, 95, 0.3);
     color: var(--success);
   }
   
   .alert-info {
     background: rgba(232, 93, 44, 0.08);
     border: 1px solid rgba(232, 93, 44, 0.3);
     color: var(--accent-dark);
   }
   
   /* ============================================================
      LOADING SPINNER
      ============================================================ */
   
   .spinner {
     width: 16px;
     height: 16px;
     border: 2px solid rgba(250, 246, 238, 0.3);
     border-top-color: var(--cream);
     border-radius: 50%;
     animation: spin 0.6s linear infinite;
     display: inline-block;
   }
   
   @keyframes spin {
     to { transform: rotate(360deg); }
   }
   
   /* ============================================================
      FOOTER
      ============================================================ */
   
   .collab-footer {
     background: var(--ink);
     color: rgba(250, 246, 238, 0.6);
     padding: 32px 24px;
     text-align: center;
     font-size: 13px;
     margin-top: auto;
   }
   
   .collab-footer a { color: var(--accent); }
   
   /* ============================================================
      MOBILE TWEAKS
      ============================================================ */
   
   @media (max-width: 600px) {
     .auth-card { padding: 32px 24px; }
     .onboard-card { padding: 32px 24px; }
     .collab-hero { padding: 48px 0; }
     .collab-hero h1 { font-size: 32px; }
   }
   
   /* ============================================================
      SKELETON LOADING — Shows instantly, feels fast
      ============================================================ */
   @keyframes skeletonShimmer {
     0% { background-position: -200px 0; }
     100% { background-position: calc(200px + 100%) 0; }
   }
   .skel {
     display: inline-block;
     background: linear-gradient(90deg,
       rgba(212, 201, 176, 0.25) 0%,
       rgba(212, 201, 176, 0.55) 50%,
       rgba(212, 201, 176, 0.25) 100%);
     background-size: 200px 100%;
     background-repeat: no-repeat;
     border-radius: 4px;
     animation: skeletonShimmer 1.4s linear infinite;
     color: transparent !important;
     user-select: none;
     pointer-events: none;
   }
   .skel-text { width: 60%; height: 0.9em; vertical-align: middle; }
   .skel-text-sm { width: 40%; height: 0.7em; vertical-align: middle; }
   .skel-text-lg { width: 75%; height: 1.1em; vertical-align: middle; }
   .skel-circle { border-radius: 50%; }
   .skel-block { width: 100%; height: 1em; }