/* ============================================================
   Vystral — Landing v1.0
   Tipografía: SF Pro (system) en todo
   Marca: negro #0A0A0A · azul #2D8CFF · azul claro #EBF3FF
   ============================================================ */

:root {
  --black: #0a0a0a;
  --ink: #15181f;
  --ink-2: #3a4150;
  --blue: #2d8cff;
  --blue-700: #1f6fe0;
  --blue-light: #ebf3ff;
  --white: #fff;
  --paper: #f7f9fc;
  --paper-2: #eef2f8;
  --muted: #5b6473;
  --line: #ecedf1;
  --line-2: #e0e3ea;
  --shadow:
    0 1px 2px rgba(16, 22, 34, 0.04), 0 10px 30px rgba(16, 22, 34, 0.07);
  --shadow-lg: 0 30px 70px rgba(16, 22, 34, 0.14);
  --radius: 18px;
  --maxw: 1160px;
  --sf:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sf);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 17px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--blue);
  color: #fff;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.muted {
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  font-family: var(--sf);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.kicker {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 13px;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.18s cubic-bezier(0.2, 0.7, 0.3, 1),
    box-shadow 0.18s,
    background 0.18s;
  box-shadow: 0 10px 26px rgba(45, 140, 255, 0.3);
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--blue-700);
  box-shadow: 0 16px 38px rgba(45, 140, 255, 0.42);
}
.btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}
.brand {
  font-family: var(--sf);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--black);
}
.brand .dot {
  color: var(--blue);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 10px;
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-link:hover {
  background: var(--paper);
  color: var(--blue-700);
}
.nav-cta {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 11px;
}
.nav-cta:hover {
  background: var(--blue);
  color: #fff;
}
.nav-yt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-yt svg {
  width: 19px;
  height: 19px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 84px 0 44px;
  text-align: center;
  background: radial-gradient(
    1200px 520px at 50% -160px,
    rgba(45, 140, 255, 0.09),
    transparent 62%
  );
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: var(--shadow);
}
.eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(45, 140, 255, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(45, 140, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 140, 255, 0);
  }
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1;
  max-width: 15.5ch;
  margin: 0 auto 24px;
}
.hero h1 .accent {
  color: var(--blue);
}
.hero .sub {
  font-size: clamp(17px, 2.05vw, 21px);
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 16px;
  letter-spacing: -0.01em;
}
.hero .sub strong {
  color: var(--ink);
  font-weight: 600;
}

.vsl {
  position: relative;
  max-width: 900px;
  margin: 36px auto 0;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0c0f15, #1a2130);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.vsl iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vsl .vsl-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9aa3b2;
  gap: 16px;
  font-size: 15px;
}
.vsl .play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 34px rgba(45, 140, 255, 0.5);
  animation: pulseBig 2.4s infinite;
}
.vsl .play:after {
  content: "";
  border-style: solid;
  border-width: 16px 0 16px 27px;
  border-color: transparent transparent transparent #fff;
  margin-left: 6px;
}
@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 140, 255, 0.45);
  }
  70% {
    box-shadow: 0 0 0 28px rgba(45, 140, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 140, 255, 0);
  }
}
.watch {
  margin: 20px auto 0;
  font-size: 15.5px;
  color: var(--muted);
}
.watch strong {
  color: var(--ink);
  font-weight: 600;
}

.form-card {
  max-width: 700px;
  margin: 32px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 32px 32px 16px;
  text-align: left;
}
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.step-badge .n {
  background: var(--blue);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.form-card h3 {
  font-size: 23px;
  margin-bottom: 18px;
}
.ghl-frame {
  width: 100%;
  min-height: 580px;
  border: 0;
  border-radius: 12px;
  background: var(--paper);
}

/* ---------- TRUST STRIP ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.trust .row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  justify-content: center;
  align-items: center;
  padding: 22px 0;
}
.trust .item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.trust .item svg {
  width: 21px;
  height: 21px;
  color: var(--blue);
  flex: none;
}

/* ---------- INTEGRATIONS ---------- */
.integrations {
  padding: 54px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.integrations .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.int-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.int-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.int-chip svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

/* ---------- SECTION SHELL ---------- */
.section {
  padding: 104px 0;
}
.section.tight {
  padding: 76px 0;
}
.head {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
.head .kicker {
  margin-bottom: 14px;
  display: block;
}
.head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  margin-bottom: 16px;
}
.head p {
  color: var(--muted);
  font-size: 18.5px;
}

/* ---------- LOGO CIRCLES ---------- */
.logo-circle {
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: none;
}
.logo-circle img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}
.logo-circle.lg {
  width: 132px;
  height: 132px;
}
.logo-circle.md {
  width: 92px;
  height: 92px;
}
.logo-circle.sm {
  width: 66px;
  height: 66px;
}

/* ---------- CLIENT SHOWCASE ---------- */
.case-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.case-row:first-of-type {
  border-top: 0;
}
.case-row.flip .case-copy {
  order: 2;
}
.case-row.flip .case-visual {
  order: 1;
}
.case-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.case-head .meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.case-name {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
}
.case-desc {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
  max-width: 34ch;
}
.case-copy h3 {
  font-size: clamp(21px, 2.4vw, 27px);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.case-copy .body {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 22px;
}
.case-result {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.case-result .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.case-result .big {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
}
.case-result .lbl {
  font-size: 13.5px;
  color: var(--muted);
}
.quote {
  border-left: 3px solid var(--line-2);
  padding: 4px 0 4px 18px;
  font-size: 15.5px;
  color: var(--ink-2);
  font-style: italic;
}
.quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
}

/* ---------- SYSTEM DIAGRAMS (variados) ---------- */
.sysviz {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
  min-height: 340px;
  background-image: radial-gradient(
    rgba(45, 140, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  overflow: hidden;
}
.sysviz .viz-tag {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9aa6b8;
}
.snode {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 13px;
  padding: 13px 15px;
  box-shadow: 0 6px 18px rgba(16, 22, 34, 0.06);
  opacity: 0;
  transform: translateY(10px);
}
.in .snode {
  animation: nodeUp 0.55s forwards;
}
@keyframes nodeUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.snode .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-light);
  display: grid;
  place-items: center;
  color: var(--blue-700);
  flex: none;
}
.snode .ic svg {
  width: 20px;
  height: 20px;
}
.snode .t {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.snode .t b {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.snode .t span {
  font-size: 12px;
  color: var(--muted);
}
.snode.win {
  background: linear-gradient(120deg, var(--blue), var(--blue-700));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(45, 140, 255, 0.4);
}
.snode.win .ic {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.snode.win .t b {
  color: #fff;
}
.snode.win .t span {
  color: rgba(255, 255, 255, 0.85);
}

/* archetype: PIPELINE (vertical) */
.viz-pipeline .flow {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.viz-pipeline .snode {
  position: relative;
}
.viz-pipeline .snode:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 31px;
  bottom: -30px;
  height: 30px;
  width: 2px;
  background: linear-gradient(var(--blue), rgba(45, 140, 255, 0.2));
}
.viz-pipeline .snode:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  bottom: -12px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  opacity: 0.7;
}
.in.viz-pipeline .snode:nth-child(1) {
  animation-delay: 0.05s;
}
.in.viz-pipeline .snode:nth-child(2) {
  animation-delay: 0.2s;
}
.in.viz-pipeline .snode:nth-child(3) {
  animation-delay: 0.35s;
}
.in.viz-pipeline .snode:nth-child(4) {
  animation-delay: 0.5s;
}
.in.viz-pipeline .snode:nth-child(5) {
  animation-delay: 0.65s;
}

/* archetype: HUB (centro + radios) */
.viz-hub {
  display: grid;
  place-items: center;
}
.viz-hub .hubwrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/0.92;
  display: grid;
  place-items: center;
}
.viz-hub .center {
  position: absolute;
  z-index: 2;
  width: 130px;
  text-align: center;
}
.viz-hub .center .snode {
  flex-direction: column;
  text-align: center;
  gap: 7px;
  padding: 16px;
}
.viz-hub .center .snode .ic {
  width: 44px;
  height: 44px;
}
.viz-hub .spoke {
  position: absolute;
  z-index: 2;
  width: 138px;
}
.viz-hub .spoke .snode {
  padding: 9px 11px;
}
.viz-hub .spoke .snode .ic {
  width: 30px;
  height: 30px;
}
.viz-hub .spoke .snode .t b {
  font-size: 13px;
}
.viz-hub .s1 {
  top: 0;
  left: 6%;
}
.viz-hub .s2 {
  top: 0;
  right: 6%;
}
.viz-hub .s3 {
  bottom: 0;
  left: 6%;
}
.viz-hub .s4 {
  bottom: 0;
  right: 6%;
}
.viz-hub .ray {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.viz-hub .ray line {
  stroke: var(--blue);
  stroke-width: 2;
  stroke-dasharray: 5 6;
  opacity: 0.5;
  animation: dash 1.2s linear infinite;
}
@keyframes dash {
  to {
    stroke-dashoffset: -22;
  }
}
.in .viz-hub .center .snode {
  animation-delay: 0.05s;
}
.in .viz-hub .s1 .snode {
  animation-delay: 0.2s;
}
.in .viz-hub .s2 .snode {
  animation-delay: 0.32s;
}
.in .viz-hub .s3 .snode {
  animation-delay: 0.44s;
}
.in .viz-hub .s4 .snode {
  animation-delay: 0.56s;
}

/* archetype: FUNNEL (embudo) */
.viz-funnel .flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.viz-funnel .lane {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.viz-funnel .snode {
  justify-content: center;
  width: 100%;
}
.viz-funnel .l1 {
  max-width: 100%;
}
.viz-funnel .l2 {
  max-width: 74%;
}
.viz-funnel .l3 {
  max-width: 50%;
}
.viz-funnel .drop {
  width: 2px;
  height: 16px;
  background: linear-gradient(var(--blue), rgba(45, 140, 255, 0.2));
}
.viz-funnel .pct {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}
.in.viz-funnel .lane:nth-child(1) .snode {
  animation-delay: 0.05s;
}
.in.viz-funnel .lane:nth-child(3) .snode {
  animation-delay: 0.25s;
}
.in.viz-funnel .lane:nth-child(5) .snode {
  animation-delay: 0.45s;
}

/* ---------- MORE CLIENTS / NDA ---------- */
.nda-note {
  text-align: center;
  max-width: 620px;
  margin: 48px auto 0;
  color: var(--muted);
  font-size: 15.5px;
}
.nda-note b {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- PARTNERS MARQUEE ---------- */
.partners {
  padding: 72px 0 96px;
  text-align: center;
  overflow: hidden;
}
.partners .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 34px;
}
.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.marquee__track {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  animation: scroll 34s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.m-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  flex: none;
  width: 120px;
}
.m-item .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- CAPABILITIES ---------- */
.caps {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.cap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.cap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cap .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--blue-light);
  display: grid;
  place-items: center;
  color: var(--blue-700);
  margin-bottom: 20px;
}
.cap .ic svg {
  width: 25px;
  height: 25px;
}
.cap h4 {
  font-size: 19px;
  margin-bottom: 9px;
  letter-spacing: -0.02em;
}
.cap p {
  color: var(--muted);
  font-size: 15.5px;
}

/* ---------- GUARANTEE ---------- */
.guarantee {
  background: linear-gradient(135deg, #0a0a0a 0%, #16223f 100%);
  color: #fff;
}
.gbox {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.gbox .kicker {
  color: #7fb6ff;
}
.gbox h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  margin: 16px 0 34px;
  line-height: 1.06;
}
.glist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  text-align: left;
  margin-bottom: 28px;
}
.gitem {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 140, 255, 0.28);
  border-radius: 16px;
  padding: 24px;
}
.gitem .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(45, 140, 255, 0.2);
  display: grid;
  place-items: center;
  color: #9ec8ff;
  margin-bottom: 15px;
}
.gitem .ic svg {
  width: 21px;
  height: 21px;
}
.gitem b {
  display: block;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 7px;
  letter-spacing: -0.02em;
}
.gitem span {
  color: #aeb6c2;
  font-size: 14.5px;
}
.gnote {
  color: #9aa3b2;
  font-size: 14.5px;
  max-width: 660px;
  margin: 0 auto;
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  padding: 116px 0;
}
.cta h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  margin-bottom: 16px;
  line-height: 1.04;
}
.cta p {
  color: var(--muted);
  font-size: 18.5px;
  margin-bottom: 32px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  color: #9aa3b2;
  padding: 52px 0 38px;
}
.foot-top {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-top .brand {
  color: #fff;
}
.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-links a {
  color: #c7cdd6;
  font-size: 14.5px;
  font-weight: 500;
}
.foot-links a:hover {
  color: #fff;
}
.foot-social {
  display: flex;
  gap: 12px;
}
.foot-social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: #c7cdd6;
  transition: all 0.15s;
}
.foot-social a:hover {
  border-color: var(--blue);
  color: #fff;
}
.foot-social svg {
  width: 18px;
  height: 18px;
}
.rgpd {
  margin-top: 24px;
  font-size: 12.5px;
  color: #6b7280;
  max-width: 780px;
}

/* ---------- reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.show {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .case-row {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0;
  }
  .case-row.flip .case-copy {
    order: 1;
  }
  .case-row.flip .case-visual {
    order: 2;
  }
  .section {
    padding: 70px 0;
  }
  .hero {
    padding: 54px 0 32px;
  }
  .nav-link.hide-sm {
    display: none;
  }
}
@media (max-width: 520px) {
  body {
    font-size: 16px;
  }
  .foot-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-card {
    padding: 24px 18px 10px;
  }
  .case-result {
    gap: 20px;
  }
  .logo-circle.lg {
    width: 104px;
    height: 104px;
  }
}

/* ---------- results page ---------- */
.results-hero {
  padding: 72px 0 28px;
  text-align: center;
}
.results-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 16px;
}
.results-hero p {
  color: var(--muted);
  font-size: 18.5px;
  max-width: 60ch;
  margin: 0 auto;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}
.rcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.rcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.rcard .rhead {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.rcard .rname {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.rcard .rdesc {
  font-size: 13px;
  color: var(--muted);
}
.rcard .rbody {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}
.rcard .rstat {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.rcard .rstat .big {
  font-size: 23px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.rcard .rstat .lbl {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- booking: lead + mini steps + survey iframe ---------- */
.form-lead{color:var(--muted);font-size:15.5px;margin:-6px 0 18px}
.steps-mini{display:flex;flex-direction:column;gap:12px;margin-bottom:22px}
.step-mini{display:flex;align-items:flex-start;gap:13px}
.step-mini .num{flex:none;width:26px;height:26px;border-radius:50%;background:var(--blue-light);color:var(--blue-700);font-weight:700;font-size:13px;display:grid;place-items:center;margin-top:1px}
.step-mini b{display:block;font-size:15px;font-weight:600;color:var(--ink);letter-spacing:-.01em}
.step-mini span{font-size:13.5px;color:var(--muted)}
.ghl-frame{min-height:820px}
@media (min-width:768px){.ghl-frame{min-height:780px}}

/* ============================================================
   v1.2 — rediseño: logos circulares, diagramas 3D premium,
   reactivación, capacidades editoriales, fix iframe
   ============================================================ */

/* logos llenan el círculo (todos son cuadrados) */
.logo-circle img { width: 100%; height: 100%; object-fit: cover; }

/* booking: el survey se autoajusta; sin hueco vacío */
#booking-frame { min-height: 470px; }

/* ---------- DIAGRAMA 3D PREMIUM ---------- */
.dia { perspective: 1400px; }
.dia-stage {
  position: relative; transform-style: preserve-3d; padding: 30px; border-radius: 24px;
  background: linear-gradient(180deg, #fbfcff, #eaf1fb);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  animation: diaFloat 9s ease-in-out infinite; will-change: transform;
}
.case-row.flip .dia-stage { animation: diaFloatR 9s ease-in-out infinite; }
.dia-stage::after {
  content: ""; position: absolute; inset: 0; border-radius: 24px; pointer-events: none;
  background: radial-gradient(560px 260px at 76% -8%, rgba(45,140,255,.12), transparent 60%);
}
@keyframes diaFloat { 0%,100% { transform: rotateX(6deg) rotateY(-10deg) translateY(0); } 50% { transform: rotateX(4deg) rotateY(-6deg) translateY(-9px); } }
@keyframes diaFloatR { 0%,100% { transform: rotateX(6deg) rotateY(10deg) translateY(0); } 50% { transform: rotateX(4deg) rotateY(6deg) translateY(-9px); } }

.dia-col { display: flex; flex-direction: column; transform-style: preserve-3d; }
.fnode {
  display: flex; align-items: center; gap: 13px; background: #fff;
  border: 1px solid var(--line-2); border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 14px 28px rgba(16,22,34,.10); transform: translateZ(46px);
  opacity: 0; animation: fIn .55s forwards; animation-play-state: paused;
}
.dia-stage.in .fnode { animation-play-state: running; }
.dia-col .fnode:nth-of-type(1) { animation-delay: .05s; }
.dia-col .fnode:nth-of-type(2) { animation-delay: .2s; }
.dia-col .fnode:nth-of-type(3) { animation-delay: .35s; }
.dia-col .fnode:nth-of-type(4) { animation-delay: .5s; }
@keyframes fIn { from { opacity: 0; transform: translateZ(46px) translateY(12px); } to { opacity: 1; transform: translateZ(46px) translateY(0); } }
.fnode .fi { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(45,140,255,.45); color: var(--blue); display: grid; place-items: center; flex: none; }
.fnode .fi svg { width: 19px; height: 19px; }
.fnode .ft b { font-size: 15px; font-weight: 600; color: var(--ink); display: block; line-height: 1.2; }
.fnode .ft span { font-size: 12.5px; color: var(--muted); }
.fnode--win { background: linear-gradient(120deg, var(--blue), var(--blue-700)); border-color: transparent; box-shadow: 0 20px 38px rgba(45,140,255,.42); }
.fnode--win .fi { border-color: rgba(255,255,255,.6); color: #fff; }
.fnode--win .ft b { color: #fff; }
.fnode--win .ft span { color: rgba(255,255,255,.86); }

.fconn { height: 30px; display: grid; place-items: center; transform: translateZ(26px); }
.fconn svg { width: 26px; height: 30px; overflow: visible; }
.fconn .fl { stroke: var(--blue); stroke-width: 2; stroke-dasharray: 4 5; opacity: .7; animation: dashm 1s linear infinite; }
@keyframes dashm { to { stroke-dashoffset: -18; } }
.fconn .fa { stroke: var(--blue); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* funnel: anchos decrecientes */
.dia-col.funnel { align-items: center; }
.dia-col.funnel .fnode { width: 100%; }
.dia-col.funnel .w2 { max-width: 74%; }
.dia-col.funnel .w3 { max-width: 50%; }

/* reactivación (Atrium): contactos que se reactivan */
.react-head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; transform: translateZ(40px); }
.react-head .fi { width: 38px; height: 38px; border-radius: 11px; background: var(--ink); color: #fff; display: grid; place-items: center; flex: none; }
.react-head .fi svg { width: 19px; height: 19px; }
.react-head b { font-size: 15px; font-weight: 600; }
.react-head span { font-size: 12.5px; color: var(--muted); display: block; }
.react-list { display: flex; flex-direction: column; gap: 10px; transform-style: preserve-3d; }
.rchip {
  display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line-2);
  border-radius: 12px; padding: 11px 14px; transform: translateZ(34px); opacity: .45;
  transition: opacity .5s ease, border-color .5s ease, box-shadow .5s ease;
}
.rchip .rav { width: 28px; height: 28px; border-radius: 50%; background: #dde3ec; flex: none; display: grid; place-items: center; color: #fff; transition: background .5s ease; }
.rchip .rav svg { width: 15px; height: 15px; opacity: 0; transition: opacity .5s ease; }
.rchip b { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.rchip .rtag { margin-left: auto; font-size: 11.5px; color: var(--muted); transition: color .5s ease; }
.dia-stage.in .rchip.on { opacity: 1; border-color: rgba(45,140,255,.45); box-shadow: 0 10px 24px rgba(45,140,255,.18); }
.dia-stage.in .rchip.on .rav { background: var(--blue); }
.dia-stage.in .rchip.on .rav svg { opacity: 1; }
.dia-stage.in .rchip.on .rtag { color: var(--blue); font-weight: 600; }
.dia-stage.in .rchip.on:nth-child(2) { transition-delay: .15s; }
.dia-stage.in .rchip.on:nth-child(4) { transition-delay: .45s; }
.dia-stage.in .rchip.on:nth-child(6) { transition-delay: .75s; }

/* ---------- CAPACIDADES reinventadas (editorial, sin cuadrados) ---------- */
.value { padding: 104px 0; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; }
.value-row { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 30px 2px; border-top: 1px solid var(--line); }
.value-row .vnum { font-size: 14px; font-weight: 600; color: var(--blue); font-variant-numeric: tabular-nums; padding-top: 3px; }
.value-row h4 { font-size: 19px; letter-spacing: -.02em; margin-bottom: 8px; }
.value-row p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; gap: 0; } .value { padding: 66px 0; } }

/* ---------- v1.3 ajustes ---------- */
/* King Windows: el logo no es a sangre, mejor contenido (zoom out) */
.logo-circle.lc-contain img { object-fit: contain; width: 80%; height: 80%; }
/* booking: altura ajustada al paso 1 para que no quede hueco */
#booking-frame { min-height: 430px; background: #fff; }
.form-card { padding-bottom: 24px; }

/* ---------- v1.4 ---------- */
/* subtítulo hero más grande y legible */
.hero .sub { font-size: clamp(19px, 2.45vw, 24px); color: var(--ink-2); max-width: 62ch; line-height: 1.5; }
.hero .sub strong { color: var(--ink); font-weight: 700; }

/* "Mira el vídeo..." mucho más grande e itálico */
.watch { font-size: clamp(19px, 2.5vw, 25px); font-style: italic; color: var(--ink); font-weight: 500; margin-top: 28px; }

/* PASO 1 estilo del mockup (rojo subrayado) */
.form-step { font-size: clamp(20px, 2.4vw, 25px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 20px; }
.form-step .paso { color: #e5484d; text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }

/* iframe del survey: altura fija, el resizer de GHL no lo estira → adiós al hueco */
.ghl-wrap { border-radius: 12px; overflow: hidden; }
#booking-frame { height: 470px !important; min-height: 0 !important; width: 100%; border: 0; display: block; background: #fff; }

/* fix real: el iframe tiene id inline-…, así que fijamos altura por CLASE */
.ghl-frame { height: 470px !important; min-height: 0 !important; }

/* ---------- v1.6: más ancho, VSL más grande, scroll al form ---------- */
:root { --maxw: 1290px; }
.hero h1 { max-width: 19ch; }
.hero .sub { max-width: 72ch; }
.vsl { max-width: 1140px; }
.form-card { max-width: 820px; }
.head { max-width: 880px; }
#reserva { scroll-margin-top: 96px; }

/* ---------- v1.7: kickers bastante más grandes ---------- */
.kicker { font-size: 17px; font-weight: 700; letter-spacing: .06em; }
.head .kicker { margin-bottom: 18px; }
.partners .label { font-size: 17px; font-weight: 700; letter-spacing: .06em; }

/* ============================================================
   Páginas internas: Nosotros + Carrera + Oferta de empleo
   ============================================================ */
.page-hero { padding: 84px 0 32px; text-align: center; background: radial-gradient(1100px 480px at 50% -160px, rgba(45,140,255,.08), transparent 62%); }
.page-hero .kicker { display: block; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -.03em; line-height: 1.03; max-width: 18ch; margin: 0 auto 18px; }
.page-hero p.lead { font-size: clamp(18px, 2.2vw, 22px); color: var(--ink-2); max-width: 64ch; margin: 0 auto; line-height: 1.5; }
.back-top { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); font-weight: 600; font-size: 15px; margin-bottom: 8px; }

/* bloques de texto (Nosotros) */
.about { max-width: 820px; margin: 0 auto; padding: 16px 0 0; }
.about .block { padding: 40px 0; border-top: 1px solid var(--line); }
.about .block:first-child { border-top: 0; }
.about .block h2 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -.02em; margin-bottom: 14px; }
.about .block p { font-size: 18px; color: var(--ink-2); line-height: 1.6; }
.about .vm { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about .vm .card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.about .vm .card h3 { font-size: 18px; color: var(--blue-700); margin-bottom: 10px; letter-spacing: .01em; }
.about .vm .card p { font-size: 16.5px; color: var(--ink); }
.principles { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; }
.principles li { padding: 18px 0; border-top: 1px solid var(--line); font-size: 16px; color: var(--ink-2); }
.principles li b { display: block; color: var(--ink); font-size: 16.5px; margin-bottom: 4px; letter-spacing: -.01em; }
.about-cta { text-align: center; padding: 64px 0 16px; }

@media (max-width: 760px) { .about .vm, .principles { grid-template-columns: 1fr; } }

/* Carrera (listado) */
.jobs { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; padding-top: 8px; }
.job-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 30px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.job-card .jc-l .role { font-size: 23px; font-weight: 700; letter-spacing: -.02em; }
.job-card .jc-l .meta { color: var(--muted); font-size: 14.5px; margin-top: 4px; }
.job-card .jc-arrow { width: 46px; height: 46px; border-radius: 50%; background: var(--blue-light); color: var(--blue-700); display: grid; place-items: center; flex: none; }
.job-card .jc-arrow svg { width: 22px; height: 22px; }

/* Oferta de empleo (detalle) */
.job { max-width: 860px; margin: 0 auto; }
.job-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 auto 44px; max-width: 760px; }
.job-meta .m { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 16px; text-align: center; }
.job-meta .m .k { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.job-meta .m .v { font-size: 16px; font-weight: 600; margin-top: 5px; }
.job-sec { padding: 34px 0; border-top: 1px solid var(--line); }
.job-sec h2 { font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -.02em; margin-bottom: 14px; }
.job-sec p { font-size: 17px; color: var(--ink-2); line-height: 1.6; margin-bottom: 12px; }
.job-sec ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.job-sec ul li { position: relative; padding-left: 30px; font-size: 16.5px; color: var(--ink-2); line-height: 1.5; }
.job-sec ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: var(--blue-light); }
.job-sec ul li::after { content: ""; position: absolute; left: 5px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.tools { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.tools .tool { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.tools .tool b { display: block; font-size: 16px; margin-bottom: 6px; }
.tools .tool span { font-size: 14.5px; color: var(--muted); }
.comp { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comp .scn { border: 1px solid var(--line); border-radius: 18px; padding: 26px; background: #fff; }
.comp .scn.best { border-color: var(--blue); background: linear-gradient(180deg, #fff, var(--blue-light)); }
.comp .scn .tag { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--blue-700); }
.comp .scn .num { font-size: 30px; font-weight: 700; letter-spacing: -.02em; margin: 10px 0 2px; }
.comp .scn .sub { font-size: 14.5px; color: var(--muted); }
.comp .scn .detail { font-size: 14.5px; color: var(--ink-2); margin-top: 12px; line-height: 1.5; }
.job-apply { text-align: center; padding: 56px 0 8px; }
.job-note { font-size: 13.5px; color: var(--muted); text-align: center; max-width: 620px; margin: 14px auto 0; }
@media (max-width: 760px) { .job-meta { grid-template-columns: repeat(2, 1fr); } .comp { grid-template-columns: 1fr; } .job-card { flex-direction: column; align-items: flex-start; } }
