:root{
  --bg:#03035A;
  --bg2:#03035A;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.55);
  --blue:#03035A;
  --orange:#FF7A00;
  --shadow: 0 20px 60px #0e0e15;
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  /* IMPORTANTE: Compensa la altura del header fijo al navegar */
  scroll-padding-top: 90px;
  min-height:100%;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  background-color: var(--bg2);
}
body{
  margin:0;
  font-family: "Rajdhani", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  color:var(--text);
  background: transparent;
  background-color: var(--bg2);
  min-height:100vh;
  overflow-x:hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Fondo fijo para evitar líneas blancas en móvil */
body::before{
  content:"";
  position:fixed;
  inset:-2px;
  z-index:-3;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(255,122,0,.12), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(66,120,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

/* Ambient canvas */
#ambient{
  position:fixed;
  inset:-2px;
  width:100%;
  height:100%;
  z-index:-2;
  opacity:1;
  transform: translateZ(0);
}

/* Scroll progress */
.scroll-progress{
  position:fixed;
  top: calc(74px + env(safe-area-inset-top));
  left:0;
  right:0;
  height:3px;
  z-index:60;
  background:rgba(255,255,255,.06);
}
.scroll-progress span{
  display:block;
  height:100%;
  width:0%;
  background:linear-gradient(90deg, rgba(255,122,0,.95), rgba(110,160,255,.95));
}

/* Vertical Follow Hint */
.ps-follow{
  position:fixed;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  z-index:50;
  display:grid;
  grid-template-columns: 24px 2px auto;
  align-items:center;
  gap:12px;
}
.ps-follow__text{
  width:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  letter-spacing:2px;
  font-size:11px;
  color:rgba(255,255,255,.75);
  transform:rotate(-90deg);
  transform-origin:center center;
  white-space:nowrap;
}
.ps-follow__stack{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}
.ps-follow__link{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  box-shadow:0 10px 26px rgba(0,0,0,.25);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ps-follow__link:hover{
  transform:translateY(-2px) scale(1.05);
  border-color:#F1861E;
  box-shadow:0 16px 36px rgba(241,134,30,.35);
}
.ps-follow__line{
  width:2px;
  height:72px;
  background:linear-gradient(180deg, transparent, #F1861E, transparent);
}
@media (max-width:900px){
  .ps-follow{
    display:none;
  }
}

/* Header / Nav */
.header{
  position:sticky;
  top: 0;
  left:0;
  right:0;
  width:100%;
  z-index:50;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, #03035A, #03035A);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding-top: env(safe-area-inset-top);
  transform: translateZ(0);
}
.nav{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left: -30px;
}
.brand-mark{
  width:34px;
  height:34px;
  border-radius:12px;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.65), transparent 60%),
    linear-gradient(135deg, #F1861E, #03035A);
  box-shadow: 0 12px 30px rgba(255,122,0,.18);
  position:relative;
  overflow:hidden;
}
.brand-mark:after{
  content:"";
  position:absolute;
  inset:-60%;
  background:conic-gradient(from 180deg, transparent, rgba(255,255,255,.18), transparent);
  animation: spin 10s linear infinite;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-links a{
  color: var(--muted);
  font-weight:600;
  letter-spacing:.2px;
  font-size:16px;
  padding:10px 10px;
  border-radius:12px;
  transition: all .2s ease;
}
.nav-links a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}
.nav-platform{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  box-shadow:0 10px 26px rgba(0,0,0,.25);
  padding:0;
}
.nav-platform img{
  height:22px;
  width:auto;
  display:block;
}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  width:48px;
  height:48px;
  gap:6px;
  z-index:9999;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:0;
}
.nav-toggle span{
  display:block;
  width:28px;
  height:3px;
  background-color:#ffffff;
  border-radius:4px;
  transition:all 0.3s ease;
  opacity:1;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  letter-spacing:.2px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  gap:10px;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px) }
.btn:active{ transform: translateY(0px) }
.btn-sm{ padding:10px 14px; font-size:15px }

.btn-primary{
  border-color: rgba(255,122,0,.35);
  background: linear-gradient(135deg, #F1861E, #F1861E);
  box-shadow: 0 14px 30px rgba(255,122,0,.20);
  color:#140a00;
}
.btn-primary:hover{ box-shadow: 0 18px 40px rgba(255,122,0,.26) }

.btn-ghost{
  background: rgba(255,255,255,.05);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}

/* Hero */
.hero{
  padding: 72px 0 20px;
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:700;
  letter-spacing:.25px;
}
.kicker .dot{
  width:10px; height:10px;
  border-radius:99px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,122,0,.14);
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: .95;
  letter-spacing:-.6px;
}
.accent{
  background: linear-gradient(90deg, #F1861E, rgb(248, 249, 251));
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.lead{
  margin:0;
  font-size: 20px;
  line-height:1.25;
  color: var(--muted);
  max-width: 56ch;
}
.hero-cta{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* === Metrics & Cards Flip Logic === */
.hero-metrics{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  perspective: 1200px; /* 3D effect container */
}

/* Estilo base para Flip Cards (usado en metricas y seguridad) */
.metric-flip,
.sec-card.sec-flip {
  position: relative;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  cursor: pointer;
}

/* Metricas específicas */
.metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  min-height: 165px;
}

.metric-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.metric-flip:hover .metric-inner,
.metric-flip:focus .metric-inner {
  transform: rotateY(180deg);
}

.metric-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.metric-front {
  transform: rotateY(0deg);
}
.metric-back {
  transform: rotateY(180deg);
  background: rgba(5,5,32,0.8);
  border-radius: 18px; /* Mantener bordes redondeados al girar */
  text-align: center;
}

.metric-value {
  font-weight:800;
  font-size:18px;
  text-align: center;
}
.metric-sub {
  color: var(--muted2);
  font-weight:600;
  font-size: 14px;
  line-height:1.2;
}

/* Hero visual */
.hero-visual{
  position:relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-iso-wrap{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.ps-iso-material{
  position:relative;
  display:grid;
  place-items:center;
  transform:translateZ(0);
  isolation:isolate;
  border-radius:44px;
  overflow:hidden;
}
.ps-iso-material,
.hero-visual,
.hero-iso,
.hero-iso-wrap{
  border-radius:44px;
}
.hero-iso-edge{
  position:absolute;
  inset:-10px;
  border-radius:44px;
  -webkit-mask:url('../images/isotipo.svg') center / contain no-repeat;
  mask:url('../images/isotipo.svg') center / contain no-repeat;
  background:conic-gradient(from 0deg, transparent 0deg, #F1861E 40deg, transparent 85deg);
  filter:blur(6px);
  opacity:.7;
  animation:ps-edge-scan 9.5s linear infinite;
  pointer-events:none;
  z-index:0;
}
.hero-iso{
  position:relative;
  z-index:1;
  filter:drop-shadow(0 0 18px rgba(241,134,30,.25)) drop-shadow(0 0 52px rgba(241,134,30,.15));
  transition:filter .35s ease;
}
.ps-iso-material:hover .hero-iso{
  filter:drop-shadow(0 0 28px rgba(241,134,30,.38)) drop-shadow(0 0 84px rgba(241,134,30,.22)) brightness(1.04);
}
@keyframes ps-edge-scan{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce){
  .hero-iso-edge{
    animation:none !important;
  }
}

/* Sections */
.section{
  padding: 72px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{
  max-width: 78ch;
}
.section-head h2{
  margin:0;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing:-.4px;
  line-height:1.05;
}
.section-head p{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight:400;
  font-size: 18px;
  line-height:1.25;
}

/* === Marquee / Carrusel de palabras === */
.ps-marquee{
  --gap: clamp(30px, 5vw, 60px);
  overflow:hidden;
  display:flex;
  width:100%;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 16px 0;
}
.ps-marquee__track{
  display:flex;
  gap:var(--gap);
  padding-right:var(--gap);
  width:max-content;
  animation:psMarqueeScroll 40s linear infinite;
}
.ps-marquee__item{
  font-size:clamp(16px, 2.5vw, 22px);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.15em;
  color:rgba(255,255,255,.35);
}
.ps-marquee__item.is-accent{
  color:rgba(241,134,30,.7);
}
@keyframes psMarqueeScroll{
  100%{ transform:translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .ps-marquee__track{ animation:none; }
}

/* === Plataforma Rotor === */
.ps-platform-shell{
  width:100%;
}
.ps-platform-stage{
  position:relative;
  padding:clamp(8px, 1.5vw, 16px) 0;
  isolation:isolate;
}
.ps-platform-stage::before,
.ps-platform-stage::after{
  content:'';
  position:absolute;
  border-radius:999px;
  pointer-events:none;
  opacity:.5;
}
.ps-platform-stage::before{
  inset:-12% auto auto -8%;
  width:280px;
  height:280px;
  background:radial-gradient(circle, rgba(241,134,30,.16), transparent 68%);
}
.ps-platform-stage::after{
  inset:auto -10% -18% auto;
  width:320px;
  height:320px;
  background:radial-gradient(circle, rgba(37,99,235,.15), transparent 70%);
}
.ps-platform-stage__headline,
.ps-platform-stage__layout{
  position:relative;
  z-index:1;
}
.ps-platform-stage__headline{
  display:grid;
  grid-template-columns:minmax(0, 1fr);
  gap:clamp(22px, 2vw, 38px);
  align-items:start;
}
.ps-platform-stage__caption{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.ps-platform-eyebrow{
  margin:0;
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(255,255,255,.56);
}
.ps-platform-subcopy{
  margin:0;
  max-width:64ch;
  font-size:17px;
  line-height:1.7;
  color:rgba(255,255,255,.78);
}
.ps-platform-core-brief{
  padding:0;
}
.ps-platform-core-brief__label{
  margin:0 0 8px;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(241,134,30,.76);
}
.ps-platform-core-brief__title{
  margin:0;
  font-size:24px;
  line-height:1.15;
}
.ps-platform-core-brief__desc{
  margin:10px 0 0;
  font-size:15px;
  line-height:1.65;
  color:rgba(255,255,255,.7);
}
.ps-platform-stage__layout{
  margin-top:clamp(12px, 2vw, 20px);
  display:grid;
  grid-template-columns:minmax(320px, 520px) minmax(360px, 1fr);
  gap:clamp(20px, 2vw, 30px);
  align-items:center;
  justify-content:center;
}
.ps-platform-stage__wheel,
.ps-platform-stage__detail{
  min-width:0;
}
.ps-platform-wheel-wrap{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
}
.ps-platform-wheel{
  position:relative;
  width:min(520px, 100%);
  aspect-ratio:1 / 1;
  --orbit-radius: clamp(140px, 22vw, 210px);
}
.ps-platform-wheel__halo,
.ps-platform-wheel__ring{
  position:absolute;
  inset:0;
  border-radius:999px;
  pointer-events:none;
}
.ps-platform-wheel__halo{
  background:
    radial-gradient(circle at 50% 50%, rgba(37,99,235,.2), transparent 60%),
    radial-gradient(circle at 35% 40%, rgba(241,134,30,.12), transparent 62%);
  filter:blur(30px);
}
.ps-platform-wheel__ring{
  inset:10%;
  border:1px dashed rgba(255,255,255,.13);
}
.ps-platform-wheel__ring--inner{
  inset:26%;
  opacity:.45;
}
.ps-platform-wheel__center{
  position:absolute;
  inset:34%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:6px;
  text-align:center;
}
.ps-platform-wheel__center-kicker{
  font-size:13px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(241,134,30,.82);
}
.ps-platform-wheel__center-title{
  margin:0;
  font-size:clamp(20px, 3vw, 28px);
  font-weight:700;
  line-height:1.2;
}
.ps-platform-wheel__orbit{
  position:absolute;
  inset:0;
}
.ps-platform-wheel__node{
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border:none;
  background:transparent;
  padding:0;
  transform:
    translate(-50%, -50%)
    rotate(var(--node-angle))
    translateY(calc(-1 * var(--orbit-radius)));
  transform-origin:center center;
  cursor:pointer;
}
.ps-platform-wheel__node-core{
  position:absolute;
  top:-37px;
  left:-37px;
  width:74px;
  height:74px;
  display:block;
  transform-origin:center center;
}
.ps-platform-wheel__node-glow{
  position:absolute;
  inset:-6px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(241,134,30,.32), transparent 70%);
  filter:blur(10px);
  opacity:0;
  transition:opacity .25s ease;
}
.ps-platform-wheel__node-icon{
  position:relative;
  z-index:1;
  width:74px;
  height:74px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.01)),
    rgba(9,16,36,.35);
  backdrop-filter: blur(8px);
  box-shadow:0 14px 34px rgba(0,0,0,.28);
  transition:transform .28s ease, border-color .28s ease, background .28s ease;
}
.ps-platform-wheel__node-icon svg{
  width:30px;
  height:30px;
}
.ps-platform-wheel__node-label{
  position:relative;
  z-index:1;
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  max-width:120px;
  width:max-content;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
  font-size:11px;
  line-height:1.3;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(255,255,255,.72);
}
.ps-platform-wheel__node.is-active .ps-platform-wheel__node-glow{
  opacity:1;
}
.ps-platform-wheel__node.is-active .ps-platform-wheel__node-icon{
  transform:scale(1.12);
  border-color:rgba(241,134,30,.4);
  background:
    linear-gradient(180deg, rgba(241,134,30,.25), rgba(37,99,235,.12)),
    rgba(8,18,42,.5);
}
.ps-platform-wheel__node.is-active .ps-platform-wheel__node-label{
  border-color:rgba(241,134,30,.28);
  color:#fff;
}
.ps-platform-wheel__node.is-muted{
  opacity:.42;
}
.ps-platform-wheel__hint{
  margin:0;
  font-size:13px;
  color:rgba(255,255,255,.58);
  text-align:center;
}
.ps-platform-detail-card{
  position:relative;
  padding: 10px 0;
}
.ps-platform-detail-card__glow{
  position:absolute;
  inset:-10% 30% auto;
  height:180px;
  pointer-events:none;
  background:radial-gradient(circle, rgba(241,134,30,.2), transparent 72%);
  filter:blur(18px);
}
.ps-platform-detail-card__topbar,
.ps-platform-detail-card__hero,
.ps-platform-detail-card__signals,
.ps-platform-progress{
  position:relative;
  z-index:1;
}
.ps-platform-detail-card__topbar{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.ps-platform-detail-card__counter{
  display:inline-flex;
  align-items:baseline;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.025);
  font-size:13px;
  color:rgba(255,255,255,.55);
}
.ps-platform-detail-card__counter span:first-child{
  font-size:24px;
  font-weight:700;
  color:#fff;
}
.ps-platform-detail__status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(241,134,30,.84);
}
.ps-platform-detail__status-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#f1861e;
  box-shadow:0 0 12px rgba(241,134,30,.58);
  animation:psPlatformBlink 2.1s ease-in-out infinite;
}
.ps-platform-detail-card__hero{
  margin-top:26px;
  display:grid;
  grid-template-columns:74px minmax(0, 1fr);
  gap:18px;
  align-items:start;
}
.ps-platform-detail-card__icon{
  width:74px;
  height:74px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  border:1px solid rgba(241,134,30,.4);
  background:
    linear-gradient(180deg, rgba(241,134,30,.25), rgba(37,99,235,.12)),
    rgba(8,18,42,.5);
  backdrop-filter: blur(8px);
  box-shadow:0 18px 42px rgba(0,0,0,.28);
}
.ps-platform-detail-card__icon svg{
  width:30px;
  height:30px;
}
.ps-platform-detail-card__copy{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.ps-platform-detail-card__eyebrow{
  margin:0;
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(255,255,255,.42);
}
.ps-platform-detail-card__title{
  margin:0;
  font-size:clamp(30px, 3vw, 42px);
  line-height:1.02;
  color:#F1861E;
}
.ps-platform-detail-card__desc{
  margin:0;
  font-size:18px;
  line-height:1.72;
  color:rgba(255,255,255,.74);
}
.ps-platform-detail-card__signals{
  margin-top:26px;
  display:grid;
  gap:12px;
}
.ps-platform-detail-card__signal{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:8px 0;
  font-size:14px;
  line-height:1.55;
  color:rgba(255,255,255,.72);
}
.ps-platform-detail-card__signal-dot{
  width:8px;
  height:8px;
  margin-top:6px;
  border-radius:999px;
  background:linear-gradient(180deg, #f1861e, #2563eb);
}
.ps-platform-progress{
  margin-top:24px;
  width:100%;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  overflow:hidden;
}
.ps-platform-progress__bar{
  display:block;
  width:16%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, #f1861e, #2563eb);
  box-shadow:0 0 18px rgba(241,134,30,.32);
}
.ps-platform-stage__legend{
  margin-bottom:clamp(20px, 3vw, 32px);
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.ps-platform-legend__chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:none;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  color:rgba(255,255,255,.68);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.ps-platform-legend__chip-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.28);
}
.ps-platform-legend__chip.is-active{
  border-color:rgba(241,134,30,.28);
  color:#fff;
}
.ps-platform-legend__chip.is-active .ps-platform-legend__chip-dot{
  background:#f1861e;
  box-shadow:0 0 10px rgba(241,134,30,.45);
}
.ps-platform-stage__empty{
  margin:0;
  font-size:16px;
  color:rgba(255,255,255,.72);
}
@media (max-width: 1024px){
  .ps-platform-stage__headline,
  .ps-platform-stage__layout{
    grid-template-columns:1fr;
  }
}
@media (max-width: 640px){
  .ps-platform-stage{
    padding:12px 0;
  }
  .ps-platform-wheel{
    --orbit-radius: clamp(108px, 30vw, 150px);
  }
  .ps-platform-wheel__center{
    inset:32%;
  }
  .ps-platform-wheel__node-icon{
    width:62px;
    height:62px;
    border-radius:50%;
  }
  .ps-platform-wheel__node-core{
    width:62px;
    height:62px;
    top:-31px;
    left:-31px;
  }
  .ps-platform-wheel__node-label{
    max-width:96px;
    padding:7px 8px;
    font-size:10px;
  }
  .ps-platform-detail-card{
    padding:20px 0;
  }
  .ps-platform-detail-card__hero{
    grid-template-columns:1fr;
  }
}
@keyframes psPlatformBlink{
  0%, 100%{ opacity:.4; }
  50%{ opacity:1; }
}

/* === Honeycomb / Panal === */
.ps-honey{
  width: min(1100px, 95vw);
  margin: 40px auto 0;
  display:flex;
  justify-content:center;
}
.ps-honey__wrap{
  display: contents;
}

.hex-container{
  /* Ajuste responsivo del tamaño de los hexágonos (ligeramente más grandes en desktop) */
  --hex-w: clamp(84px, 20vw, 124px);
  --hex-h: calc(var(--hex-w) * 1.10);
  --hex-gap: clamp(8px, 2vw, 12px);
  --hex-overlap: calc(var(--hex-h) * 0.22);

  display:flex;
  flex-direction:column;
  align-items:center;
  padding:26px 0;
  position: relative;
  isolation: isolate;
}

/* Hexágonos visibles por defecto; GSAP anima desde valores iniciales */
.hex-container .hex { opacity: 1; transform: none; transform-origin: center center; }

.hex-container::before{
  content:"";
  position:absolute;
  inset:-40px -60px;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(320px 260px at 50% 55%, rgba(56,189,248,.10), transparent 65%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.030) 0 1px, transparent 1px 18px);
  opacity:.28;
  filter: blur(.1px);
  -webkit-mask-image: radial-gradient(closest-side, rgba(0,0,0,1), rgba(0,0,0,.0));
          mask-image: radial-gradient(closest-side, rgba(0,0,0,1), rgba(0,0,0,.0));
}

.hex-row{
  display:flex;
  justify-content:center;
  margin-bottom: calc(var(--hex-overlap) * -1);
}
.hex-row > .hex{
  margin: 0 calc(var(--hex-gap) * 0.5);
}

.hex{
  width: var(--hex-w);
  height: var(--hex-h);
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);

  /* Tech glass: keep same shape, add depth + subtle grid reflections */
  background:
    radial-gradient(140px 120px at 35% 30%, rgba(255,255,255,.07), transparent 55%),
    radial-gradient(180px 140px at 70% 75%, rgba(56,189,248,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.020));

  border:1px solid rgba(255,255,255,.11);
  box-shadow:
    0 18px 44px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -10px 24px rgba(0,0,0,.18);

  transition:transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  transform: translateZ(0);
}

.hex::before{
  content:"";
  position:absolute;
  inset:2px;
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  border:1px solid rgba(255,255,255,.13);
  opacity:.70;
  pointer-events:none;
}

.hex::after{
  content:"";
  position:absolute;
  inset:-1px;
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  pointer-events:none;
  background:
    conic-gradient(from 220deg,
      rgba(56,189,248,.00),
      rgba(56,189,248,.22),
      rgba(255,122,0,.16),
      rgba(56,189,248,.00)
    );
  opacity:.40;
  filter: blur(.2px);
  mix-blend-mode: screen;
}

.hex-core{
  background:
    radial-gradient(160px 140px at 35% 30%, rgba(255,255,255,.12), transparent 58%),
    linear-gradient(180deg, #F1861E, #F1861E);
  border-color: rgba(255,122,0,.45);
  box-shadow:
    0 22px 56px rgba(0,0,0,.26),
    0 0 0 1px rgba(255,122,0,.38),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.hex-core::after{
  opacity:.55;
  filter: hue-rotate(-18deg) saturate(1.15);
  animation: psHexSheen 10s linear infinite;
}
.hex-core:hover,
.hex-core:focus-visible{
  background:
    radial-gradient(160px 140px at 35% 30%, rgba(255,255,255,.10), transparent 58%),
    linear-gradient(180deg, rgba(3,3,90,.95), rgba(40,60,160,.80));
  border-color: rgba(80,110,220,.55);
  filter:
    drop-shadow(0 0 26px rgba(40,80,220,.45))
    drop-shadow(0 0 16px rgba(90,130,255,.28));
  box-shadow:
    0 26px 64px rgba(0,0,0,.32),
    0 0 0 1px rgba(80,110,220,.40),
    inset 0 1px 0 rgba(255,255,255,.18);
}

  .hex-wrapper:hover .hex, .hex-wrapper:focus-within .hex{
    transform:translateY(-4px) scale(1.06);
    z-index:10;

    /* Tech Cyan Glow (Estilo cristal tecnológico, sin pelota naranja) */
    filter:
      drop-shadow(0 0 22px rgba(56,189,248,.35))
      drop-shadow(0 0 14px rgba(56,189,248,.20));

    border-color: rgba(56,189,248,.5);

    background:
      linear-gradient(180deg, rgba(56,189,248,.15), rgba(56,189,248,.02));

    box-shadow:
      0 24px 60px rgba(0,0,0,.30),
      0 0 0 1px rgba(56,189,248,.4),
      inset 0 1px 0 rgba(255,255,255,.25);

    outline:none;
  }

  .hex-wrapper:hover .hex::after, .hex-wrapper:focus-within .hex::after {
    opacity: 0; /* Se elimina el círculo giratorio del fondo */
    animation: none;
  }
/* Acento central */
/* Acento central — DEFAULT NARANJO PeopleSync */
.hex-row.middle .hex-wrapper:nth-child(2) .hex{
  background:
    radial-gradient(160px 140px at 35% 30%, rgba(255,255,255,.12), transparent 58%),
    linear-gradient(180deg, #F1861E, #F1861E);
  border-color: rgba(255,122,0,.45);
  box-shadow:
    0 22px 56px rgba(0,0,0,.26),
    0 0 0 1px rgba(255,122,0,.38),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* Acento central — HOVER AZUL PeopleSync (corporativo) */
.hex-row.middle .hex-wrapper:nth-child(2):hover .hex,
.hex-row.middle .hex-wrapper:nth-child(2):focus-within .hex{
  background:
    radial-gradient(160px 140px at 35% 30%, rgba(255,255,255,.10), transparent 58%),
    linear-gradient(180deg, rgba(3,3,90,.95), rgba(40,60,160,.80));

  border-color: rgba(80,110,220,.55);

  filter:
    drop-shadow(0 0 26px rgba(40,80,220,.45))
    drop-shadow(0 0 16px rgba(90,130,255,.28));

  box-shadow:
    0 26px 64px rgba(0,0,0,.32),
    0 0 0 1px rgba(80,110,220,.40),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.hex-inner{ display:flex; flex-direction:column; align-items:center; justify-content:center; padding:14px; width:100%; }
.hex-ico{ color:rgba(255,255,255,.92); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease; }
.hex-ico svg{ width:32px; height:32px; }

/* Nuevo efecto: Icono resalta, gira y brilla */
.hex-wrapper:hover .hex .hex-ico {
  transform: scale(1.25) rotate(15deg);
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.9));
  color: #fff;
}

.hex-label{
  position:absolute !important;
  width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap;
}
.hex-plus{ font-size:46px; line-height:1; font-weight:800; color:rgba(255,255,255,.95); }

/* Panel lateral del panal */
.ps-honey__panel{
  padding: 10px 0;
  max-width: 560px;
  min-height: auto;
  position:relative;
}

.ps-honey__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:rgba(255,255,255,.78);
  font-weight:600;
  font-size:13px;
  margin-bottom:14px;
}
.ps-honey__dot{ width:8px; height:8px; border-radius:999px; background:#3aa3ff; box-shadow:0 0 0 4px rgba(70,150,255,.14); }
.ps-honey__title{
  margin:0 0 10px;
  font-size: clamp(18px, 2.6vw, 30px); /* más pequeño y más balanceado */
  font-weight:800;
  line-height:1.08;
  color:rgba(255,255,255,.94);
}
.ps-honey__desc{ margin:0 0 18px; color:rgba(255,255,255,.72); font-size:15px; line-height:1.75; font-weight:300; max-width:70ch; }

.ps-honey__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  background: linear-gradient(135deg, #F1861E, #F1861E);
  color:#140a00;
  font-weight:900;
  text-decoration:none;
  letter-spacing:.2px;
  box-shadow:
    0 14px 34px rgba(255,122,0,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
  border:1px solid rgba(255,122,0,.55);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.ps-honey__cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.05) saturate(1.05);
  box-shadow:
    0 18px 44px rgba(255,122,0,.45),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.ps-honey__cta:active{
  transform: translateY(0);
  filter: brightness(.98);
  box-shadow:
    0 10px 24px rgba(255,122,0,.30),
    inset 0 2px 6px rgba(0,0,0,.25);
}

.ps-honey__content.is-fade{ opacity:0; transform:translateY(8px); transition:all .16s ease; }
.ps-honey__content.is-show{ opacity:1; transform:translateY(0); transition:all .16s ease; }

/* Tooltip disabled (we use the right panel only) */
.ps-tooltip{ display:none !important; }

/* === Panal tradicional: cards emergen desde cada hex al hover === */
.ps-honey--honeycomb{
  width: min(100%, 1000px);
  margin: 40px auto 0;
  padding: 0 20px;
}
.ps-honey--honeycomb .ps-honey__honeycomb{
  position: relative;
  width: 100%;
  min-height: 650px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 40px;
  overflow: visible;
}
/* Fondo constelación para panal */
.ps-honey--honeycomb .ps-honey__constellation{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(56,189,248,.4), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,.2), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(56,189,248,.3), transparent),
    radial-gradient(2px 2px at 30% 80%, rgba(255,255,255,.25), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(56,189,248,.35), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%;
  opacity: 0.5;
  animation: psConstellation 20s linear infinite;
}
.ps-honey--honeycomb .hex-container{
  position: relative;
  z-index: 2;
  width: min(360px, 70vw);
  margin: 0 auto;
}
.ps-honey--honeycomb .hex-wrapper{
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}
.ps-honey--honeycomb .hex-wrapper.is-muted .hex{
  opacity: .35;
  filter: blur(1px);
}
.ps-honey--honeycomb .hex-wrapper.is-active .hex{
  filter:
    drop-shadow(0 0 24px rgba(56,189,248,0.35))
    drop-shadow(0 0 12px rgba(56,189,248,0.2));
}

/* Efecto Focus: Difuminar cards no seleccionadas (30%) */
.ps-honey--honeycomb .hex-container:hover .hex-wrapper:not(:hover) .hex {
  filter: blur(2px) !important;
  opacity: 1;
  /* Evita que herede transformaciones del hover del wrapper si las hubiera */
  transform: scale(1) translateY(0) !important;
}
.ps-honey--honeycomb .hex-row > .hex-wrapper{
  margin: 0 calc(var(--hex-gap) * 0.5);
}

.ps-honey--honeycomb .ps-honey__grid{
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 360px) minmax(240px, 1fr);
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 50px) 20px;
  position: relative;
}
.ps-honey__column{
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.8vw, 34px);
  position: relative;
  z-index: 2;
}
.ps-honey__column--left{
  align-items: flex-end;
  text-align: right;
}
.ps-honey__column--right{
  align-items: flex-start;
  text-align: left;
}
.ps-honey__cluster{
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-top: clamp(40px, 7vw, 90px);
}
.ps-honey__core-card{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -110%);
  z-index: 3;
  pointer-events: none;
  display: flex;
  justify-content: center;
  width: 100%;
}
.ps-honey__card-plate--core{
  pointer-events: auto;
  max-width: clamp(260px, 32vw, 320px);
  margin: 0 auto;
}
.ps-honey__card-plate{
  position: relative;
  isolation: isolate;
  z-index: 2;
  cursor: grab;
  touch-action: none;
}
.ps-honey__card-plate.is-dragging,
.ps-honey__card-plate:active{
  cursor: grabbing;
}
.ps-honey__card-shell{
  padding: 10px 0;
  max-width: 320px;
  transition: transform 0.28s ease;
  position: relative;
  overflow: visible;
}
.ps-honey__plate-title{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #ffffff;
}
.ps-honey__plate-desc{
  position: absolute;
  top: 50%;
  transform: translate(0, -50%) scale(0.95);
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  line-height: 1.5;
  background: linear-gradient(135deg, rgba(4,9,32,0.96), rgba(5,23,66,0.96));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 38px rgba(0,0,0,0.55);
  padding: 12px 14px;
  border-radius: 14px;
  min-width: 190px;
  max-width: clamp(190px, 25vw, 240px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 5;
}
.ps-honey__card-plate--left .ps-honey__plate-desc{
  right: calc(100% + 14px);
  text-align: right;
  transform-origin: center right;
  transform: translate(-8px, -50%) scale(0.95);
}
.ps-honey__card-plate--right .ps-honey__plate-desc{
  left: calc(100% + 14px);
  text-align: left;
  transform-origin: center left;
  transform: translate(8px, -50%) scale(0.95);
}
.ps-honey__card-plate--core .ps-honey__plate-desc{
  left: 50%;
  top: calc(100% + 12px);
  transform-origin: top center;
  transform: translate(-50%, -6px) scale(0.95);
}
.ps-honey__card-plate:hover .ps-honey__plate-desc,
.ps-honey__card-plate:focus-within .ps-honey__plate-desc{
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%) scale(1);
}
.ps-honey__card-plate--left:hover .ps-honey__plate-desc,
.ps-honey__card-plate--left:focus-within .ps-honey__plate-desc{
  transform: translate(0, -50%) scale(1);
}
.ps-honey__card-plate--right:hover .ps-honey__plate-desc,
.ps-honey__card-plate--right:focus-within .ps-honey__plate-desc{
  transform: translate(0, -50%) scale(1);
}
.ps-honey__card-plate--core:hover .ps-honey__plate-desc,
.ps-honey__card-plate--core:focus-within .ps-honey__plate-desc{
  transform: translate(-50%, 0) scale(1);
}
.ps-honey__card-plate.is-muted{
  opacity: .32;
  filter: blur(.6px);
}
.ps-honey__card-plate.is-muted .ps-honey__card-shell{
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.ps-honey__mobile-cards{
  display: none;
  width: 100%;
  margin-top: 18px;
  flex-direction: column;
  gap: 18px;
}
.ps-honey__mobile-card{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
}
.ps-honey__mobile-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(56,189,248,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #38bdf8;
}
.ps-honey__mobile-icon svg{
  width: 32px;
  height: 32px;
}
.ps-honey__mobile-icon--core{
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}
.ps-honey__mobile-icon--core span{
  line-height: 1;
}
.ps-honey__mobile-content{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ps-honey__mobile-title{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.ps-honey__mobile-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

.ps-honey__connectors{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ps-honey__connector-line{
  fill: none;
  stroke: rgba(56,189,248,0.7);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(56,189,248,0.35));
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.ps-honey__connector-dot{
  fill: rgba(56,189,248,0.95);
  filter: drop-shadow(0 0 6px rgba(56,189,248,0.65));
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.ps-honey__connector-line.is-muted,
.ps-honey__connector-dot.is-muted{
  opacity: .3;
  filter: blur(.4px);
}
.ps-honey__connector-line.is-active{
  stroke: rgba(255,255,255,0.9);
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.55));
}
.ps-honey__connector-dot.is-active{
  fill: #fff;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.65));
  opacity: 1;
}
.ps-honey__card-plate:hover .ps-honey__card-shell{
  transform: translateX(4px);
}

@media (min-width: 1024px){
  .ps-honey__connectors{
    display: none;
  }
}

@media (max-width: 1023px){
  .ps-honey{
    width: 100%;
    display: block;
    margin: 28px auto 0;
  }
  .ps-honey--honeycomb{
    display: none;
  }
  .ps-honey--honeycomb .ps-honey__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ps-honey__column{
    align-items: stretch;
    text-align: left;
    width: 100%;
  }
  .ps-honey__column--left,
  .ps-honey__column--right{
    align-items: stretch;
    text-align: left;
    order: 2;
  }
  .ps-honey__column--right{
    order: 3;
  }
  .ps-honey__cluster{
    min-height: auto;
    padding-top: 10px;
    order: 1;
  }
  .ps-honey__core-card{
    position: static;
    transform: none;
    margin-bottom: 20px;
  }
  .ps-honey__connectors{
    display: none;
  }
  .ps-honey__plate-desc{
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 6px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    pointer-events: auto;
  }
  .ps-honey--honeycomb .hex-container{
    width: min(420px, 92vw);
  }
  .ps-honey__card-plate{
    width: 100%;
  }
  .ps-honey__card-shell{
    width: 100%;
    max-width: none;
  }
  .ps-honey__mobile-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  .ps-honey__mobile-card{
    flex-direction: row;
    align-items: center;
    padding: 18px 20px;
  }
  .ps-honey__mobile-icon{
    width: 52px;
    height: 52px;
  }
  .ps-honey__mobile-title{
    font-size: 17px;
  }
  .ps-honey__mobile-desc{
    font-size: 13px;
    color: rgba(255,255,255,0.78);
  }
}

@media (max-width: 640px){
  .ps-honey__mobile-cards{
    grid-template-columns: 1fr;
  }
  .ps-honey__mobile-card{
    flex-direction: column;
    align-items: flex-start;
  }
  .ps-honey__mobile-icon{
    margin-bottom: 6px;
  }
  .ps-honey__mobile-title{
    font-size: 18px;
  }
  .ps-honey__mobile-desc{
    font-size: 14px;
  }
}

.ps-honey--honeycomb .ps-honey__card-emerged{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
  transform-origin: center center;
  white-space: nowrap;
}
.hex-wrapper:hover .ps-honey__card-emerged,
.ps-honey__card-emerged:hover {
  z-index: 500;
}
/* Posicionamiento de cards según referencia del panal: alineadas verticalmente a izquierda y derecha */
/* Cards de la izquierda: todas alineadas verticalmente, línea + card hacia la izquierda */
.ps-honey--honeycomb .hex-row.top .hex-wrapper:nth-child(1) .ps-honey__card-emerged,
.ps-honey--honeycomb .hex-row.middle .hex-wrapper:nth-child(1) .ps-honey__card-emerged,
.ps-honey--honeycomb .hex-row.bottom .hex-wrapper:nth-child(1) .ps-honey__card-emerged{
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(calc(-100% - 50px));
  flex-direction: row-reverse;
  align-items: left;
  width: auto;
}
/* Cards de la derecha: todas alineadas verticalmente, línea + card más a la derecha */
.ps-honey--honeycomb .hex-row.top .hex-wrapper:nth-child(2) .ps-honey__card-emerged,
.ps-honey--honeycomb .hex-row.middle .hex-wrapper:nth-child(3) .ps-honey__card-emerged,
.ps-honey--honeycomb .hex-row.bottom .hex-wrapper:nth-child(2) .ps-honey__card-emerged{
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(calc(100% + 50px));
  flex-direction: row;
  align-items: left;
  width: auto;
}
.ps-honey--honeycomb .ps-honey__card-line{
  width: clamp(60px, 12vw, 90px);
  height: 3px;
  color: rgba(255,255,255,.5);
  opacity: 1;
  flex-shrink: 0;
}
.ps-honey--honeycomb .ps-honey__card-line line{
  stroke-dasharray: 8 5;
  stroke-dashoffset: 0;
}
.ps-honey--honeycomb .ps-honey__card{
  width: clamp(240px, 38vw, 280px);
  padding: 10px 0;
  color: #fff;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.ps-honey--honeycomb .hex-wrapper:hover .ps-honey__card{
  transform: translateY(-3px);
}

/* === EFECTO TECH: Grid + Escáner en Hover === */
.ps-honey--honeycomb .ps-honey__card > * {
  position: relative;
  z-index: 5;
}
.ps-honey--honeycomb .ps-honey__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background-image: 
    linear-gradient(rgba(56,189,248,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.ps-honey--honeycomb .ps-honey__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(56,189,248,0.15) 40%, rgba(56,189,248,0.4) 50%, rgba(56,189,248,0.15) 60%, transparent 100%);
  background-size: 100% 200%;
  background-position: 0% -100%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}
.hex-wrapper:hover .ps-honey__card::before { opacity: 1; }
.hex-wrapper:hover .ps-honey__card::after { opacity: 1; animation: psTechScan 2s linear infinite; }
@keyframes psTechScan { 0% { background-position: 0% -100%; } 100% { background-position: 0% 200%; } }

/* === Infográfica tipo referencia: hex central + 6 items (hex + línea punteada + card) === */
.ps-honey--infographic{
  width: min(100%, 1000px);
  margin: 40px auto 0;
  padding: 0 20px;
}
.ps-honey--infographic .ps-honey__infographic{
  position: relative;
  width: 100%;
  min-height: 620px;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0;
  overflow: visible;
}
/* Fondo tipo constelación con puntos brillantes y líneas */
.ps-honey--infographic .ps-honey__constellation{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(56,189,248,.4), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,.2), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(56,189,248,.3), transparent),
    radial-gradient(2px 2px at 30% 80%, rgba(255,255,255,.25), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(56,189,248,.35), transparent),
    radial-gradient(1px 1px at 10% 50%, rgba(255,255,255,.2), transparent),
    radial-gradient(2px 2px at 70% 10%, rgba(56,189,248,.3), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%, 0% 50%, 100% 50%;
  opacity: 0.6;
  animation: psConstellation 20s linear infinite;
}
@keyframes psConstellation{
  0%, 100% { background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%, 0% 50%, 100% 50%; }
  50% { background-position: 100% 100%, 0% 100%, 50% 0%, 100% 0%, 0% 0%, 50% 100%, 100% 50%, 0% 50%; }
}
/* Partículas orbitando alrededor del hex central */
.ps-honey--infographic .ps-honey__particles{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(140px, 25vw, 180px);
  height: clamp(140px, 25vw, 180px);
  z-index: 1;
  pointer-events: none;
}
.ps-honey--infographic .ps-honey__particle{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(56,189,248,.6);
  box-shadow: 0 0 6px rgba(56,189,248,.8);
  transform: translate(-50%, -50%) rotate(var(--particle-angle)) translateX(calc(clamp(70px, 12.5vw, 90px)));
  opacity: 0;
  animation: psParticleFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--particle-index) * 0.15s);
}
@keyframes psParticleFloat{
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--particle-angle)) translateX(calc(clamp(70px, 12.5vw, 90px))) scale(0.8); }
  50% { opacity: 1; transform: translate(-50%, -50%) rotate(calc(var(--particle-angle) + 180deg)) translateX(calc(clamp(70px, 12.5vw, 90px) + 10px)) scale(1.2); }
}
.ps-honey--infographic .ps-honey__center-hex{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.ps-honey--infographic .ps-honey__center-hex::before{
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.3) 0%, rgba(56,189,248,.1) 40%, transparent 70%);
  filter: blur(20px);
  animation: psCenterGlow 3s ease-in-out infinite alternate;
  z-index: -1;
}
.ps-honey--infographic .ps-honey__center-hex .hex{
  width: clamp(90px, 16vw, 120px);
  height: clamp(100px, 17.6vw, 132px);
  filter: drop-shadow(0 0 20px rgba(56,189,248,.6)) drop-shadow(0 0 40px rgba(56,189,248,.3));
  position: relative;
}
.ps-honey--infographic .ps-honey__center-hex .hex::after{
  content: '';
  position: absolute;
  inset: -2px;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(56,189,248,.2));
  z-index: -1;
  filter: blur(8px);
  opacity: 0.8;
}
@keyframes psCenterGlow{
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}
.ps-honey--infographic .ps-honey__item{
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 50%;
  z-index: 1;
  pointer-events: none;
}
.ps-honey--infographic .ps-honey__item > * {
  pointer-events: auto;
}
.ps-honey--infographic .ps-honey__item{
  --radius-start: clamp(110px, 18vw, 150px);
  --radius-end: clamp(260px, 45vw, 360px);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--radius-start));
}
.ps-honey--infographic .ps-honey__item-content{
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  transform: rotate(var(--text-angle));
}
.ps-honey--infographic .ps-honey__item.is-left .ps-honey__item-content{
  flex-direction: row-reverse;
  text-align: right;
}
.ps-honey--infographic .ps-honey__hex-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ps-honey--infographic .ps-honey__hex-wrap .hex{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  clip-path: none;
  border: none;
  background: radial-gradient(circle, rgba(56,189,248,0.95), rgba(56,189,248,0.1));
  box-shadow: 0 0 12px rgba(56,189,248,.7);
}
.ps-honey--infographic .ps-honey__arm-label{
  display: inline-flex;
  padding: 10px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #02174b, #042d8c);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 10px 26px rgba(2,8,32,.55);
}
.ps-honey--infographic .ps-honey__line{
  flex: 1;
  min-width: 60px;
  max-width: 160px;
  height: 3px;
  color: rgba(123,146,255,.8);
  margin: 0 4px;
  opacity: 0.9;
  overflow: visible;
  filter: drop-shadow(0 0 3px rgba(42,89,255,.35));
}
.ps-honey--infographic .ps-honey__line line{
  stroke-dasharray: 12 6;
  stroke-dashoffset: 160;
  transition: opacity 0.2s ease, stroke 0.2s ease;
  stroke: currentColor;
}
.ps-honey--infographic .ps-honey__item:hover .ps-honey__line line{
  stroke: rgba(73,110,255,1);
  filter: drop-shadow(0 0 4px rgba(70,110,255,.6));
}
.ps-honey--infographic .ps-honey__card{
  flex: 0 0 auto;
  width: clamp(200px, 35vw, 260px);
  padding: 10px 0;
  color: #ffffff;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.ps-honey--infographic .ps-honey__card::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left 0.5s ease;
}
.ps-honey--infographic .ps-honey__item:hover .ps-honey__card::before{
  left: 100%;
}
.ps-honey--infographic .ps-honey__item:hover .ps-honey__card{
  transform: translateY(-4px) scale(1.02);
}
.ps-honey--infographic .ps-honey__card-desc{
  margin: 0;
  font-size: clamp(12px, 1.6vw, 14px);
  line-height: 1.5;
  color: rgba(255,255,255,.75);
  font-weight: 400;
  opacity: 0.95;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ps-honey--infographic .ps-honey__item:hover .ps-honey__card-desc,
.ps-honey--infographic .ps-honey__item:focus-within .ps-honey__card-desc{
  opacity: 1;
  transform: translateY(-2px);
}
.ps-honey--infographic .ps-honey__item:hover .ps-honey__line{
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(70,110,255,.35));
}
.ps-honey__card-title{
  margin: 0 0 8px;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.3px;
}

/* Tooltip style specifically for Honeycomb */
.ps-honey--honeycomb .ps-honey__card-desc {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(3, 3, 90, 0.98), rgba(3, 3, 90, 0.95));
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  z-index: 50;
  
  /* Hidden state tooltip */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Reset expanding props */
  max-height: none;
  overflow: visible;
  margin-top: 10px;
  white-space: normal;
}

/* Flecha superior para el Tooltip del Panal */
.ps-honey--honeycomb .ps-honey__card-desc::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: #03035a;
  border-top: 1px solid rgba(255,255,255,.15);
  border-left: 1px solid rgba(255,255,255,.15);
  transform: rotate(45deg);
}

/* Hover trigger for Honeycomb Tooltip */
.hex-wrapper:hover .ps-honey__card-desc,
.ps-honey__card-emerged:hover .ps-honey__card-desc {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: none;
}

/* Posicionamiento específico para la card central */
.ps-honey--honeycomb .hex-row.middle .hex-wrapper:nth-child(2) .ps-honey__card-emerged {
  top: auto;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-160px);
  flex-direction: column;
  width: auto;
  z-index: 150;
}
.ps-honey--honeycomb .hex-row.middle .hex-wrapper:nth-child(2) .ps-honey__card {
  text-align: center;
  min-width: 220px;
}
/* Tooltip a la izquierda para la card central */
.ps-honey--honeycomb .hex-row.middle .hex-wrapper:nth-child(2) .ps-honey__card-desc {
  top: 0;
  left: auto;
  right: 100%;
  margin-top: 0;
  margin-right: 15px;
  transform: translateX(-10px);
}
/* Flecha del tooltip apuntando a la derecha (hacia la card) */
.ps-honey--honeycomb .hex-row.middle .hex-wrapper:nth-child(2) .ps-honey__card-desc::before {
  top: 18px;
  left: auto;
  right: -6px;
  border-top: 1px solid rgba(255,255,255,.15);
  border-right: 1px solid rgba(255,255,255,.15);
  border-left: none;
  border-bottom: none;
  background: #03035a;
}
/* Hover trigger específico para corregir la animación */
.ps-honey--honeycomb .hex-row.middle .hex-wrapper:nth-child(2):hover .ps-honey__card-desc,
.ps-honey--honeycomb .hex-row.middle .hex-wrapper:nth-child(2) .ps-honey__card-emerged:hover .ps-honey__card-desc {
  transform: translateX(0);
}

.ps-honey__foot{
  margin: 32px 0 0;
  text-align: center;
}
.ps-honey__foot .ps-honey__cta{
  margin: 0;
}

/* Estado inicial para animación GSAP (infográfica) */
.ps-honey__infographic .ps-honey__center-hex .hex{ opacity: 0; transform: scale(0.5); transform-origin: center center; }
.ps-honey__infographic .ps-honey__item{ opacity: 0; }
.ps-honey__infographic .ps-honey__item .hex{ opacity: 0; transform: scale(0.6); transform-origin: center center; }

/* Desktop: Panel LEFT, Panal (hex) RIGHT (solo layout anterior con .ps-honey__wrap) */
.ps-honey__wrap{
  /* Más separación horizontal entre panel y panal */
  grid-template-columns: minmax(420px, 760px) 1.0fr;
  grid-auto-flow: column;
  gap: 72px;
}

.ps-honey__panel{ 
  grid-column: 1; 
  justify-self: end;

  /* Panel más desplazado hacia la izquierda */
  margin-right: 160px;
}

.hex-container{ 
  grid-column: 1;
  transform: scale(1.076);
  transform-origin: center center;
  margin: 0 auto;
}

/* Custom / Two Col */
.two-col{
  margin-top: 24px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:start;
}
.stack{ display:flex; flex-direction:column; gap: 12px }
.feature{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 16px 16px;
}
.feature h3{ margin:0; font-size:22px }
.feature p{ margin: 8px 0 0; color: var(--muted); font-weight:650; line-height:1.2 }

.dev-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
}
.dev-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding-bottom: 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.dev-title{ font-weight:900; font-size:18px }
.dev-badge{
  font-weight:900;
  font-size:13px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,122,0,.30);
  background: rgba(255,122,0,.12);
  color: rgba(255,205,160,.95);
}
.tag-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.tag{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-weight:850;
  color: rgba(240,245,255,.90);
  position: relative;
  cursor: pointer;
}
/* Tooltip for Tags */
.tag::after{
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  max-width: 320px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #F1861E;
  border: 1px solid #F1861E;
  box-shadow: 0 18px 48px rgba(241,134,30,.22), 0 18px 48px rgba(0,0,0,.35);
  color: #ffffff;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .2px;
  line-height: 1.25;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 40;
}
.tag::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #F1861E;
  border-left: 1px solid #F1861E;
  border-top: 1px solid #F1861E;
  rotate: 225deg;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 41;
}
.tag:hover::after,
.tag:focus::after,
.tag:hover::before,
.tag:focus::before{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.tag:hover,
.tag:focus{
  border-color: rgba(241,134,30,.55);
  box-shadow: 0 10px 26px rgba(241,134,30,.18);
}
@media (max-width: 720px){
  .tag::after{
    left: 0;
    bottom: calc(100% + 8px);
    transform: translateX(0) translateY(6px);
    width: min(320px, 75vw);
  }
  .tag::before{
    left: 18px;
    transform: translateX(0);
  }
}
.dev-foot{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Security Grid */
.grid-4{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  perspective: 1200px;
}

.sec-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,.20);
  min-height: 220px;
  display:flex;
  flex-direction:column;
}

.sec-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .75s cubic-bezier(.2,.7,.2,1);
}

.sec-flip:hover .sec-inner, .sec-flip:focus .sec-inner{
  transform: rotateY(180deg);
}

.sec-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

.sec-front{
  align-items: flex-start;
  justify-content: flex-start;
  transform: rotateY(0deg);
}
.sec-back{
  transform: rotateY(180deg);
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(5,5,32,0.9);
  border-radius: var(--radius);
  padding: 10px;
}

.sec-iso{
  display:block;
  width: 46px; height: 46px;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}
.sec-card h3{ margin:0; font-size:20px }
.sec-card p{ margin: 8px 0 0; color: var(--muted); font-weight:650; line-height:1.2 }

/* === Tarjetas de Consultoría con efecto Spotlight 3D === */
.consult-grid {
  perspective: 1200px;
}
.consult-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  padding: 24px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.consult-card:before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: radial-gradient(350px circle at var(--x, 50%) var(--y, 50%), rgba(255,122,0,.2), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.consult-card:hover {
  transform: rotateX(5deg) rotateY(-5deg) scale(1.05);
  box-shadow: 0 24px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(255,122,0,.4);
}
.consult-card:hover:before {
  opacity: 1;
}
.consult-iso-wrap {
  position: relative;
  margin-bottom: 12px;
}
.consult-iso {
  display: block;
  width: 46px; height: 46px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
  transition: filter .3s ease;
}
.consult-card:hover .consult-iso {
  filter: drop-shadow(0 8px 20px rgba(255,122,0,.3));
}
.consult-card h3 { margin: 0; font-size: 20px; }
.consult-card p { margin: 8px 0 0; color: var(--muted); font-weight: 400; line-height: 1.3; }

/* Process Steps */
.steps{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.step{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 16px;
  position:relative;
  overflow:hidden;
}
.step-n{
  font-weight:900;
  color: rgba(255,122,0,.95);
  letter-spacing:.5px;
  font-size:14px;
}
.step-b h3{ margin: 10px 0 0; font-size:20px }
.step-b p{ margin: 8px 0 0; color: var(--muted); font-weight:650; line-height:1.2 }

.quote{
  margin-top: 18px;
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: 18px;
}
.quote p{ margin:0; font-weight:800; font-size:18px; line-height:1.2 }
.quote-by{ margin-top:10px; color: var(--muted2); font-weight:800 }

/* Contact */
.contact-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 14px;
}
.form{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom: 10px }
label{ font-weight:900; color: rgba(240,245,255,.92) }
input, select, textarea{
  font-family: inherit; font-size: 16px; padding: 12px 12px;
  border-radius: 14px; border:1px solid rgba(255,255,255,.12);
  background: rgba(5,5,32,.35); color: rgba(255,255,255,.92); outline:none;
}
input::placeholder, textarea::placeholder{ color: rgba(255,255,255,.45) }
input:focus, select:focus, textarea:focus{
  border-color: rgba(255,122,0,.35);
  box-shadow: 0 0 0 6px rgba(255,122,0,.10);
}
.form-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 6px }
.form-note{ margin: 12px 0 0; color: var(--muted2); font-weight:650; line-height:1.2 }
.contact-side{ display:flex; flex-direction:column; gap: 12px }
.side-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 16px;
}
.side-title{ font-weight:900; font-size:18px }
.side-list{ margin: 10px 0 0; padding-left: 18px; color: rgba(255,255,255,.84); font-weight:650 }
.side-list li{ margin: 6px 0 }
.side-lines{ margin-top: 10px; display:flex; flex-direction:column; gap:8px; font-weight:800; color: rgba(255,255,255,.84) }
.muted{ color: var(--muted2) }
.side-cta{ margin-top: 12px }
.ps-recaptcha{
  margin:14px 0 8px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.ps-recaptcha__hint{
  margin:0;
  font-size:12px;
  color:rgba(255,255,255,.65);
}
@media (max-width:560px){
  .ps-recaptcha{
    transform:scale(.92);
    transform-origin:left top;
  }
}
.ps-privacy{
  margin:10px 0 6px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.ps-privacy__label{
  display:flex;
  gap:10px;
  align-items:flex-start;
  cursor:pointer;
  user-select:none;
}
.ps-privacy__label input{
  margin-top:3px;
  accent-color:#F1861E;
}
.ps-privacy__label span{
  font-size:13px;
  color:rgba(255,255,255,.82);
  line-height:1.3;
}
.ps-privacy__link{
  color:#F1861E;
  text-decoration:none;
  font-weight:700;
}
.ps-privacy__link:hover{
  text-decoration:underline;
}
.ps-privacy__hint{
  margin:0;
  font-size:12px;
  color:rgba(255,255,255,.6);
}
.form .btn[disabled],
.form .btn:disabled{
  opacity:.45;
  cursor:not-allowed;
  pointer-events:none;
  filter:saturate(.7);
  transform:none !important;
  box-shadow:none !important;
}

.ps-footerClean{
  background:#fff;
  color:#03035A;
  margin-bottom:0;
}
.ps-footerClean__topLine{
  height:10px;
  background:#f59e0b;
}
.ps-footerClean__wrap{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr .8fr auto;
  gap:20px;
  padding:12px 0 6px;
  align-items:flex-start;
}
.ps-footerClean__brand{
  position:relative;
  align-self:flex-start;
  padding-top:0;
}
.ps-footerClean__logo{
  position:absolute;
  top:-45px;
  left:0;
  display:flex;
  align-items:center;
}
.ps-footerClean__logo img{
  height:240px;
  width:auto;
  max-width:480px;
  display:block;
}
.ps-footerClean__title{
  margin:0 0 6px;
  font-size:14px;
  font-weight:800;
  color:#03035A;
}
.ps-footerClean__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:6px;
}
.ps-footerClean__list a{
  color:rgba(11,15,46,.78);
  text-decoration:none;
}
.ps-footerClean__list a:hover{
  color:#03035A;
  text-decoration:underline;
}
.ps-footerClean__list--meta li{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(11,15,46,.78);
}
.ps-footerClean__ico{
  color:rgba(11,15,46,.9);
  display:inline-flex;
}
.ps-footerClean__social{
  display:flex;
  gap:10px;
}
.ps-footerClean__socialLink{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  border:1px solid rgba(11,15,46,.12);
  color:rgba(11,15,46,.9);
  transition:transform .18s ease,border-color .18s ease;
}
.ps-footerClean__socialLink:hover{
  transform:translateY(-1px);
  border-color:rgba(245,158,11,.7);
}
.ps-footerClean__actions{
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  padding-top:2px;
}
.ps-footerClean__top{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:14px;
  border:1px solid rgba(11,15,46,.12);
  background:#fff;
  color:#03035A;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow:0 6px 16px rgba(11,15,46,.06);
}
.ps-footerClean__top:hover{
  transform:translateY(-1px);
  border-color:rgba(245,158,11,.55);
  box-shadow:0 10px 22px rgba(11,15,46,.10);
}
.ps-footerClean__top:active{
  transform:translateY(0);
}
.ps-footerClean__top:focus-visible{
  outline:3px solid rgba(245,158,11,.35);
  outline-offset:3px;
}
.ps-footerClean__topIco{
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(245,158,11,.16);
  color:#03035A;
  font-size:16px;
  line-height:1;
  flex:0 0 auto;
}
.ps-footerClean__topTxt{
  font-size:13px;
  white-space:nowrap;
}
.ps-footerClean__bottom{
  border-top:1px solid rgba(245,158,11,.55);
  padding:6px 0;
  font-size:12px;
  color:rgba(11,15,46,.65);
  text-align:left;
}
@media (max-width:1100px){
  .ps-footerClean__wrap{
    grid-template-columns:1fr 1fr;
    gap:22px;
  }
  .ps-footerClean__actions{
    justify-content:flex-start;
    padding-top:0;
  }
  .ps-footerClean__logo{
    margin-top:0;
    transform:none;
    position:relative;
  }
}
@media (max-width:900px){
  .ps-footerClean__wrap{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:8px;
    padding-bottom:30px;
  }
  .ps-footerClean__brand{
    align-self:center;
    width:100%;
    display:flex;
    justify-content:center;
    margin-bottom:10px;
  }
  .ps-footerClean__logo img{
    height:180px;
    max-width:100%;
    object-fit:contain;
  }
  .ps-footerClean__list--meta li{
    justify-content:center;
    margin-bottom:4px;
  }
  .ps-footerClean__actions{
    width:100%;
    justify-content:center;
    margin-top:10px;
  }
}

/* Cookie banner */
.ps-cookie{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:10000;
  display:none;
}
.ps-cookie__card{
  max-width:980px;
  margin:0 auto;
  border-radius:18px;
  overflow:hidden;
  background:#03035A;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 22px 60px rgba(0,0,0,.45);
  backdrop-filter:blur(10px);
  color:rgba(255,255,255,.92);
}
.ps-cookie__row{
  display:flex;
  gap:16px;
  align-items:flex-start;
  justify-content:space-between;
  padding:16px 16px 14px;
}
.ps-cookie__left{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.ps-cookie__ico{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  box-shadow:0 10px 26px rgba(0,0,0,.25);
}
.ps-cookie__title{
  margin:0 0 4px;
  font-weight:1000;
  font-size:16px;
  letter-spacing:.2px;
}
.ps-cookie__text{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.35;
  max-width:640px;
}
.ps-cookie__link{
  color:#F1861E;
  text-decoration:none;
  font-weight:900;
}
.ps-cookie__link:hover{
  text-decoration:underline;
}
.ps-cookie__actions{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
}
.ps-cookie__btn{
  border-radius:14px;
  padding:10px 14px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.14);
  background:transparent;
  color:rgba(255,255,255,.88);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.ps-cookie__btn:hover{
  transform:translateY(-1px);
  border-color:rgba(241,134,30,.55);
}
.ps-cookie__btn--primary{
  background:#F1861E;
  border-color:rgba(241,134,30,.70);
  color:#03035A;
  box-shadow:0 10px 24px rgba(241,134,30,.18);
}
.ps-cookie__btn--ghost{
  background:rgba(255,255,255,.06);
}
.ps-cookie__bar{
  border-top:1px solid rgba(255,255,255,.10);
  padding:10px 16px 12px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}
.ps-cookie__meta{
  margin:0;
  color:rgba(255,255,255,.62);
  font-size:12px;
  line-height:1.25;
}
.ps-cookie__close{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.85);
  transition:transform .18s ease, border-color .18s ease;
}
.ps-cookie__close:hover{
  transform:translateY(-1px);
  border-color:rgba(241,134,30,.55);
}
@media (max-width:720px){
  .ps-cookie__row{
    flex-direction:column;
    align-items:stretch;
  }
  .ps-cookie__actions{
    justify-content:flex-start;
    flex-wrap:wrap;
  }
  .ps-cookie{
    left:12px;
    right:12px;
    bottom:12px;
  }
}

/* Reveal Animation */
.reveal{ opacity:0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease }
.reveal.is-visible{ opacity:1; transform: translateY(0) }

/* Brand Sizing */
.brand-logo{ display:none; width:auto; object-fit:contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,.35)) }
.brand-wordmark{ height:300px; max-width:320px; transform: translateY(8px) }
.brand-isotipo{ height:36px; width:36px; transform: translateY(1px) }
@media (max-width: 980px){
  .brand{ margin-left:-16px }
  .brand .brand-isotipo{ display:block !important }
  .brand .brand-wordmark{ display:none !important }
}
@media (min-width: 981px){
  .brand .brand-wordmark{ display:block !important }
  .brand .brand-isotipo{ display:none !important }
}

/* 3D Iso Animation */
.iso-3d{
  height: 480px; width: 480px; display:block;
  transform-style: preserve-3d; will-change: transform, filter;
  filter: drop-shadow(0 10px 24px #03035A) drop-shadow(0 0 18px rgba(255,122,0,.22));
  animation: isoFloat3d 4.8s ease-in-out infinite;
}
@keyframes isoFloat3d{
  0%{ transform: perspective(900px) rotateX(8deg) rotateY(-18deg) translateY(0px) }
  50%{ transform: perspective(900px) rotateX(-10deg) rotateY(18deg) translateY(6px) }
  100%{ transform: perspective(900px) rotateX(8deg) rotateY(-18deg) translateY(0px) }
}
@media (prefers-reduced-motion: reduce){ .iso-3d{ animation: none } }
@keyframes spin { to { transform: rotate(360deg) } }

/* === MEDIA QUERIES === */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ min-height: 400px; }
  .iso-3d{ width: 320px; height: 320px; }
  .hero-metrics{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  
  /* Ajuste Honeycomb Tablet */
  .ps-honey__wrap{ grid-template-columns:1fr; gap:58px; }
  .ps-honey__panel{ padding:22px; }
}

@media (max-width: 720px){
  /* Mobile Nav */
  .nav-toggle{ display:flex }
  .nav-links{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: #03035A;
    flex-direction: column;
    padding: 90px 30px;
    gap: 25px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    box-shadow: -10px 0 40px rgba(0,0,0,0.7);
    height: 100vh;
    overflow-y: auto;
  }
  .nav-links.is-open{
    transform: translateX(0);
    display: flex;
  }
  .nav-links a{
    font-size: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 15px;
    width: 100%;
    text-align: left;
    color: #fff;
    font-weight: 500;
  }

  /* Mobile Layout */
  .container{ width: min(var(--container), calc(100% - 28px)); }
  .section{ padding: 46px 0; }
  .hero{ padding: 44px 0 10px; }
  h1{ line-height: 1.02; letter-spacing: -.3px; }
  .lead{ font-size: 17px; max-width: 44ch; }
  .hero-visual{ min-height: 280px; }
  .iso-3d{ width: 240px; height: 240px; }
  .hero-cta .btn{ width: 100%; }

  /* Grids Mobile */
  .grid-4{ grid-template-columns: 1fr; }
  .tag-grid{ grid-template-columns: 1fr; }
  .tag{ justify-content: center; }
  .form-row{ grid-template-columns: 1fr }
  .steps{ grid-template-columns: 1fr }

  /* === Honeycomb Mobile === */
  .hex-container{
    padding: 12px 0;
    --hex-w: 92px;
  }
  .ps-honey__wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ps-honey__panel{ text-align:right; order: 2; }
  .ps-honey__kicker{ justify-content:center }
  .ps-tooltip{ display:none !important } /* No tooltip en móvil */

  /* Infográfica: más compacta en móvil */
  .ps-honey--infographic .ps-honey__infographic{ aspect-ratio: 1; max-width: 100%; }
  .ps-honey--infographic .ps-honey__item{ width: 48%; }
  .ps-honey--infographic .ps-honey__card{ width: min(140px, 38vw); padding: 10px 12px; }
  .ps-honey__card-desc{ -webkit-line-clamp: 2; }
}
@keyframes psHexSheen{
  0%{ transform: rotate(0deg) }
  100%{ transform: rotate(360deg) }
}
.ps-introNext{
  margin-top:.8rem;
  font-size:.85rem;
  opacity:.65;
}
.ps-introTrust{
  margin:1.2rem 0;
  font-size:.9rem;
  opacity:.8;
}
.ps-editorial p {
  margin-bottom:1rem;
  line-height:1.55;
}

.ps-editorial ul {
  margin:1rem 0 1.5rem 1.2rem;
}

.ps-editorial li {
  margin:.4rem 0;
}
.ps-introLogo{
  width:120px;
  opacity:.45;
}

#ambient{
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity:.99;
  pointer-events: none; /* 🔴 CLAVE */
}
.btn-primary {
    background: #ff7a00;
    border: none;
}

.btn-primary:hover {
    background: #e66900;
}

.card {
    background: #ffffff;
}
.ps-introWrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.ps-introCentered {
    width: 100%;
    max-width: 860px;
}

.ps-introCard {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.ps-introHead h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.ps-introMeta {
    color: #040404;
    margin-bottom: 30px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ps-introCard {
        padding: 35px 20px;
    }
}
