:root {
  --bg: #06060E;
  --surface: #0F1228;
  --surface2: #161A36;
  --line: #272D52;
  --text: #F1F3FF;
  --soft: #D7DCF0;
  --dim: #969FC2;
  --purple: #8B5CF6;
  --purple-2: #7C3AED;
  --purple-bright: #B49BFF;
  --green: #34E0C8;
  --green-bright: #6DF5E2;
  --ink: #06121A;
  --coral: #FF7A8A;
  --maxw: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

.ico {
  width: 1em;
  height: 1em;
  display: block
}

.pp {
  color: var(--purple-bright);
  font-weight: 600
}

.gg {
  color: var(--green-bright);
  font-weight: 600
}

.eyebrow {
  font-family: 'Montserrat';
  font-weight: 800;
  letter-spacing: .24em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px
}

h2 {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -.6px;
  color: var(--text)
}

.lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--soft);
  max-width: 66ch;
  margin-top: 22px
}

.sub2 {
  color: var(--soft);
  font-size: 17px;
  max-width: 64ch;
  margin-top: 16px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
  border: 0;
  text-align: center
}

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: 0 10px 30px rgba(52, 224, 200, .35)
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--btn-bg-h);
  box-shadow: 0 16px 44px rgba(52, 224, 200, .55)
}

.btn-outline {
  background: transparent;
  color: var(--text-strong);
  border: 2px solid var(--line)
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--purple-bright);
  box-shadow: 0 0 26px rgba(180, 155, 255, .3)
}

.btn-lg {
  font-size: 18px;
  padding: 20px 36px
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  z-index: 0;
  pointer-events: none
}

.orb.a {
  width: 520px;
  height: 520px;
  background: rgba(124, 58, 237, .5);
  top: -120px;
  left: -120px;
  animation: drift1 22s ease-in-out infinite
}

.orb.b {
  width: 480px;
  height: 480px;
  background: rgba(52, 224, 200, .32);
  bottom: 8%;
  right: -140px;
  animation: drift2 26s ease-in-out infinite
}

@keyframes drift1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(60px, 40px)
  }
}

@keyframes drift2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-50px, -60px)
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: .3s;
  border-bottom: 1px solid transparent
}

.nav.scrolled {
  background: rgba(var(--nav-rgb), .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line)
}

.nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand img {
  width: 42px;
  height: 42px
}

.brand .w {
  font-family: 'Montserrat';
  font-weight: 800;
  letter-spacing: .16em;
  font-size: 21px
}

.brand .w .co {
  color: var(--green-bright)
}

.nav .links {
  display: flex;
  align-items: center;
  gap: 30px
}

.nav .links a {
  font-size: 14.5px;
  color: var(--dim);
  transition: color .2s
}

.nav .links a:hover {
  color: var(--text-strong)
}

.nav .btn {
  padding: 12px 22px;
  font-size: 14px
}

.nav .links a.btn-primary {
  color: var(--btn-fg)
}

.nav .links a.btn-primary:hover {
  color: var(--btn-fg)
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text-strong);
  cursor: pointer
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero h1 {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px
}

.hero h1 .g {
  color: var(--green-bright)
}

.hero .sub {
  color: var(--soft);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 56ch;
  margin-top: 24px
}

.hero .cta-stack {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start
}

.hero .undercta {
  font-size: 14px;
  color: var(--dim)
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px
}

.hero-logo {
  width: min(420px, 82%);
  z-index: 2;
  /* Sin mask: el logo nuevo es un PNG con fondo TRANSPARENTE, así que se apoya
     solo sobre cualquier fondo. El mask radial existía porque el anterior era una
     placa oscura opaca y había que difuminarle los bordes — sobre este recortaría
     las puntas de la A. */
  animation: floaty 6s ease-in-out infinite
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

.hero-sparks {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none
}

.spark {
  position: absolute;
  bottom: -14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 12px var(--green-bright), 0 0 22px rgba(52, 224, 200, .5);
  opacity: 0;
  animation: rise linear infinite
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(.4);
    opacity: 0
  }

  10% {
    opacity: .95
  }

  80% {
    opacity: .7
  }

  100% {
    transform: translateY(-104vh) scale(1.1);
    opacity: 0
  }
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--dim);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite
}

@keyframes bob {

  0%,
  100% {
    transform: translate(-50%, 0)
  }

  50% {
    transform: translate(-50%, 8px)
  }
}

section {
  position: relative;
  z-index: 2
}

.block {
  padding: 104px 0
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

.stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease
}

.stagger.in>* {
  opacity: 1;
  transform: none
}

.stagger.in>*:nth-child(2) {
  transition-delay: .07s
}

.stagger.in>*:nth-child(3) {
  transition-delay: .14s
}

.stagger.in>*:nth-child(4) {
  transition-delay: .21s
}

.stagger.in>*:nth-child(5) {
  transition-delay: .28s
}

.stagger.in>*:nth-child(6) {
  transition-delay: .35s
}

.stagger.in>*:nth-child(7) {
  transition-delay: .42s
}

/* PROBLEM */
.problem .body p {
  color: var(--soft);
  font-size: 17px;
  margin-top: 14px;
  max-width: 74ch
}

.missing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px
}

.miss {
  background: linear-gradient(180deg, rgba(var(--c-hi), .55), rgba(var(--c-lo), .35));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: transform .2s, border-color .2s, box-shadow .2s
}

.miss:hover {
  transform: translateY(-5px);
  border-color: var(--purple);
  box-shadow: 0 0 30px rgba(139, 92, 246, .25)
}

.miss .n {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: 34px;
  color: var(--purple-bright);
  line-height: 1
}

.miss h3 {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 20px;
  margin: 10px 0 8px
}

.miss p {
  color: var(--soft);
  font-size: 15px
}

/* before/after */
.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 44px
}

.ba .panel {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 26px;
  min-height: 230px;
  position: relative;
  overflow: hidden
}

.ba .before {
  background: linear-gradient(180deg, rgba(255, 122, 138, .07), rgba(var(--c-lo), .4))
}

.ba .after {
  background: linear-gradient(180deg, rgba(52, 224, 200, .08), rgba(var(--c-lo), .4))
}

.ba .tag {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px
}

.ba .before .tag {
  color: var(--coral)
}

.ba .after .tag {
  color: var(--green-bright)
}

.scatter {
  position: relative;
  height: 170px
}

.scatter .chip {
  position: absolute;
  background: var(--chip);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 13px;
  font-size: 12px;
  color: var(--soft);
  font-family: 'Montserrat';
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35)
}

.scatter .chip.tilt1 {
  transform: rotate(-8deg)
}

.scatter .chip.tilt2 {
  transform: rotate(6deg)
}

.scatter .chip.tilt3 {
  transform: rotate(-4deg)
}

.scatter .chip.tilt4 {
  transform: rotate(10deg)
}

.pathline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px
}

.pathline .step {
  display: flex;
  align-items: center;
  gap: 8px
}

.pathline .b {
  background: rgba(52, 224, 200, .12);
  border: 1px solid rgba(52, 224, 200, .4);
  color: var(--green-bright);
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-family: 'Montserrat';
  font-weight: 700
}

.pathline .ar {
  color: var(--green);
  font-weight: 800
}

/* SOLUTION + module unlock progression */
.unlock {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 46px;
  flex-wrap: wrap;
  justify-content: center
}

.umod {
  flex: 1;
  min-width: 150px;
  text-align: center;
  position: relative;
  padding: 22px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(var(--c-hi), .5), rgba(var(--c-lo), .3));
  margin: 6px
}

.umod .ic {
  font-size: 30px
}

.umod .nm {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 17px;
  margin-top: 8px
}

.umod .st {
  font-size: 12px;
  margin-top: 6px;
  font-weight: 600
}

.umod.on {
  border-color: var(--green)
}

.umod.on .st {
  color: var(--green-bright)
}

.umod.soon {
  opacity: .8
}

.umod.soon .st {
  color: var(--dim)
}

.uarrow {
  color: var(--purple-bright);
  font-size: 24px;
  font-weight: 800;
  align-self: center;
  flex: 0 0 auto
}

.guided-tag {
  text-align: center;
  margin-top: 18px;
  font-family: 'Montserrat';
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--dim)
}

/* GUIDED PATH timeline */
.tl {
  position: relative;
  margin-top: 54px
}

.tl-line {
  position: absolute;
  left: 31px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden
}

.tl-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--purple), var(--green));
  transform: scaleY(var(--p, 0));
  transform-origin: top
}

.mod {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding-bottom: 40px
}

.mod:last-child {
  padding-bottom: 0
}

.mod .node {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  z-index: 2;
  background: #0C0E20;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 6px var(--bg);
  transition: border-color .4s, box-shadow .4s, transform .4s
}

.mod .node.lit {
  border-color: var(--purple);
  box-shadow: 0 0 0 6px var(--bg), 0 0 26px rgba(139, 92, 246, .6), 0 0 48px rgba(52, 224, 200, .28);
  transform: scale(1.05)
}

.mod .node.lit .ico {
  filter: drop-shadow(0 0 6px rgba(180, 155, 255, .7))
}

@keyframes pop {
  0% {
    transform: scale(.8)
  }

  60% {
    transform: scale(1.08)
  }

  100% {
    transform: scale(1)
  }
}

.mod .c {
  padding-top: 2px;
  opacity: .4;
  transition: opacity .5s
}

.mod.in .c {
  opacity: 1
}

.mod .top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.mod .num {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--purple-bright);
  text-transform: uppercase
}

.mod .when {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--dim);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px
}

.mod .soon-b {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-bright);
  border: 1px solid rgba(52, 224, 200, .4);
  border-radius: 999px;
  padding: 3px 10px
}

.mod h3 {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 22px;
  margin: 8px 0 8px
}

.mod p {
  color: var(--soft);
  font-size: 16px;
  max-width: 66ch
}

.mod .callout {
  margin-top: 16px;
  background: linear-gradient(180deg, rgba(var(--c-hi), .5), rgba(var(--c-lo), .3));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px
}

.pipe {
  display: flex;
  gap: 10px
}

.stage {
  flex: 1;
  background: var(--input);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 8px;
  min-width: 0
}

.stage .st {
  font-size: 10px;
  color: var(--dim);
  font-family: 'Montserrat';
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center
}

.deal {
  background: var(--chip);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 7px 8px;
  font-size: 11px;
  color: var(--soft);
  margin-bottom: 6px
}

.deal .b {
  height: 4px;
  border-radius: 2px;
  background: var(--purple);
  margin-top: 5px;
  width: 70%
}

.deal.g .b {
  background: var(--green);
  width: 100%
}

.closing {
  text-align: center;
  margin: 46px auto 0;
  max-width: 74ch;
  color: var(--soft);
  font-size: 17px
}

.closing b {
  color: var(--text-strong);
  font-weight: 600
}

.center-cta {
  text-align: center;
  margin-top: 34px
}

/* TOOLS / INDUSTRIES grid */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px
}

.ind {
  background: linear-gradient(180deg, rgba(var(--c-hi), .55), rgba(var(--c-lo), .35));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s
}

.ind:hover {
  transform: translateY(-5px);
  border-color: var(--purple);
  box-shadow: 0 0 28px rgba(139, 92, 246, .24)
}

.ind .ic {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin: 0 auto 12px;
  background: rgba(139, 92, 246, .14);
  border: 1px solid rgba(139, 92, 246, .4)
}

.ind .nm {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 14.5px
}

.ind.soon {
  border-style: dashed;
  opacity: .7
}

.ind.soon .ic {
  background: rgba(255, 255, 255, .03);
  border-color: var(--line)
}

.suggest {
  margin-top: 30px;
  text-align: center;
  background: linear-gradient(180deg, rgba(124, 58, 237, .12), rgba(var(--c-lo), .2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px
}

.suggest b {
  color: var(--text-strong)
}

/* PRICING */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 46px
}

.price .cycle {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-top: 2px
}

.price-note {
  max-width: 70ch;
  margin: 28px auto 0;
  text-align: center;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.6
}

.price-note b {
  color: var(--text-strong)
}

.price-note .mono {
  color: var(--purple-bright);
  font-weight: 600
}

.price {
  background: linear-gradient(180deg, rgba(var(--c-hi), .6), rgba(var(--c-lo), .4));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column
}

.price.live {
  border-color: var(--purple);
  box-shadow: 0 0 36px rgba(139, 92, 246, .22)
}

.price .pn {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 18px
}

.price .amt {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: 38px;
  margin: 10px 0 2px
}

.price .amt span {
  font-size: 15px;
  font-weight: 600;
  color: var(--dim)
}

.price .soon {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 13px;
  color: var(--green-bright);
  margin: 14px 0 2px
}

.price .desc {
  color: var(--soft);
  font-size: 14px;
  margin-top: 10px
}

.free-note {
  text-align: center;
  margin-top: 30px;
  color: var(--soft);
  font-size: 16px
}

.free-note b {
  color: var(--green-bright)
}

/* PROOF */
.proof {
  background: linear-gradient(180deg, rgba(124, 58, 237, .08), transparent)
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 46px
}

.quote {
  position: relative;
  background: linear-gradient(180deg, rgba(var(--c-hi), .6), rgba(var(--c-lo), .4));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px 30px
}

.quote .mark {
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: .6;
  color: var(--purple);
  opacity: .5;
  height: 36px
}

.quote p {
  color: var(--soft);
  font-size: 16.5px
}

.quote p+p {
  margin-top: 12px
}

.quote .attr {
  margin-top: 20px;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 14px;
  color: var(--text-strong)
}

.quote .attr span {
  display: block;
  color: var(--green-bright);
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 2px;
  font-family: 'Sora'
}

/* WHO */
.who {
  background: linear-gradient(180deg, transparent, rgba(52, 224, 200, .05))
}

.who-list {
  max-width: 760px;
  margin: 34px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.who-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(var(--c-hi), .5), rgba(var(--c-lo), .3));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px
}

.who-item .ck {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(52, 224, 200, .16);
  border: 1px solid var(--green);
  color: var(--green-bright);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px
}

.who-item p {
  color: var(--soft);
  font-size: 16px
}

.who .resolve {
  text-align: center;
  max-width: 64ch;
  margin: 34px auto 0;
  font-size: 18px;
  color: var(--text-strong);
  font-family: 'Montserrat';
  font-weight: 700
}

.who .resolve .gg {
  font-weight: 800
}

/* FINAL */
.final {
  background: linear-gradient(180deg, rgba(var(--nav-rgb), .6), rgba(var(--nav-rgb), .9)), url('/images/image3.jpg') center/cover;
  text-align: center
}

.final h2 {
  font-size: clamp(32px, 5.2vw, 56px)
}

.final .sub {
  color: var(--soft);
  font-size: 18px;
  max-width: 62ch;
  margin: 22px auto 0
}

.countdown {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 36px 0
}

.cd {
  background: rgba(15, 18, 40, .7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 10px;
  min-width: 90px
}

.cd .n {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: clamp(28px, 5vw, 44px);
  color: var(--text-strong);
  line-height: 1
}

.cd .l {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 8px
}

.final .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px
}

.trustline {
  margin-top: 28px;
  color: var(--soft);
  font-size: 15px
}

.trustline b {
  color: var(--text-strong);
  font-weight: 600
}

footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 50px;
  background: var(--footer);
  position: relative;
  z-index: 2
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px
}

.foot-brand .tag {
  color: var(--dim);
  font-size: 14px;
  margin-top: 14px;
  max-width: 34ch;
  font-style: italic
}

.foot-col h5 {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px
}

.foot-col a {
  display: block;
  color: var(--soft);
  font-size: 14px;
  margin-bottom: 9px
}

.foot-col a:hover {
  color: var(--green-bright)
}

.foot-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

@media (max-width:920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero .cta-stack {
    align-items: center
  }

  .hero-visual {
    order: -1;
    min-height: 300px
  }

  .missing,
  .ind-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr
  }

  .ba {
    grid-template-columns: 1fr
  }

  .quotes {
    grid-template-columns: 1fr
  }

  .unlock {
    flex-direction: column
  }

  .uarrow {
    transform: rotate(90deg)
  }

  .foot-top {
    grid-template-columns: 1fr 1fr
  }

  .nav .links a:not(.navbtn) {
    display: none
  }

  .menu-toggle {
    display: block
  }
}

@media (max-width:560px) {

  .missing,
  .ind-grid,
  .price-grid {
    grid-template-columns: 1fr
  }

  /* El footer quedaba en 2 columnas hasta 560px, pero un track `1fr` no baja de su
     min-content: la columna de marca mide 226px y la de enlaces 113px, o sea
     226+113+30 = 369px dentro de un contenedor de 334px. Eso empujaba 7px fuera del
     viewport y dejaba scroll horizontal en el teléfono. A una columna cabe de sobra. */
  .foot-top {
    grid-template-columns: 1fr
  }

  .countdown {
    gap: 8px
  }

  .cd {
    min-width: 70px
  }

  .pipe {
    flex-wrap: wrap
  }

  .stage {
    flex: 1 1 45%
  }
}

/* ===== COMBINED PROGRAMS BAND (CRM &amp; Sales + Marketing = Atrovia) ===== */
.combo {
  padding: 70px 0
}

.combo .inner {
  background: linear-gradient(180deg, rgba(124, 58, 237, .10), rgba(52, 224, 200, .06));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center
}

.combo .kicker {
  font-family: 'Montserrat';
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 22px
}

.combo .lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap
}

/* --- LOGO SLOTS: replace each .logo-mark block with your real <img src="images/kova_logo.png"> etc. --- */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 18, 40, .55);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 26px;
  min-height: 76px
}

.logo-mark .badge {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.logo-mark .badge svg {
  width: 22px;
  height: 22px
}

.logo-mark .logo-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0
}

.logo-mark .wm {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: 26px;
  letter-spacing: .02em;
  line-height: 1
}

.logo-mark .wm small {
  display: block;
  font-family: 'Sora';
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--dim)
}

.logo-mark.atrium .badge {
  background: rgba(139, 92, 246, .16);
  border: 1px solid rgba(139, 92, 246, .5)
}

.logo-mark.atrium .badge svg {
  stroke: var(--purple-bright)
}

.logo-mark.atrium .wm {
  color: var(--purple-bright)
}

.logo-mark.kova .badge {
  background: rgba(52, 224, 200, .16);
  border: 1px solid rgba(52, 224, 200, .5)
}

.logo-mark.kova .badge svg {
  stroke: var(--green-bright)
}

.logo-mark.kova .wm {
  color: var(--green-bright)
}

.combo .op {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: 34px;
  color: var(--text)
}

.logo-mark.result {
  background: transparent;
  border: 0;
  padding: 0
}

.logo-mark.result .wm {
  font-size: 34px;
  color: var(--text-strong)
}

.logo-mark.result .wm .co {
  color: var(--green-bright)
}

.combo .combo-msg {
  max-width: 60ch;
  margin: 30px auto 0;
  font-size: clamp(17px, 2.1vw, 22px);
  color: var(--soft);
  line-height: 1.55
}

.combo .combo-msg b {
  color: var(--text-strong);
  font-weight: 600
}

.combo .combo-sub {
  margin-top: 14px;
  font-family: 'Montserrat';
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--text-strong)
}

.combo .combo-sub .gg {
  color: var(--green-bright)
}

/* ===== PURPOSE / COMMUNITY BAND ===== */
.purpose {
  padding: 56px 0
}

.purpose-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center
}

.purpose h2 {
  font-size: clamp(24px, 3.4vw, 38px)
}

.purpose p {
  color: var(--soft);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 60ch;
  margin: 18px auto 0;
  line-height: 1.6
}

.purpose .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--green-bright)
}

.purpose .link:hover {
  color: var(--text-strong)
}

/* ===== BUSINESS CHECK / SURVEY (dark) ===== */
.survey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px
}

.scard {
  background: linear-gradient(180deg, rgba(var(--c-hi), .55), rgba(var(--c-lo), .35));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  transition: border-color .2s, transform .2s
}

.scard:hover {
  transform: translateY(-3px)
}

.scard.m:hover {
  border-color: var(--purple)
}

.scard.c:hover {
  border-color: var(--green)
}

.scard .tag-tool {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  align-self: flex-start
}

.scard.m .tag-tool {
  background: rgba(139, 92, 246, .16);
  color: var(--purple-bright);
  border: 1px solid rgba(139, 92, 246, .4)
}

.scard.c .tag-tool {
  background: rgba(52, 224, 200, .14);
  color: var(--green-bright);
  border: 1px solid rgba(52, 224, 200, .4)
}

.scard .sic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center
}

.scard.m .sic {
  background: rgba(139, 92, 246, .14)
}

.scard.c .sic {
  background: rgba(52, 224, 200, .14)
}

.scard .sic .ico {
  width: 21px;
  height: 21px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.scard.m .sic .ico {
  stroke: var(--purple-bright)
}

.scard.c .sic .ico {
  stroke: var(--green-bright)
}

.scard .st {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 14.5px;
  color: var(--text-strong);
  line-height: 1.2
}

.scard .sd {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.4;
  flex-grow: 1
}

.meter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px
}

.rng {
  flex: 1;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 6px;
  background: var(--track);
  outline: none;
  cursor: pointer
}

.rng::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--purple);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  cursor: pointer;
  margin-top: -7px
}

.scard.c .rng::-webkit-slider-thumb {
  border-color: var(--green)
}

.rng::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--purple);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  cursor: pointer
}

.scard.c .rng::-moz-range-thumb {
  border-color: var(--green)
}

.mval {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 16px;
  min-width: 46px;
  text-align: right
}

.scard.m .mval {
  color: var(--purple-bright)
}

.scard.c .mval {
  color: var(--green-bright)
}

.mval span {
  color: var(--dim);
  font-weight: 600;
  font-size: 12px
}

.survey-cta {
  text-align: center;
  margin-top: 34px
}

/* how-to panel + animated demo slider */
.survey-howto {
  max-width: 560px;
  margin: 30px auto 0;
  background: linear-gradient(180deg, rgba(var(--c-hi), .5), rgba(var(--c-lo), .3));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 26px
}

.survey-howto .ht-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--soft)
}

.survey-howto .ht-step b {
  color: var(--text-strong)
}

.survey-howto .ht-step+.ht-step {
  margin-top: 14px
}

.survey-howto .htn {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(139, 92, 246, .18);
  border: 1px solid var(--purple);
  color: var(--purple-bright);
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 12px;
  display: grid;
  place-items: center
}

.demo-track {
  position: relative;
  height: 8px;
  border-radius: 6px;
  background: var(--track);
  margin: 14px 0 8px
}

.demo-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  width: 20%;
  animation: demofill 3.4s ease-in-out infinite
}

.demo-thumb {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--purple-bright);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  transform: translate(-50%, -50%);
  animation: demoslide 3.4s ease-in-out infinite
}

.demo-hand {
  position: absolute;
  top: calc(50% + 4px);
  left: 20%;
  font-size: 18px;
  transform: translateX(-50%);
  animation: demoslide 3.4s ease-in-out infinite;
  pointer-events: none
}

@keyframes demoslide {
  0% {
    left: 8%
  }

  45% {
    left: 92%
  }

  55% {
    left: 92%
  }

  100% {
    left: 8%
  }
}

@keyframes demofill {
  0% {
    width: 8%
  }

  45% {
    width: 92%
  }

  55% {
    width: 92%
  }

  100% {
    width: 8%
  }
}

.ht-scale {
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--dim)
}

/* pulse the real sliders until first interaction */
.hint-active .scard .rng::-webkit-slider-thumb {
  animation: thumbpulse 1.6s ease-in-out infinite
}

.hint-active .scard .rng::-moz-range-thumb {
  animation: thumbpulse 1.6s ease-in-out infinite
}

@keyframes thumbpulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, .55), 0 2px 8px rgba(0, 0, 0, .5)
  }

  50% {
    box-shadow: 0 0 0 9px rgba(139, 92, 246, 0), 0 2px 8px rgba(0, 0, 0, .5)
  }
}

.survey-hint {
  text-align: center;
  color: var(--dim);
  font-size: 14px;
  margin-top: 14px;
  display: none
}

.survey-hint.show {
  display: block
}

.survey-result {
  max-width: 640px;
  margin: 34px auto 0;
  display: none
}

.survey-result.show {
  display: block;
  animation: fadeup .5s ease
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.result-card {
  border-radius: 22px;
  padding: 38px;
  text-align: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(var(--c-hi), .7), rgba(var(--c-lo), .5))
}

.result-card .rl {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim)
}

.result-card .rt {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: 30px;
  margin: 8px 0 10px
}

.result-card.atrium .rt {
  color: var(--purple-bright)
}

.result-card.kova .rt {
  color: var(--green-bright)
}

.result-card p {
  font-size: 16px;
  max-width: 52ch;
  margin: 0 auto 20px;
  color: var(--soft)
}

.result-card .score {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: 52px;
  color: var(--text-strong);
  line-height: 1;
  margin-top: 4px
}

.result-card .score span {
  font-size: 20px;
  color: var(--dim);
  font-weight: 700
}

.scoremeter {
  position: relative;
  height: 14px;
  border-radius: 8px;
  background: var(--track);
  margin: 18px auto 8px;
  overflow: hidden;
  max-width: 460px
}

.scoremeter .fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  width: 0;
  transition: width 1.1s cubic-bezier(.2, .8, .2, 1)
}

.scorelabels {
  display: flex;
  justify-content: space-between;
  max-width: 460px;
  margin: 0 auto;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 12px;
  color: var(--dim)
}

.scorelabels .goalend {
  color: var(--green-bright)
}

.goaltxt {
  font-size: 15px;
  color: var(--soft);
  margin: 14px auto 0;
  max-width: 46ch
}

.goaltxt b {
  color: var(--text-strong)
}

.rdiv {
  height: 1px;
  background: var(--line);
  margin: 24px 0 20px
}

.result-card .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

/* ===== DEMO VIDEO MODAL ===== */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 5, 12, .86);
  backdrop-filter: blur(6px)
}

.vmodal.open {
  display: flex;
  animation: fadeup .3s ease
}

.vmodal .box {
  width: min(960px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6)
}

.vmodal .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line)
}

.vmodal .bar .t {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 15px
}

.vmodal .x {
  background: none;
  border: 0;
  color: var(--dim);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  padding: 0 4px
}

.vmodal .x:hover {
  color: var(--text-strong)
}

.vframe {
  position: relative;
  aspect-ratio: 16/9;
  background: #05060e
}

.vframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0
}

.vframe .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--dim);
  font-size: 14px;
  padding: 20px
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important
  }

  .reveal,
  .stagger>* {
    opacity: 1 !important;
    transform: none !important
  }
}

/* ================= THEMING (Dynamic dark / Professional light) ================= */
:root {
  --text-strong: #fff;
  --c-hi: 33, 39, 72;
  --c-lo: 16, 20, 42;
  --nav-rgb: 6, 6, 14;
  --track: #1b2140;
  --input: #0C0F22;
  --chip: #141A36;
  --footer: #05050B;
  --btn-bg: #34E0C8;
  --btn-bg-h: #6DF5E2;
  --btn-fg: #6D28D9;
  --line: #343C68;
  --surface: #131834;
  --surface2: #1C2247;
  --card-shadow: 0 14px 36px rgba(0, 0, 0, .5);
}

html[data-theme="light"] {
  --bg: #EFE7D6;
  --surface: #FFFFFF;
  --surface2: #EFE7FB;
  --line: #CBBEE8;
  --text: #221A38;
  --soft: #3B3454;
  --dim: #5D5677;
  --card-shadow: 0 10px 30px rgba(84, 52, 140, .16), 0 2px 8px rgba(84, 52, 140, .10);
  --purple: #7C3AED;
  --purple-2: #6D28D9;
  --purple-bright: #6D28D9;
  --green: #0E9E8A;
  --green-bright: #0A7A6A;
  --text-strong: #1C1436;
  --c-hi: 255, 255, 255;
  --c-lo: 246, 241, 252;
  --nav-rgb: 255, 252, 245;
  --track: #E9E2F4;
  --input: #FBF9FE;
  --chip: #F2ECFA;
  --footer: #F5EFE3;
  --btn-bg: #7C3AED;
  --btn-bg-h: #6D28D9;
  --btn-fg: #FFFCF5;
}

html {
  transition: background .3s
}

body {
  transition: background .3s, color .3s
}

html[data-theme="light"] .orb {
  opacity: .2
}

html[data-theme="light"] .nav.scrolled {
  box-shadow: 0 2px 22px rgba(80, 50, 140, .09)
}

/* logos are neon-on-black jpgs: show as small dark badges in light mode (screen-blend would wash out) */
html[data-theme="light"] .plan .logo {
  mix-blend-mode: normal;
  background: #0B0B16;
  border-radius: 10px;
  padding: 4px
}

/* Las píldoras ya no llevan logos neón sobre negro sino iconos SVG con gradiente:
   en claro pasan a ser tarjetas claras normales. Antes se forzaban a teja oscura
   para que el PNG neón no se lavara — eso era parte del manchón oscuro del modo claro. */
html[data-theme="light"] .logo-mark:not(.result),
html[data-theme="light"] .pillbrand,
html[data-theme="light"] .lm:not(.result) {
  background: var(--surface);
  border-color: var(--line)
}

html[data-theme="light"] .btn-outline {
  border-color: var(--line)
}

html[data-theme="light"] .stars,
html[data-theme="light"] .sparks {
  opacity: .35
}

/* keep the dark-image final CTA readable in light mode */
html[data-theme="light"] .final {
  --text: #F1F3FF;
  --soft: #D7DCF0;
  --dim: #AEB4CE;
  --text-strong: #fff
}

html[data-theme="light"] .final {
  background: linear-gradient(180deg, rgba(8, 10, 24, .76), rgba(8, 10, 24, .93)), url('/images/image3.jpg') center/cover
}

/* responsive type: larger on desktop, smaller on phone */
@media (min-width:1280px) {
  body {
    font-size: 16.5px
  }
}

@media (max-width:600px) {
  body {
    font-size: 15px
  }

  .lead {
    font-size: 16px
  }
}

/* theme chooser popup */
.theme-pop {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 6, 14, .72);
  backdrop-filter: blur(8px)
}

.theme-pop.show {
  display: flex
}

.theme-pop-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5)
}

.tp-eyebrow {
  font-family: 'Montserrat';
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--dim);
  margin-bottom: 10px
}

.theme-pop-card h3 {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: 23px;
  color: var(--text)
}

.theme-pop-card p {
  color: var(--soft);
  font-size: 14.5px;
  margin-top: 8px
}

.tp-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px
}

.tp-choice {
  background: transparent;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  transition: .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.tp-choice:hover {
  border-color: var(--purple);
  transform: translateY(-3px)
}

.tp-swatch {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line)
}

.tp-swatch span {
  flex: 1
}

.tp-swatch.light span:first-child {
  background: #FBF8F1
}

.tp-swatch.light span:last-child {
  background: #7C3AED
}

.tp-swatch.dark span:first-child {
  background: #0B193D
}

.tp-swatch.dark span:last-child {
  background: #34E0C8
}

.tp-name {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 16px;
  color: var(--text)
}

.tp-sub {
  font-size: 12px;
  color: var(--dim)
}

.tp-skip {
  margin-top: 18px;
  background: none;
  border: 0;
  color: var(--dim);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline
}

.tp-skip:hover {
  color: var(--text)
}

/* floating toggle */
.theme-toggle {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 130;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .28);
  transition: transform .2s, border-color .2s
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--purple)
}

.theme-toggle svg {
  width: 22px;
  height: 22px
}


/* ================= MOBILE POLISH ================= */
/* business-check tiles: 3-up on tablet, 2-up on phone */
@media (max-width:900px) {
  .survey-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:600px) {
  .survey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .scard {
    padding: 13px
  }
}

/* signup form rows stack on phone */
@media (max-width:600px) {

  .field.row2,
  .field.row3 {
    grid-template-columns: 1fr
  }
}

/* mobile nav: collapse links into a dropdown, move the button inside it */
@media (max-width:820px) {
  .nav .row {
    position: relative
  }

  .menu-toggle {
    display: block !important
  }

  .nav .links {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
    display: none;
  }

  .nav.open .links {
    display: flex
  }

  .nav .links a {
    display: block !important;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 15px;
    color: var(--text);
    width: auto
  }

  .nav .links a:hover {
    background: var(--surface2)
  }

  .nav .links a.btn-primary {
    margin-top: 6px;
    justify-content: center;
    padding: 13px;
    font-size: 15px
  }

  .nav .links a.btn-primary:hover {
    background: var(--btn-bg-h)
  }
}


/* ================= DEPTH / SEPARATION (both themes) ================= */
body {
  background:
    radial-gradient(1100px 640px at 12% -6%, rgba(124, 58, 237, .09), transparent 55%),
    radial-gradient(1000px 600px at 106% 16%, rgba(52, 224, 200, .06), transparent 55%),
    var(--bg);
}

html[data-theme="light"] body {
  background:
    radial-gradient(1100px 640px at 12% -6%, rgba(124, 58, 237, .08), transparent 58%),
    radial-gradient(1000px 620px at 106% 16%, rgba(14, 158, 138, .06), transparent 58%),
    var(--bg);
}

/* lift content cards off the background in both modes */
.panel,
.umod,
.scard,
.result-card,
.ind,
.price,
.quote,
.survey-howto,
.combo-card,
.val,
.stat,
.founder,
.pillar,
.form,
.plan,
.ceo,
.rec,
.su-form,
.summary {
  box-shadow: var(--card-shadow)
}

/* stronger, more defined borders on light cards */
html[data-theme="light"] .panel,
html[data-theme="light"] .umod,
html[data-theme="light"] .scard,
html[data-theme="light"] .val,
html[data-theme="light"] .stat,
html[data-theme="light"] .founder,
html[data-theme="light"] .pillar,
html[data-theme="light"] .form,
html[data-theme="light"] .plan,
html[data-theme="light"] .ceo,
html[data-theme="light"] .rec,
html[data-theme="light"] .su-form,
html[data-theme="light"] .summary,
html[data-theme="light"] .combo-card,
html[data-theme="light"] .price,
html[data-theme="light"] .quote {
  border-color: #CDBFEA
}

/* alternating section bands to break up the page (About + any page) */
.band-tint {
  background: linear-gradient(180deg, rgba(124, 58, 237, .07), transparent)
}

html[data-theme="light"] .band-tint {
  background: linear-gradient(180deg, rgba(124, 58, 237, .07), rgba(14, 158, 138, .035))
}
/* ================= MODO CLARO: sin neblina =================
   Los orbes desenfocados, los tintes del fondo y los halos neón están pensados para
   fondo oscuro; sobre claro se leen como una sombra sucia detrás de todo (y "se mueve"
   al hacer scroll porque los orbes son fixed + animados). En claro se apagan.
   El modo oscuro queda EXACTAMENTE igual. */
html[data-theme="light"] .orb {
  display: none
}

html[data-theme="light"] body {
  background: var(--bg)
}

html[data-theme="light"] .stars,
html[data-theme="light"] .sparks,
html[data-theme="light"] .hero-sparks {
  display: none
}

/* el botón primario es morado y su glow era verde agua: en claro, sombra sobria del mismo tono */
html[data-theme="light"] .btn-primary {
  box-shadow: 0 8px 20px rgba(84, 52, 140, .22)
}

html[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 12px 28px rgba(84, 52, 140, .30)
}

html[data-theme="light"] .btn-outline:hover {
  box-shadow: none
}

html[data-theme="light"] .band-tint {
  background: none
}

/* ---- LOGO DEL HERO ----
   El logo nuevo es transparente, así que ya no necesita la placa oscura que había
   que ponerle detrás en modo claro (el anterior era un PNG opaco con mask radial:
   sobre papel se le veían los bordes y los contornos de la A como agujeros). */

/* ═══════════════════════════════════════════════════════════════
   VIDEO SHOWCASES — secciones de video del landing (demo + loops).
   Portado del entregable del 2026-07-26. Aditivo: ninguna de estas
   clases existía antes, así que no pisa ni una regla previa.
   ═══════════════════════════════════════════════════════════════ */
/* ===== VIDEO SHOWCASES ===== */
.vsec{padding:46px 0;position:relative;z-index:2}
.appwin{border-radius:16px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--card-shadow);background:var(--surface2)}
.appwin .abar{height:36px;display:flex;align-items:center;gap:7px;padding:0 14px;background:rgba(var(--c-hi),.6);border-bottom:1px solid var(--line)}
.appwin .abar i{width:11px;height:11px;border-radius:50%;display:block}
.appwin .abar i:nth-child(1){background:#FF6058}
.appwin .abar i:nth-child(2){background:#FEBC2E}
.appwin .abar i:nth-child(3){background:#28C840}
.appwin .abar .lbl{margin-left:10px;font-family:'Montserrat';font-weight:700;font-size:12px;color:var(--dim);letter-spacing:.03em}
.appwin video{width:100%;display:block;background:#05060e}
.vsplit{display:grid;grid-template-columns:1fr 1.15fr;gap:40px;align-items:center}
.vsplit.rev .vtext{order:2}
.vsplit .vtext .vtag{font-family:'Montserrat';font-weight:800;letter-spacing:.18em;text-transform:uppercase;font-size:12px;margin-bottom:14px}
.vsplit .vtext h3{font-family:'Instrument Serif',Georgia,serif;font-weight:400;font-size:clamp(24px,3.4vw,34px);line-height:1.1;color:var(--text)}
.vsplit .vtext p{color:var(--soft);font-size:16px;margin-top:14px;max-width:42ch}
/* demo showcase (click to play inline) */
.demo-show{max-width:940px;margin:0 auto}
.demo-frame{position:relative;border-radius:18px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--card-shadow);cursor:pointer;background:#05060e}
.demo-frame video{width:100%;display:block}
.demo-frame .play{position:absolute;inset:0;display:grid;place-items:center;background:linear-gradient(180deg,rgba(4,5,14,.15),rgba(4,5,14,.5));transition:opacity .3s}
.demo-frame .pbtn{width:88px;height:88px;border-radius:50%;background:rgba(52,224,200,.22);backdrop-filter:blur(6px);border:2px solid rgba(255,255,255,.8);display:grid;place-items:center;transition:transform .2s,background .2s}
.demo-frame:hover .pbtn{transform:scale(1.09);background:rgba(52,224,200,.34)}
.demo-frame .pbtn svg{width:36px;height:36px;fill:#fff;margin-left:5px}
.demo-frame .plabel{position:absolute;bottom:18px;left:20px;font-family:'Montserrat';font-weight:800;font-size:13px;letter-spacing:.03em;color:#fff;background:rgba(4,5,14,.5);padding:7px 14px;border-radius:999px;backdrop-filter:blur(6px)}
.demo-frame.playing .play{opacity:0;pointer-events:none}
@media (max-width:760px){
  .vsplit{grid-template-columns:1fr;gap:22px}
  .vsplit.rev .vtext{order:0}
  .demo-frame .pbtn{width:70px;height:70px}
}
/* full-width maps hero band */
.vhero-sec{position:relative;z-index:2;margin:50px 0;width:100%}
.vhero{position:relative;width:100%;overflow:hidden;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.vhero video{width:100%;height:clamp(300px,40vw,540px);object-fit:cover;display:block;background:#05060e}
.vhero .cap{position:absolute;left:0;right:0;bottom:0;padding:44px 24px 34px;background:linear-gradient(0deg,rgba(4,5,14,.82),rgba(4,5,14,.2) 70%,transparent);text-align:center}
.vhero .cap h3{font-family:'Instrument Serif',Georgia,serif;font-weight:400;font-size:clamp(26px,4vw,44px);line-height:1.05;color:#fff}