:root {
  --panel: rgba(12, 9, 28, 0.82);
  --panel-border: rgba(255, 255, 255, 0.12);
  --soft: rgba(255, 255, 255, 0.08);
  --muted: rgba(255, 255, 255, 0.74);
  --strong: #fffaf2;
  --radius-lg: 22px;
  --radius-sm: 12px;
  --pill-color: var(--muted);
  --layout-body-padding: 26px 16px 44px;
  --layout-body-padding-mobile: 18px 12px 32px;
  --layout-max-width: 1120px;
}

    .top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    h1 {
      margin: 10px 0 6px;
      font-size: clamp(2.6rem, 5vw, 3.4rem);
      letter-spacing: 0.08em;
      line-height: 1.05;
    }

    .lede {
      margin: 0 0 22px;
      max-width: 780px;
      line-height: 1.55;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
    }

    .card {
      background: var(--panel);
      border: 1px solid var(--panel-border);
      border-radius: var(--radius-lg);
      padding: 16px;
      box-shadow: 0 18px 40px rgba(5, 6, 23, 0.6);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 45%);
      pointer-events: none;
    }

    .portrait {
      width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: var(--radius-sm);
      object-fit: cover;
      border: 1px solid var(--soft);
      background: #1b1635;
      margin-bottom: 12px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
    }

    .name-row {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      margin-bottom: 8px;
    }

    .name {
      margin: 0;
      font-size: 1.2rem;
      letter-spacing: 0.04em;
    }

    .tag {
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      color: var(--strong);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid rgba(255, 255, 255, 0.18);
      white-space: nowrap;
      margin: 2px 0;
    }

    .bio {
      margin: 0 0 10px;
      color: var(--muted);
      line-height: 1.55;
      font-size: 0.98rem;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
    }

    .chip {
      padding: 6px 10px;
      border-radius: 10px;
      background: var(--soft);
      color: #fff;
      font-size: 0.82rem;
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .socials {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
      /* push to bottom */
      padding-top: 12px;
    }

    .socials .icon-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: #fff;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }

    .socials .icon-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
      border-color: rgba(255, 255, 255, 0.32);
    }

    .socials .icon-btn svg {
      width: 22px;
      height: 22px;
      fill: #fff;
    }

    /* Nudge Venmo glyph slightly left for visual centering */
    .socials .icon-btn.venmo svg {
      transform: translateX(-2px);
    }

    .socials .icon-btn.streaming svg {
      fill: none;
      stroke: #fff;
      stroke-width: 1.8px;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .socials .icon-btn.streaming svg circle {
      fill: #fff;
      stroke: none;
    }

    .socials .icon-btn img {
      width: 22px;
      height: 22px;
      display: block;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    /* Closing contribution band */
    .closing-band {
      margin-top: 26px;
      padding: 18px 18px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(17, 13, 41, 0.9), rgba(17, 10, 35, 0.82));
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
    }

    .closing-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .closing-inner p {
      margin: 0;
      font-size: 1.02rem;
      color: var(--muted);
    }

    @media (max-width: 760px) {
      .top {
        flex-direction: column;
        align-items: flex-start;
      }
    }
