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

    html, body {
      height: 100%;
      overflow: hidden;
      font-family: 'DM Sans', sans-serif;
      background: #FAF7F2;
    }

    body {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    /* ── background blobs ── */
    .bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.55;
      animation: drift linear infinite;
    }

    .blob-1 {
      width: 520px;
      height: 520px;
      background: #D4A5A5; /* dusty rose */
      top: -120px;
      left: -100px;
      animation-duration: 18s;
    }

    .blob-2 {
      width: 420px;
      height: 420px;
      background: #A8B5A2; /* sage */
      bottom: -80px;
      right: -80px;
      animation-duration: 22s;
      animation-delay: -6s;
    }

    .blob-3 {
      width: 300px;
      height: 300px;
      background: #C9B8D0; /* soft lavender */
      top: 40%;
      left: 55%;
      animation-duration: 26s;
      animation-delay: -12s;
    }

    @keyframes drift {
      0%   { transform: translate(0, 0) scale(1); }
      25%  { transform: translate(30px, -20px) scale(1.04); }
      50%  { transform: translate(-20px, 30px) scale(0.97); }
      75%  { transform: translate(20px, 20px) scale(1.02); }
      100% { transform: translate(0, 0) scale(1); }
    }

    /* ── frosted card ── */
    .card {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      padding: 2.5rem 2rem;
      max-width: 340px;
      width: 100%;
      background: rgba(250, 247, 242, 0.55);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.6);
    }

    /* ── avatar ── */
    .avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Serif Display', serif;
      font-size: 2rem;
      color: #FAF7F2;
      letter-spacing: -1px;
      flex-shrink: 0;
    }

     .avatar img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── text ── */
    .name {
      font-family: 'DM Serif Display', serif;
      font-size: 1.75rem;
      color: #2C2825;
      letter-spacing: -0.5px;
      text-align: center;
      line-height: 1.1;
    }

    .tagline {
      font-size: 0.85rem;
      color: #8B7B74;
      font-weight: 300;
      text-align: center;
      letter-spacing: 0.04em;
      margin-top: 0.5rem;
    }

    /* ── divider ── */
    .divider {
      width: 40px;
      height: 1px;
      background: rgba(139, 123, 116, 0.2);
    }

    /* ── link buttons ── */
    .links {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      width: 100%;
    }

    .link-btn {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1.1rem;
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(212, 165, 165, 0.3);
      border-radius: 14px;
      text-decoration: none;
      color: #2C2825;
      font-size: 0.875rem;
      font-weight: 400;
      transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    }

    .link-btn:hover {
      background: rgba(255, 255, 255, 0.75);
      border-color: rgba(212, 165, 165, 0.6);
      transform: translateY(-1px);
    }

    .link-btn:active {
      transform: translateY(0) scale(0.99);
    }

    .icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      opacity: 0.8;
    }

    /* ── reduced motion ── */
    @media (prefers-reduced-motion: reduce) {
      .blob { animation: none; }
      .link-btn { transition: none; }
    }