/* Inteople — Virtual business card (clean light theme) */
:root {
  --brand: #2b3a55; --brand-2: #3f5575; --brand-light: #6b80a3; --accent: #ff6a50; --accent-soft: #ffe6e0;
  --bg: #f7f9fc; --bg-2: #eef2f8; --surface: #ffffff; --line: #e2e8f2; --line-strong: #d3dcea;
  --ink: #1f2a3d; --muted: #5d6b82;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0; min-height: 100vh; font-family: var(--font); color: var(--ink);
  background: var(--bg);
  display: grid; place-items: center; padding: 24px;
  -webkit-font-smoothing: antialiased;
}
.card {
  width: 100%; max-width: 420px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(36,52,84,.4);
}
.cover { height: 110px; background: var(--brand); position: relative; }
.cover .logo { position: absolute; top: 14px; left: 18px; display: flex; align-items: center; gap: .5rem; font-weight: 800; color: #fff; font-size: .95rem; }
.cover .logo img { width: 26px; height: 26px; }
.avatar {
  width: 116px; height: 116px; border-radius: 50%; border: 4px solid var(--surface);
  margin: -58px auto 0; overflow: hidden; background: var(--bg-2); position: relative;
  display: grid; place-items: center; font-size: 2.4rem; font-weight: 800; color: var(--brand-2);
  box-shadow: 0 10px 30px -16px rgba(36,52,84,.4);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.body { padding: 14px 26px 26px; text-align: center; }
.body h1 { margin: .6rem 0 .2rem; font-size: 1.5rem; letter-spacing: -.02em; color: var(--ink); }
.role { color: var(--accent); font-weight: 600; font-size: .95rem; }
.company { color: var(--muted); font-size: .9rem; margin-top: .15rem; }
.bio { color: var(--muted); font-size: .92rem; margin: 1rem 0 0; line-height: 1.6; }

.actions { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin: 1.4rem 0; }
.actions .full { grid-column: 1 / -1; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1rem; border-radius: 12px; font-weight: 600; font-size: .92rem;
  border: 1px solid var(--line-strong); color: var(--brand); background: var(--surface);
  cursor: pointer; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); border-color: var(--brand-light); box-shadow: 0 10px 24px -14px rgba(36,52,84,.4); }
.btn.primary { background: var(--accent); border-color: transparent; color: #fff; }
.btn.primary:hover { background: #f4553b; box-shadow: 0 14px 30px -12px rgba(255,106,80,.5); }

.contact-list { text-align: left; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.contact-list a, .contact-list span { display: flex; align-items: center; gap: .8rem; padding: .55rem 0; color: var(--muted); font-size: .93rem; text-decoration: none; }
.contact-list a:hover { color: var(--ink); }
.contact-list .ico { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); display: grid; place-items: center; flex: none; font-size: .82rem; color: var(--accent); font-weight: 700; }
.contact-list .ico svg { width: 18px; height: 18px; }
.btn svg { width: 18px; height: 18px; }

.qr-wrap { margin-top: 1.4rem; text-align: center; }
.qr-wrap .qr { width: 150px; height: 150px; margin: 0 auto; background: #fff; padding: 10px; border-radius: 14px; border: 1px solid var(--line); }
.qr-wrap .qr img, .qr-wrap .qr canvas, .qr-wrap .qr table { width: 100% !important; height: 100% !important; }
.qr-wrap p { color: var(--muted); font-size: .8rem; margin: .6rem 0 0; }

.foot { text-align: center; margin-top: 1.2rem; }
.foot a { color: var(--muted); font-size: .82rem; text-decoration: none; }
.foot a:hover { color: var(--accent); }

.toast { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--accent); color: #fff; font-weight: 600; padding: .7rem 1.2rem; border-radius: 999px; opacity: 0; transition: .3s; font-size: .9rem; box-shadow: 0 14px 30px -12px rgba(255,106,80,.6); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
