/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  width: 100%;
  background: #F8FAF9;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,158,117,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,158,117,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .4;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
  padding: 96px 0 80px;
  position: relative;
  z-index: 1;
}
.hero-avail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal-lt);
  border: 1px solid rgba(13,158,117,.25);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
  cursor: pointer;
  transition: var(--t);
}
.hero-avail:hover { background: rgba(13,158,117,.18); transform: translateX(4px); }
.hero-avail .dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(13,158,117,.4); }
  50%       { opacity: .8; transform: scale(.88); box-shadow: 0 0 0 6px rgba(13,158,117,0); }
}
.hero-avail span { font-size: 13px; font-weight: 600; color: var(--teal-xd); }
.hero-h1 {
  font-family: 'Playfair Display', sans-serif;
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  color: var(--ink);
}
.hero-h1 .a { color: var(--teal); font-style: italic; }
.hero-typer {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-xd);
  height: 26px;
  margin-bottom: 22px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -.01em;
  background: var(--teal-lt);
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  border-left: 3px solid var(--teal);
}
.cursor-b {
  display: inline-block;
  width: 2px; height: 15px;
  background: var(--teal);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-desc {
  font-size: 17px;
  color: var(--body);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Trust badges row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: var(--t);
  cursor: pointer;
}
.hero-trust-item:hover { color: var(--teal); }
.hero-trust-item:hover strong { color: var(--teal); }
.hero-trust-item strong { color: var(--ink); font-weight: 700; display: block; font-size: 18px; }
.hero-trust-sep { width: 1px; height: 30px; background: var(--border-2); flex-shrink: 0; }

/* Hero right column */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* Profile portrait */
.hero-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-2xl);
  background: linear-gradient(160deg, #E8F7F2 0%, #D1F0E4 40%, #C0E8D8 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13,158,117,.15), 0 8px 24px rgba(11,15,26,.08);
  border: 1px solid rgba(13,158,117,.15);
}
.hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: none;
}
.hero-portrait img.loaded { display: block; }
.hero-portrait-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(13,158,117,.6);
}
.hero-portrait-ph .icon { font-size: 80px; opacity: .4; }
.hero-portrait-ph p { font-size: 13px; font-weight: 500; color: var(--teal-xd); opacity: .7; }
.hero-portrait-ph svg { filter: drop-shadow(0 4px 16px rgba(13,158,117,.15)); }

/* Floating stat cards */
.hero-float-1 {
  position: absolute;
  bottom: 20px; left: -16px;
  background: white;
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(11,15,26,.14);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 155px;
  z-index: 2;
}
.hero-float-2 {
  position: absolute;
  top: 20px; right: -16px;
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(11,15,26,.25);
  min-width: 130px;
  z-index: 2;
}
.hf-ico   { font-size: 26px; }
.hf-val   { font-family: 'Playfair Display', sans-serif; font-size: 20px; font-weight: 800; color: var(--teal); line-height: 1; }
.hf-lbl   { font-size: 11px; font-weight: 500; color: var(--muted); margin-top: 2px; }
.hf-val-w { font-family: 'Playfair Display', sans-serif; font-size: 18px; font-weight: 800; color: #fff; line-height: 1; }
.hf-lbl-w { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Profile card below portrait */
.hero-card {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px 22px;
  box-shadow: var(--sh-1);
  cursor: pointer;
  transition: var(--t);
}
.hero-card:hover { box-shadow: var(--sh-2); border-color: var(--teal); transform: translateY(-2px); }
.hc-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--bg-2);
}
.hc-av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.hc-av img { width: 100%; height: 100%; object-fit: cover; }
.hc-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.hc-role { font-size: 12px; color: var(--muted); }
.hc-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-lt);
  border: 1px solid rgba(13,158,117,.2);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-xd);
  margin-bottom: 16px;
}
.hc-badge {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-lt);
  border: 1px solid rgba(13,158,117,.2);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 700; color: var(--teal-xd);
  white-space: nowrap;
  flex-shrink: 0;
}
.hc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hc-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  transition: var(--t);
}
.hc-stat:hover { background: var(--teal-lt); border-color: rgba(13,158,117,.2); }
.hc-stat-v {
  font-family: 'Playfair Display', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.hc-stat-k { font-size: 11px; color: var(--muted); font-weight: 500; }

/* Hero identity card */
.hid-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 20px 22px;
  box-shadow: var(--sh-2);
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  color: inherit;
}
.hid-card:hover { border-color: var(--teal); box-shadow: var(--sh-teal); transform: translateY(-2px); }

/* Hero CTA bar */
.hero-cta-bar {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hcb-text { color: rgba(255,255,255,.82); font-size: 15px; }
.hcb-text strong { color: #fff; display: block; font-size: 18px; font-weight: 700; margin-bottom: 3px; }
.hcb-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* Hero featured strip */
#hero-strip { background: var(--ink); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-height: 380px; aspect-ratio: 16/9; }
  .hero-float-1, .hero-float-2 { display: none; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-portrait { display: none; }
  #hero-strip > .wrap > div { gap: 16px !important; }
}
@media (max-width: 640px) {
  .hero-h1 { font-size: 32px; }
  .hero { min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
