    :root {
      --bg:           #f4f2ee;
      --bg-2:         #eceae4;
      --white:        #ffffff;
      --text:         #12151f;
      --text-2:       #444c5e;
      --muted:        #7a8399;
      --muted-2:      #b0b8c8;
      --accent:       #1847e3;
      --accent-h:     #1238c0;
      --accent-light: #eef1fd;
      --accent-dim:   #c7d0f9;
      --green:        #16a34a;
      --green-bg:     #dcfce7;
      --border:       #e0dcd4;
      --border-2:     #ebebee;
      --shadow:       0 1px 3px rgba(18,21,31,.06), 0 4px 12px rgba(18,21,31,.07);
      --shadow-md:    0 2px 8px rgba(18,21,31,.08), 0 8px 24px rgba(18,21,31,.09);
      --r:            10px;
      --r-sm:         6px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Onest', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: 100px;
      cursor: pointer;
      transition: all .18s;
      border: none;
      line-height: 1;
    }

    .btn-ghost {
      background: transparent;
      color: var(--text-2);
      border: 1.5px solid var(--border);
    }

    .btn-ghost:hover {
      border-color: var(--text);
      color: var(--text);
    }

    .btn-primary {
      background: var(--accent);
      color: white;
    }

    .btn-primary:hover {
      background: var(--accent-h);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(24,71,227,.28);
    }

    .btn-outline-accent {
      background: var(--accent-light);
      color: var(--accent);
      border: 1.5px solid var(--accent-dim);
    }

    .btn-outline-accent:hover {
      background: var(--accent);
      color: white;
      border-color: var(--accent);
    }

    .container {
      font-family: 'Onest', sans-serif;
      -webkit-font-smoothing: antialiased;
      color: var(--text);
      width: 100%;
      max-width: 1120px;
      padding: 0 24px;
    }


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

    .breadcrumb a {
      color: var(--muted);
      transition: color .15s;
    }

    .breadcrumb a:hover { color: var(--accent); }

    .breadcrumb-sep {
      color: var(--muted-2);
      font-size: 11px;
    }

    .breadcrumb-current { color: var(--text-2); font-weight: 500; }

    /* ─────────────────────────────────────────
       Page Layout
    ───────────────────────────────────────── */
    .page-grid {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 28px;
      margin-top: 24px;
      margin-bottom: 24px;
      align-items: start;
    }

    .page-left { min-width: 0; display: flex; flex-direction: column; gap: 20px; }
    .page-right { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; }

    /* ─────────────────────────────────────────
       Cards (shared)
    ───────────────────────────────────────── */
    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      box-shadow: var(--shadow);
    }

    /* ─────────────────────────────────────────
       Project Hero Card
    ───────────────────────────────────────── */
    .project-vcard { padding: 28px; }

    .project-header {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 20px;
    }

    .project-logo {
      width: 64px; height: 64px;
      border-radius: var(--r);
      border: 1px solid var(--border);
      background: linear-gradient(135deg, #1847e3 0%, #5b82f8 100%);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Geologica', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: white;
      letter-spacing: -.04em;
      flex-shrink: 0;
      overflow: hidden;
    }

    .project-logo-image {
      width: 64px; height: 64px;
      display: flex; align-items: center; justify-content: center;
    }

    .project-logo-image img { width: 100%; height: 100%; object-fit: cover; }

    .project-title-group { flex: 1; min-width: 0; }

    .project-name {
      font-family: 'Geologica', sans-serif;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -.03em;
      line-height: 1.15;
      margin-bottom: 6px;
    }

    .project-tagline {
      font-size: 14.5px;
      color: var(--text-2);
      line-height: 1.5;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 100px;
    }

    .badge-green {
      background: var(--green-bg);
      color: var(--green);
    }

    .badge-green::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green);
    }

    .badge-blue {
      background: var(--accent-light);
      color: var(--accent);
    }

    .badge-gray {
      background: var(--bg);
      color: var(--text-2);
      border: 1px solid var(--border);
    }

    .project-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .divider {
      height: 1px;
      background: var(--border);
      margin: 20px 0;
    }

    .project-description {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-2);
    }

    .project-description p + p { margin-top: 12px; }

    .project-stats {
      display: flex;
      gap: 0;
      margin-top: 20px;
    }

    .stat-item {
      flex: 1;
      padding: 14px 16px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .stat-item:first-child { border-radius: var(--r-sm) 0 0 var(--r-sm); }
    .stat-item:last-child  { border-radius: 0 var(--r-sm) var(--r-sm) 0; }
    .stat-item + .stat-item { border-left: none; }

    .stat-label {
      font-size: 11.5px;
      font-weight: 500;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .stat-value {
      font-family: 'Geologica', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -.01em;
    }

    /* ─────────────────────────────────────────
       Sidebar: Founder Card
    ───────────────────────────────────────── */
    .founder-card { padding: 22px; }

    .founder-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .founder-profile {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .founder-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1e2d4a 0%, #2b4099 100%);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Geologica', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: white;
      flex-shrink: 0;
      overflow: hidden;
    }

    .founder-avatar img { width: 100%; height: 100%; object-fit: cover; }

    .founder-name {
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -.01em;
      margin-bottom: 2px;
    }

    .founder-title {
      font-size: 13px;
      color: var(--muted);
    }

    .founder-bio {
      font-size: 13.5px;
      line-height: 1.65;
      color: var(--text-2);
      margin-bottom: 16px;
    }

    .founder-links {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .founder-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-2);
      padding: 8px 10px;
      border-radius: var(--r-sm);
      border: 1px solid var(--border);
      transition: all .15s;
    }

    .founder-link:hover {
      border-color: var(--accent-dim);
      background: var(--accent-light);
      color: var(--accent);
    }

    .founder-link svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ─────────────────────────────────────────
       Section headings
    ───────────────────────────────────────── */
    .section-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Geologica', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -.025em;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section-count {
      font-family: 'Onest', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 2px 8px;
      border-radius: 100px;
    }

    /* ─────────────────────────────────────────
       Jobs
    ───────────────────────────────────────── */
    .jobs-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .job-item {
      padding: 20px 24px;
      border-bottom: 1px solid var(--border-2);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      transition: background .15s;
    }

    .job-item:first-child { border-radius: var(--r) var(--r) 0 0; }
    .job-item:last-child { border-bottom: none; border-radius: 0 0 var(--r) var(--r); }
    .job-item:only-child { border-radius: var(--r); }
    .job-item:hover { background: #fafaf9; }

    .job-left { flex: 1; min-width: 0; }

    .job-dept {
      font-size: 11.5px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .job-title {
      font-family: 'Geologica', sans-serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: -.02em;
      margin-bottom: 5px;
    }

    .job-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 8px;
    }

    .job-meta-item {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 12.5px;
      color: var(--muted);
    }

    .job-meta-item svg { width: 12px; height: 12px; }

    .job-description {
      font-size: 13.5px;
      line-height: 1.6;
      color: var(--text-2);
    }

    .job-right {
      flex-shrink: 0;
      padding-top: 2px;
    }

    /* ─────────────────────────────────────────
       Comments
    ───────────────────────────────────────── */
    .comments-section { }

    .comment-form-card { 
      padding: 20px 22px; 
      margin-bottom: 12pxl 
    }

    .comment-form-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .user-avatar-sm {
      width: 36px; height: 36px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      font-weight: 700;
      font-family: 'Geologica', sans-serif;
      flex-shrink: 0;
    }

    .comment-input-wrap { flex: 1; }

    .comment-textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--r-sm);
      font-size: 14px;
      line-height: 1.6;
      color: var(--text);
      background: var(--bg);
      resize: none;
      min-height: 44px;
      max-height: 180px;
      overflow: hidden;
      transition: border-color .2s, background .2s, min-height .2s;
      outline: none;
    }

    .comment-textarea:focus {
      border-color: var(--accent);
      background: white;
    }

    .comment-textarea::placeholder { color: var(--muted-2); }

    .comment-form-actions {
      display: flex;
      justify-content: flex-end;
      gap: 8px;
      margin-top: 10px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .18s;
    }

    .comment-form-actions.visible {
      opacity: 1;
      pointer-events: all;
    }

    /* Comments list */
    .comments-list { display: flex; flex-direction: column; gap: 0; }

    .comment {
      padding: 18px 22px;
      border-bottom: 1px solid var(--border-2);
      animation: fadeIn .3s ease;
    }

    .comment:last-child { border-bottom: none; }

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

    .comment-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .comment-author {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: -.01em;
    }

    .comment-time {
      font-size: 12.5px;
      color: var(--muted);
      margin-left: auto;
    }

    .comment-body {
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--text-2);
      padding-left: 46px;
      margin-bottom: 10px;
    }

    .comment-actions {
      display: flex;
      align-items: center;
      gap: 4px;
      padding-left: 46px;
    }

    .comment-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--muted);
      padding: 4px 8px;
      border-radius: 5px;
      transition: all .15s;
    }

    .comment-action-btn:hover {
      background: var(--bg);
      color: var(--text);
    }

    .comment-action-btn.liked {
      color: var(--accent);
    }

    .comment-action-btn svg { width: 13px; height: 13px; }

    /* Replies */
    .replies {
      margin-top: 12px;
      padding-left: 46px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .reply {
      position: relative;
      padding: 14px 16px 14px 20px;
      border-left: 2px solid var(--border);
      margin-left: 0;
    }

    .reply + .reply { border-top: 1px solid var(--border-2); }

    .reply .comment-header { margin-bottom: 6px; }
    .reply .comment-body { padding-left: 46px; margin-bottom: 8px; }
    .reply .comment-actions { padding-left: 46px; }

    /* Inline reply form */
    .reply-form {
      display: none;
      margin-left: 46px;
      margin-top: 12px;
      padding: 14px;
      background: var(--bg);
      border-radius: var(--r-sm);
      border: 1px solid var(--border);
    }

    .reply-form.open { display: block; }

    .reply-form .comment-form-actions { opacity: 1; pointer-events: all; }

    /* ─────────────────────────────────────────
       Updates section (right sidebar)
    ───────────────────────────────────────── */
    .updates-card { padding: 18px 20px; }

    .update-item {
      padding: 12px 0;
      border-bottom: 1px solid var(--border-2);
    }

    .update-item:last-child { border-bottom: none; padding-bottom: 0; }
    .update-item:first-child { padding-top: 0; }

    .update-date {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .update-title {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.45;
      margin-bottom: 3px;
    }

    .update-text {
      font-size: 12.5px;
      color: var(--text-2);
      line-height: 1.55;
    }

    /* ─────────────────────────────────────────
       Responsive
    ───────────────────────────────────────── */


    @media (max-width: 860px) {
      .page-grid { grid-template-columns: 1fr; }
      .page-right { position: static; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    @media (max-width: 600px) {
      .header-nav { display: none; }
      .project-stats { flex-wrap: wrap; }
      .stat-item { flex: 1 1 calc(50% - 1px); }
      .stat-item:nth-child(2) { border-radius: 0 var(--r-sm) 0 0; }
      .stat-item:nth-child(3) { border-radius: 0 0 0 var(--r-sm); border-top: none; }
      .stat-item:nth-child(4) { border-radius: 0 0 var(--r-sm) 0; border-top: none; }
      .job-item { flex-direction: column; }
      .job-right { width: 100%; }
      .job-right .btn { width: 100%; justify-content: center; }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
    }
