
    :root {
      --accent: #de4c2c;
      --success: #2bb673;
      --bg: #f6f7fa;
      --text: #111111;
      --muted: #6b6f78;
      --card: rgba(255,255,255,0.98);
      --line: rgba(17, 17, 17, 0.08);
      --shadow: 0 22px 60px rgba(17, 17, 17, 0.22);
      --bg-blur: 18px;
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max: 1240px;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: #111;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .bg-image,
    .bg-overlay {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .bg-image {
      background-image: url("../assets/tlo.webp");
      background-size: cover;
      background-position: center;
      transform: scale(1.12);
      filter: blur(var(--bg-blur)) saturate(0.95);
      opacity: 0.88;
    }

    .bg-overlay {
      background:
        linear-gradient(180deg, rgba(10,10,10,0.34), rgba(10,10,10,0.52)),
        radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 28%);
    }

    .wrap {
      position: relative;
      z-index: 2;
      width: min(var(--max), calc(100% - 24px));
      margin: 0 auto;
      padding: 28px 0 34px;
    }

    .profile-shell {
      width: min(720px, 100%);
      margin: 0 auto;
      background: var(--card);
      border-radius: 34px;
      box-shadow: var(--shadow);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.6);
    }

    .hero {
      display: none;
    }

    .brand {
      display: flex;
      justify-content: center;
      margin-bottom: 14px;
    }

    .brand img {
      width: 150px;
      max-width: 42vw;
      height: auto;
      display: block;
    }

    .headline {
      margin: 0;
      margin-bottom: 16px;
      text-align: center;
      font-size: clamp(1.8rem, 4.5vw, 2.7rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .subline {
      margin: 10px auto 0;
      text-align: center;
      color: var(--muted);
      max-width: 44ch;
      font-size: 0.98rem;
      line-height: 1.55;
    }

    .body {
      padding: 26px 22px 22px;
    }

    .hero-media {
      border-radius: 26px;
      overflow: hidden;
      background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,0.92), transparent 18%),
        radial-gradient(circle at 78% 72%, rgba(222,76,44,0.08), transparent 20%),
        linear-gradient(135deg, #edeff4 0%, #f6f7fa 42%, #e8ebf1 100%);
      min-height: 280px;
      position: relative;
      box-shadow: 0 16px 30px rgba(17,17,17,0.14);
    }

    .avatar {
      position: absolute;
      inset: 22px auto auto 22px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.95);
      color: #0f7dbd;
      font-weight: 800;
      font-size: 0.92rem;
      box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    }

    .avatar svg { width: 16px; height: 16px; flex: none; }

    .profile-photo {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: min(248px, 54vw);
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      border: 5px solid rgba(255,255,255,0.92);
      box-shadow: 0 18px 42px rgba(0,0,0,0.22);
      background:
        none center/cover no-repeat;
      display: grid;
      place-items: center;
    }

    .details {
      margin-top: 16px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      align-items: start;
    }

    .info-card, .cta-card, .other-card {
      border: 1px solid var(--line);
      border-radius: 24px;
      background: linear-gradient(180deg, #fff, #fbfbfc);
    }

    .info-card {
      padding: 16px;
    }

    .name-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    h1 {
      margin: 0;
      font-size: clamp(2rem, 5vw, 2.8rem);
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      font-size: 0.88rem;
      font-weight: 800;
      border: 1px solid transparent;
    }

    .pill-accent { background: rgba(222,76,44,0.12); color: var(--accent); }
    .pill-dark { background: #111; color: #fff; }
    .pill-light { background: var(--bg); color: var(--text); border-color: rgba(17,17,17,0.06); }
    .pill-blue { background: rgba(15,125,189,0.12); color: #0f7dbd; }
    .pill-green { background: rgba(43,182,115,0.12); color: var(--success); }
    .pill-red { background: rgba(222,76,44,0.12); color: var(--accent); }

    .bio {
      margin: 0;
      color: #31343a;
      font-size: 0.96rem;
      line-height: 1.6;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 14px;
    }

    .stat {
      background: var(--bg);
      border-radius: 18px;
      padding: 12px 10px;
      text-align: center;
      border: 1px solid rgba(17,17,17,0.05);
    }

    .stat strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 3px;
    }

    .stat span {
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.25;
    }

    .cta-card {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .btn {
      appearance: none;
      border: 0;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 54px;
      padding: 12px 16px;
      border-radius: 16px;
      font-weight: 800;
      font-size: 0.98rem;
      letter-spacing: -0.01em;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #c53e21);
      color: #fff;
      box-shadow: 0 12px 24px rgba(222, 76, 44, 0.28);
    }

    .btn-secondary {
      background: #fff;
      color: var(--text);
      border: 1px solid rgba(17,17,17,0.1);
    }

    .section-title {
      margin: 18px 0 10px;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(17,17,17,0.52);
      font-weight: 800;
    }

    .other-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .other-card {
      display: block;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .other-card:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(17,17,17,0.1); }

    .other-photo {
      aspect-ratio: 1.05 / 1;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28));
      background-size: cover;
      background-position: center;
    }

    .other-body {
      padding: 12px;
    }

    .other-name {
      font-weight: 800;
      margin: 0 0 4px;
      font-size: 0.98rem;
    }

    .other-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.86rem;
      color: var(--muted);
    }

    .other-meta.bottom {
      margin-top: 8px;
      justify-content: space-between;
      align-items: flex-end;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 800;
      color: var(--success);
    }

    .status::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: currentColor;
      box-shadow: 0 0 0 4px rgba(43,182,115,0.16);
      flex: none;
    }

    .footer-note {
      margin-top: 14px;
      color: rgba(17,17,17,0.5);
      font-size: 0.84rem;
      line-height: 1.5;
      text-align: center;
      padding: 0 4px 2px;
    }

    @media (max-width: 780px) {
      .wrap { width: min(100% - 14px, var(--max)); padding-top: 12px; }
      .profile-shell {
        border-radius: 26px;
        background: transparent;
        border: 0;
        box-shadow: none;
      }
      .hero {
        display: flex;
        min-height: 38vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 14px 14px 8px;
        border-bottom: 0;
        position: relative;
        overflow: hidden;
      }
      .hero .brand,
      .hero .headline {
        position: relative;
        z-index: 2;
      }
      .hero .brand {
        margin: 0 auto 8px;
      }
      .hero .headline {
        text-align: center;
        max-width: none;
        white-space: nowrap;
        margin: 0 auto;
        font-size: clamp(1.08rem, 4.3vw, 1.34rem);
      }
      .body {
        padding: 16px 16px 16px;
        background: var(--card);
        border-radius: 22px 22px 0 0;
        margin-top: 0;
        position: relative;
        z-index: 3;
        box-shadow: 0 -12px 30px rgba(17,17,17,0.08);
      }
      .other-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-media {
        min-height: 164px;
        border-radius: 22px;
        margin-top: 10px;
        margin-bottom: 14px;
      }
      .avatar {
        inset: 14px auto auto 14px;
        padding: 8px 12px;
        font-size: 0.84rem;
      }
      .name-row h1 {
        font-size: clamp(1.55rem, 7vw, 2.05rem);
      }
      .hero .headline {
        font-size: clamp(1.35rem, 5.6vw, 1.7rem);
      }
      .pill-row {
        gap: 6px;
      }
      .pill {
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.8rem;
      }
      .bio {
        font-size: 0.92rem;
      }
      .section-title {
        margin-top: 14px;
      }
      .cta-card {
        padding: 14px;
      }
      .btn {
        min-height: 50px;
        border-radius: 14px;
        font-size: 0.95rem;
      }
      .other-name {
        font-size: 0.94rem;
      }
      .other-meta {
        font-size: 0.82rem;
      }
      .other-photo {
        aspect-ratio: 1 / 1.1;
      }
      .other-body {
        padding: 10px;
      }
      .hero .subline {
        display: none;
      }
      .brand img {
        width: 118px;
      }
      .profile-photo {
        width: min(132px, 36vw);
      }
      .avatar {
        inset: 12px auto auto 12px;
        padding: 7px 10px;
        font-size: 0.8rem;
      }
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.02) 52%, rgba(255,255,255,0.22) 100%);
        z-index: 1;
        pointer-events: none;
      }
    }
  