:root {
  --tech-bg: #05070f;
  --tech-bg-soft: #0a1227;
  --tech-card: rgba(13, 21, 43, 0.72);
  --tech-stroke: rgba(112, 164, 255, 0.24);
  --tech-text: #eaf1ff;
  --tech-muted: #a9b8d9;
  --tech-primary: #50d6ff;
  --tech-secondary: #8b6bff;
  --tech-success: #4dffbb;
}

body.landing-tech-page {
  margin: 0;
  color: var(--tech-text);
  background: radial-gradient(circle at 8% 18%, rgba(80, 214, 255, 0.16), transparent 35%),
    radial-gradient(circle at 90% 5%, rgba(139, 107, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #060a16 0%, #04060d 100%);
}

.tech-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(124, 157, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 157, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
}

.tech-container {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.tech-skip-link {
  position: absolute;
  left: -9999px;
}

.tech-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tech-stroke);
  background: rgba(4, 8, 18, 0.72);
}

.tech-topbar .tech-container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tech-brand {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .04em;
}

.tech-brand__logo {
  display: block;
  height: clamp(28px, 3.6vw, 38px);
  width: auto;
  max-width: min(210px, 52vw);
  object-fit: contain;
}

.tech-footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

@media (min-width: 640px) {
  .tech-footer__left {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
}

.tech-footer__left p {
  margin: 0;
  color: #9eb0d5;
}

.tech-footer__logo {
  height: 26px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  opacity: 0.94;
  flex-shrink: 0;
}

.tech-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.tech-nav a {
  color: var(--tech-muted);
  text-decoration: none;
  font-weight: 600;
}

.tech-nav a:hover {
  color: #fff;
}

.tech-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--tech-stroke);
  background: rgba(13, 21, 43, 0.35);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.tech-hamburger:hover {
  background: rgba(13, 21, 43, 0.55);
}

.tech-mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(4, 8, 18, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.tech-mobile-drawer {
  position: fixed;
  left: 12px;
  right: 12px;
  top: calc(64px + env(safe-area-inset-top, 0px));
  z-index: 21;
  background: rgba(4, 8, 18, 0.94);
  border: 1px solid var(--tech-stroke);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 12px;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.tech-mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 6px 10px;
}

.tech-mobile-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--tech-stroke);
  background: rgba(13, 21, 43, 0.35);
  color: var(--tech-text);
  font-weight: 800;
  cursor: pointer;
}

.tech-mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tech-mobile-drawer__nav a {
  padding: 0.72rem 1rem;
  border-radius: 12px;
  color: var(--tech-muted);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.tech-mobile-drawer__nav a:hover {
  color: #fff;
  border-color: rgba(112, 164, 255, 0.25);
  background: rgba(13, 21, 43, 0.4);
}

body.tech-menu-open .tech-mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.tech-menu-open .tech-mobile-drawer {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.tech-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: .78rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .15s ease, background .15s ease;
}

.tech-btn--primary {
  color: #07101d;
  background: linear-gradient(120deg, var(--tech-primary), #84e8ff 45%, #a089ff);
  box-shadow: 0 14px 30px rgba(80, 214, 255, 0.24);
}

/* Solo el CTA principal del hero (estilo "conectado / online") */
.tech-btn--primary.tech-btn--online {
  color: #042210;
  background: linear-gradient(125deg, #5ee985 0%, #34d399 45%, #22c55e 100%);
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.32);
}

.tech-btn--ghost {
  color: var(--tech-text);
  border-color: var(--tech-stroke);
  background: rgba(13, 21, 43, 0.35);
}

.tech-btn:hover {
  transform: translateY(-1px);
}

/* Subrayado “grueso” fiable: barra con ::after (text-decoration-thickness falla en WebKit / con shorthand de style.css) */
html :is(.landing-tech-page, .legal-tech-page) a:not(.tech-brand):not(.tech-skip-link):not(.tech-mobile-bar):not(.wa-support-fab):not(.landing-login-signup-cta__action) {
  position: relative;
}

html :is(.landing-tech-page, .legal-tech-page) a:hover:not(.tech-brand):not(.tech-skip-link):not(.tech-mobile-bar):not(.wa-support-fab):not(.landing-login-signup-cta__action),
html :is(.landing-tech-page, .legal-tech-page) a:focus-visible:not(.tech-brand):not(.tech-skip-link):not(.tech-mobile-bar):not(.wa-support-fab):not(.landing-login-signup-cta__action) {
  text-decoration: none !important;
}

html :is(.landing-tech-page, .legal-tech-page) a:hover:not(.tech-brand):not(.tech-skip-link):not(.tech-mobile-bar):not(.wa-support-fab):not(.landing-login-signup-cta__action)::after,
html :is(.landing-tech-page, .legal-tech-page) a:focus-visible:not(.tech-brand):not(.tech-skip-link):not(.tech-mobile-bar):not(.wa-support-fab):not(.landing-login-signup-cta__action)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.14em;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  pointer-events: none;
  opacity: 0.92;
}

/* CTAs pill: la barra va dentro del botón, sin tapar el texto */
html :is(.landing-tech-page, .legal-tech-page) a.tech-btn:hover:not(.tech-brand):not(.tech-skip-link):not(.tech-mobile-bar):not(.wa-support-fab)::after,
html :is(.landing-tech-page, .legal-tech-page) a.tech-btn:focus-visible:not(.tech-brand):not(.tech-skip-link):not(.tech-mobile-bar):not(.wa-support-fab)::after {
  left: 12%;
  right: 12%;
  bottom: 0.55rem;
  height: 2px;
  border-radius: 2px;
}

.tech-brand:hover,
.tech-brand:focus-visible {
  text-decoration: none;
}

:is(.landing-tech-page, .legal-tech-page) .tech-btn--primary:hover,
:is(.landing-tech-page, .legal-tech-page) .tech-btn--primary:focus-visible {
  color: #07101d;
}

:is(.landing-tech-page, .legal-tech-page) .tech-btn--primary.tech-btn--online:hover,
:is(.landing-tech-page, .legal-tech-page) .tech-btn--primary.tech-btn--online:focus-visible {
  color: #042210;
  box-shadow: 0 16px 38px rgba(34, 197, 94, 0.42);
}

:is(.landing-tech-page, .legal-tech-page) .tech-price-main .tech-btn--primary:hover,
:is(.landing-tech-page, .legal-tech-page) .tech-price-main .tech-btn--primary:focus-visible {
  color: #051423;
}

:is(.landing-tech-page, .legal-tech-page) .tech-btn--ghost:hover,
:is(.landing-tech-page, .legal-tech-page) .tech-btn--ghost:focus-visible {
  color: #f0f6ff;
  background: rgba(18, 28, 56, 0.55);
  border-color: rgba(158, 188, 255, 0.4);
}

:is(.landing-tech-page, .legal-tech-page) .tech-btn--primary:active {
  color: #07101d;
}

:is(.landing-tech-page, .legal-tech-page) .tech-btn--primary.tech-btn--online:active {
  color: #042210;
}

:is(.landing-tech-page, .legal-tech-page) .tech-btn--ghost:active {
  color: #f0f6ff;
}

.tech-hero {
  padding: 3.4rem 0 3rem;
}

.tech-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}

.tech-kicker {
  margin: 0 0 .6rem;
  color: var(--tech-primary);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 700;
}

.tech-kicker--app-name {
  text-transform: none;
  letter-spacing: .02em;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: .35rem;
}

.tech-kicker--tagline {
  margin: .5rem 0 .6rem;
  font-size: .72rem;
}

.tech-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.08;
  max-width: 14ch;
}

.tech-lead {
  color: var(--tech-muted);
  max-width: 58ch;
  margin: 1rem 0 1.5rem;
  font-size: 1.06rem;
}

.tech-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1rem;
}

.tech-hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  border: 1px solid rgba(130, 189, 255, 0.38);
  border-radius: 999px;
  background: rgba(11, 22, 47, 0.55);
  color: #d8e6ff;
  padding: .44rem .78rem;
  font-size: .84rem;
  letter-spacing: .01em;
}

.tech-hero-stats strong {
  color: #ffffff;
  font-size: 1rem;
}

.tech-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1rem;
}

.tech-badges {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.tech-badges li {
  border: 1px solid var(--tech-stroke);
  border-radius: 999px;
  padding: .45rem .8rem;
  color: #dce7ff;
  background: rgba(16, 27, 56, 0.42);
  font-size: .9rem;
}

.tech-card-stack {
  display: grid;
  gap: 1rem;
}

.tech-glass-card,
.tech-login-card,
.tech-feature,
.tech-price,
.tech-faq details {
  border: 1px solid var(--tech-stroke);
  background: var(--tech-card);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.tech-glass-card {
  padding: 1.2rem;
}

.tech-metrics {
  margin-top: .9rem;
  display: grid;
  gap: .55rem;
}

.tech-metrics div {
  padding: .7rem .8rem;
  border-radius: 12px;
  background: rgba(8, 13, 29, 0.62);
  display: flex;
  justify-content: space-between;
  gap: .6rem;
}

.tech-metrics strong {
  color: var(--tech-success);
}

.tech-metrics span {
  color: var(--tech-muted);
  font-size: .88rem;
}

.tech-chat-card ol {
  margin: .75rem 0 0;
  padding-left: 1.1rem;
  color: var(--tech-muted);
}

.tech-chat-card li {
  margin-bottom: .4rem;
}

.tech-inline-cta {
  display: inline-block;
  margin-top: .5rem;
  color: var(--tech-primary);
  font-weight: 700;
}

.tech-login-card {
  padding: 1.2rem;
}

.tech-login-card h2 {
  margin-top: 0;
}

.tech-login-kicker {
  color: var(--tech-primary);
  font-weight: 700;
  margin: 0 0 .25rem;
}

.tech-login-form {
  display: grid;
  gap: .55rem;
}

.tech-login-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(158, 188, 255, 0.3);
  background: rgba(6, 12, 27, 0.84);
  color: var(--tech-text);
  padding: .7rem .8rem;
}

.tech-submit {
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  color: #08101d;
  padding: .8rem 1rem;
  margin-top: .2rem;
  background: linear-gradient(120deg, var(--tech-primary), #9f90ff);
}

.tech-section {
  padding: 1.2rem 0 2.4rem;
}

.tech-section h2 {
  margin: 0 0 1rem;
}

.tech-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.tech-immersive {
  padding: 3rem 0;
}

.tech-immersive__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(80, 214, 255, 0.25), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(139, 107, 255, 0.22), transparent 45%);
  filter: blur(10px);
  animation: techPulseBg 8s ease-in-out infinite alternate;
}

.tech-immersive__inner {
  position: relative;
  z-index: 1;
}

.tech-giant-title {
  margin: 0;
  font-size: clamp(2.4rem, 9vw, 6.4rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  padding-bottom: .08em;
  overflow: visible;
  background: linear-gradient(125deg, #ffffff 0%, #bfe7ff 40%, #b7a9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tech-giant-title--sm {
  font-size: clamp(2rem, 7vw, 4.8rem);
}

.tech-immersive .tech-giant-title {
  font-size: clamp(2rem, 7.4vw, 4.3rem);
}

.tech-immersive__lead {
  max-width: 62ch;
  color: var(--tech-muted);
  margin: 1rem 0 1.2rem;
  font-size: 1.05rem;
}

.tech-immersive__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.tech-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  overflow: hidden;
  opacity: .5;
}

.tech-marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  font-size: clamp(1rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(190, 214, 255, 0.9);
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.tech-marquee__track span {
  display: inline-block;
  flex: 0 0 auto;
  padding-right: .75rem;
}

.tech-experience {
  padding: 2.5rem 0;
}

.tech-experience__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1rem;
  align-items: center;
}

.tech-experience__copy p {
  color: var(--tech-muted);
  max-width: 48ch;
}

.tech-orbit {
  position: relative;
  min-height: 640px;
  border: 1px solid var(--tech-stroke);
  border-radius: 24px;
  background: radial-gradient(circle at 50% 50%, rgba(40, 88, 170, 0.2), rgba(6, 10, 20, 0.86));
  overflow: hidden;
}

.tech-orbit__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(94, 204, 255, 0.28), transparent 32%);
  transition: background-position .08s linear;
}

.tech-orbit-card {
  position: absolute;
  width: min(290px, 72%);
  border: 1px solid rgba(133, 180, 255, 0.34);
  border-radius: 14px;
  padding: .95rem;
  background: rgba(10, 19, 39, 0.78);
  backdrop-filter: blur(10px);
  transition: transform .2s ease;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.tech-orbit-card h3 {
  margin: 0 0 .45rem;
}

.tech-orbit-card p {
  margin: 0;
  color: var(--tech-muted);
}

.tech-orbit-card:nth-of-type(1) { top: 9%; left: 8%; }
.tech-orbit-card:nth-of-type(2) { top: 38%; right: 8%; }
.tech-orbit-card:nth-of-type(3) { top: 68%; left: 16%; }

.tech-demo-shell,
.tech-leads-shell {
  border: 1px solid var(--tech-stroke);
  background: var(--tech-card);
  border-radius: 18px;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.tech-demo-shell .landing-chat-preview {
  margin: 0;
}

@media (min-width: 961px) {
  .tech-card-stack .tech-demo-shell {
    max-width: 388px;
    margin: 0 auto;
  }

  .tech-demo-shell .landing-chat-preview {
    max-width: 360px;
    margin: 0 auto;
  }
}

.tech-card-stack .landing-chat-preview {
  display: flex;
  flex-direction: column;
}

.tech-card-stack .landing-chat-preview__thread {
  min-height: 450px;
  max-height: 450px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tech-card-stack .landing-chat-preview__wa-thread.landing-chat-preview__thread {
  padding: 10px 11px 12px !important;
  border-top: 0;
}

.tech-card-stack .landing-chat-preview__wa-header {
  margin-bottom: 0 !important;
}

.tech-card-stack .landing-chat-preview__wa-thread .landing-chat-line[data-chat-line="1"] {
  margin-top: 0 !important;
  transform: none !important;
}

.tech-card-stack .landing-chat-preview__thread::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.tech-leads-shell .landing-crm-preview {
  margin: 0;
}

.tech-leads-shell .landing-crm-preview__tbl th:last-child,
.tech-leads-shell .landing-crm-preview__tbl .cell-lead-actions {
  display: none;
}

.tech-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tech-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tech-value-card {
  border: 1px solid var(--tech-stroke);
  background: linear-gradient(160deg, rgba(16, 30, 63, 0.78), rgba(8, 15, 31, 0.88));
  border-radius: 16px;
  padding: 1rem;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.tech-value-card__n {
  display: inline-block;
  margin-bottom: .5rem;
  font-weight: 800;
  color: var(--tech-primary);
}

.tech-value-card h3 {
  margin: 0 0 .45rem;
}

.tech-value-card p {
  margin: 0;
  color: var(--tech-muted);
}

.tech-value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(130, 195, 255, 0.55);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.tech-sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.tech-sector-chips span {
  border: 1px solid rgba(132, 188, 255, 0.35);
  border-radius: 999px;
  background: rgba(8, 15, 31, 0.66);
  color: #d7e6ff;
  padding: .45rem .72rem;
  font-size: .86rem;
}

.tech-sector-note {
  margin: .8rem 0 0;
  color: var(--tech-muted);
}

.tech-always-on {
  position: relative;
  width: 100%;
  margin: .8rem 0 2rem;
  padding: 2.6rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(117, 182, 255, 0.24);
  border-bottom: 1px solid rgba(117, 182, 255, 0.24);
}

.tech-always-on__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(80, 214, 255, 0.18), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(139, 107, 255, 0.2), transparent 38%),
    linear-gradient(100deg, rgba(8, 15, 33, 0.95), rgba(10, 19, 42, 0.9), rgba(8, 15, 33, 0.95));
}

.tech-always-on__inner {
  position: relative;
  z-index: 1;
}

.tech-always-on__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 3.2vw, 2.5rem);
  align-items: center;
}

.tech-always-on__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: center;
}

.tech-always-on__mark-img {
  display: block;
  width: clamp(72px, 13vw, 112px);
  height: auto;
  border-radius: clamp(16px, 2.5vw, 22px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
}

.tech-always-on__copy {
  min-width: 0;
}

.tech-always-on h2 {
  margin: 0 0 .9rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 26ch;
}

.tech-always-on p {
  margin: 0 0 1rem;
  color: #c8d8f4;
  max-width: 74ch;
}

.tech-always-on__points {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.05rem;
}

.tech-always-on__points span {
  border: 1px solid rgba(130, 187, 255, 0.34);
  border-radius: 999px;
  background: rgba(9, 17, 35, 0.62);
  color: #dcedff;
  padding: .42rem .72rem;
  font-size: .84rem;
}

@media (max-width: 640px) {
  .tech-always-on__layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .tech-always-on__mark {
    order: -1;
    margin-bottom: 0.35rem;
  }

  .tech-always-on__copy {
    width: 100%;
    text-align: left;
  }
}

.tech-section-intro {
  margin: .2rem 0 0;
  color: var(--tech-muted);
}

.tech-sequence-wrap {
  border: 1px solid var(--tech-stroke);
  border-radius: 18px;
  background: radial-gradient(circle at 10% 0%, rgba(80, 214, 255, 0.12), transparent 42%), var(--tech-card);
  padding: 1.2rem;
}

.tech-timeline {
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}

.tech-timeline li {
  border-left: 2px solid rgba(109, 178, 255, 0.45);
  padding: .55rem .75rem;
  background: rgba(8, 16, 34, 0.66);
  border-radius: 10px;
}

.tech-timeline strong {
  display: block;
}

.tech-timeline span {
  color: var(--tech-muted);
  font-size: .92rem;
}

.tech-architecture-v2 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
}

.tech-pipeline-board {
  border: 1px solid var(--tech-stroke);
  border-radius: 18px;
  padding: 1.1rem;
  background: var(--tech-card);
}

.tech-ops-card {
  border: 1px solid rgba(122, 186, 255, 0.34);
  border-radius: 18px;
  padding: 1.1rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(80, 214, 255, 0.16), transparent 35%),
    rgba(10, 19, 39, 0.82);
}

.tech-ops-card h3 {
  margin: 0 0 .8rem;
}

.tech-ops-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
  margin-bottom: .75rem;
}

.tech-ops-mini-metrics div {
  border: 1px solid rgba(143, 191, 255, 0.28);
  border-radius: 10px;
  background: rgba(8, 15, 31, 0.78);
  padding: .5rem .55rem;
}

.tech-ops-mini-metrics strong {
  display: block;
  line-height: 1;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  color: #f7fbff;
}

.tech-ops-mini-metrics span {
  color: var(--tech-muted);
  font-size: .75rem;
}

.tech-ops-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .58rem;
}

.tech-ops-list li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: .45rem;
  align-items: center;
  border: 1px solid rgba(135, 180, 255, 0.22);
  border-radius: 12px;
  background: rgba(8, 14, 27, 0.6);
  padding: .55rem .6rem;
}

.tech-ops-list strong {
  color: #f0f6ff;
  font-size: .92rem;
}

.tech-ops-list span:last-child {
  color: var(--tech-muted);
  font-size: .82rem;
}

.tech-ops-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6b7c9f;
  box-shadow: 0 0 0 2px rgba(107, 124, 159, 0.2);
}

.tech-ops-dot--on {
  background: #4dffbb;
  box-shadow: 0 0 0 2px rgba(77, 255, 187, 0.2), 0 0 12px rgba(77, 255, 187, 0.45);
}

.tech-metric-board {
  padding: 1.1rem;
  background:
    radial-gradient(circle at 15% 0%, rgba(80, 214, 255, 0.2), transparent 36%),
    radial-gradient(circle at 95% 100%, rgba(139, 107, 255, 0.22), transparent 38%),
    rgba(10, 18, 37, 0.88);
}

.tech-metric-board h3 {
  margin-top: 0;
}

.tech-metric-board p {
  margin-top: 0;
  color: var(--tech-muted);
}

.tech-metrics--showcase {
  margin-top: .8rem;
  grid-template-columns: 1fr;
  gap: .6rem;
}

.tech-metric-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(129, 192, 255, 0.32);
  background: linear-gradient(135deg, rgba(7, 15, 31, 0.82), rgba(13, 28, 56, 0.72));
}

.tech-metric-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(130, 221, 255, 0.12) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: techMetricSweep 4.5s ease-in-out infinite;
}

.tech-metric-item strong {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: .95;
  letter-spacing: -.03em;
  color: #fff;
  text-shadow: 0 6px 18px rgba(103, 204, 255, 0.35);
}

.tech-metric-item span {
  font-size: .95rem;
  letter-spacing: .02em;
}

.tech-pricing-v2 {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1rem;
}

.tech-price-main {
  border: 1px solid rgba(151, 206, 255, 0.48);
  border-radius: 18px;
  padding: 1.2rem;
  background:
    linear-gradient(rgba(124, 157, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 157, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 8% 0%, rgba(80, 214, 255, 0.16), transparent 40%),
    radial-gradient(circle at 92% 100%, rgba(139, 107, 255, 0.14), transparent 42%),
    linear-gradient(155deg, rgba(13, 21, 43, 0.9), rgba(10, 18, 37, 0.92));
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(183, 220, 255, 0.12);
  position: relative;
  outline: 1px solid rgba(151, 206, 255, 0.2);
  overflow: hidden;
}

.tech-price-main::before {
  content: "PLAN RECOMENDADO";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .66rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0a1b31;
  background: linear-gradient(120deg, #5fd3ff, #93a7ff);
  border-radius: 999px;
  padding: .28rem .58rem;
  box-shadow: 0 6px 14px rgba(100, 192, 255, 0.35);
}

.tech-price-main::after {
  content: "";
  position: absolute;
  inset: -30% -20%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(108, 187, 255, 0.12), transparent 45%);
}

.tech-wide-impact {
  position: relative;
  width: 100%;
  margin: 1.2rem 0 2rem;
  padding: 2.8rem 1rem;
  overflow: hidden;
  border-top: 1px solid rgba(128, 186, 255, 0.2);
  border-bottom: 1px solid rgba(128, 186, 255, 0.2);
}

.tech-wide-impact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(80, 214, 255, 0.22), transparent 36%),
    radial-gradient(circle at 90% 90%, rgba(139, 107, 255, 0.2), transparent 40%),
    linear-gradient(90deg, rgba(8, 15, 33, 0.96), rgba(11, 21, 45, 0.9), rgba(8, 15, 33, 0.96));
}

.tech-wide-impact__inner {
  position: relative;
  z-index: 1;
  width: min(1260px, calc(100% - 2rem));
  margin: 0 auto;
}

.tech-wide-impact__kicker {
  margin: 0 0 .95rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: #9cdfff;
  font-weight: 700;
}

.tech-wide-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
}

.tech-wide-impact__item {
  border: 1px solid rgba(129, 188, 255, 0.32);
  border-radius: 14px;
  background: rgba(8, 14, 29, 0.5);
  padding: 1.1rem 1rem;
}

.tech-wide-impact__item strong {
  display: block;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1;
  letter-spacing: -.01em;
  font-weight: 700;
  color: #d9ebff;
  text-shadow: 0 2px 8px rgba(90, 150, 255, 0.18);
}

.tech-wide-impact__item span {
  display: block;
  margin-top: .42rem;
  color: #b8cbea;
  font-size: .9rem;
}

.tech-price-main p {
  color: #b6caec;
}

.tech-price-main h2,
.tech-price-main li {
  color: #e8f2ff;
}

.tech-price-main .tech-kicker {
  color: #88cfff;
}

.tech-price-main .tech-btn--primary {
  background: linear-gradient(120deg, #35cbff, #73dcff 45%, #8e9fff);
  color: #051423;
  box-shadow: 0 12px 22px rgba(48, 176, 255, 0.28);
}

/* Oferta cupón — bloque destacado (precio) */
.tech-promo-epic {
  position: relative;
  z-index: 1;
  margin: 1.05rem 0 1.8rem;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(52 208 110);
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(253, 224, 71, 0.22), transparent 55%),
    radial-gradient(ellipse 90% 70% at 100% 100%, rgba(34, 197, 94, 0.18), transparent 50%),
    linear-gradient(165deg, rgba(12, 20, 40, 0.97), rgba(8, 14, 28, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 16px 48px rgba(54, 209, 111, 0.18),
    0 8px 28px rgba(34, 197, 94, 0.12);
}

.tech-promo-epic__shine {
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 42%,
    rgba(254, 240, 138, 0.12) 50%,
    rgba(255, 255, 255, 0.05) 58%,
    transparent 100%
  );
  animation: techPromoEpicShine 6s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .tech-promo-epic__shine {
    animation: none;
    opacity: 0.35;
  }
}

@keyframes techPromoEpicShine {
  0%,
  100% {
    transform: translateX(-18%) rotate(0deg);
    opacity: 0.45;
  }
  50% {
    transform: translateX(18%) rotate(0deg);
    opacity: 0.85;
  }
}

.tech-promo-epic__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tech-promo-epic__chip {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f172a;
  border-radius: 999px;
  background: linear-gradient(120deg, #fde047, #facc15, #eab308);
  box-shadow: 0 4px 16px rgba(234, 179, 8, 0.45);
}

.tech-promo-epic__headline {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  color: #f0f7ff;
  letter-spacing: -0.02em;
}

.tech-promo-epic__price {
  display: inline-block;
  margin: 0 0.08em;
  font-size: clamp(2.35rem, 7vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(125deg, #fef9c3 0%, #fde047 25%, #facc15 55%, #eab308 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 18px rgba(250, 204, 21, 0.55));
}

.tech-promo-epic__coupon-line {
  margin: 0 0 0.5rem;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  font-weight: 600;
  color: #c8dbf5;
}

.tech-promo-epic__code {
  display: inline-block;
  margin-left: 0.25rem;
  padding: 0.38rem 0.85rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(0.95rem, 2.4vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fefce8;
  border-radius: 12px;
  border: 2px dashed rgba(254, 243, 199, 0.55);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(15, 23, 42, 0.75));
  box-shadow:
    0 0 0 1px rgba(250, 204, 21, 0.25) inset,
    0 6px 28px rgba(234, 179, 8, 0.22);
}

.tech-promo-epic__renewal {
  margin: 0.95rem 0 0.65rem;
  font-size: clamp(0.78rem, 1.65vw, 0.86rem);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(186, 211, 245, 0.88);
  letter-spacing: 0.02em;
}

.tech-promo-epic__renewal strong {
  font-weight: 700;
  color: #e2e8f0;
}

.tech-promo-epic__deadline {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(186, 211, 245, 0.88);
}

.tech-promo-epic__clock {
  margin-right: 0.35rem;
  opacity: 0.9;
}

@media (min-width: 961px) {
  .tech-price-main {
    text-align: left;
    padding: 2.2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(147, 205, 255, 0.32), inset 0 1px 0 rgba(183, 220, 255, 0.12);
  }

  .tech-price-main h2,
  .tech-price-main p {
    max-width: 700px;
    margin-left: 0;
    margin-right: 0;
  }

  .tech-price-main ul {
    max-width: 760px;
    margin: 1.05rem 0 0;
    text-align: left;
  }

  .tech-price-main .tech-btn--wide {
    margin: 1.2rem 0 0;
  }
}

.tech-price-side {
  border: 1px solid rgba(80, 214, 255, 0.35);
  border-radius: 18px;
  padding: 1.1rem;
  background: linear-gradient(170deg, rgba(80, 214, 255, 0.12), rgba(139, 107, 255, 0.1));
}

.tech-price-side h3 {
  margin-top: 0;
}

.tech-price-side p {
  color: #d6e6ff;
}

.tech-side-points {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.tech-side-points span {
  background: rgba(7, 14, 31, 0.58);
  border: 1px solid rgba(147, 188, 255, 0.35);
  border-radius: 10px;
  padding: .48rem .62rem;
}

.tech-faq-head {
  margin-bottom: .8rem;
}

.tech-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.tech-faq-grid details {
  margin-bottom: 0;
}

.tech-final-cta {
  margin-top: 1rem;
  border: 1px solid var(--tech-stroke);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(10, 19, 39, 0.68);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
}

.tech-final-cta h3 {
  margin: 0;
}

.tech-typewriter {
  white-space: normal;
}

.tech-typewriter__line {
  display: inline-block;
  min-height: 1.25em;
}

.tech-typewriter__line + .tech-typewriter__line {
  margin-top: .1rem;
}

.tech-typewriter__cursor::after {
  content: "|";
  margin-left: 2px;
  color: #bfe7ff;
  animation: techTypeBlink .8s steps(1, end) infinite;
}

.tech-feature {
  padding: 1.1rem;
}

.tech-feature p {
  margin: 0;
  color: var(--tech-muted);
}

.tech-architecture {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1rem;
  align-items: center;
}

.tech-pipeline {
  border: 1px dashed rgba(129, 173, 255, 0.45);
  border-radius: 16px;
  padding: .9rem;
  display: grid;
  gap: .6rem;
}

.tech-pipeline div {
  border-radius: 10px;
  background: rgba(11, 18, 37, 0.76);
  border: 1px solid rgba(127, 153, 216, 0.32);
  padding: .65rem .75rem;
  font-weight: 600;
}

.tech-price {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.4rem;
}

.tech-price ul {
  color: var(--tech-muted);
}

.tech-btn--wide {
  width: 100%;
  max-width: 360px;
}

.tech-faq details {
  padding: .95rem 1rem;
  margin-bottom: .65rem;
}

.tech-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.tech-faq p {
  color: var(--tech-muted);
}

.tech-footer {
  border-top: 1px solid var(--tech-stroke);
  padding: 1.4rem 0 1rem;
}

body.landing-tech-page .recaptcha-attribution-bar {
  padding: 0.5rem 0 max(4.25rem, calc(env(safe-area-inset-bottom, 0px) + 3.75rem));
}

.tech-footer__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.tech-footer p {
  margin: 0;
  color: #9eb0d5;
}

.tech-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.tech-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.tech-footer__legal a {
  color: var(--tech-muted);
  text-decoration: none;
}

.tech-footer__legal a:hover {
  color: #c7d6f5;
}

.tech-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.tech-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #c7d6f5;
  background: rgba(15, 23, 42, 0.35);
  transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s;
}

.tech-footer__social-link:hover,
.tech-footer__social-link:focus-visible {
  color: #fff;
  border-color: rgba(147, 197, 253, 0.65);
  background: rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
  outline: none;
}

.tech-footer__social-icon {
  display: block;
}

@media (max-width: 640px) {
  .tech-footer__right {
    align-items: flex-start;
    width: 100%;
  }
  .tech-footer__legal {
    justify-content: flex-start;
  }
}

.tech-mobile-bar {
  position: fixed;
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  right: max(12px, env(safe-area-inset-right, 0px));
  left: max(12px, env(safe-area-inset-left, 0px));
  z-index: 30;
  box-sizing: border-box;
  max-width: 100%;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  color: #051120;
  font-weight: 800;
  padding: .86rem 1.1rem;
  background: linear-gradient(120deg, #50d6ff, #90a2ff);
  box-shadow: 0 16px 30px rgba(49, 186, 255, 0.3);
}

.tech-mobile-bar span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 960px) {
  body.landing-tech-page {
    padding-bottom: max(5.25rem, calc(env(safe-area-inset-bottom, 0px) + 4.75rem));
  }

  .tech-fullscreen {
    min-height: auto;
  }

  .tech-immersive,
  .tech-experience {
    padding: 2rem 0;
  }

  .tech-hero {
    padding-top: 2.2rem;
  }

  .tech-hero-stats {
    gap: .45rem;
  }

  .tech-hero-stats span {
    font-size: .78rem;
  }

  .tech-topbar .tech-container {
    min-height: 64px;
  }

  .tech-btn {
    padding: .72rem 1rem;
    font-size: .94rem;
  }

  .tech-nav--desktop a:not(.tech-btn) {
    display: none;
  }

  .tech-nav--desktop {
    display: none;
  }

  .tech-hamburger {
    display: inline-flex;
  }
  .tech-hero__grid,
  .tech-architecture,
  .tech-grid-3,
  .tech-value-grid,
  .tech-architecture-v2,
  .tech-pricing-v2,
  .tech-faq-grid,
  .tech-experience__grid {
    grid-template-columns: 1fr;
  }

  .tech-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .tech-metric-item strong {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .tech-ops-mini-metrics {
    grid-template-columns: 1fr;
  }

  .tech-wide-impact {
    padding: 2rem .8rem;
  }

  .tech-always-on {
    padding: 2rem 0;
  }

  .tech-always-on h2 {
    max-width: none;
  }

  .tech-wide-impact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-sector-chips span {
    font-size: .8rem;
  }
}

@media (max-width: 760px) {
  .tech-orbit {
    min-height: 460px;
    display: grid;
    align-content: start;
    gap: .7rem;
    padding: .8rem;
  }

  .tech-orbit-card {
    position: relative;
    width: 100%;
    max-width: none;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .tech-container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .tech-immersive {
    min-height: auto;
    display: block;
    padding: 1.6rem 0 1.2rem;
  }

  .tech-immersive__inner {
    padding-bottom: .2rem;
  }

  .tech-hero {
    padding-top: 1.4rem;
  }

  .tech-marquee {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 1.4rem;
    padding-top: .3rem;
    opacity: .58;
  }

  .tech-marquee__track {
    font-size: clamp(.92rem, 5.2vw, 1.28rem);
  }

  .tech-orbit {
    min-height: auto;
  }

  .tech-wide-impact__inner {
    width: calc(100% - 1rem);
  }

  .tech-wide-impact__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 961px) {
  .tech-mobile-bar {
    display: none;
  }

  .tech-mobile-menu-backdrop,
  .tech-mobile-drawer {
    display: none;
  }
}

@keyframes techPulseBg {
  0% { transform: scale(1); filter: blur(10px); }
  100% { transform: scale(1.08); filter: blur(16px); }
}

@keyframes techMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes techMetricSweep {
  0%, 25% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

@keyframes techTypeBlink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tech-btn,
  .tech-value-card,
  .tech-orbit-card,
  .tech-marquee__track,
  .tech-immersive__bg {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Modal acceso: cabecera oscura + cuerpo legible en landing tech */
.landing-tech-page .landing-login-modal .recent-modal__panel {
  color: #0f172a;
}
.landing-tech-page .landing-login-modal .landing-login-head,
.landing-tech-page .landing-login-modal .landing-login-head__title {
  color: #f8fafc;
}
.landing-tech-page .landing-login-modal .landing-login-head__close {
  color: #e2e8f0;
}
.landing-tech-page .landing-login-modal .landing-login-panel__body,
.landing-tech-page .landing-login-modal .landing-login-sub--lead {
  color: #334155;
}
.landing-tech-page .landing-login-modal label {
  color: #475569;
}
.landing-tech-page .landing-login-modal .landing-login-secure-note {
  color: #64748b;
}
.landing-tech-page .landing-login-modal .landing-login-signup-cta__label {
  color: #64748b;
}
.landing-tech-page .landing-login-modal .landing-login-signup-cta__action {
  color: #2563eb;
}
.landing-tech-page .landing-login-modal .landing-login-foot__msg.hint {
  color: #475569;
}
