    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0d1b2a;
      --navy-mid: #1a2e45;
      --gold: #b8924a;
      --gold-light: #d4a96a;
      --gold-pale: #f0e0c0;
      --cream: #f5f0e8;
      --white: #ffffff;
      --text-muted: #8a9ab0;
    }

    html, body {
      min-height: 100vh;
      background:ivory;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Sans', sans-serif;
      padding: 24px;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(184,146,74,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 80%, rgba(13,27,42,0.6) 0%, transparent 60%);
      pointer-events: none;
    }

    .card-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      position: relative;
      z-index: 1;
    }

    /* Standard business card: 3.5in × 2in → at 96dpi = 336×192px, scale up 2× for screen */
    .card {
      width: 672px;
      height: 384px;
      background: var(--navy);
      border-radius: 18px;
      position: relative;
      overflow: hidden;
      box-shadow:
        0 40px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(184,146,74,0.2),
        inset 0 1px 0 rgba(255,255,255,0.05);
      /* display: flex; */
    }

    /* Decorative geometric accents */
    .card::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,146,74,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .card::after {
      content: '';
      position: absolute;
      bottom: -40px;
      left: 100px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,146,74,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Gold left stripe */
    .stripe {
      width: 5px;
      background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, transparent 100%);
      flex-shrink: 0;
      margin: 32px 0;
      border-radius: 0 4px 4px 0;
    }

    /* Main content area */
    .card-body {
      /* flex: 1; */
      display: flex;
      flex-direction: column;
      /* justify-content: space-between; */
      /* padding: 42px 40px 36px 36px; */
      padding:0px 35px 0px 35px;
      /* gap: 32px; */
      position: relative;
      z-index: 1;
    }

    .card-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: space-between;
    }

    /* Identity */
    .identity { display: flex; flex-direction: column; gap: 6px; }

    .company {
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -0.01em;
    }

    .title {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* Divider */
    .divider {
      width: 48px;
      height: 1px;
      background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
      margin: 4px 0;
    }

    /* Contact info */
    .contacts { display: flex; flex-direction: column; gap: 9px; }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit;
    }

    .contact-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      opacity: 0.7;
    }

    .contact-icon svg { width: 100%; height: 100%; }

    .contact-text {
      font-size: 11.5px;
      font-weight: 300;
      color: #c5d0dc;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }

    .contact-item:hover .contact-text { color: var(--gold-light); }
    .contact-item:hover .contact-icon { opacity: 1; }

    /* QR Code */
    .qr-container {
      background: var(--white);
      border-radius: 8px;
      padding: 8px;
      width: 120px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    }

    #qrcode canvas, #qrcode img { width: 106px !important; height: 106px !important; }

    .qr-label {
      font-size: 8.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-align: right;
      margin-top: 6px;
    }

    /* Corner dot decoration */
    .corner-dots {
      position: absolute;
      bottom: 28px;
      right: 36px;
      display: grid;
      grid-template-columns: repeat(3, 4px);
      gap: 4px;
      opacity: 0.18;
    }
    .corner-dots span {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gold);
    }

    /* Domain label below card */
    .domain-tag {
      font-size: 11px;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.12em;
      font-family: 'DM Sans', sans-serif;
    }

    /* Responsive */
    @media (max-width: 720px) {
      .card {
        width: 340px;
        height: auto;
        min-height: 480px;
        flex-direction: column;
      }
      .stripe {
        width: auto;
        height: 4px;
        margin: 0 28px;
        border-radius: 4px 4px 0 0;
      }
      .card-body {
        flex-direction: column;
        padding: 28px 28px 32px;
        gap: 28px;
      }
      .card-right {
        align-items: flex-start;
        flex-direction: row;
        align-items: center;
        gap: 20px;
      }
      .name { font-size: 28px; }
      .corner-dots { display: none; }
    }