/* Hero banner styles for funding pages. Depends on CSS variables & fonts defined in funding.css. */

.hero { background: linear-gradient(135deg,#0D1B2A 0%, 65%,#1A2F45 100%); padding: 36px 24px 44px; position: relative; overflow: hidden; border-bottom: 3px solid var(--brand); }
.hero::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F08501' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.hero::after { content:''; position:absolute; right:-100px; top:-80px; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle,rgba(240,133,1,.15) 0%,transparent 70%); }
.hero-inner { max-width: 80%; margin: 0 auto; position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.hero-left { flex: 1; min-width: 280px;display: flex;gap: 14px;min-width: 0;flex-direction: column;align-items:baseline}
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(240,133,1,.15); border: 1px solid rgba(240,133,1,.3); border-radius: 20px; padding: 4px 13px; margin-bottom: 14px; font-size: 11.5px; font-weight: 700; color: var(--brand); letter-spacing: .05em; text-transform: uppercase; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse 2s infinite; }
.hero h1 { font-family: var(--font-display); font-size: clamp(24px,3.5vw,40px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 12px; letter-spacing: -.02em; }
.hero h1 em { color: var(--brand); font-style: normal; }
.hero-desc { font-size: 14.5px; color: rgba(255,255,255,.7); max-width: 620px; line-height: 1.7; margin-bottom: 24px; }
.hero-desc strong { color: var(--brand); font-weight: 700; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--brand); line-height: 1; }
.stat-label { font-size: 11.5px; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.ani {
    animation: fadeUp .4s ease both;
}

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media(max-width:960px){
  .hero-inner { flex-direction: column; }
}
@media(max-width:580px){
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 20px; }
}
/* Hero contact pills (contact page) */
.hero-contact-pills { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.contact-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px 14px;
  text-decoration: none;
  transition: all .2s;
}
.contact-pill:hover {
  background: rgba(232, 98, 10, 0.15);
  border-color: rgba(232, 98, 10, 0.3);
}
.contact-pill .detail { display: flex; flex-direction: column; }
.contact-pill .lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.contact-pill .val {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
