/* ME – ADDITIONAL CONTENT */

.me-extra {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
}

.me-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* Highlights */
.me-highlight {
  color: #4cc9f0; /* neon blue */
  font-weight: 500;
}

.me-highlight-founder {
  color: #7209b7; /* purple brand */
  font-weight: 600;
}

/* Mobile */
@media (max-width: 640px) {
  .me-description {
    font-size: 14px;
  }
}
/* Row layout */
      .me-content-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
        flex-wrap: wrap;
      }

      /* Text */
      .me-text {
        max-width: 520px;
        text-align: left;
      }

      .me-description {
        line-height: 1.8;
        color: #cfcfcf;
        margin-bottom: 16px;
      }

      .me-highlight {
        color: #4cc9f0;
        font-weight: 500;
      }

      .me-highlight-founder {
        color: #a855f7;
        font-weight: 500;
      }

      /* Glass card */
      .me-avatar-card {
        position: relative;
        width: 360px;
        padding: 25px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(124, 58, 237, 0.3);
        text-align: center;
        overflow: hidden;
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
      }

      /* Glow */
      .avatar-glow {
        position: absolute;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, #7c3aed, transparent);
        filter: blur(60px);
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
      }

      /* Avatar */
      .floating-avatar {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(124, 58, 237, 0.5);
        margin-bottom: 12px;
        animation: floatAvatar 4s ease-in-out infinite;
      }

      @keyframes floatAvatar {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
        100% {
          transform: translateY(0px);
        }
      }

      .avatar-name {
        font-weight: 600;
      }

      .avatar-role {
        font-size: 13px;
        color: #aaa;
      }

      /* Mobile */
      @media (max-width: 900px) {
        .me-content-row {
          flex-direction: column-reverse;
          gap: 30px;
        }

        .me-text {
          text-align: center;
        }