/* ── Hero ── */
.hero{position:relative;min-height:100svh;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center top}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(9,18,65,.95) 0%,rgba(9,18,65,.7) 50%,rgba(9,18,65,.3) 100%)}
.hero-content{position:relative;z-index:1;padding:var(--space-14) var(--container-pad) var(--space-12)}
.hero-eyebrow{display:inline-flex;align-items:center;gap:.5rem;background:rgba(245,166,35,.15);border:1px solid rgba(245,166,35,.3);border-radius:var(--radius-full);padding:.4rem 1rem .4rem .4rem;font-size:.75rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--color-gold-300);margin-bottom:var(--space-6);backdrop-filter:blur(8px)}
.hero-eyebrow-dot{width:20px;height:20px;border-radius:50%;background:var(--color-gold-400);display:flex;align-items:center;justify-content:center}
.hero-eyebrow-dot::after{content:'';width:8px;height:8px;background:var(--color-gold-700);border-radius:50%}
.hero-title{font-size:var(--text-h1);font-weight:900;color:#fff;line-height:1.08;letter-spacing:-.02em;margin-bottom:var(--space-6);max-width:800px}
.hero-title span{color:var(--color-gold-400)}
.hero-desc{font-size:var(--text-body-lg);color:rgba(255,255,255,.75);line-height:var(--leading-relaxed);max-width:560px;margin-bottom:var(--space-8)}
.hero-actions{display:flex;flex-wrap:wrap;gap:var(--space-4);margin-bottom:var(--space-10)}
.hero-stats{display:flex;flex-wrap:wrap;gap:0;border-top:1px solid rgba(255,255,255,.12);padding-top:var(--space-7)}
.hero-stat{flex:1;min-width:120px;padding-right:var(--space-7);border-right:1px solid rgba(255,255,255,.12)}
.hero-stat:last-child{border-right:none}
.hero-stat-val{font-family:var(--font-display);font-size:clamp(1.75rem,3.5vw,2.5rem);font-weight:900;color:#fff;line-height:1}
.hero-stat-val span{color:var(--color-gold-400)}
.hero-stat-label{font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.5);margin-top:.375rem}
@media(max-width:600px){
  .hero-content{padding:8rem var(--container-pad) var(--space-9)}
  .hero-stats{gap:var(--space-5)}
  .hero-stat{flex:none;width:calc(50% - var(--space-3));border-right:none;padding-right:0}
}
