
:root {
  --bg: #0b0b0f;
  --surface: #141419;
  --surface-soft: #1b1c22;
  --card: #f7f4ef;
  --ink: #17171a;
  --muted: #70717b;
  --gold: #d9ac68;
  --gold-deep: #9a6a2f;
  --line: rgba(25,25,31,0.10);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0,0,0,0.33);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(217,172,104,.12), transparent 24%),
    radial-gradient(circle at 88% 80%, rgba(154,106,47,.10), transparent 22%),
    linear-gradient(180deg, #0c0c10, #16161b);
  color: var(--ink);
}
a { text-decoration: none; color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
.page-shell { width: 100%; padding: 24px 14px 56px; }
.digital-card {
  width: min(100%, 560px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.hero {
  position: relative;
  min-height: 500px;
  background: #101014;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 38%, rgba(0,0,0,.86) 100%);
}
.hero-topbar {
  position: absolute; z-index: 2; top: 18px; left: 18px; right: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand-chip, .round-button {
  background: rgba(17,17,21,.54); backdrop-filter: blur(14px); color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}
.brand-chip {
  display: inline-flex; align-items: center; gap: 10px; min-height: 46px;
  border-radius: 999px; padding: 8px 14px 8px 8px; font-weight: 700; font-size: .88rem;
}
.brand-mark {
  display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%;
  color: #111115; background: linear-gradient(135deg, #f2d59b, #bb8643); font-size: .76rem; font-weight: 800;
}
.round-button {
  width: 46px; height: 46px; border-radius: 50%; border-width: 1px; border-style: solid;
  display: grid; place-items: center;
}
.hero-copy {
  position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 28px; color: #fff;
}
.hero-kicker {
  display: inline-flex; margin: 0 0 12px; padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.hero h1 {
  margin: 0; font-size: clamp(2.9rem, 12vw, 4.8rem); font-weight: 800; line-height: .9; letter-spacing: -.05em;
}
.hero-description {
  margin: 16px 0 0; max-width: 420px; color: rgba(255,255,255,.84); font-size: .98rem; line-height: 1.6;
}
.card-content { padding: 0 24px 28px; }
.profile-summary { display: flex; align-items: flex-end; gap: 14px; min-height: 74px; }
.avatar-wrap { position: relative; margin-top: -42px; }
.avatar {
  display: block; width: 100px; height: 100px; object-fit: cover; border-radius: 28px;
  border: 5px solid var(--card); background: #111115; box-shadow: 0 14px 28px rgba(0,0,0,.22);
}
.availability-dot {
  position: absolute; right: 4px; bottom: 4px; width: 18px; height: 18px; border-radius: 50%;
  border: 4px solid var(--card); background: #36c26f;
}
.summary-copy { padding-bottom: 10px; }
.summary-label { display: block; color: var(--muted); font-size: .82rem; margin-bottom: 4px; }
.summary-copy strong { font-size: 1.04rem; }
.primary-actions {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 24px 0 26px;
}
.button {
  min-height: 54px; padding: 0 18px; border-radius: 18px; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; border: 0; font-weight: 700;
}
.button-primary { color: #fff; background: linear-gradient(135deg, #111115, #28282f); }
.button-secondary { color: var(--ink); background: #ece5da; }
.contact-section, .business-card, .share-section { margin-top: 22px; }
.section-heading { margin-bottom: 14px; }
.section-heading span, .section-label {
  color: var(--muted); display: inline-block; font-size: .79rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.section-heading h2, .share-copy h2 { margin: 6px 0 0; font-size: 1.28rem; line-height: 1.15; }
.contact-list { display: grid; gap: 12px; }
.contact-row {
  display: flex; align-items: center; gap: 14px; min-height: 78px; padding: 14px 16px; border-radius: 22px;
  border: 1px solid var(--line); background: #fff; transition: transform .18s ease;
}
.contact-row:hover { transform: translateY(-1px); }
.contact-icon, .social-icon {
  width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 15px;
  background: rgba(217,172,104,.15); color: var(--gold-deep);
}
.contact-copy { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.contact-copy small { color: var(--muted); font-size: .82rem; }
.contact-copy strong { font-size: .97rem; word-break: break-word; }
.row-arrow { color: #8f8f98; }
.business-card {
  border-radius: 28px; padding: 24px; background: linear-gradient(135deg, #111115, #24242a); color: #fff;
}
.business-copy span { color: rgba(255,255,255,.72); font-size: .86rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.business-copy h2 { margin: 8px 0 10px; font-size: 1.45rem; }
.business-copy p { margin: 0; color: rgba(255,255,255,.84); line-height: 1.65; }
.business-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.mini-button {
  display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 14px; border: 0; border-radius: 999px; font-size: .92rem; font-weight: 700;
}
.mini-button.light { color: #111115; background: linear-gradient(135deg, #f2d59b, #c69452); }
.mini-button.ghost { color: #fff; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14); }
.share-section {
  display: grid; grid-template-columns: minmax(0,1fr) 126px; align-items: center; gap: 18px;
  padding: 20px; border-radius: 28px; border: 1px solid var(--line); background: #fff;
}
.share-copy p { margin: 10px 0 0; color: var(--muted); line-height: 1.6; }
.copy-control {
  display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 8px; border-radius: 16px; border: 1px solid var(--line); background: #fcfbf8;
}
.copy-control input { width: 100%; border: 0; outline: none; background: transparent; color: var(--ink); font-size: .92rem; }
.copy-control button {
  width: 42px; height: 42px; border: 0; border-radius: 12px; display: grid; place-items: center; color: #fff; background: #111115;
}
.qr-frame {
  width: 126px; height: 126px; border-radius: 24px; display: grid; place-items: center; background: #fff6ea; box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.qr-frame img { width: 108px; height: 108px; display: block; }
.footer {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px; margin-top: 24px; text-align: center; color: var(--muted); font-size: .88rem;
}
.footer a { color: var(--gold-deep); font-weight: 800; }
.toast {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(12px);
  padding: 12px 16px; border-radius: 999px; background: rgba(17,17,21,.94); color: #fff; font-size: .92rem; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease; z-index: 20;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.icon-svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.round-button .icon-svg { width: 19px; height: 19px; }
@media (max-width: 560px) {
  .hero { min-height: 460px; }
  .card-content { padding: 0 18px 24px; }
  .primary-actions { grid-template-columns: 1fr; }
  .share-section { grid-template-columns: 1fr; }
}
