:root{
  --bg0:#05070b;
  --bg1:#071018;
  --panel:rgba(10, 18, 27, .62);
  --panel2:rgba(10, 18, 27, .82);
  --line:rgba(149, 242, 255, .12);
  --line2:rgba(149, 242, 255, .22);
  --ink:#e7fbff;
  --muted:rgba(231, 251, 255, .72);
  --muted2:rgba(231, 251, 255, .58);
  --acc:#00f5d4;
  --acc2:#a7ff5a;
  --hot:#ff3dbe;
  --shadow:0 30px 120px rgba(0, 0, 0, .55);
  --r12:12px;
  --r18:18px;
  --r24:24px;
  --wrap:min(1120px, calc(100% - 40px));
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --sans: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  background: var(--bg0);
  font-family:var(--sans);
  letter-spacing:.2px;
  overflow-x:hidden;
  /* Header is fixed; this is set dynamically in app.js */
  padding-top: var(--topbar-offset, 78px);
}

a{color:inherit; text-decoration:none}
a:hover{color:var(--acc)}

.wrap{width:var(--wrap); margin:0 auto}

#bg{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-1;
  opacity:.92;
  pointer-events:none;
}

.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 20px;
  background:linear-gradient(180deg, rgba(5, 7, 11, .82), rgba(5, 7, 11, .55));
  backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(149, 242, 255, .10);
}
.scrollProgress{
  position:absolute;
  left:0; right:0;
  bottom:-1px;
  height:2px;
  background: rgba(149, 242, 255, .08);
  overflow:hidden;
}
.scrollProgressBar{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, rgba(0,245,212,.95), rgba(167,255,90,.75));
  box-shadow: 0 0 18px rgba(0,245,212,.20);
  transform-origin:left center;
}

.brand{display:flex; align-items:center; gap:10px}
.brandText{font-weight:700; letter-spacing:.6px}
.brandPhoto{
  width:28px;
  height:28px;
  border-radius:10px;
  object-fit:cover;
  border:1px solid rgba(149, 242, 255, .20);
  box-shadow: 0 10px 36px rgba(0, 245, 212, .10);
  filter: contrast(1.03) saturate(1.05);
}
.brandMark{
  width:26px; height:26px; border-radius:8px;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,245,212,.95), rgba(0,245,212,.25) 55%, transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(255,61,190,.55), transparent 60%),
    linear-gradient(135deg, rgba(149,242,255,.22), rgba(0,245,212,.14));
  border:1px solid rgba(149, 242, 255, .18);
  box-shadow: 0 8px 32px rgba(0, 245, 212, .12);
}

.nav{display:flex; gap:18px; align-items:center}
.nav a{
  font-size:14px;
  color:var(--muted);
  padding:8px 8px;
  border-radius:10px;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--ink);
  border-color:rgba(149, 242, 255, .16);
  background:rgba(10, 18, 27, .35);
}
.nav a.isActive{
  color:var(--ink);
  border-color:rgba(0, 245, 212, .25);
  background:rgba(0, 245, 212, .08);
}

.navToggle{
  display:none;
  width:44px; height:40px;
  border-radius:12px;
  border:1px solid rgba(149, 242, 255, .18);
  background:rgba(10, 18, 27, .45);
  color:var(--ink);
}
.navToggle span{
  display:block;
  width:18px;
  height:2px;
  background:rgba(231, 251, 255, .85);
  margin:4px auto;
  border-radius:999px;
}

.btn{
  appearance:none;
  border:1px solid rgba(149, 242, 255, .18);
  background:rgba(10, 18, 27, .50);
  color:var(--ink);
  padding:10px 14px;
  border-radius:14px;
  font-weight:650;
  letter-spacing:.3px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color:rgba(149, 242, 255, .28);
  background:rgba(10, 18, 27, .62);
}
.btnPrimary{
  border-color:rgba(0, 245, 212, .40);
  background:
    radial-gradient(100% 220% at 20% 0%, rgba(0,245,212,.35), transparent 45%),
    radial-gradient(120% 180% at 100% 20%, rgba(167,255,90,.22), transparent 55%),
    rgba(0, 245, 212, .10);
  box-shadow: 0 18px 60px rgba(0, 245, 212, .12);
}
.btnPrimary:hover{
  border-color:rgba(0, 245, 212, .60);
  box-shadow: 0 20px 70px rgba(0, 245, 212, .18);
}
.btnGhost{background:rgba(10, 18, 27, .35)}
.btnText{
  border-color:transparent;
  background:transparent;
  padding-left:10px; padding-right:10px;
  color:var(--muted);
}
.btnText:hover{
  border-color:transparent;
  background:rgba(149, 242, 255, .06);
  color:var(--ink);
}
.btnSmall{
  padding:8px 12px;
  border-radius:12px;
  font-size:13px;
}

.hero{
  padding:64px 0 24px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:38px;
  align-items:center;
}

.kicker{
  font-family:var(--mono);
  color:rgba(231, 251, 255, .78);
  font-size:13px;
  letter-spacing:.7px;
  text-transform:uppercase;
}

h1{
  font-size: clamp(36px, 5vw, 54px);
  line-height:1.02;
  margin:10px 0 14px;
  letter-spacing:-.8px;
}
.h1Accent{
  color:var(--acc);
  text-shadow: 0 0 24px rgba(0,245,212,.15);
}
.h1Accent2{
  color:var(--acc2);
  text-shadow: 0 0 24px rgba(167,255,90,.12);
}
.lead{
  font-size:18px;
  line-height:1.5;
  color:var(--muted);
  margin:0 0 18px;
}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.micro{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  color:var(--muted2);
  font-size:14px;
}
.dot{
  width:4px; height:4px;
  border-radius:99px;
  background:rgba(149, 242, 255, .35);
}

.heroVisual{
  position:relative;
  border-radius:var(--r24);
  padding:18px;
  padding-bottom:78px; /* reserve space for the scan badge to avoid overlap */
  background:linear-gradient(180deg, rgba(10, 18, 27, .55), rgba(10, 18, 27, .36));
  border:1px solid rgba(149, 242, 255, .12);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.wordWave{
  display:inline-block;
  opacity:0;
  transform: translateY(10px);
  filter: blur(6px);
  animation: wordIn .9s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--wordDelay, 600ms);
}
.wordWave:nth-of-type(1){ --wordDelay: 560ms; }
.wordWave:nth-of-type(2){ --wordDelay: 720ms; }
.wordWave.isGlitch{
  animation: wordIn .9s cubic-bezier(.2,.8,.2,1) forwards, microGlitch 1.2s ease 1 950ms;
}
@keyframes wordIn{
  0%{opacity:0; transform: translateY(10px); filter: blur(7px)}
  100%{opacity:1; transform: translateY(0); filter: blur(0)}
}
@keyframes microGlitch{
  0%, 72%, 100%{text-shadow:none; transform: translateY(0)}
  76%{text-shadow: -2px 0 rgba(0,245,212,.28), 2px 0 rgba(255,61,190,.20)}
  84%{text-shadow: 2px 0 rgba(0,245,212,.22), -2px 0 rgba(167,255,90,.18); transform: translateY(-1px)}
}
.heroVisual:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:radial-gradient(1200px 420px at 20% 10%, rgba(0,245,212,.25), transparent 55%),
             radial-gradient(900px 500px at 120% 0%, rgba(255,61,190,.12), transparent 55%);
  opacity:.55;
  pointer-events:none;
}

.portraitCard{
  position:relative;
  z-index:1;
  display:flex;
  gap:14px;
  align-items:center;
  background:rgba(5, 7, 11, .35);
  border:1px solid rgba(149, 242, 255, .12);
  border-radius:18px;
  padding:12px;
}
.portraitCard img{
  width:72px; height:72px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(149, 242, 255, .18);
  filter: contrast(1.05) saturate(1.05);
}
.metaTitle{font-weight:750; letter-spacing:.4px}
.metaSub{color:var(--muted); font-size:13px; margin-top:3px}

.pulseGrid{
  position:relative;
  z-index:1;
  margin-top:14px;
  margin-bottom:56px; /* keep bottom row clear of the scan badge */
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.capCard{
  border-radius:16px;
  border:1px solid rgba(149, 242, 255, .12);
  background:rgba(5, 7, 11, .32);
  padding:12px;
  position:relative;
  overflow:hidden;
}
.capCard:after{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(420px 140px at 20% 0%, rgba(0,245,212,.18), transparent 60%);
  opacity:.55;
  pointer-events:none;
}
.capTitle{font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.8px}
.capSub{color:var(--muted); font-size:13px; margin-top:4px}

.scanBadge{
  position:absolute;
  inset:auto 12px 12px 12px;
  height:42px;
  border-radius:16px;
  background:rgba(5, 7, 11, .42);
  border:1px solid rgba(149, 242, 255, .12);
  overflow:hidden;
  display:flex;
  align-items:center;
  pointer-events:none;
}
.scanLine{
  position:absolute;
  inset:0 auto 0 0;
  width:180px;
  background: linear-gradient(90deg, transparent, rgba(0,245,212,.20), rgba(167,255,90,.10), transparent);
  filter: blur(.2px);
  animation: scan 2.8s linear infinite;
}
.scanText{
  position:relative;
  padding-left:14px;
  font-family:var(--mono);
  color:rgba(231, 251, 255, .78);
  font-size:12px;
  letter-spacing:.8px;
  text-transform:uppercase;
}
@keyframes scan{
  0%{transform: translateX(-220px)}
  100%{transform: translateX(calc(100% + 220px))}
}

.section{
  position:relative;
  padding:76px 0;
  scroll-margin-top: calc(var(--topbar-offset, 78px) + 18px);
}
.section.scanOnce::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  top:8px;
  width:min(1100px, calc(100% - 40px));
  height:1px;
  border-radius:999px;
  background: linear-gradient(90deg, transparent, rgba(0,245,212,.40), rgba(149,242,255,.22), transparent);
  opacity:0;
  pointer-events:none;
  animation: sectionScan 1.2s ease-out 1;
}
@keyframes sectionScan{
  0%{opacity:0; filter: blur(2px); transform: translateX(-50%) translateY(0) scaleX(.65)}
  20%{opacity:.75}
  100%{opacity:0; filter: blur(0); transform: translateX(-50%) translateY(0) scaleX(1)}
}
.sectionHeader{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  margin-bottom:22px;
}
.sectionHeaderStack{
  flex-direction:column;
  align-items:flex-start;
}
.sectionHeaderStack p{
  max-width: 760px;
}
.sectionHeader h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.4px;
}
.sectionHeader p{
  margin:0;
  color:var(--muted);
  max-width: 620px;
  line-height:1.5;
}

.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.pillarsLeft{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  max-width: 560px;
  margin-right:auto;
}

.scopeGrid{
  display:grid;
  grid-template-columns: 1fr 560px;
  grid-template-areas: "copy cards";
  gap:18px;
  align-items:start;
}
.scopeLeft{grid-area:cards}
.scopeRight{
  grid-area:copy;
  align-self:center; /* align copy with the middle of the 3 cards stack */
}

.scopeRight .sectionHeader{
  margin-bottom:0;
}
.pillar{
  border-radius:var(--r18);
  border:1px solid rgba(149, 242, 255, .12);
  background:rgba(10, 18, 27, .35);
  padding:16px;
  box-shadow: 0 18px 70px rgba(0,0,0,.20);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.pillarShift{
  margin-left: 18px;
}
.pillar h3{margin:0 0 6px; font-size:16px}
.pillar p{margin:0; color:var(--muted); line-height:1.45}

.cards4{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.card{
  border-radius:var(--r24);
  border:1px solid rgba(149, 242, 255, .12);
  background: linear-gradient(180deg, rgba(10, 18, 27, .55), rgba(10, 18, 27, .32));
  padding:18px;
  box-shadow: 0 22px 80px rgba(0,0,0,.22);
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(700px 220px at 20% 0%, rgba(0,245,212,.14), transparent 60%),
              radial-gradient(700px 260px at 100% 40%, rgba(255,61,190,.08), transparent 60%);
  opacity:.7;
  pointer-events:none;
}
.cardTop{position:relative}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(149, 242, 255, .14);
  color:rgba(231, 251, 255, .76);
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.7px;
  text-transform:uppercase;
  background: rgba(5, 7, 11, .22);
}
.card h3{margin:10px 0 10px; font-size:18px; position:relative}

.list{
  margin:0;
  padding:0 0 0 18px;
  color:var(--muted);
  line-height:1.45;
  position:relative;
}
.list li{margin:6px 0}

.casesStack{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.case{
  border-radius:var(--r24);
  border:1px solid rgba(149, 242, 255, .12);
  background: linear-gradient(180deg, rgba(10, 18, 27, .40), rgba(10, 18, 27, .26));
  padding:18px;
  box-shadow: 0 22px 90px rgba(0,0,0,.25);
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.caseRow{
  display:grid;
  grid-template-columns: 1fr 520px;
  gap:14px;
  align-items:center;
}
.case:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(0,245,212,.10), transparent 60%),
    radial-gradient(760px 320px at 95% 10%, rgba(255,61,190,.07), transparent 62%);
  opacity:.55;
  pointer-events:none;
}
.caseBody, .caseMedia{position:relative}
.caseHead{display:flex; align-items:baseline; justify-content:space-between; gap:12px; position:relative}
.case h3{margin:0; font-size:18px}
.stack{
  font-family:var(--mono);
  font-size:11px;
  color:rgba(231, 251, 255, .72);
  text-transform:uppercase;
  letter-spacing:.8px;
}
.case p{position:relative; color:var(--muted); line-height:1.5}
.result{
  color:rgba(231, 251, 255, .86);
  margin-top:10px;
  border-left:2px solid rgba(0, 245, 212, .40);
  padding-left:10px;
}

.mediaGrid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.mediaShot{
  border:1px solid rgba(149, 242, 255, .14);
  background: rgba(5, 7, 11, .24);
  border-radius:18px;
  overflow:hidden;
  padding:0;
  cursor:pointer;
  position:relative;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  width:100%;
}
.mediaShot{
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
  will-change: transform;
}
.mediaShot:hover{
  --ty: -2px;
}
.mediaShot:hover{
  border-color: rgba(0, 245, 212, .32);
  box-shadow: 0 24px 80px rgba(0, 245, 212, .08);
}
.mediaShot img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.04);
}
.mediaShotTall img{
  height:260px;
}
.mediaShot span{
  display:block;
  padding:10px 12px;
  font-family:var(--mono);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:rgba(231, 251, 255, .80);
}

.caseCTA{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; position:relative}

.timeline{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.tItem{
  border-radius:var(--r18);
  border:1px solid rgba(149, 242, 255, .12);
  background: rgba(10, 18, 27, .30);
  padding:16px;
  position:relative;
  overflow:hidden;
}
.tItem:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 160px at 20% 0%, rgba(167,255,90,.10), transparent 60%);
  opacity:.7;
  pointer-events:none;
}
.tDot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(0,245,212,.85);
  box-shadow: 0 0 0 4px rgba(0,245,212,.10);
  margin-bottom:10px;
  position:relative;
}
.tItem h3{margin:0 0 6px; font-size:16px; position:relative}
.tItem p{margin:0; color:var(--muted); line-height:1.45; position:relative}

.priceLine{font-size:15px}
.muted{color:var(--muted2)}

.planGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.plan{
  border-radius:var(--r24);
  border:1px solid rgba(149, 242, 255, .12);
  background: rgba(10, 18, 27, .32);
  padding:18px;
  box-shadow: 0 26px 110px rgba(0,0,0,.28);
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.plan:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(760px 220px at 10% 0%, rgba(0,245,212,.12), transparent 60%);
  opacity:.8;
  pointer-events:none;
}
.planHot{
  border-color:rgba(0, 245, 212, .28);
  box-shadow: 0 28px 140px rgba(0, 245, 212, .10);
}
.planGlow{
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, rgba(0,245,212,.0), rgba(0,245,212,.22), rgba(167,255,90,.18), rgba(255,61,190,.10), rgba(0,245,212,.0));
  opacity:.85;
  filter: blur(10px);
  animation: planSpin 7.5s linear infinite;
  pointer-events:none;
  z-index:0;
}
.planGlow:before{
  content:"";
  position:absolute;
  inset:2px;
  border-radius: inherit;
  background: rgba(10, 18, 27, .78);
}
@keyframes planSpin{
  to{transform: rotate(360deg)}
}
.plan > :not(.planGlow){
  position:relative;
  z-index:1;
}
.planHot:after{
  content:"Recomendado";
  position:absolute;
  top:14px;
  right:14px;
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.9px;
  text-transform:uppercase;
  color:rgba(231, 251, 255, .82);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0, 245, 212, .35);
  background: rgba(0, 245, 212, .08);
}
.planHead{position:relative}
.planHead h3{margin:0; font-size:22px}
.planTag{
  margin-top:6px;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:rgba(231, 251, 255, .74);
}
.plan .btn{width:100%; margin-top:10px; position:relative}

.nextStep{
  margin-top:14px;
  border-radius:var(--r24);
  border:1px solid rgba(149, 242, 255, .12);
  background: linear-gradient(180deg, rgba(10, 18, 27, .55), rgba(10, 18, 27, .30));
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.nextCopy h3{margin:0 0 6px}
.nextCopy p{margin:0; color:var(--muted); line-height:1.45}
.nextBtns{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

.xpGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.xp{
  border-radius:var(--r24);
  border:1px solid rgba(149, 242, 255, .12);
  background: rgba(10, 18, 27, .32);
  padding:18px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.xp:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(700px 240px at 10% 0%, rgba(255,61,190,.08), transparent 60%);
  opacity:.7;
  pointer-events:none;
}
.xpHead{position:relative}
.xpHead h3{margin:0 0 6px}
.xpMeta{color:rgba(231, 251, 255, .70); font-size:12px; font-family:var(--mono); letter-spacing:.5px}

.downloads{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}

.certGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.cert{
  border-radius:18px;
  border:1px solid rgba(149, 242, 255, .12);
  background: rgba(10, 18, 27, .26);
  padding:14px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.cert:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 160px at 20% 0%, rgba(0,245,212,.10), transparent 60%);
  opacity:.7;
  pointer-events:none;
}
.cert:hover{
  transform: translateY(-2px);
  border-color: rgba(0, 245, 212, .30);
  background: rgba(10, 18, 27, .32);
}
.certTitle{font-weight:750; position:relative}
.certMeta{color:var(--muted); font-size:13px; margin-top:6px; position:relative}

.chipBlocks{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.chipBlock{
  border-radius:var(--r24);
  border:1px solid rgba(149, 242, 255, .12);
  background: rgba(10, 18, 27, .26);
  padding:16px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.chipBlock:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 200px at 10% 0%, rgba(167,255,90,.08), transparent 60%);
  opacity:.8;
  pointer-events:none;
}
.chipTitle{
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.9px;
  text-transform:uppercase;
  color:rgba(231, 251, 255, .72);
  position:relative;
}
.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; position:relative}
.chip{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:8px 10px;
  border:1px solid rgba(149, 242, 255, .14);
  background: rgba(5, 7, 11, .20);
  color:rgba(231, 251, 255, .82);
  font-size:13px;
  transition: transform .14s ease, border-color .14s ease;
}
.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(0, 245, 212, .32);
}

.contact{padding-bottom:68px}
.contactCard{
  border-radius:var(--r24);
  border:1px solid rgba(149, 242, 255, .12);
  background: linear-gradient(180deg, rgba(10, 18, 27, .60), rgba(10, 18, 27, .28));
  padding:20px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:12px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

/* Hover motion for cards (desktop/fine pointer only) */
@media (hover: hover) and (pointer: fine){
  .pillar:hover{
    transform: translateY(-2px);
    border-color: rgba(0, 245, 212, .22);
    box-shadow: 0 26px 90px rgba(0, 245, 212, .06), 0 26px 90px rgba(0,0,0,.25);
    background: rgba(10, 18, 27, .40);
  }

  .card:hover{
    transform: translateY(-3px);
    border-color: rgba(0, 245, 212, .22);
    box-shadow: 0 30px 120px rgba(0, 245, 212, .06), 0 30px 110px rgba(0,0,0,.28);
  }
  .card:hover:before{
    opacity:.95;
  }

  .case:hover{
    transform: translateY(-3px);
    border-color: rgba(0, 245, 212, .20);
    box-shadow: 0 34px 130px rgba(0,0,0,.30), 0 34px 120px rgba(0, 245, 212, .05);
  }

  .plan:hover{
    transform: translateY(-3px);
    border-color: rgba(0, 245, 212, .20);
    box-shadow: 0 34px 130px rgba(0,0,0,.30), 0 34px 120px rgba(0, 245, 212, .05);
  }
  .planHot:hover{
    border-color: rgba(0, 245, 212, .34);
    box-shadow: 0 38px 150px rgba(0, 245, 212, .10), 0 38px 140px rgba(0,0,0,.32);
  }

  .xp:hover{
    transform: translateY(-3px);
    border-color: rgba(0, 245, 212, .18);
    box-shadow: 0 34px 130px rgba(0,0,0,.30);
  }

  .cert:hover{
    box-shadow: 0 24px 90px rgba(0, 245, 212, .05), 0 24px 90px rgba(0,0,0,.22);
  }

  .chipBlock:hover{
    transform: translateY(-2px);
    border-color: rgba(0, 245, 212, .16);
    box-shadow: 0 26px 100px rgba(0,0,0,.22);
  }

  .contactCard:hover{
    transform: translateY(-2px);
    border-color: rgba(0, 245, 212, .16);
    box-shadow: 0 34px 140px rgba(0,0,0,.34);
  }
}
.contactCard:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(0,245,212,.16), transparent 60%),
    radial-gradient(700px 280px at 100% 40%, rgba(255,61,190,.10), transparent 60%);
  opacity:.85;
  pointer-events:none;
}
.contactCopy{position:relative}
.contactCopy h2{margin:0 0 8px}
.contactCopy p{margin:0 0 14px; color:var(--muted); line-height:1.5}
.contactRow{display:flex; gap:10px; flex-wrap:wrap}

.contactMeta{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  align-content:start;
}
.metaBox{
  border-radius:18px;
  border:1px solid rgba(149, 242, 255, .12);
  background: rgba(5, 7, 11, .24);
  padding:12px;
}
.metaK{
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.9px;
  text-transform:uppercase;
  color:rgba(231, 251, 255, .68);
}
.metaV{margin-top:6px; font-weight:700; display:inline-block}

.footer{
  padding:28px 0 40px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  border-top:1px solid rgba(149, 242, 255, .10);
  color:rgba(231, 251, 255, .76);
}
.footBrand{display:flex; align-items:center; gap:10px; font-weight:800}
.footSmall{margin-top:8px; color:rgba(231, 251, 255, .60); font-size:14px}
.footRight{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.footRight a{color:rgba(231, 251, 255, .70)}

.modal, .lightbox{
  position:fixed;
  inset:0;
  z-index:100;
}
.modal{
  opacity:0;
  transition: opacity .18s ease;
}
.modalPanel{
  transform: translateY(8px) scale(.985);
  opacity:.98;
  transition: transform .18s ease, opacity .18s ease;
}
.modal.isOpen{opacity:1}
.modal.isOpen .modalPanel{transform: translateY(0) scale(1); opacity:1}
.lightbox{
  opacity:0;
  transition: opacity .18s ease;
}
.lightboxFigure{
  transform: translateY(10px) scale(.985);
  transition: transform .18s ease, opacity .18s ease;
}
.lightbox.isOpen{opacity:1}
.lightbox.isOpen .lightboxFigure{transform: translateY(0) scale(1)}
.modalBackdrop, .lightboxBackdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.56);
  backdrop-filter: blur(10px);
}
.modalPanel{
  position:relative;
  width:min(720px, calc(100% - 28px));
  margin: min(14vh, 120px) auto 0;
  border-radius:24px;
  border:1px solid rgba(149, 242, 255, .14);
  background: rgba(10, 18, 27, .82);
  box-shadow: var(--shadow);
  padding:18px;
}
.modalTop{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.modalTitle{font-size:20px; font-weight:850}
.modalSub{margin-top:6px; color:var(--muted); line-height:1.45}
.iconBtn{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid rgba(149, 242, 255, .14);
  background: rgba(5, 7, 11, .20);
  color:rgba(231, 251, 255, .85);
  cursor:pointer;
}
.modalGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.modalOpt{
  border-radius:18px;
  border:1px solid rgba(149, 242, 255, .12);
  background: rgba(5, 7, 11, .24);
  padding:14px;
  transition: transform .18s ease, border-color .18s ease;
}
.modalOpt:hover{
  transform: translateY(-2px);
  border-color: rgba(0, 245, 212, .30);
}
.optTitle{font-weight:850}
.optSub{margin-top:6px; color:var(--muted); font-size:13px; line-height:1.35}
.modalBottom{margin-top:12px; display:flex; justify-content:flex-end}

.lightboxFigure{
  position:relative;
  width:min(1040px, calc(100% - 24px));
  margin: 6vh auto 0;
  border-radius:24px;
  border:1px solid rgba(149, 242, 255, .14);
  background: rgba(10, 18, 27, .88);
  box-shadow: var(--shadow);
  padding:12px;
}
.lightboxFigure img{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
  border:1px solid rgba(149, 242, 255, .12);
}
.lightboxFigure figcaption{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}
.lightboxClose{
  position:absolute;
  top:12px;
  right:12px;
}

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(14px);
  filter: blur(10px);
  transition: opacity .65s ease, transform .65s ease, filter .65s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.isIn{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 980px){
  .hero{grid-template-columns:1fr; padding-top:46px}
  .sectionHeader{flex-direction:column; align-items:flex-start}
  .pillars{grid-template-columns:1fr}
  .cards4{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr 1fr}
  .planGrid{grid-template-columns:1fr}
  .xpGrid{grid-template-columns:1fr}
  .certGrid{grid-template-columns:1fr}
  .chipBlocks{grid-template-columns:1fr}
  .contactCard{grid-template-columns:1fr}
  .contactMeta{grid-template-columns:1fr 1fr}
  .scopeGrid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "cards";
  }
  .pillarsLeft{max-width: 100%}
  .scopeRight{align-self:stretch}
  .pillarShift{margin-left: 0}
  .caseRow{grid-template-columns: 1fr}
}

@media (max-width: 820px){
  .nav{display:none}
  .navToggle{display:inline-block}
  .topbar{padding:12px 14px}
}

@media (max-width: 520px){
  .timeline{grid-template-columns:1fr}
  .contactMeta{grid-template-columns:1fr}
  .modalGrid{grid-template-columns:1fr}
  .mediaGrid2{grid-template-columns:1fr}
  .mediaShotTall img{height:200px}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .reveal{opacity:1; transform:none}
  .scanLine{animation:none}
  .planGlow{animation:none}
  .pipeline.isOn .pipePathGlow{animation:none; stroke-dashoffset:0}
  .btn, .shot, .cert, .modalOpt, .chip{transition:none}
}
.pipeline{
  margin-top:12px;
  position:relative;
  width:min(520px, 100%);
}
.pipeNodes{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}
.pipeNode{
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.8px;
  text-transform:uppercase;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(149, 242, 255, .12);
  background: rgba(10, 18, 27, .26);
  color:rgba(231, 251, 255, .78);
}
.pipeSvg{
  width:100%;
  height:22px;
  display:block;
  margin-top:8px;
}
.pipePath{
  fill:none;
  stroke: rgba(149, 242, 255, .18);
  stroke-width: 2;
  stroke-linecap: round;
}
.pipePathGlow{
  fill:none;
  stroke: url(#pipeGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  filter: drop-shadow(0 0 10px rgba(0,245,212,.16));
}
.pipeline.isOn .pipePathGlow{
  animation: pipeDraw 1.35s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes pipeDraw{
  to{stroke-dashoffset: 0;}
}
