/* ==========================================================================
   HUMANPRO LAUNCH CORE v1.0
   Single source of truth: background, buttons, navbar, footer, cards.
   ========================================================================== */

/* CRITICAL: Hide old navbar completely */
.main-header,
.mega-header,
header.main-header,
.top-nav,
.navbar:not(.hp-nav) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -9999px !important;
  z-index: -1 !important;
}

/* Hide old footers */
.mega-footer:not(.hp-footer),
.site-footer:not(.hp-footer),
.footer:not(.hp-footer) {
  display: none !important;
}

:root{
  --hp-bg-0:#050a30;
  --hp-bg-1:#0b1b4d;
  --hp-cyan:#00F5FF;
  --hp-violet:#4F39F6;
  --hp-violet2:#9938CA;
  --hp-orange:#E0724A;
  --hp-text:#eaf2ff;
  --hp-muted: rgba(234,242,255,.72);
  --hp-card: rgba(8, 16, 60, .72);
  --hp-border: rgba(0,245,255,.18);
  --hp-shadow: 0 18px 60px rgba(0,0,0,.45);
}

/* Global background unification */
html, body{
  background: radial-gradient(1200px 800px at 20% 20%, rgba(0,245,255,.16), transparent 55%),
              radial-gradient(900px 700px at 80% 30%, rgba(79,57,246,.18), transparent 60%),
              radial-gradient(800px 600px at 60% 90%, rgba(224,114,74,.14), transparent 55%),
              linear-gradient(180deg, var(--hp-bg-0), var(--hp-bg-1)) !important;
  color: var(--hp-text) !important;
  overflow-x: hidden;
}

/* Ensure sections inherit */
body * { text-rendering: geometricPrecision; }

/* ==========================================================================
   BUTTONS (requested conic shine)
   ========================================================================== */
@keyframes hp_shine {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Apply via class to avoid nuking icon-only buttons */
.hp-btn-shine{
  position: relative !important;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: translateZ(0);
}

.hp-btn-shine::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background: conic-gradient(from 0deg, var(--hp-cyan), #000, #000, var(--hp-cyan), #000, #000, #000, var(--hp-cyan));
  background-size: 300% 300%;
  animation: hp_shine 6s ease-out infinite;
  filter: drop-shadow(0 0 18px rgba(0,245,255,.24));
  z-index: 0;
}

.hp-btn-shine > .hp-btn-inner,
.hp-btn-shine > button,
.hp-btn-shine > a,
.hp-btn-shine > input{
  position: relative;
  z-index: 1;
  background: rgba(10, 14, 32, .92) !important;
  color: #fff !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  letter-spacing: .2px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.hp-btn-shine:hover{ transform: scale(1.04); }
.hp-btn-shine:active{ transform: scale(0.99); }

.hp-btn-shine:hover > .hp-btn-inner,
.hp-btn-shine:hover > button,
.hp-btn-shine:hover > a,
.hp-btn-shine:hover > input{
  box-shadow: 0 10px 30px rgba(0,245,255,.12), 0 12px 50px rgba(79,57,246,.10);
  border-color: rgba(0,245,255,.22) !important;
}

.hp-btn-shine[aria-disabled="true"],
.hp-btn-shine.disabled{ opacity:.6; pointer-events:none; }

/* ==========================================================================
   NAVBAR (promo bar + clean white nav)
   ========================================================================== */
.hp-topbar{
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(90deg, var(--hp-violet), var(--hp-violet2), var(--hp-orange));
  line-height: 1.4;
  position: relative;
  z-index: 10001;
}
@media (max-width:480px){
  .hp-topbar{ font-size:11px; padding: 8px 10px; }
}
@media (min-width:768px){ 
  .hp-topbar{ 
    font-size: 13px; 
    padding: 8px 12px;
  } 
}
.hp-topbar .hp-underline{ 
  text-decoration: underline; 
  text-underline-offset: 3px; 
}

.hp-nav{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(5,10,48,0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0,245,255,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hp-nav .hp-nav-inner{
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  max-width: 100%;
  margin: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.22);
  background: rgba(7,12,30,0.7);
}
@media (max-width:480px){
  .hp-nav .hp-nav-inner{ margin: 6px 10px; padding: 0 14px; }
  .hp-mobile-menu{ top: 80px; }
}
@media (min-width:768px){ .hp-nav .hp-nav-inner{ padding: 0 32px; } }
@media (min-width:1024px){ .hp-nav .hp-nav-inner{ padding: 0 64px; } }

.hp-brand{
  display: flex;
  align-items: center;
  z-index: 10000;
}

.hp-logo{
  height: 40px;
  width: auto;
}
@media (min-width:768px){ .hp-logo{ height: 45px; } }

.hp-nav a{ color: rgba(234,242,255,0.95); text-decoration:none; }
.hp-nav .hp-links{
  display: none;
  gap: 24px;
  align-items: center;
}
@media (min-width:768px){ .hp-nav .hp-links{ display:flex; } }
@media (max-width:767px){
  .hp-nav .hp-links{ display:none !important; }
  .hp-nav .hp-nav-cta{ display:none !important; }
  .hp-menu-btn{ display:flex !important; }
}

.hp-nav .hp-link{
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.hp-nav .hp-link:hover{
  background: rgba(0,245,255,.12);
  color: #2d24c8;
}

.hp-nav .hp-nav-cta{ display:none; }
@media (min-width:768px){ .hp-nav .hp-nav-cta{ display:block; } }

/* Overlay para cerrar el menú */
.hp-menu-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9997;
  -webkit-tap-highlight-color: transparent;
}
.hp-menu-overlay.active{
  display: block;
}

.hp-menu-btn{
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  padding: 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  color: #eaf2ff;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.hp-menu-btn:hover,
.hp-menu-btn:active{ 
  background: rgba(0,245,255,0.2);
  border-color: rgba(0,245,255,0.5);
  transform: scale(1.05);
}
@media (min-width:768px){ .hp-menu-btn{ display:none; } }

/* Mobile menu CORREGIDO - 100% funcional */
.hp-mobile-menu{
  display: none;
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(180deg, rgba(5,10,48,0.98), rgba(6,12,32,0.98));
  backdrop-filter: blur(15px);
  border-top: 2px solid rgba(0,245,255,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 9998;
}
.hp-mobile-menu.open{ 
  display: flex !important;
  flex-direction: column;
  gap: 8px;
}
.hp-mobile-link{
  display: block !important;
  padding: 16px 20px !important;
  margin-bottom: 8px !important;
  border-radius: 14px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #fff !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
}
.hp-mobile-link:hover,
.hp-mobile-link:active{ 
  background: rgba(0,245,255,0.12) !important; 
  color: #00F5FF !important;
  border-color: rgba(0,245,255,0.4) !important;
  transform: translateX(5px) !important;
}
.hp-mobile-cta-wrap{
  margin-top: 20px !important;
  padding-top: 20px !important;
  border-top: 2px solid rgba(0,245,255,0.2) !important;
}
.hp-mobile-cta{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 16px 24px !important;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3) !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
}
.hp-mobile-cta:hover,
.hp-mobile-cta:active{
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4) !important;
}
@media (min-width:768px){ 
  .hp-mobile-menu{ 
    display: none !important; 
  } 
}


/* ==========================================================================
   DISRUPTIVE PRODUCT CARDS
   ========================================================================== */
.hp-card{
  background: var(--hp-card);
  border: 1px solid var(--hp-border);
  border-radius: 18px;
  box-shadow: var(--hp-shadow);
  backdrop-filter: blur(10px);
}
.hp-card h3, .hp-card h2{ color:#fff; }
.hp-muted{ color: var(--hp-muted); }

/* Tools polish */
.tool-container, .tools-container, .quiz-container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px;
}
@media(min-width:768px){ .tool-container, .tools-container, .quiz-container{ padding: 40px 18px; } }

/* Fix quiz visibility layering */
.quiz-container{ position: relative; z-index: 2; }

/* Ebooks grid mobile fix */
.ebooks-grid, .blog-grid, .posts-grid{
  display:grid !important;
  grid-template-columns: repeat(1, minmax(0,1fr)) !important;
  gap: 16px !important;
}
@media(min-width:768px){
  .ebooks-grid, .blog-grid, .posts-grid{ grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 20px !important; }
}
@media(min-width:1024px){
  .ebooks-grid, .blog-grid, .posts-grid{ grid-template-columns: repeat(3, minmax(0,1fr)) !important; gap: 22px !important; }
}

/* Footer ensure contrast */
.hp-footer{
  margin-top: 60px;
  padding: 36px 18px;
  border-top: 1px solid rgba(0,245,255,.14);
  background: rgba(5,10,48,.92);
}
.hp-footer a{ color: rgba(234,242,255,.80); text-decoration:none; }
.hp-footer a:hover{ color:#fff; text-decoration: underline; text-underline-offset: 3px; }


/* ==========================================================================
   TOOLS - Disruptive UI layer
   ========================================================================== */
body.hp-tools main,
body.hp-tools .tool-wrapper,
body.hp-tools .container{
  position: relative;
  z-index: 2;
}

body.hp-tools .tool-header,
body.hp-tools .hero,
body.hp-tools .tools-hero{
  padding: 26px 16px !important;
  margin-top: 14px !important;
}

body.hp-tools input, body.hp-tools textarea, body.hp-tools select{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(0,245,255,.18) !important;
  color: var(--hp-text) !important;
  border-radius: 14px !important;
  padding: 12px 14px !important;
  outline: none !important;
}
body.hp-tools input::placeholder, body.hp-tools textarea::placeholder{ color: rgba(234,242,255,.55) !important; }

body.hp-tools .upload-area, body.hp-tools #uploadArea{
  background: rgba(8,16,60,.55) !important;
  border: 1px dashed rgba(0,245,255,.28) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 50px rgba(0,0,0,.35) !important;
}

body.hp-tools .results, body.hp-tools .analysis-results, body.hp-tools .results-container{
  background: rgba(8,16,60,.62) !important;
  border: 1px solid rgba(0,245,255,.18) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.38) !important;
}

body.hp-tools .metric, body.hp-tools .score-card, body.hp-tools .card{
  background: rgba(8,16,60,.55) !important;
  border: 1px solid rgba(0,245,255,.14) !important;
  border-radius: 16px !important;
}

/* ==========================================================================
   BLOG / EBOOKS - Clean disruptive layout layer
   ========================================================================== */
body.hp-blog main, body.hp-ebooks main{ position:relative; z-index:2; }

body.hp-blog .blog-header, body.hp-ebooks .ebooks-header, body.hp-blog .hero, body.hp-ebooks .hero{
  padding: 32px 16px !important;
}

body.hp-blog .post-card, body.hp-ebooks .ebook-card, body.hp-blog article, body.hp-ebooks article{
  background: rgba(8,16,60,.62) !important;
  border: 1px solid rgba(0,245,255,.16) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.38) !important;
  overflow:hidden;
}

body.hp-blog .post-card:hover, body.hp-ebooks .ebook-card:hover{
  transform: translateY(-4px);
  transition: transform .18s ease;
}

body.hp-ebooks .ebook-card{ height:auto !important; min-height: unset !important; }
body.hp-ebooks .ebook-cover{ max-height: 220px; object-fit: cover; width:100%; }

body.hp-blog .sidebar, body.hp-blog aside{
  background: rgba(8,16,60,.55) !important;
  border: 1px solid rgba(0,245,255,.14) !important;
  border-radius: 18px !important;
}


/* =========================================================
   LAUNCH OVERRIDES v2 (Jan 2026) - Consistency & fixes
   ========================================================= */

/* Brand in navbar: keep it clean (no giant capsule) */
.hp-brand{display:flex;align-items:center;gap:10px;padding:4px 8px;border-radius:14px;background:transparent;}
.hp-logo{height:40px; width:auto; display:block; filter: drop-shadow(0 8px 22px rgba(0,0,0,.35));}

/* Navbar pills: avoid white hover glitch */
.hp-nav .hp-link:hover{background: rgba(79,57,246,.12); color: rgba(234,242,255,.96);}
.hp-nav .hp-link:focus{outline:2px solid rgba(79,57,246,.35); outline-offset:2px;}

/* CTA in navbar */
.hp-nav-cta{display:inline-flex;align-items:center;justify-content:center;font-weight:800;font-size:14px;padding:10px 16px;border-radius:999px;background:linear-gradient(135deg,#233dff,#00d4ff);color:#fff;text-decoration:none;box-shadow:0 10px 30px rgba(35,61,255,.22);}
.hp-nav-cta:hover{filter:brightness(1.05); transform: translateY(-1px);}

/* Floating support hub - prevent desktop clipping even inside transformed containers */
.floating-hub{position:fixed !important; right:max(16px, env(safe-area-inset-right) + 16px) !important; bottom:max(16px, env(safe-area-inset-bottom) + 16px) !important; z-index: 2147483000 !important;}
.floating-hub *{box-sizing:border-box;}
.floating-hub-panel{max-width: min(360px, calc(100vw - 32px)) !important; right:0 !important; transform-origin: bottom right !important;}

/* Select dropdown visibility (avoid white-on-white) */
select, option{
  color: #0a0e20;
}
select{
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(10,14,32,0.18) !important;
}
select:focus{outline: 2px solid rgba(79,57,246,0.35) !important; outline-offset:2px;}
option{background:#ffffff;}

/* Tools carousel/card clipping: never wrap cards with button shine */
.tool-card, .tool-card *{border-radius:24px;}
.tools-carousel{overflow-x:auto; overflow-y:visible;}
.tools-carousel-wrapper{overflow:visible;}
.tools-showcase{overflow:visible;}
/* Prevent circular masks from any stray styles */
.tool-card{clip-path:none !important; mask:none !important;}

/* Pricing button sizing (avoid oversized shine look) */
.hp-btn-shine{display:inline-flex;align-items:center;justify-content:center;}
.hp-btn-shine > button,
.hp-btn-shine > a,
button.hp-btn,
a.hp-btn{padding: 10px 18px !important; font-size: 14px !important;}

/* Footer (clean, minimal) */
.hp-footer{background:#06070a;color:#fff;padding:56px 16px;border-top:1px solid rgba(255,255,255,0.08);}
.hp-footer-wrap{max-width:1180px;margin:0 auto;}
.hp-footer-grid{display:grid;grid-template-columns:1fr;gap:28px;}
@media(min-width:1024px){.hp-footer-grid{grid-template-columns: 1.4fr 1fr;gap:56px;}}
.hp-footer-logo img{height:34px;width:auto;}
.hp-footer-text{color:rgba(255,255,255,0.75);font-size:14px;line-height:1.5;max-width:420px;}
.hp-footer-newsletter{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;}
.hp-footer-newsletter input{flex:1 1 220px;min-width:220px;background:#14171A;border:1px solid rgba(255,255,255,0.12);border-radius:12px;padding:12px 14px;color:#fff;}
.hp-footer-subscribe{background:#14171A;border:1px solid rgba(255,255,255,0.12);border-radius:12px;padding:12px 16px;color:#fff;font-weight:700;cursor:pointer;}
.hp-footer-subscribe:hover{background:#1b1f24;}
.hp-footer-mini{margin-top:10px;color:rgba(255,255,255,0.55);font-size:12px;}
.hp-footer-links{display:grid;grid-template-columns: repeat(2, minmax(0,1fr));gap:18px;}
@media(min-width:768px){.hp-footer-links{grid-template-columns: repeat(3, minmax(0,1fr));gap:24px;}}
.hp-footer-col h3{font-size:13px;letter-spacing:.06em;text-transform:uppercase;color:#fff;margin:0 0 10px;}
.hp-footer-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px;}
.hp-footer-col a{color:rgba(255,255,255,0.72);text-decoration:none;font-size:14px;}
.hp-footer-col a:hover{color:#fff;text-decoration:underline;text-underline-offset:3px;}
.hp-footer-bottom{margin-top:26px;padding-top:18px;border-top:1px solid rgba(255,255,255,0.10);display:flex;flex-direction:column;gap:14px;align-items:flex-start;justify-content:space-between;}
@media(min-width:768px){.hp-footer-bottom{flex-direction:row;align-items:center;}}
.hp-footer-bottom p{margin:0;color:rgba(255,255,255,0.62);font-size:13px;}
.hp-footer-social{display:flex;gap:10px;}
.hp-social{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:10px;background:rgba(255,255,255,0.08);color:#fff;text-decoration:none;font-weight:800;}
.hp-social:hover{background:rgba(255,255,255,0.14);}

/* Cookie banner */
.hp-cookie{position:fixed;left:16px;bottom:16px;z-index:2147483001;max-width:min(360px, calc(100vw - 32px));}
.hp-cookie-card{background:#fff;color:#6b7280;border:1px solid rgba(107,114,128,0.3);border-radius:16px;box-shadow:0 18px 50px rgba(0,0,0,0.18);padding:16px;font-size:13px;line-height:1.4;}
.hp-cookie-head{display:flex;align-items:center;gap:10px;padding-bottom:6px;}
.hp-cookie-ico{width:22px;height:22px;display:block;}
.hp-cookie-head h2{margin:0;font-size:16px;color:#111827;}
.hp-cookie p{margin:0;color:#6b7280;}
.hp-cookie a{font-weight:600;color:#4f46e5;text-decoration:underline;text-underline-offset:2px;}
.hp-cookie-actions{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:12px;flex-wrap:wrap;}
.hp-cookie-link{font-size:12px;color:#6b7280;text-decoration:underline;text-underline-offset:2px;}
.hp-cookie-accept{background:#4f46e5;border:none;color:#fff;border-radius:10px;padding:8px 14px;font-weight:700;cursor:pointer;font-size:12px;}
.hp-cookie-accept:hover{filter:brightness(1.05);}
.hp-cookie-hide{opacity:0;transform:translateY(6px);transition:opacity 0.2s ease, transform 0.2s ease;}

/* Discount modal: mobile support */
.hp-discount-modal{position:fixed;inset:0;display:none;align-items:flex-end;justify-content:flex-end;padding:16px;z-index:2147482999;background:transparent !important;}
.hp-discount-modal.active{display:flex;}
.hp-discount-card{
  width:min(360px, 100%);
  background:linear-gradient(135deg, rgba(10,14,32,0.98), rgba(12,18,40,0.98));
  border-radius:16px;
  padding:14px 14px;
  color:#fff;
  box-shadow:0 18px 50px rgba(0,0,0,0.35);
  border:1px solid rgba(0,245,255,0.18);
}
.hp-discount-card h3{margin:0 0 6px;font-size:14px;letter-spacing:.02em;}
.hp-discount-card p{margin:0 0 10px;color:rgba(255,255,255,0.8);font-size:12px;line-height:1.35;}
.hp-discount-card .actions{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end;}
.hp-discount-card .close{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-weight:700;
  cursor:pointer;
  font-size:12px;
}
.hp-discount-card .go{
  background:linear-gradient(135deg, #233dff, #00d4ff);
  border:none;
  color:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-weight:800;
  cursor:pointer;
  font-size:12px;
}
@media (max-width:480px){
  .hp-discount-modal{padding:12px;}
  .hp-discount-card{width:min(320px, 100%);}
}

.hp-neural-canvas{position:fixed;inset:0;width:100%;height:100%;z-index:-2;pointer-events:none;opacity:0.55;}
body{background: radial-gradient(1200px 600px at 50% 20%, rgba(0,212,255,0.10), transparent 60%), linear-gradient(180deg,#050a30,#03061c 60%, #020316);}

/* CTA Herramientas (navbar) */
.hp-cta-tools{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(234,242,255,.98);
  background: radial-gradient(120px 60px at 30% 20%, rgba(0,245,255,.55), transparent 60%),
              linear-gradient(135deg, rgba(35,61,255,.85), rgba(0,212,255,.85));
  border: 1px solid rgba(0,245,255,.22);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.hp-cta-tools:hover{ filter: brightness(1.05); transform: translateY(-1px); }

.hp-soon{
  display:inline-block;
  margin-left:8px;
  padding:2px 8px;
  font-size:11px;
  font-weight:800;
  border-radius:999px;
  background: rgba(224,114,74,.18);
  border:1px solid rgba(224,114,74,.28);
  color: rgba(234,242,255,.92);
}

select, option{
  color: #0a0e20;
}
.hp-card select{
  color: rgba(234,242,255,.92);
  background: rgba(5,10,48,.85);
}
.hp-card option{ color:#0a0e20; }

/* Floating hub hardening */
.hp-float-hub, .floating-hub, .hub-container{
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 99999 !important;
  pointer-events: none;
}
.hp-float-hub *,.floating-hub *,.hub-container *{ pointer-events: auto; }

/* Tool cards: avoid oval clipping */
.tool-card, .ai-tool-card, .hp-tool, .tool-item{
  border-radius: 24px !important;
  overflow: hidden !important;
}

.hp-content-layer, main, header, nav, footer{position:relative; z-index:2;}

/* Disable salary banner (mobile overlap) */
.salary-banner{display:none!important;}
