/* Bluveo — Design System */

:root{
  --paper: #f6f3ed;
  --paper-2: #ece8de;
  --ink: #1a1a1a;
  --ink-2: #4a4a4a;
  --ink-3: #8a8a86;
  --line: #2a2a2a;
  --blu: #0057FF;
  --blu-soft: #cfe0ff;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;
  --text-base: 16px;
}

.wf{
  width:100%;
  height:100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--text-base);
  line-height: 1.6;
  overflow: hidden;
  position: relative;
  letter-spacing: -0.005em;
}

.wf::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events:none;
  z-index:0;
}

.wf-inner{ position:relative; z-index:1; }

.box{
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
}
.box-dashed{
  border: 1px dashed var(--line);
  border-radius: 10px;
}
.box-fill{
  background: var(--paper-2);
}
.box-blu{
  border-color: var(--blu);
  color: var(--blu);
}
.box-blu-fill{
  background: var(--blu);
  color: white;
  border-color: var(--blu);
}

.h-hand{
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}
.label{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 500;
}
.note{
  font-family: var(--mono);
  color: var(--blu);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.02em;
}

.hatch{
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 6px,
    rgba(0,0,0,0.08) 6px 7px
  );
}
.hatch-blu{
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 6px,
    rgba(0,87,255,0.18) 6px 7px
  );
}

.squig{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6'><path d='M0 3 Q 7.5 0, 15 3 T 30 3 T 45 3 T 60 3' fill='none' stroke='%230057FF' stroke-width='1.5'/></svg>");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 60px 6px;
  padding-bottom: 6px;
}

.orb{
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95) 0%, rgba(207,224,255,0.7) 18%, var(--blu) 55%, #002a99 100%);
  box-shadow:
    0 0 80px rgba(0,87,255,0.45),
    0 0 160px rgba(0,87,255,0.25),
    inset -10px -16px 40px rgba(0,20,80,0.4);
  position: relative;
}
.orb::after{
  content:"";
  position:absolute;
  inset: -25%;
  border: 1.5px dashed var(--ink-3);
  border-radius: 50%;
  opacity: 0.35;
  pointer-events:none;
}
.orb-bare{ }
.orb-bare::after{ display:none; }

.annot{
  position: absolute;
  font-family: var(--mono);
  font-style: italic;
  color: var(--blu);
  font-size: 11px;
  line-height: 1.4;
  max-width: 180px;
  z-index: 3;
  letter-spacing: 0.01em;
}
.annot svg{ display:block; }

.row{ display:flex; }
.col{ display:flex; flex-direction:column; }
.stack{ display:flex; flex-direction:column; gap:8px; }

.wf-nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 32px;
  border-bottom: 1px dashed var(--line);
}

.wf-sect{
  padding: 56px 48px;
  border-top: 1px dashed rgba(0,0,0,0.18);
  position: relative;
}
.wf-sect:first-of-type{ border-top:none; }

.display{
  font-family: var(--display);
  font-weight: 700;
  font-size: 82px;
  line-height: 0.94;
  letter-spacing: -0.035em;
}
.display-sm{
  font-family: var(--display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.wa{
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-2);
  z-index: 4;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 18px 38px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  transition: opacity .2s ease, transform .2s ease;
}
.btn:hover { opacity: 0.88; }
.btn-primary{
  background: var(--blu);
  color: white;
  border-color: var(--blu);
}
.btn-sm{
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
}

.ph{
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  text-align:center;
  padding: 8px;
}

.nav-link{
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: color .2s ease;
}
.nav-link:hover{ color: var(--ink); }
.nav-link.active{ color: var(--ink); padding-bottom:2px;}

/* ============================================================ */
/* Process timeline                                              */
/* ============================================================ */
.process-section{
  padding: 80px 48px 140px;
  position: relative;
}
.process-header{ margin-bottom: 80px; }

.process-timeline{
  position: relative;
  padding-left: 80px;
  max-width: 1100px;
}

.process-line{
  position: absolute;
  left: 29px;
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.process-line-active{
  position: absolute;
  left: 29px;
  top: 50px;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(77,144,255,0.0) 0%,
    rgba(77,144,255,0.9) 30%,
    rgba(77,144,255,1) 100%);
  transition: height .7s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 0 16px rgba(77,144,255,0.6);
  border-radius: 2px;
  z-index: 1;
}

.process-step{
  position: relative;
  min-height: 52vh;
  padding: 30px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0.32;
  transform: translateY(8px) scale(0.985);
  transition:
    opacity .65s cubic-bezier(.2,.7,.3,1),
    transform .65s cubic-bezier(.2,.7,.3,1);
}
.process-step.active{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-dot{
  position: absolute;
  left: -59px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  z-index: 2;
}
.process-dot .dot-inner{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0d0d12;
  border: 2px solid rgba(255,255,255,0.25);
  transition: all .55s cubic-bezier(.2,.7,.3,1);
  display: block;
}
.process-step.active .process-dot .dot-inner{
  background: var(--blu);
  border-color: var(--blu);
  box-shadow: 0 0 18px var(--blu), 0 0 0 7px rgba(77,144,255,0.16);
  transform: scale(1.15);
}
.process-step.passed .process-dot .dot-inner{
  background: var(--blu);
  border-color: var(--blu);
  opacity: 0.85;
}
.process-dot .dot-pulse{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--blu);
  opacity: 0;
  pointer-events: none;
}
.process-step.active .process-dot .dot-pulse{
  animation: dotPulse 1.9s cubic-bezier(.2,.7,.3,1) infinite;
}
@keyframes dotPulse {
  0%   { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0;   }
}

.process-step-content{
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
  max-width: 1020px;
}
.process-step-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}
/* Imagen de cada paso */
.process-step-img {
  flex: 0 0 560px;
  width: 560px;
  height: 380px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity .7s cubic-bezier(.2,.7,.3,1),
    transform .7s cubic-bezier(.2,.7,.3,1);
  flex-shrink: 0;
}
.process-step.active .process-step-img {
  opacity: 1;
  transform: translateX(0);
}
.process-step.passed .process-step-img {
  opacity: 0.3;
}
.process-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-step-num{
  color: rgba(255,255,255,0.4);
  transition: color .55s ease;
}
.process-step.active .process-step-num{
  color: var(--blu);
}
.process-step-title{
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 42px;
  line-height: 1;
  color: rgba(236,236,234,0.55);
  transition: color .55s ease, font-size .55s ease;
}
.process-step.active .process-step-title{
  color: #ececea;
  font-size: 52px;
}
.process-step-desc{
  font-family: var(--body);
  font-size: 18.5px;
  line-height: 1.6;
  color: rgba(236,236,234,0.6);
  max-width: 580px;
  transition: color .55s ease;
}
.process-step.active .process-step-desc{
  color: rgba(236,236,234,0.85);
}

/* ============================================================ */
/* Schedule page                                                 */
/* ============================================================ */
.schedule-page{
  min-height: 100vh;
  background: #09090b;
  color: #ececea;
  position: relative;
  overflow: hidden;
  animation: schedIn .6s cubic-bezier(.2,.7,.3,1);
}
@keyframes schedIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.schedule-page::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(77,144,255,0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(77,144,255,0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.schedule-nav{
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.schedule-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: #ececea;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.schedule-back:hover{
  background: rgba(255,255,255,0.08);
  transform: translateX(-2px);
}

.schedule-content{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.schedule-intro h1{
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.95;
  margin: 16px 0 28px;
  color: #ececea;
}
.schedule-intro p{
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(236,236,234,0.72);
  max-width: 500px;
  margin: 0 0 36px;
}
.schedule-includes{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.schedule-includes li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--body);
  font-size: 15px;
  color: rgba(236,236,234,0.85);
  line-height: 1.5;
}
.schedule-includes li::before{
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(77,144,255,0.15);
  border: 1px solid rgba(77,144,255,0.4);
  color: var(--blu);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  margin-top: 1px;
}

.schedule-form-card{
  background: rgba(20,20,26,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 100px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.schedule-form-card h2{
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  color: #ececea;
  margin: 0 0 20px;
}
.schedule-wa-alt{
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(236,236,234,0.55);
  text-align: center;
}
.schedule-wa-alt a{
  color: #9cc0ff;
  text-decoration: none;
}
.schedule-wa-alt a:hover{ opacity: 0.8; }

/* ============================================================ */
/* Case studies                                                  */
/* ============================================================ */
.cs-tabs{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border-radius:999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.cs-tab{
  position: relative;
  z-index: 2;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  cursor: pointer;
  transition: color .25s ease;
  white-space: nowrap;
  background: transparent;
  border: none;
}
.cs-tab.active{ color: var(--ink); }
.cs-tab .count{
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.55;
  margin-left: 4px;
}
.cs-tab-indicator{
  position: absolute;
  z-index: 1;
  top: 4px;
  bottom: 4px;
  background: rgba(77,144,255,0.18);
  border: 1px solid rgba(77,144,255,0.5);
  border-radius: 999px;
  transition: left .35s cubic-bezier(.5,0,.2,1), width .35s cubic-bezier(.5,0,.2,1);
  pointer-events: none;
}

.cs-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cs-card{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
  cursor: pointer;
  transition:
    opacity .35s ease,
    transform .35s cubic-bezier(.2,.7,.3,1),
    border-color .25s ease,
    box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.cs-card:hover{
  transform: translateY(-3px);
  border-color: rgba(77,144,255,0.5);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(77,144,255,0.25);
}
.cs-card.dim{
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

.cs-carousel{
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0a0a10;
  border-bottom: 1px solid var(--line);
}
.cs-slides{
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform .55s cubic-bezier(.5,0,.2,1);
}
.cs-slide{
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(236,236,234,0.5);
  position: relative;
  overflow: hidden;
}
.cs-slide .grad{
  position: absolute;
  inset: 0;
}
.cs-slide .grad::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 60%);
}
.cs-slide .ph-label{
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  background: rgba(0,0,0,0.45);
  border-radius: 6px;
  letter-spacing: 0.06em;
}

.cs-dots{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.cs-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: width .3s ease, background .3s ease;
  border: 0;
  padding: 0;
  cursor: pointer;
  /* Expand touch target to 44x44 without changing visual size */
  position: relative;
}
.cs-dot::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
}
.cs-dot.active{
  width: 18px;
  border-radius: 999px;
  background: white;
}

.cs-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity .25s ease, background .25s ease;
}
.cs-card:hover .cs-arrow,
.cs-modal .cs-arrow{ opacity: 1; }
.cs-arrow:hover{ background: rgba(0,0,0,0.8); }
.cs-arrow.prev{ left: 10px; }
.cs-arrow.next{ right: 10px; }

.cs-meta{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 18px;
}
.cs-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cs-name{
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.cs-time{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blu);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cs-time::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blu);
  box-shadow: 0 0 8px var(--blu);
}
.cs-desc{
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}
.cs-link{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--blu);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity .2s ease;
}
.cs-link:hover{ opacity: 0.75; }

.cs-card .placeholder-flag{
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 4px;
  z-index: 4;
  backdrop-filter: blur(6px);
}

.cs-modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(5,5,10,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.cs-modal-backdrop.open{ opacity: 1; pointer-events: auto; }

.cs-modal{
  width: 100%;
  max-width: 1100px;
  max-height: calc(100vh - 80px);
  background: #0d0d12;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.96) translateY(12px);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(77,144,255,0.08);
}
.cs-modal-backdrop.open .cs-modal{
  transform: scale(1) translateY(0);
}
.cs-modal-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.cs-modal-head .left{
  display:flex; align-items:center; gap:12px;
}
.cs-close{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #ececea;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.cs-close:hover{ background: rgba(255,255,255,0.16); }

.cs-modal-body{
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.cs-preview-pane{
  position: relative;
  background: #08080c;
  border-right: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  min-height: 460px;
}
.cs-info-pane{
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}
.cs-info-pane h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin: 0;
  color: #ececea;
  line-height: 1.05;
}
.cs-metrics{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cs-metric{
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
}
.cs-metric .v{
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: #9cc0ff;
  line-height: 1;
  margin-bottom: 6px;
}
.cs-metric .k{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(236,236,234,0.55);
}

.tl-dot{
  width: 22px; height: 22px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--mono); font-size: 10px;
}
.tl-dot.filled{ background: var(--blu); border-color: var(--blu); color:white; }

.metric-num{
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--blu);
}

.chip{
  display:inline-flex; align-items:center; gap:6px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-2);
}

.lang{
  display:inline-flex; gap:4px;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-2);
}
.lang b{ color: var(--ink); }

/* ============================================================ */
/* DARK MODE                                                     */
/* ============================================================ */
.wf.dark{
  --paper: #09090b;
  --paper-2: #15151a;
  --ink: #ececea;
  --ink-2: #a8a8a4;
  --ink-3: #7a7a76;  /* was #5a5a58 — raised to 4.6:1 contrast ratio */
  --line: #2a2a2e;
  --blu: #4D90FF;
  --blu-soft: #1e3a7a;
}
.wf.dark::before{
  background-image:
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
}
.wf.dark .box-fill{ background: var(--paper-2); }
.wf.dark .hatch{
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 6px,
    rgba(255,255,255,0.06) 6px 7px
  );
}
.wf.dark .ph{
  background: var(--paper-2);
  border-color: var(--line);
  color: var(--ink-3);
}
.wf.dark .btn-primary{
  background: var(--blu);
  color: #06122a;
  border-color: var(--blu);
}
.wf.dark .squig{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6'><path d='M0 3 Q 7.5 0, 15 3 T 30 3 T 45 3 T 60 3' fill='none' stroke='%234D90FF' stroke-width='1.5'/></svg>");
}
.wf.dark .annot{ color: #9cc0ff; }
.wf.dark .wa{
  background: var(--paper-2);
  border-color: var(--line);
  color: var(--ink-2);
}

/* ============================================================ */
/* ORB                                                           */
/* ============================================================ */
@keyframes orb-breathe {
  0%, 100% { transform: scale(1) translateZ(0); }
  50%       { transform: scale(1.04) translateZ(0); }
}
@keyframes orb-glow-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1) translateZ(0); }
  50%       { opacity: 1;    transform: scale(1.12) translateZ(0); }
}
@keyframes orb-shimmer {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes orb-hilite {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.9; }
  50%      { transform: translate(6%, 4%) scale(1.1); opacity: 1; }
}
@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbit-rotate-reverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}

.orb.live{
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%,
      rgba(255,255,255,1) 0%,
      rgba(220,235,255,0.95) 8%,
      rgba(156,192,255,0.85) 22%,
      rgba(77,144,255,0.9) 45%,
      rgba(0,87,255,0.95) 70%,
      #001a55 100%);
  box-shadow:
    0 0 70px 15px rgba(77,144,255,0.5),
    0 0 160px 40px rgba(77,144,255,0.3),
    0 0 280px 70px rgba(0,87,255,0.2),
    inset -10px -16px 40px rgba(0,20,80,0.5);
  will-change: transform;
  animation: orb-breathe 4.5s ease-in-out infinite;
}
.orb.live::after{ display:none; }

/* Separate ambient glow layer — animates opacity only (compositor-only) */
.orb.live > .orb-glow {
  position: absolute;
  inset: -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,144,255,0.55) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  will-change: opacity, transform;
  animation: orb-glow-pulse 4.5s ease-in-out infinite;
}

.orb.live.calm{ animation: orb-breathe 7s ease-in-out infinite; }
.orb.live.calm > .orb-glow { animation-duration: 7s; }
.orb.live.active{ animation: orb-breathe 2.2s ease-in-out infinite; }
.orb.live.active > .orb-sheen{ animation-duration: 6s; }
.orb.live.active > .orb-hl{ animation-duration: 2.4s; }
.orb.live.active > .orb-glow { animation-duration: 2.2s; }
.orb.live.reactive{ animation: orb-breathe 6s ease-in-out infinite; transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.orb.live.interactive{ cursor: pointer; }

@keyframes orb-click-pulse {
  0%   { transform: scale(1) translateZ(0);    filter: brightness(1) saturate(1); }
  18%  { transform: scale(1.14) translateZ(0); filter: brightness(1.6) saturate(1.3); }
  100% { transform: scale(1) translateZ(0);    filter: brightness(1) saturate(1); }
}
.orb.live.clicked{
  animation: orb-click-pulse 1.1s cubic-bezier(.2,.7,.3,1) !important;
}

@keyframes orb-shockwave {
  0%   { transform: translate(-50%,-50%) scale(0.4); opacity: 0.85; }
  100% { transform: translate(-50%,-50%) scale(3.2);  opacity: 0; }
}
.orb-shock{
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(156,192,255,0.7);
  pointer-events: none;
  animation: orb-shockwave 1.2s cubic-bezier(.2,.6,.2,1) forwards;
  z-index: 0;
}

.orb.live > .orb-hl{
  position:absolute;
  top:14%; left:22%;
  width: 28%; height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0) 70%);
  filter: blur(2px);
  animation: orb-hilite 5s ease-in-out infinite;
  pointer-events:none;
}

.orb.live > .orb-sheen{
  position:absolute; inset:0;
  border-radius:50%;
  background:
    conic-gradient(from 0deg,
      rgba(255,255,255,0) 0deg,
      rgba(156,192,255,0.25) 60deg,
      rgba(255,255,255,0) 140deg,
      rgba(207,224,255,0.18) 220deg,
      rgba(255,255,255,0) 320deg);
  mix-blend-mode: screen;
  animation: orb-shimmer 14s linear infinite;
  pointer-events:none;
}

.orb-rings{
  position:absolute;
  top:50%; left:50%;
  pointer-events:none;
  z-index: 0;
}
.orb-rings .ring{
  position:absolute;
  top:50%; left:50%;
  border-radius: 50%;
  border: 1px dashed rgba(156,192,255,0.35);
  animation: orbit-rotate 60s linear infinite;
}
.orb-rings .ring.rev{ animation: orbit-rotate-reverse 90s linear infinite; }

.orb-rings .dot{
  position:absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #cfe0ff;
  box-shadow: 0 0 12px #4D90FF, 0 0 24px #4D90FF;
  top:50%; left:50%;
  transform-origin: 0 0;
}

.wf.dark .wf-sect{ border-top-color: rgba(255,255,255,0.08); }
.wf.dark .nav-link{ color: var(--ink-2); }
.wf.dark .nav-link.active{ color: var(--ink); }

/* ============================================================ */
/* NAV DESKTOP — clases base (mobile las sobreescribe)          */
/* ============================================================ */
.nav-desk {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-ham {
  display: none;           /* oculto en desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5.5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-ham .hb {
  display: block;
  width: 18px; height: 1.5px;
  background: #ececea;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), opacity .2s ease;
}
/* Animación barras → X */
.nav-ham.is-open .hb:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-ham.is-open .hb:nth-child(2) { opacity: 0; }
.nav-ham.is-open .hb:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

/* ============================================================ */
/* MOBILE OVERLAY — base (hidden en desktop)                    */
/* ============================================================ */
.mob-overlay {
  display: none;           /* CSS activa sólo en mobile */
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(9,9,11,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s cubic-bezier(.2,.7,.3,1);
}
.mob-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mob-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
}
.mob-glow-a {
  right: -10%; top: 5%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(77,144,255,0.10) 0%, transparent 65%);
}
.mob-glow-b {
  left: -15%; bottom: 10%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(77,144,255,0.07) 0%, transparent 65%);
}

.mob-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 48px;
}

.mob-link {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 10vw, 62px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(236,236,234,0.92);
  text-decoration: none;
  padding: 8px 0;
  transform: translateX(-24px);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.7,.3,1),
              opacity .45s ease,
              color .2s ease;
}
.mob-overlay.open .mob-link {
  transform: translateX(0);
  opacity: 1;
}
.mob-link.active, .mob-link:hover { color: #9cc0ff; }

.mob-sep {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 28px 0 24px;
  opacity: 0;
  transition: opacity .4s ease .21s;
}
.mob-overlay.open .mob-sep { opacity: 1; }

.mob-cta {
  width: 100% !important;
  justify-content: center !important;
  font-size: 16px !important;
  padding: 16px 32px !important;
  opacity: 0;
  transform: translateX(-24px);
  transition: transform .45s cubic-bezier(.2,.7,.3,1),
              opacity .45s ease;
}
.mob-overlay.open .mob-cta {
  opacity: 1;
  transform: translateX(0);
}

.mob-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-24px);
  transition: transform .45s cubic-bezier(.2,.7,.3,1),
              opacity .45s ease;
}
.mob-overlay.open .mob-foot {
  opacity: 1;
  transform: translateX(0);
}
.mob-contact { font-size: 14px; color: rgba(236,236,234,0.6) !important; }

/* ============================================================ */
/* Responsive — tablet (≤900px)                                 */
/* ============================================================ */
@media (max-width: 900px) {
  .schedule-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 100px;
  }
  .schedule-form-card { position: static; padding: 28px; }
  .process-step-title { font-size: 32px !important; }
  .process-step.active .process-step-title { font-size: 38px !important; }
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .wf-sect { padding: 40px 24px; }
  .bluveo-hero, body .bluveo-hero {
    padding: 140px 24px 80px !important;
  }
}

/* ============================================================ */
/* Responsive — mobile (≤768px)                                 */
/* ============================================================ */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body, .wf, .wf-inner { overflow-x: hidden !important; }

  /* ── Nav pill: full width + space-between ────────────────── */
  body nav.bluveo-nav {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    transform: none !important;
    gap: 0 !important;
    padding: 9px 9px 9px 18px !important;
    justify-content: space-between !important;
    top: 14px !important;
  }
  .nav-desk { display: none !important; }
  .nav-ham  { display: flex !important; }
  .mob-overlay { display: flex; }  /* activar overlay en mobile */

  /* ── Hero ──────────────────────────────────────────────────── */
  /* Orbe: visible en esquina inferior derecha, interactivo */
  .hero-orb {
    right: -40px !important;
    top: auto !important;
    bottom: 30px !important;
    transform: none !important;
    opacity: 0.88;
    animation: none !important;
    cursor: pointer;
    z-index: 2 !important;
  }
  /* Hacer la esfera más grande en mobile */
  .hero-orb > div {
    width: min(300px, 76vw) !important;
  }
  /* Escalar las órbitas para que quepan y sean visibles */
  .hero-orb .orb-rings {
    transform: scale(0.28) !important;
    transform-origin: 0 0 !important;
  }

  body .bluveo-hero {
    padding: 110px 28px 160px !important;
    align-items: flex-start !important;
    overflow: hidden !important;
  }
  /* Hero copy: ancho completo */
  body .bluveo-hero > .bluveo-hero-copy {
    max-width: 100% !important;
    position: relative !important;
    z-index: 3 !important;
  }
  /* Subtítulo del hero */
  .hero-sub {
    max-width: 100% !important;
    font-size: 17px !important;
  }

  /* ── Botones en mobile: igual de grandes ────────────────────── */
  .btn { padding: 16px 30px; font-size: 16px; }
  .btn-sm { padding: 12px 22px; font-size: 14px; }

  /* ── Process step imagen: stack vertical ───────────────────── */
  .process-step-content {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: flex-start !important;
  }
  .process-step-text { max-width: 100%; }
  .process-step-img {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    height: 200px !important;
    transform: translateY(12px) !important;
    border-radius: 14px !important;
  }
  .process-step.active .process-step-img {
    transform: translateY(0) !important;
  }

  /* ── Process timeline ───────────────────────────────────── */
  .process-section  { padding: 60px 24px 100px; }
  .process-timeline { padding-left: 52px; max-width: 100%; }
  .process-line     { left: 19px; }
  .process-line-active { left: 19px; }
  .process-dot { left: -40px; }

  /* ── Sections ───────────────────────────────────────────── */
  .wf-sect { padding: 36px 20px; }

  /* ── Buttons ────────────────────────────────────────────── */
  .btn { padding: 14px 24px; font-size: 15px; }

  /* ── Case studies ───────────────────────────────────────── */
  .cs-grid { grid-template-columns: 1fr; }
  .cs-modal-backdrop { padding: 12px; }
  .cs-modal-body  { grid-template-columns: 1fr; }
  .cs-preview-pane { min-height: 200px; }
  .cs-info-pane { padding: 20px; }

  /* Category filter tabs: scrollable */
  .cs-tabs {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100% !important;
    border-radius: 12px;
    gap: 2px;
  }
  .cs-tabs::-webkit-scrollbar { display: none; }
  .cs-tab {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 14px;
  }

  /* Services subpage grid: 1 col */
  .svc-grid { grid-template-columns: 1fr !important; }

  /* Subpage hero padding */
  .subpage-hero-section { padding: 100px 24px 52px !important; }
  .svc-page-section { padding: 36px 20px 80px !important; }

  /* ── Schedule page ──────────────────────────────────────── */
  .schedule-nav { padding: 14px 20px; }
  .schedule-intro h1 { font-size: clamp(34px, 9vw, 52px); }
}

/* ============================================================ */
/* Responsive — small phone (≤480px)                            */
/* ============================================================ */
@media (max-width: 480px) {
  body .bluveo-hero  { padding: 100px 20px 160px !important; }
  .wf-sect           { padding: 28px 18px; }
  .cs-modal-backdrop { padding: 8px; }
  .schedule-content  { padding: 60px 18px 80px; }
  .mob-inner         { padding: 100px 28px 40px; }
  .mob-link          { font-size: clamp(34px, 9vw, 52px); }
}

/* ============================================================ */
/* Responsive — heredado (≤640px)                               */
/* ============================================================ */
@media (max-width: 640px) {
  .cs-modal-body   { grid-template-columns: 1fr; }
  .cs-preview-pane { min-height: 200px; }
  body .bluveo-hero { padding: 110px 20px 60px !important; }
}

/* ============================================================ */
/* Focus-visible — keyboard navigation                          */
/* ============================================================ */
:focus-visible {
  outline: 2px solid #4D90FF;
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible {
  outline: 2px solid #4D90FF;
  outline-offset: 3px;
}
/* Skip navigation */
.skip-nav {
  position: absolute;
  top: -999px;
  left: 0;
  background: #4D90FF;
  color: #06122a;
  padding: 12px 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  border-radius: 0 0 8px 0;
  z-index: 9999;
  text-decoration: none;
}
.skip-nav:focus {
  top: 0;
  outline: none;
}

/* ============================================================ */
/* Accessibility — prefers-reduced-motion                       */
/* ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .orb.live, .orb.live > .orb-glow, .orb.live > .orb-sheen, .orb.live > .orb-hl { animation: none !important; }
  .orb-rings .ring { animation: none !important; }
  .cta-glow { animation: none !important; }
  [data-reveal].pre { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-chip, .hero-title, .hero-sub, .hero-ctas, .hero-orb, .wa { animation: none !important; }
}

/* ============================================================ */
/* Service Picker                                               */
/* ============================================================ */
.svc-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-picker-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(156,192,255,0.8);
  font-weight: 500;
}
.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-pill {
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  background: rgba(255,255,255,0.04);
  color: rgba(236,236,234,0.8);
  border: 1px solid rgba(255,255,255,0.14);
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}
.svc-pill:hover {
  background: rgba(77,144,255,0.12);
  border-color: rgba(77,144,255,0.4);
  color: #ececea;
}
.svc-pill.active {
  background: var(--blu);
  color: #06122a;
  border-color: var(--blu);
  font-weight: 600;
}

/* ============================================================ */
/* FAQ details — open/close animation + icon toggle             */
/* ============================================================ */
.faq-icon {
  display: inline-block;
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
  line-height: 1;
}
details[open] .faq-icon {
  transform: rotate(45deg);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
details[open] > p {
  animation: faqOpen .3s cubic-bezier(.2,.7,.3,1);
}
details summary {
  outline: none;
}
details summary:focus-visible {
  outline: 2px solid #4D90FF;
  outline-offset: 4px;
  border-radius: 8px;
}

/* ============================================================ */
/* Date picker — área completa como botón                       */
/* ============================================================ */
.date-picker-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(77,144,255,0.35);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}
.date-picker-btn:hover {
  border-color: rgba(77,144,255,0.65);
  background: rgba(77,144,255,0.06);
}
.date-picker-btn:focus-within,
.date-picker-btn:focus-visible {
  outline: 2px solid #4D90FF;
  outline-offset: 2px;
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  transition: background .2s, border-color .2s;
}
.lang-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
}
.lang-toggle .lt-active { color: #fff; font-weight: 700; }
.lang-toggle .lt-sep  { color: rgba(255,255,255,0.35); margin: 0 2px; }
.lang-toggle .lt-other { color: rgba(255,255,255,0.45); font-weight: 400; }
