/* ════════════════════════════════════════════════════════════════════
   WORLD-CLASS POLISH 2026 — Premium visual refinement
   Astro palette preserved: #0B1F3A (deep navy) · #0FA3B1 (teal) · 
   #C9A24A (gold) · #F1EDE4 (ivory)
   Last in cascade — only refines, never rebuilds
════════════════════════════════════════════════════════════════════ */

:root{
  /* Refined gradient stops for premium feel */
  --wc-grad-primary: linear-gradient(135deg, #0FA3B1 0%, #15C5D8 50%, #1AD4E8 100%);
  --wc-grad-gold: linear-gradient(135deg, #C9A24A 0%, #E8C97A 50%, #F5DCA0 100%);
  --wc-grad-text: linear-gradient(120deg, #F1EDE4 0%, #E8C97A 60%, #15C5D8 100%);
  --wc-grad-card: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.008) 100%);
  --wc-grad-card-hover: linear-gradient(180deg, rgba(15,163,177,0.08) 0%, rgba(15,163,177,0.02) 100%);
  --wc-shadow-deep: 0 30px 80px rgba(0,0,0,0.45), 0 12px 32px rgba(0,0,0,0.25);
  --wc-shadow-glow: 0 0 0 1px rgba(15,163,177,0.12), 0 24px 60px rgba(15,163,177,0.18);
  --wc-blur: blur(20px) saturate(180%);
}

/* ════════════════════════════════════════
   GLOBAL — Refined typography & contrasts
   ════════════════════════════════════════ */

body{
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
}

/* Page texture removed for performance */

/* Refined section title gradient on em */
.section-title em,
h1 em,
h2 em{
  background: var(--wc-grad-text) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-style: italic !important;
  font-weight: inherit !important;
}

/* ════════════════════════════════════════
   PRIMARY BUTTON — Premium glow & sheen
   ════════════════════════════════════════ */

.btn.primary,
.fw-btn-primary,
a.btn.primary{
  position: relative !important;
  background: var(--wc-grad-primary) !important;
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset,
    0 10px 28px rgba(15,163,177,0.32),
    0 4px 12px rgba(15,163,177,0.18) !important;
  letter-spacing: 0.01em !important;
  overflow: hidden !important;
  transition: transform .4s cubic-bezier(.2,1,.3,1), box-shadow .4s ease !important;
}

/* Button sweep removed for performance */

.btn.primary:hover,
.fw-btn-primary:hover{
  transform: translateY(-3px) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 18px 44px rgba(15,163,177,0.45),
    0 6px 18px rgba(15,163,177,0.25) !important;
}



/* ════════════════════════════════════════
   WORLD-CLASS FOOTER TRANSFORMATION
   ════════════════════════════════════════ */

.footer.footer-world{
  position: relative !important;
  background: 
    radial-gradient(ellipse 1200px 600px at 50% 0%, rgba(15,163,177,0.08), transparent 60%),
    radial-gradient(ellipse 800px 400px at 90% 100%, rgba(201,162,74,0.04), transparent 70%),
    linear-gradient(180deg, #07142a 0%, #050d1c 100%) !important;
  border-top: 1px solid transparent !important;
  background-clip: padding-box !important;
  overflow: hidden !important;
  padding: clamp(64px, 8vw, 110px) 0 0 !important;
}

/* Animated gradient line at top of footer */
.footer.footer-world::before{
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(15,163,177,0.3) 25%, 
    rgba(201,162,74,0.4) 50%, 
    rgba(15,163,177,0.3) 75%, 
    transparent 100%);
  z-index: 2;
}

/* Footer animated glow removed for performance */

/* Footer hero refinement */
.footer.footer-world .fw-hero{
  text-align: center !important;
  max-width: 880px !important;
  margin: 0 auto clamp(40px, 5vw, 64px) !important;
  position: relative;
  z-index: 2;
}

.footer.footer-world .fw-eyebrow{
  font-family: 'DM Mono', monospace !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #15C5D8 !important;
  margin-bottom: 18px !important;
  opacity: 0.95;
}

.footer.footer-world #footer-title,
.footer.footer-world .fw-hero h2{
  font-family: 'Instrument Serif', Georgia, serif !important;
  font-size: clamp(1.8rem, 4vw, 3.2rem) !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
  background: var(--wc-grad-text) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 18px !important;
}

.footer.footer-world .fw-hero p{
  font-size: clamp(0.95rem, 1.4vw, 1.1rem) !important;
  line-height: 1.65 !important;
  color: #B8C5D6 !important;
  max-width: 680px !important;
  margin: 0 auto !important;
}

.footer.footer-world .fw-actions{
  display: flex !important;
  gap: 14px !important;
  justify-content: center !important;
  margin-top: 28px !important;
  flex-wrap: wrap !important;
}

.footer.footer-world .fw-btn{
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 28px !important;
  border-radius: 12px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  transition: all .35s cubic-bezier(.2,1,.3,1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.footer.footer-world .fw-btn-ghost{
  background: rgba(255,255,255,0.04) !important;
  color: #F1EDE4 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.footer.footer-world .fw-btn-ghost:hover{
  background: rgba(15,163,177,0.12) !important;
  border-color: rgba(15,163,177,0.35) !important;
  color: #15C5D8 !important;
  transform: translateY(-2px) !important;
}

/* Proof badges */
.footer.footer-world .fw-proof{
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 14px !important;
  margin: 0 auto clamp(48px, 6vw, 72px) !important;
  max-width: 1080px !important;
  position: relative;
  z-index: 2;
}

.footer.footer-world .fw-proof-item{
  padding: 18px 20px !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: all .35s cubic-bezier(.2,1,.3,1) !important;
  text-align: center !important;
}

.footer.footer-world .fw-proof-item:hover{
  transform: translateY(-3px) !important;
  background: linear-gradient(180deg, rgba(15,163,177,0.08), rgba(15,163,177,0.02)) !important;
  border-color: rgba(15,163,177,0.18) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2) !important;
}

.footer.footer-world .fw-proof-item strong{
  display: block !important;
  font-family: 'Instrument Serif', Georgia, serif !important;
  font-size: 1.02rem !important;
  font-weight: 500 !important;
  color: #F1EDE4 !important;
  margin-bottom: 4px !important;
  letter-spacing: -0.01em !important;
}

.footer.footer-world .fw-proof-item span{
  font-size: 0.78rem !important;
  color: #94A3B8 !important;
  line-height: 1.45 !important;
}

/* Main 4-card grid */
.footer.footer-world .fw-main{
  display: grid !important;
  grid-template-columns: 1.3fr 1fr 1fr 1fr !important;
  gap: 24px !important;
  margin: 0 0 clamp(48px, 6vw, 72px) !important;
  position: relative;
  z-index: 2;
}

.footer.footer-world .fw-card{
  background: var(--wc-grad-card) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 18px !important;
  padding: 26px 24px !important;
  transition: border-color .4s ease !important;
  position: relative;
  overflow: hidden;
}

.footer.footer-world .fw-card::before{
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,163,177,0.3), transparent);
  opacity: 0;
  transition: opacity .4s ease;
}

.footer.footer-world .fw-card:hover{
  border-color: rgba(15,163,177,0.18) !important;
}

.footer.footer-world .fw-card:hover::before{
  opacity: 1;
}

.footer.footer-world .fw-card h3{
  font-family: 'DM Mono', monospace !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #15C5D8 !important;
  margin-bottom: 18px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(15,163,177,0.12) !important;
}

.footer.footer-world .fw-link-card a{
  display: block !important;
  padding: 8px 0 !important;
  font-size: 0.85rem !important;
  color: #B8C5D6 !important;
  text-decoration: none !important;
  transition: all .25s cubic-bezier(.2,1,.3,1) !important;
  border-radius: 6px !important;
  padding-left: 0 !important;
}

.footer.footer-world .fw-link-card a:hover{
  color: #15C5D8 !important;
  transform: translateX(4px) !important;
}

/* Brand card */
.footer.footer-world .fw-brand-card{
  background: linear-gradient(180deg, rgba(15,163,177,0.04) 0%, rgba(255,255,255,0.008) 100%) !important;
}

.footer.footer-world .fw-brand-head{
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 16px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.footer.footer-world .fw-avatar{
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: url('../../profile-icon-nav.png') center/cover !important;
  border: 2px solid rgba(15,163,177,0.2) !important;
  box-shadow: 0 0 0 3px rgba(11,31,58,0.9), 0 8px 20px rgba(15,163,177,0.18) !important;
  flex-shrink: 0 !important;
}

.footer.footer-world .fw-brand-head h3{
  font-family: 'Instrument Serif', Georgia, serif !important;
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  color: #F1EDE4 !important;
  margin: 0 0 2px !important;
  padding: 0 !important;
  border: none !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
}

.footer.footer-world .fw-brand-head p{
  font-size: 0.72rem !important;
  color: #94A3B8 !important;
  font-family: 'DM Mono', monospace !important;
  letter-spacing: 0.05em !important;
}

.footer.footer-world .fw-brand-copy{
  font-size: 0.85rem !important;
  color: #B8C5D6 !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

.footer.footer-world .fw-contact-grid{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin-bottom: 18px !important;
}

.footer.footer-world .fw-contact-grid a,
.footer.footer-world .fw-contact-grid > span{
  padding: 10px 12px !important;
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  transition: all .25s ease !important;
  display: block !important;
}

.footer.footer-world .fw-contact-grid a:hover{
  background: rgba(15,163,177,0.08) !important;
  border-color: rgba(15,163,177,0.2) !important;
}

.footer.footer-world .fw-contact-grid span:first-child{
  font-size: 1rem !important;
  display: inline-block !important;
  margin-bottom: 4px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

.footer.footer-world .fw-contact-grid b{
  display: block !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #15C5D8 !important;
  margin-bottom: 2px !important;
}

.footer.footer-world .fw-contact-grid em{
  font-style: normal !important;
  font-size: 0.78rem !important;
  color: #F1EDE4 !important;
  font-weight: 500 !important;
  word-break: break-word !important;
}

.footer.footer-world .fw-socials{
  display: flex !important;
  gap: 8px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
}

.footer.footer-world .fw-socials a{
  flex: 1 !important;
  padding: 10px !important;
  text-align: center !important;
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 10px !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #B8C5D6 !important;
  text-decoration: none !important;
  transition: all .3s ease !important;
}

.footer.footer-world .fw-socials a:hover{
  background: rgba(15,163,177,0.12) !important;
  border-color: rgba(15,163,177,0.25) !important;
  color: #15C5D8 !important;
  transform: translateY(-2px) !important;
}

/* Mini CTA in cards */
.footer.footer-world .fw-mini-cta{
  margin-top: 16px !important;
  padding: 14px 16px !important;
  background: linear-gradient(135deg, rgba(15,163,177,0.08), rgba(201,162,74,0.04)) !important;
  border: 1px solid rgba(15,163,177,0.15) !important;
  border-radius: 12px !important;
}

.footer.footer-world .fw-mini-cta span{
  font-family: 'DM Mono', monospace !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #E8C97A !important;
  display: block !important;
  margin-bottom: 6px !important;
}

.footer.footer-world .fw-mini-cta strong{
  font-size: 0.82rem !important;
  color: #F1EDE4 !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

/* Business verification section */
.footer.footer-world .fw-business{
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 18px !important;
  padding: 32px !important;
  margin: 0 0 32px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 18px !important;
  position: relative;
  z-index: 2;
}

.footer.footer-world .fw-business > div{
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.footer.footer-world .fw-business span{
  font-family: 'DM Mono', monospace !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #15C5D8 !important;
}

.footer.footer-world .fw-business strong{
  font-size: 0.95rem !important;
  color: #F1EDE4 !important;
  font-weight: 600 !important;
}

.footer.footer-world .fw-business a{
  font-size: 0.85rem !important;
  color: #15C5D8 !important;
  text-decoration: none !important;
  transition: color .25s ease !important;
}

.footer.footer-world .fw-business a:hover{
  color: #E8C97A !important;
}

.footer.footer-world .fw-business small{
  font-size: 0.72rem !important;
  color: #94A3B8 !important;
  margin-top: 2px !important;
}

/* Bottom bar */
.footer.footer-world .fw-bottom{
  background: rgba(0,0,0,0.25) !important;
  border-top: 1px solid rgba(255,255,255,0.04) !important;
  padding: 20px 0 !important;
  position: relative;
  z-index: 2;
}

.footer.footer-world .fw-bottom-inner{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  font-size: 0.78rem !important;
  color: #8B98AB !important;
}

.footer.footer-world .fw-bottom-inner a{
  color: #B8C5D6 !important;
  text-decoration: none !important;
  transition: color .25s ease !important;
}

.footer.footer-world .fw-bottom-inner a:hover{
  color: #15C5D8 !important;
}

.footer.footer-world .fw-dot{
  opacity: 0.4 !important;
  color: #15C5D8 !important;
}

/* Footer responsive — Mobile */
@media (max-width: 1100px){
  .footer.footer-world .fw-main{
    grid-template-columns: 1fr 1fr !important;
  }
  .footer.footer-world .fw-brand-card{
    grid-column: 1 / 3 !important;
  }
}

@media (max-width: 700px){
  .footer.footer-world .fw-main{
    grid-template-columns: 1fr !important;
  }
  .footer.footer-world .fw-brand-card{
    grid-column: 1 !important;
  }
  .footer.footer-world .fw-business{
    grid-template-columns: 1fr 1fr !important;
    padding: 24px 20px !important;
  }
  .footer.footer-world .fw-card{
    padding: 22px 20px !important;
  }
  .footer.footer-world .fw-contact-grid{
    grid-template-columns: 1fr !important;
  }
  .footer.footer-world .fw-bottom-inner{
    font-size: 0.72rem !important;
  }
}

@media (max-width: 480px){
  .footer.footer-world .fw-business{
    grid-template-columns: 1fr !important;
  }
  .footer.footer-world .fw-proof{
    grid-template-columns: 1fr 1fr !important;
  }
  .footer.footer-world .fw-proof-item{
    padding: 14px 12px !important;
  }
}

/* ════════════════════════════════════════
   HERO REFINEMENT — Premium feel
   ════════════════════════════════════════ */

.hero h1{
  letter-spacing: -0.028em !important;
}

.hero h1 .hero-title-subline,
.hero-title-subline{
  font-family: 'DM Mono', monospace !important;
  background: var(--wc-grad-gold) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 500 !important;
}

/* ════════════════════════════════════════
   STATUS PILL — Living pulse animation
   ════════════════════════════════════════ */

/* Status pill shine removed for performance */

/* ════════════════════════════════════════
   ACCESSIBILITY & FOCUS STATES
   ════════════════════════════════════════ */

*:focus-visible{
  outline: 2px solid #15C5D8 !important;
  outline-offset: 3px !important;
  border-radius: 6px !important;
}

.btn:focus-visible,
.fw-btn:focus-visible{
  outline-offset: 4px !important;
}

/* ════════════════════════════════════════
   PRINT-FRIENDLY
   ════════════════════════════════════════ */

@media print{
  body::before, 
  .footer.footer-world::after,
  .status-pill::before{ 
    display: none !important; 
  }
}

/* ════════════════════════════════════════
   REDUCED MOTION SUPPORT
   ════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
