﻿
  /* â”€â”€ Reset & Base â”€â”€ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { height: 100%; background: #0f0f1a; font-family: 'Nunito', sans-serif; }

  /* â”€â”€ CSS Variables â”€â”€ */
  :root {
    --navy:    #0d1b3e;
    --navy2:   #162447;
    --orange:  #f97316;
    --orange2: #ea6b0a;
    --white:   #ffffff;
    --muted:   #a0aec0;
    --card-bg: #ffffff;
    --radius:  28px;
    --shadow:  0 32px 80px rgba(0,0,0,.45);
  }

  /* â”€â”€ Phone Shell â”€â”€ */
  .phone-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 24px 16px 40px;
    background: linear-gradient(135deg,#0d1b3e 0%,#1a2a5e 100%);
  }

  .phone {
    width: 100%;
    max-width: 420px;
    min-height: 100svh;
    background: var(--navy);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
  }

  /* â”€â”€ Logo Bar â”€â”€ */
  .logo-bar {
    background: var(--navy);
    padding: 18px 22px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .logo-bar img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.2);
  }
  .logo-bar .brand {
    font-size: 15px;
    font-weight: 800;
    color: #5DCAA5;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  /* â”€â”€ Profile Section â”€â”€ */
  .profile-section {
    background: var(--navy2);
    padding: 28px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .avatar-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--orange);
    overflow: hidden;
    box-shadow: 0 0 0 4px rgba(249,115,22,.2);
    flex-shrink: 0;
  }
  .avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .profile-name {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-top: 4px;
  }
  .profile-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .03em;
  }
  .profile-company {
    font-size: 13px;
    color: #5DCAA5;
    font-weight: 700;
  }

  /* â”€â”€ Pronouns chip â”€â”€ */
  .pronoun-chip {
    display: inline-block;
    background: rgba(249,115,22,.15);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(249,115,22,.3);
  }

  /* â”€â”€ Bio â”€â”€ */
  .bio-section {
    padding: 16px 22px 4px;
    background: var(--navy2);
  }
  .bio-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
  }

  /* â”€â”€ Currently Panel â”€â”€ */
  .currently-panel {
    margin: 14px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(93,202,165,.2);
    border-radius: 16px;
    padding: 14px 16px;
  }
  .currently-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #5DCAA5;
    margin-bottom: 10px;
  }
  .currently-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    font-size: 12px;
    color: var(--muted);
  }
  .currently-row:last-child { margin-bottom: 0; }
  .currently-row b { color: var(--white); font-weight: 700; }
  .currently-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(249,115,22,.18);
    display: grid;
    place-items: center;
    font-size: 10px;
    flex-shrink: 0;
  }

  /* â”€â”€ Social Icon Grid â”€â”€ */
  .social-grid-section {
    padding: 10px 16px 6px;
  }
  .social-grid-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    text-align: center;
  }
  .social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 12px 6px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s, background .15s;
    -webkit-tap-highlight-color: transparent;
  }
  .social-btn:active { transform: scale(.95); background: rgba(249,115,22,.12); }
  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    display: grid;
    place-items: center;
    font-size: 15px;
  }
  .social-btn span {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .02em;
  }

  /* Social brand colors */
  .s-ig   { background: radial-gradient(circle at 30% 110%,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888); }
  .s-email{ background: var(--orange); }
  .s-wa   { background: #25d366; }
  .s-fb   { background: #1877f2; }
  .s-li   { background: #0a66c2; }
  .s-yt   { background: #ff0000; }
  .s-tg   { background: #0088cc; }
  .s-x    { background: #000000; }

  /* â”€â”€ Add to Contact CTA â”€â”€ */
  .cta-section {
    padding: 12px 16px 6px;
  }
  .cta-btn {
    display: block;
    width: 100%;
    background: var(--orange);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, transform .15s;
    box-shadow: 0 6px 24px rgba(249,115,22,.35);
  }
  .cta-btn:active { background: var(--orange2); transform: scale(.98); }

  /* â”€â”€ Fixed Bottom Bar â”€â”€ */
  .bottom-bar {
    position: sticky;
    bottom: 0;
    background: rgba(13,27,62,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0 max(10px, env(safe-area-inset-bottom));
    z-index: 100;
  }
  .bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding: 4px 16px;
    text-decoration: none;
  }
  .bar-btn .bar-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: grid;
    place-items: center;
    font-size: 17px;
    transition: background .15s;
  }
  .bar-btn:active .bar-icon { background: rgba(249,115,22,.22); }
  .bar-btn .bar-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .bar-btn.primary .bar-icon {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 4px 14px rgba(249,115,22,.4);
  }
  .bar-btn.primary .bar-label { color: var(--orange); }

  /* â”€â”€ Footer â”€â”€ */
  .card-footer {
    padding: 14px 22px;
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,.2);
    background: var(--navy);
  }
  .card-footer b { color: #5DCAA5; }

  /* â”€â”€ Responsive: very small phones (360px Galaxy S3 era) â”€â”€ */
  @media (max-width: 380px) {
    .phone { border-radius: 20px; }
    .profile-name { font-size: 22px; }
    .social-grid { gap: 8px; }
    .social-icon { width: 30px; height: 30px; font-size: 13px; }
    .social-btn { padding: 10px 4px; border-radius: 10px; }
    .avatar-wrap { width: 90px; height: 90px; }
    .cta-btn { font-size: 13px; padding: 14px; }
  }

  /* â”€â”€ Responsive: tablets / foldables open â”€â”€ */
  @media (min-width: 600px) {
    .phone-wrap { padding: 32px 24px 48px; }
    .phone { max-width: 440px; }
  }

