/* ========== Yakamoz Makina — Corporate Identity System ========== */
:root {
  /* Brand */
  --navy: #0c3a85;
  --navy-700: #0a2f6b;
  --navy-800: #07234f;
  --navy-900: #051838;
  --navy-ink: #030d22;
  --navy-50: #eef2fa;
  --navy-100: #dde6f4;
  --navy-200: #b8c7e6;

  /* Neutrals */
  --ink: #0b1220;
  --ink-2: #2a3346;
  --muted: #5b6577;
  --muted-2: #8892a3;
  --line: #e3e6ee;
  --line-strong: #c9cfdc;
  --paper: #f5f6fa;
  --paper-2: #ffffff;

  /* Brand accents (used sparingly) */
  --orange: #ec7e02;
  --orange-700: #c66800;
  --red: #e41e2d;
  --red-700: #b81725;
  --whats: #128c7e;
  --whats-50: #e7f5f3;

  --radius-card: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(7, 35, 79, 0.04), 0 8px 28px -16px rgba(7, 35, 79, 0.18);
  --shadow-pop: 0 1px 2px rgba(7, 35, 79, 0.06), 0 24px 60px -28px rgba(7, 35, 79, 0.4);

  --type-display: "Inter Tight", "Archivo", system-ui, sans-serif;
  --type-body: "Inter", system-ui, sans-serif;
  --type-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--type-body);
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(1200px 600px at 50% -200px, rgba(12, 58, 133, 0.06), transparent 60%);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }

/* ========== Shell ========== */
.shell {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 22px 20px 64px;
  position: relative;
}

/* ========== Top bar ========== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark .lockup {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-mark .crest {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--navy);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.04em;
  position: relative;
}
.brand-mark .crest::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 5px;
  pointer-events: none;
}
.brand-mark .tag {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.lang-switch {
  display: inline-flex;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 3px;
  border: 1px solid var(--line);
}
.lang-switch button {
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-weight: 600;
  transition: all .2s ease;
}
.lang-switch button.active {
  background: var(--navy);
  color: #fff;
}

/* ========== Brand stripe (corporate tricolor) ========== */
.brand-stripe {
  display: flex;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}
.brand-stripe .seg { flex: 1; }
.brand-stripe .seg.navy { background: var(--navy); flex: 6; }
.brand-stripe .seg.orange { background: var(--orange); flex: 2; }
.brand-stripe .seg.red { background: var(--red); flex: 1; }

/* ========== Hero ========== */
.hero {
  position: relative;
  border-radius: 20px;
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  color: #fff;
  padding: 28px 26px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(140% 100% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(140% 100% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-top-rail {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  height: 3px;
  z-index: 1;
}
.hero-top-rail .seg.navy { flex: 6; background: var(--navy); }
.hero-top-rail .seg.orange { flex: 2; background: var(--orange); }
.hero-top-rail .seg.red { flex: 1; background: var(--red); }
.hero::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}

.hero-row-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero-pill .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(236, 126, 2, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 126, 2, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(236, 126, 2, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 126, 2, 0); }
}
.hero-code {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.hero-wordmark {
  position: relative;
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0;
}
.hero-wordmark .ko {
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.6);
  display: block;
  font-size: 20px;
  margin-top: 4px;
}
.hero-tagline {
  position: relative;
  font-family: var(--type-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 16px 0 0;
  max-width: 28ch;
}

.hero-divider {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 22px 0 18px;
}

.hero-credentials {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.fpt-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fpt-mark {
  background: var(--red);
  color: #fff;
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 6px 9px;
  border-radius: 4px;
  line-height: 1;
  box-shadow: 0 2px 8px -2px rgba(228, 30, 45, 0.5);
}
.fpt-text {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.fpt-text small {
  display: block;
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
}
.hero-credentials .v-rule {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.14);
  justify-self: center;
}
.hero-credentials .loc {
  text-align: right;
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-credentials .loc strong {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

/* ========== Primary CTA ========== */
.cta-primary {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.cta-primary::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy) 60%, var(--orange) 60%, var(--orange) 85%, var(--red) 85%, var(--red) 100%);
}
.cta-primary:hover { transform: translateY(-1px); border-color: var(--line-strong); box-shadow: var(--shadow-pop); }
.cta-primary:active { transform: translateY(0); }
.cta-primary .l {
  display: flex; flex-direction: column; gap: 2px; text-align: left; padding-left: 6px;
}
.cta-primary .l small {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cta-primary .l b {
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.cta-primary .arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.cta-primary:hover .arrow { transform: translateX(3px); }

/* ========== Section title ========== */
.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 28px 4px 12px;
}
.section-title h2 {
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.section-title h2::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 55%, var(--orange) 55%, var(--orange) 85%, var(--red) 85%, var(--red) 100%);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 3px;
  border-radius: 2px;
}
.section-title .label {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== Quick action grid ========== */
.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quick {
  position: relative;
  padding: 16px;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 124px;
  justify-content: space-between;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.quick:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); border-color: var(--line-strong);}
.quick .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--navy-50);
  color: var(--navy);
}
.quick .ico svg { width: 18px; height: 18px; }
.quick .ttl {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.quick .sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.quick.address {
  grid-column: 1 / -1;
  min-height: auto;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.quick.address::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(255,255,255,0.1), transparent 60%);
  pointer-events: none;
}
.quick.address .ico { background: rgba(255,255,255,0.12); color: #fff; flex-shrink: 0; }
.quick.address .body { flex: 1; position: relative;}
.quick.address .ttl { margin-bottom: 2px; color: #fff; }
.quick.address .sub { color: rgba(255,255,255,0.6); }
.quick.address .chev { color: rgba(255,255,255,0.7); position: relative;}

/* ========== Team cards ========== */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.emp-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.emp-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); border-color: var(--navy-200); }
.emp-card .avatar {
  width: 52px; height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  position: relative;
  letter-spacing: -0.02em;
  background: var(--navy);
}
.emp-card .avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), transparent 50%);
  pointer-events: none;
}
.emp-card .body { flex: 1; min-width: 0; }
.emp-card .name {
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 3px;
  color: var(--ink);
}
.emp-card .role {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}
.emp-card .go {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy-50);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
  color: var(--navy);
}
.emp-card:hover .go { background: var(--navy); color: #fff; }

/* Each avatar uses navy variations with subtle accent corner */
.av-1 { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-800) 100%); }
.av-2 { background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-900) 100%); }
.av-3 { background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-ink) 100%); }
.emp-card .avatar { overflow: hidden; }
.emp-card .avatar::before {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 14px; height: 14px;
  background: var(--orange);
  z-index: 1;
}
.emp-card:nth-child(3n) .avatar::before { background: var(--red); }

/* ========== Socials ========== */
.socials {
  display: flex;
  gap: 8px;
  margin-top: 0;
}
.soc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 8px;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  transition: all .2s ease;
}
.soc:hover { border-color: var(--navy-200); color: var(--navy); transform: translateY(-1px); }
.soc svg { width: 16px; height: 16px; color: var(--navy); }

/* ========== Footer ========== */
.foot {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.foot .reg {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot .full {
  font-family: var(--type-display);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 38ch;
}
.foot .copy {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-top: 6px;
}

/* ========== Animations ========== */
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise .55s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.rise.d1 { animation-delay: .04s; }
.rise.d2 { animation-delay: .1s; }
.rise.d3 { animation-delay: .16s; }
.rise.d4 { animation-delay: .22s; }
.rise.d5 { animation-delay: .28s; }
.rise.d6 { animation-delay: .34s; }

/* ========== Detail / vCard page ========== */
.detail-shell {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 18px 20px 64px;
}
.detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--type-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: #fff;
  transition: all .2s ease;
}
.back-btn:hover { color: var(--navy); border-color: var(--navy-200); }

.vcard {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  color: #fff;
  padding: 28px 24px 22px;
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}
.vcard .top-rail {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  height: 3px;
  z-index: 3;
}
.vcard .top-rail .seg.navy { flex: 6; background: var(--navy); }
.vcard .top-rail .seg.orange { flex: 2; background: var(--orange); }
.vcard .top-rail .seg.red { flex: 1; background: var(--red); }
.vcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(140% 100% at 50% 0%, #000 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(140% 100% at 50% 0%, #000 35%, transparent 85%);
  pointer-events: none;
}
.vcard::after {
  content: "";
  position: absolute;
  right: -50px; bottom: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
  pointer-events: none;
}
.vcard-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.vcard-head .meta {
  font-family: var(--type-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.vcard-head .meta strong {
  display: block; color: #fff; margin-top: 4px; font-weight: 600; font-size: 11px; letter-spacing: 0.1em;
}
.vcard-head .logomark {
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 0.9;
  text-align: right;
}
.vcard-head .logomark span {
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  display: block;
  letter-spacing: 0;
  margin-top: 3px;
}

.vcard-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.vcard-avatar::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 20px; height: 20px;
  background: var(--orange);
  z-index: 1;
}
.vcard-avatar::before {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 8px; height: 20px;
  background: var(--red);
  z-index: 2;
}
.vcard-name {
  position: relative;
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}
.vcard-role {
  position: relative;
  font-family: var(--type-display);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  letter-spacing: 0;
}

.vcard-footer {
  position: relative;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.vcard-footer .fpt-tiny {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vcard-footer .fpt-tiny .badge {
  background: var(--red);
  color: #fff;
  padding: 3px 6px;
  border-radius: 3px;
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px -1px rgba(228, 30, 45, 0.4);
}

/* ========== Primary action stack (NEW — for cards) ========== */
.action-stack {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.act-prime {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-card);
  background: var(--navy);
  color: #fff;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.act-prime:hover { transform: translateY(-1px); box-shadow: var(--shadow-pop); }
.act-prime:active { transform: translateY(0); }
.act-prime .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.14);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.act-prime .ico svg { width: 20px; height: 20px; }
.act-prime .body { flex: 1; }
.act-prime .lbl-s {
  font-family: var(--type-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  display: block;
}
.act-prime .lbl-b {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-top: 1px;
}
.act-prime .chev {
  opacity: 0.65;
  flex-shrink: 0;
}
.act-prime.whats { background: var(--whats); }

/* ========== Contact rows ========== */
.contact-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.row:hover { border-color: var(--navy-200); box-shadow: var(--shadow-card); transform: translateY(-1px); }
.row .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--navy-50);
  color: var(--navy);
  flex-shrink: 0;
}
.row .ico svg { width: 20px; height: 20px; }
.row .body { flex: 1; min-width: 0; }
.row .lbl {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.row .val {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink);
}
.row .chev { color: var(--muted-2); flex-shrink: 0; }

/* Section divider chip (NEW) */
.section-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 4px 10px;
}
.section-chip .ln { flex: 1; height: 1px; background: var(--line); }
.section-chip .tt {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== Responsive scaling ========== */
@media (max-width: 360px) {
  .hero-wordmark { font-size: 44px; }
  .cta-primary .l b { font-size: 17px; }
  .vcard-name { font-size: 24px; }
}
@media (min-width: 540px) {
  .shell, .detail-shell { padding-top: 32px; }
}

/* ========== QR Page ========== */
.qr-stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  position: relative;
  background:
    radial-gradient(1000px 600px at 50% -20%, rgba(12, 58, 133, 0.16), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, #ebeef6 100%);
}
.qr-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 58, 133, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 58, 133, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

.qr-poster {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 2px rgba(7, 35, 79, 0.05),
    0 40px 80px -40px rgba(7, 35, 79, 0.35);
  overflow: hidden;
}

.qr-poster .hdr {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-800) 100%);
  color: #fff;
  padding: 22px 24px 18px;
  position: relative;
  overflow: hidden;
}
.qr-poster .hdr::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(120% 80% at 50% 100%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 100%, #000, transparent 80%);
  pointer-events: none;
}
.qr-poster .hdr-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.qr-poster .hdr-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px 4px 7px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-family: var(--type-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.qr-poster .hdr-pill .pulse {
  width: 5px; height: 5px; border-radius: 50%;
  background: #2ed573;
  box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.5);
  animation: pulse 1.8s infinite;
}
.qr-poster .hdr-code {
  font-family: var(--type-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.qr-poster .hdr-mark {
  position: relative;
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.045em;
  line-height: 0.92;
}
.qr-poster .hdr-mark span {
  display: block;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}
.qr-poster .hdr-sub {
  position: relative;
  font-family: var(--type-display);
  font-weight: 400;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  max-width: 30ch;
}

.qr-canvas-wrap {
  padding: 28px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qr-frame {
  position: relative;
  padding: 16px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.qr-frame::before,
.qr-frame::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--navy);
  border-style: solid;
}
.qr-frame::before {
  top: -1px; left: -1px;
  border-width: 3px 0 0 3px;
  border-top-left-radius: 8px;
}
.qr-frame::after {
  bottom: -1px; right: -1px;
  border-width: 0 3px 3px 0;
  border-bottom-right-radius: 8px;
}
.qr-frame .corner-tr,
.qr-frame .corner-bl {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--navy);
  border-style: solid;
}
.qr-frame .corner-tr {
  top: -1px; right: -1px;
  border-width: 3px 3px 0 0;
  border-top-right-radius: 8px;
}
.qr-frame .corner-bl {
  bottom: -1px; left: -1px;
  border-width: 0 0 3px 3px;
  border-bottom-left-radius: 8px;
}
#qr-canvas {
  display: block;
  width: 280px;
  height: 280px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
.qr-center-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 2px solid var(--navy);
  box-shadow: 0 4px 16px rgba(7, 35, 79, 0.3);
}
.qr-center-mark .crest {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 6px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.05em;
  position: relative;
}

.qr-instructions {
  margin-top: 20px;
  text-align: center;
}
.qr-instructions .lead {
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.qr-instructions .desc {
  font-family: var(--type-display);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 6px 0 0;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.qr-url-card {
  margin: 18px 28px 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--navy-50);
  display: flex;
  align-items: center;
  gap: 12px;
}
.qr-url-card .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.qr-url-card .ico svg { width: 16px; height: 16px; }
.qr-url-card .body { flex: 1; min-width: 0; }
.qr-url-card .lbl {
  font-family: var(--type-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.qr-url-card .val {
  font-family: var(--type-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.qr-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 22px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}
.qr-foot .l {
  font-family: var(--type-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}
.qr-foot .l strong {
  color: var(--ink);
  display: block;
  font-weight: 600;
  font-family: var(--type-display);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.qr-foot .fpt-mark {
  background: var(--navy);
  color: #fff;
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 6px 9px;
  border-radius: 4px;
}

.qr-bottom-bar {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0 20px;
}
.qr-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  box-shadow: 0 4px 12px -4px rgba(7, 35, 79, 0.15);
  transition: all .2s ease;
}
.qr-action:hover { color: var(--navy); border-color: var(--navy-200); transform: translateY(-1px); }
.qr-action svg { width: 14px; height: 14px; color: var(--navy); }
