/* Tokens alineados con variables públicas de xcailex.com (Hostinger) */
:root {
  --color-meteorite-dark: #2f1c6a;
  --color-meteorite: #8c85ff;
  --color-primary: #673de6;
  --color-primary-light: #ebe4ff;
  --color-dark: #1d1e20;
  --color-gray-dark: #36344d;
  --color-gray: #727586;
  --color-light: #fff;
  --color-success: #00b090;
  --color-teal: #2dd4bf;
  --color-amber: #fbbf24;
  --radius-lg: 22px;
  --radius-md: 12px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 60px rgba(103, 61, 230, 0.25);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 72px;
  --space: clamp(1rem, 3vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-light);
  background: var(--color-dark);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-meteorite);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-primary-light);
}

:focus-visible {
  outline: 3px solid var(--color-meteorite);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--color-light);
  color: var(--color-dark);
  font-weight: 600;
  border-radius: var(--radius-md);
}

.skip-link:focus-visible {
  left: 0.75rem;
}

.container {
  width: min(1140px, 100% - var(--space) * 2);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(29, 30, 32, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(140, 133, 255, 0.14);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(18, 19, 22, 0.92);
  border-bottom-color: rgba(140, 133, 255, 0.22);
}

.site-header__inner {
  height: 100%;
  width: min(1140px, 100% - var(--space) * 2);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-light);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0.2rem 0.65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.brand:hover {
  color: var(--color-light);
  filter: brightness(1.04);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.brand__logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(140, 133, 255, 0.35);
  border-radius: var(--radius-md);
  background: rgba(47, 28, 106, 0.35);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-light);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-meteorite), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link:hover {
  color: var(--color-meteorite);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(15, 16, 18, 0.98);
    border-bottom: 1px solid rgba(140, 133, 255, 0.15);
    padding: 1rem var(--space) 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
      }

  .nav__link::after {
    display: none;
  }
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.45rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 45%,
    transparent 60%
  );
  transform: translateX(-100%);
  pointer-events: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-meteorite-dark) 100%);
  color: var(--color-light);
  box-shadow: 0 10px 40px rgba(103, 61, 230, 0.4);
}

.btn--primary:hover {
  filter: brightness(1.1);
  color: var(--color-light);
  box-shadow: 0 12px 48px rgba(103, 61, 230, 0.55);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(140, 133, 255, 0.45);
  color: var(--color-light);
}

.btn--outline:hover {
  border-color: var(--color-meteorite);
  color: var(--color-meteorite);
  background: rgba(103, 61, 230, 0.08);
}

.btn--secondary {
  background: rgba(103, 61, 230, 0.12);
  border: 1px solid rgba(140, 133, 255, 0.35);
  color: var(--color-primary-light);
}

.btn--secondary:hover {
  background: rgba(103, 61, 230, 0.28);
  color: var(--color-light);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-light);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: -15% -10% -10%;
  background:
    radial-gradient(ellipse 90% 70% at 15% 15%, rgba(103, 61, 230, 0.45), transparent 58%),
    radial-gradient(ellipse 75% 55% at 88% 25%, rgba(140, 133, 255, 0.28), transparent 52%),
    radial-gradient(circle at 50% 110%, rgba(47, 28, 106, 0.65), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(0, 176, 144, 0.08), transparent 35%);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.hero__orb--a {
  width: min(42vw, 340px);
  height: min(42vw, 340px);
  background: var(--color-primary);
  top: 8%;
  right: 5%;
}

.hero__orb--b {
  width: min(35vw, 280px);
  height: min(35vw, 280px);
  background: var(--color-teal);
  bottom: 18%;
  left: -5%;
  opacity: 0.25;
}

.hero__orb--c {
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  background: var(--color-amber);
  top: 40%;
  left: 35%;
  opacity: 0.18;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-meteorite);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  max-width: min(46rem, 100%);
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
}

/* Evita cortar palabras cuando el título está animado por letras (spans inline-block) */
.text-split-word {
  white-space: nowrap;
  display: inline-block;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  line-height: 1.65;
}

.hero__pills {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(140, 133, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--color-meteorite), transparent);
  border-radius: 2px;
}

/* Marquee ribbon */
.section-ribbon {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0.85rem 0;
  background: linear-gradient(90deg, rgba(47, 28, 106, 0.95), rgba(103, 61, 230, 0.85), rgba(47, 28, 106, 0.95));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.section-ribbon__viewport {
  overflow: hidden;
}

.section-ribbon__row {
  display: flex;
  width: max-content;
  will-change: transform;
}

.section-ribbon__track {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 1.75rem;
  padding-right: 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.section-ribbon__track span:nth-child(odd) {
  color: rgba(255, 255, 255, 0.92);
}

/* Section heads */
.section-head {
  margin-bottom: 2.5rem;
}

.section-head--center {
  text-align: center;
}

.section-head__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-meteorite);
  margin-bottom: 0.65rem;
}

.section-head__label--light {
  color: rgba(255, 255, 255, 0.85);
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  line-height: 1.12;
}

.section-head__title--light {
  color: var(--color-light);
}

.section-head__title-text {
  display: block;
}

.section-head__line {
  display: block;
  width: min(200px, 40%);
  height: 4px;
  margin-top: 1rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-meteorite), transparent);
}

.section-head--center .section-head__line {
  margin-left: auto;
  margin-right: auto;
}

.section-head__line--light {
  background: linear-gradient(90deg, #fff, var(--color-primary-light), transparent);
}

.section-head__intro {
  margin: 1.25rem 0 0;
}

/* Sections */
.section {
  padding: clamp(4.5rem, 12vw, 7rem) 0;
  position: relative;
  z-index: 1;
}

.section__intro {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* Productos — paneles full viewport */
.product-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
  overflow: hidden;
}

.product-panel__noise {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.product-panel__noise--invert {
  opacity: 0.07;
  mix-blend-mode: overlay;
}

.product-panel--knowstream {
  background: radial-gradient(ellipse 120% 90% at 10% 20%, rgba(103, 61, 230, 0.35), transparent 55%),
    radial-gradient(ellipse 80% 60% at 90% 80%, rgba(47, 28, 106, 0.55), transparent 45%), #0a0812;
}

.product-panel--diagnostico {
  background: radial-gradient(ellipse 100% 80% at 85% 30%, rgba(45, 212, 191, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 15% 90%, rgba(19, 78, 74, 0.55), transparent 45%), #060d0c;
}

.product-panel--loft {
  background: radial-gradient(ellipse 90% 70% at 20% 70%, rgba(251, 191, 36, 0.14), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(120, 53, 15, 0.35), transparent 45%), #0f0c08;
}

.product-panel--bestmedical {
  background: radial-gradient(ellipse 95% 75% at 15% 25%, rgba(139, 154, 107, 0.18), transparent 52%),
    radial-gradient(ellipse 70% 55% at 95% 85%, rgba(26, 34, 51, 0.9), transparent 48%), #121a28;
}

.product-panel__mesh {
  position: absolute;
  border-radius: 50%;
  width: min(120vw, 900px);
  height: min(120vw, 900px);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  filter: blur(0px);
  opacity: 0.35;
  pointer-events: none;
}

.product-panel__mesh--violet {
  background: conic-gradient(from 200deg at 50% 50%, rgba(103, 61, 230, 0.7), transparent, rgba(140, 133, 255, 0.5), rgba(47, 28, 106, 0.8));
}

.product-panel__mesh--teal {
  background: conic-gradient(from 90deg at 50% 50%, rgba(45, 212, 191, 0.45), transparent, rgba(13, 148, 136, 0.55));
  opacity: 0.4;
}

.product-panel__mesh--amber {
  background: conic-gradient(from 300deg at 50% 50%, rgba(251, 191, 36, 0.5), transparent, rgba(180, 83, 9, 0.45));
  opacity: 0.38;
}

.product-panel__mesh--sage {
  background: conic-gradient(
    from 210deg at 50% 50%,
    rgba(139, 154, 107, 0.5),
    transparent,
    rgba(90, 120, 85, 0.45),
    rgba(45, 62, 82, 0.65)
  );
  opacity: 0.36;
}

.product-panel__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.product-panel__orb--1 {
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  background: var(--color-primary);
  top: -10%;
  right: -15%;
  opacity: 0.3;
}

.product-panel__orb--2 {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  background: var(--color-meteorite);
  bottom: 5%;
  left: -10%;
  opacity: 0.2;
}

.product-panel__rail {
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, transparent, rgba(140, 133, 255, 0.7), transparent);
  opacity: 0.5;
}

.product-panel__rail span {
  display: block;
  position: absolute;
  top: 35%;
  left: 0;
  width: 12px;
  height: 48px;
  margin-left: 3px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, var(--color-meteorite), var(--color-primary));
  opacity: 0.85;
  box-shadow: 0 0 24px rgba(140, 133, 255, 0.6);
}

.product-panel__rings {
  position: absolute;
  right: 8%;
  top: 20%;
  width: 180px;
  height: 180px;
  pointer-events: none;
}

.product-panel__rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 50%;
  animation: panel-ring-pulse 5s ease-in-out infinite;
}

.product-panel__rings span:nth-child(2) {
  inset: 18px;
  animation-delay: -1.2s;
  border-color: rgba(45, 212, 191, 0.15);
}

@keyframes panel-ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-panel__rings span {
    animation: none;
  }
}

.product-panel__grid-deco {
  position: absolute;
  inset: 10% 5%;
  background-image:
    linear-gradient(rgba(251, 191, 36, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 191, 36, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black, transparent);
  pointer-events: none;
}

.product-panel__grid-deco--sage {
  background-image:
    linear-gradient(rgba(139, 154, 107, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 120, 180, 0.06) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 75% 65% at 30% 45%, black, transparent);
}

.product-panel__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.product-panel__layout--reverse {
  direction: rtl;
}

.product-panel__layout--reverse > * {
  direction: ltr;
}

@media (max-width: 968px) {
  .product-panel__layout,
  .product-panel__layout--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .product-panel__stage {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }

  .product-panel--reverse .product-panel__stage {
    order: -1;
  }
}

.product-panel__copy {
  position: relative;
  z-index: 2;
}

.product-panel__index {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.06);
  margin-bottom: -0.35em;
  user-select: none;
}

.product-panel__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-success);
  background: rgba(0, 176, 144, 0.15);
  border: 1px solid rgba(0, 176, 144, 0.35);
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.product-panel__tag--teal {
  color: var(--color-teal);
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.35);
}

.product-panel__tag--amber {
  color: var(--color-amber);
  background: rgba(251, 191, 36, 0.14);
  border-color: rgba(251, 191, 36, 0.35);
}

.product-panel__tag--sage {
  color: #c5d4a8;
  background: rgba(139, 154, 107, 0.18);
  border-color: rgba(139, 154, 107, 0.42);
}

.product-panel__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 1rem;
  text-wrap: balance;
  background: linear-gradient(135deg, #fff 20%, rgba(255, 255, 255, 0.85) 60%, var(--color-meteorite));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-panel--diagnostico .product-panel__title {
  background: linear-gradient(135deg, #fff 10%, var(--color-teal) 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
}

.product-panel--loft .product-panel__title {
  background: linear-gradient(135deg, #fff 15%, var(--color-amber) 85%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
}

.product-panel--bestmedical .product-panel__title {
  background: linear-gradient(135deg, #fff 12%, #a8c87a 55%, #7d92b8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
}

.product-panel__ideal {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem;
  line-height: 1.55;
}

.product-panel__ideal strong {
  color: var(--color-meteorite);
  font-weight: 600;
}

.product-panel--diagnostico .product-panel__ideal strong {
  color: var(--color-teal);
}

.product-panel--loft .product-panel__ideal strong {
  color: var(--color-amber);
}

.product-panel--bestmedical .product-panel__ideal strong {
  color: #b8cc94;
}

.product-panel__desc {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 52ch;
}

.product-panel__features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-panel__features li {
  position: relative;
  padding: 0.55rem 0.65rem 0.55rem 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-panel__features li::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 50%;
  translate: 0 -50%;
  width: 5px;
  height: 60%;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--color-meteorite), var(--color-primary));
}

.product-panel--diagnostico .product-panel__features li::before {
  background: linear-gradient(180deg, var(--color-teal), #0d9488);
}

.product-panel--loft .product-panel__features li::before {
  background: linear-gradient(180deg, var(--color-amber), #b45309);
}

.product-panel--bestmedical .product-panel__features li::before {
  background: linear-gradient(180deg, #9aad7a, #5a7a8c);
}

.product-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.product-panel__cta {
  box-shadow: 0 16px 48px rgba(13, 148, 136, 0.28);
}

.product-panel__next-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  translate: -50% 0;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  z-index: 2;
}

.product-panel__next-hint span {
  color: rgba(255, 255, 255, 0.55);
}

/* Escenario / mocks */
.product-panel__stage {
  position: relative;
  z-index: 2;
  perspective: 1200px;
}

.mock-ks {
  background: rgba(12, 10, 20, 0.85);
  border: 1px solid rgba(140, 133, 255, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform-style: preserve-3d;
}

.mock-ks__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-ks__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.mock-ks__dot:nth-child(1) {
  background: #ff5f56;
}
.mock-ks__dot:nth-child(2) {
  background: #ffbd2e;
}
.mock-ks__dot:nth-child(3) {
  background: #27c93f;
}

.mock-ks__title {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.mock-ks__body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 220px;
}

@media (max-width: 480px) {
  .mock-ks__body {
    grid-template-columns: 1fr;
  }

  .mock-ks__sources {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

.mock-ks__sources {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-ks__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.mock-pill {
  font-size: 0.7rem;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
  background: rgba(103, 61, 230, 0.25);
  border: 1px solid rgba(140, 133, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.mock-ks__thread {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: flex-end;
}

.mock-ks__msg {
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 95%;
}

.mock-ks__msg--user {
  align-self: flex-end;
  background: rgba(103, 61, 230, 0.45);
  color: #fff;
}

.mock-ks__msg--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.mock-diag {
  background: rgba(8, 18, 16, 0.9);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.mock-diag__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(45, 212, 191, 0.15);
}

.mock-diag__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 12px var(--color-teal);
  animation: diag-pulse 1.8s ease-in-out infinite;
}

@keyframes diag-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mock-diag__pulse {
    animation: none;
  }
}

.mock-diag__thread {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 240px;
}

.mock-diag__bubble {
  max-width: 88%;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.mock-diag__bubble--ai {
  align-self: flex-start;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

.mock-diag__bubble--user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mock-diag__bubble--typing {
  display: flex;
  gap: 5px;
  padding: 0.85rem 1rem;
}

.mock-diag__bubble--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: typing-dot 1.2s ease-in-out infinite;
}

.mock-diag__bubble--typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.mock-diag__bubble--typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typing-dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: scale(0.9);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mock-diag__bubble--typing span {
    animation: none;
    opacity: 0.6;
  }
}

.mock-diag__footer {
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-loft {
  background: rgba(20, 14, 8, 0.92);
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.mock-loft__header {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(251, 191, 36, 0.15);
}

.mock-loft__grid {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.mock-loft__card--wide {
  grid-column: 1 / -1;
}

.mock-loft__card {
  position: relative;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.12);
  overflow: hidden;
}

.mock-loft__k {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
}

.mock-loft__v {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-amber);
}

.mock-loft__sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.mock-loft__spark {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-amber), transparent);
  opacity: 0.7;
}

.mock-bm {
  background: rgba(18, 26, 40, 0.95);
  border: 1px solid rgba(139, 154, 107, 0.35);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform-style: preserve-3d;
}

.mock-bm__chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  background: rgba(26, 34, 51, 0.95);
  border-bottom: 1px solid rgba(139, 154, 107, 0.2);
}

.mock-bm__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-bm__dot:nth-child(1) {
  background: #e07872;
  border-color: rgba(0, 0, 0, 0.15);
}
.mock-bm__dot:nth-child(2) {
  background: #dcb968;
  border-color: rgba(0, 0, 0, 0.12);
}
.mock-bm__dot:nth-child(3) {
  background: #7a9f6a;
  border-color: rgba(0, 0, 0, 0.12);
}

.mock-bm__title {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

.mock-bm__body {
  display: flex;
  min-height: 280px;
  background: #e8eaef;
  line-height: normal;
}

.mock-bm__sidebar {
  flex-shrink: 0;
  width: clamp(7.5rem, 26%, 9.5rem);
  padding: 0.65rem 0.5rem;
  background: linear-gradient(180deg, #1a2233 0%, #141a28 100%);
  border-right: 1px solid rgba(139, 154, 107, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mock-bm__logo {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.25rem;
  padding: 0 0.35rem;
}

.mock-bm__nav-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding: 0.4rem 0.35rem 0.15rem;
}

.mock-bm__nav-item {
  display: block;
  font-size: 0.58rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.35rem 0.45rem;
  border-radius: 6px;
}

.mock-bm__nav-item--active {
  color: #fff;
  background: rgba(139, 154, 107, 0.95);
  font-weight: 600;
}

.mock-bm__main {
  flex: 1;
  padding: 0.6rem 0.65rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.mock-bm__pagehead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mock-bm__pagetitle {
  font-size: 0.72rem;
  font-weight: 800;
  color: #1a2233;
  letter-spacing: -0.02em;
}

.mock-bm__range {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a6578;
  padding: 0.25rem 0.5rem;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(26, 34, 51, 0.12);
}

.mock-bm__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.mock-bm__kpi {
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.5rem;
  border: 1px solid rgba(26, 34, 51, 0.08);
  box-shadow: 0 4px 14px rgba(26, 34, 51, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.mock-bm__kpi-label {
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a8496;
}

.mock-bm__kpi-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a2233;
  letter-spacing: -0.02em;
}

.mock-bm__kpi-delta {
  font-size: 0.55rem;
  font-weight: 700;
}

.mock-bm__kpi-delta--up {
  color: #2d7a4e;
}

.mock-bm__kpi-delta--down {
  color: #b44c4c;
}

.mock-bm__chart {
  flex: 1;
  min-height: 86px;
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.5rem 0.5rem;
  border: 1px solid rgba(26, 34, 51, 0.08);
  box-shadow: 0 4px 14px rgba(26, 34, 51, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mock-bm__chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: #1a2233;
}

.mock-bm__chart-note {
  font-size: 0.52rem;
  font-weight: 600;
  color: #7a8496;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mock-bm__bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3px;
  flex: 1;
  padding: 0.15rem 0 0;
  min-height: 52px;
}

.mock-bm__bars span {
  flex: 1;
  max-width: 14px;
  height: var(--h, 50%);
  min-height: 16px;
  border-radius: 3px 3px 2px 2px;
  background: linear-gradient(180deg, #a4b88a 0%, #7d9a62 100%);
  opacity: 0.92;
}

.mock-bm__rows {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mock-bm__row {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 0.4rem 0.5rem;
  border: 1px solid rgba(26, 34, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.mock-bm__row-title {
  font-size: 0.58rem;
  font-weight: 700;
  color: #1a2233;
}

.mock-bm__row-meta {
  font-size: 0.52rem;
  color: #7a8496;
}

@media (max-width: 968px) {
  .mock-bm__body {
    min-height: 240px;
  }

  .mock-bm__kpi {
    padding: 0.35rem 0.4rem;
  }

  .mock-bm__kpi-value {
    font-size: 0.82rem;
  }
}

.product-panel__float-tag {
  position: absolute;
  top: 8%;
  right: -4%;
  padding: 0.45rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(103, 61, 230, 0.5);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.product-panel__float-tag--b {
  top: auto;
  bottom: 18%;
  right: 5%;
  background: rgba(45, 212, 191, 0.25);
}

.product-panel__float-tag--loft {
  top: 12%;
  right: -2%;
  background: rgba(251, 191, 36, 0.25);
}

.product-panel__float-tag--bm {
  top: 10%;
  right: -3%;
  background: rgba(139, 154, 107, 0.35);
  border-color: rgba(197, 212, 168, 0.35);
}

.product-panel__float-tag--bm.product-panel__float-tag--b {
  background: rgba(90, 122, 140, 0.35);
}

.product-panel__badge-rotate {
  position: absolute;
  bottom: 12%;
  left: -6%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-teal);
  border: 2px dashed rgba(45, 212, 191, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
}

/* Trust */
.trust {
  position: relative;
  background: linear-gradient(145deg, #1a0f42 0%, var(--color-primary) 38%, #5b3fd6 65%, #2f1c6a 100%);
  color: var(--color-light);
  overflow: hidden;
}

.trust__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trust__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.trust__blob--1 {
  width: 340px;
  height: 340px;
  background: #fff;
  top: -10%;
  left: -5%;
}

.trust__blob--2 {
  width: 280px;
  height: 280px;
  background: var(--color-teal);
  bottom: -5%;
  right: 5%;
  opacity: 0.2;
}

.trust__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust__lead {
  margin: 0 auto 2.25rem;
  max-width: 54ch;
  opacity: 0.92;
  line-height: 1.65;
}

.trust__pillars {
  list-style: none;
  margin: 0 auto 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 920px;
  text-align: left;
}

@media (max-width: 900px) {
  .trust__pillars {
    grid-template-columns: 1fr;
  }
}

.trust-pillar {
  position: relative;
  padding: 1.35rem 1.25rem 1.35rem 3.5rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.trust-pillar__ring {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

.trust-pillar__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.trust-pillar__text {
  font-size: 0.88rem;
  opacity: 0.88;
  line-height: 1.45;
}

.trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
  max-width: 820px;
  margin-inline: auto;
}

@media (max-width: 720px) {
  .trust__stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  position: relative;
  padding: 1.65rem 1.35rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0.5;
}

.stat__label {
  font-size: 0.82rem;
  opacity: 0.85;
  margin: 0 0 0.5rem;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.03em;
}

.trust__note {
  margin: 2rem 0 0;
  font-size: 0.85rem;
  opacity: 0.78;
}

.trust a {
  color: var(--color-primary-light);
}

/* Contact */
.contact {
  position: relative;
  background: var(--color-dark);
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(103, 61, 230, 0.22), transparent 68%);
  pointer-events: none;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.contact__lead {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
  line-height: 1.65;
}

.contact__bullets {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.contact__bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.contact__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: var(--color-meteorite);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--color-meteorite);
}

.contact__frame {
  position: relative;
  padding: 2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--color-meteorite), var(--color-primary), transparent 55%);
}

.contact__details {
  font-style: normal;
  background: rgba(12, 13, 16, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact__details p {
  margin: 0 0 1.2rem;
}

.contact__details p:last-of-type {
  margin-bottom: 1.25rem;
}

.contact__details strong {
  color: var(--color-meteorite);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__details a {
  color: var(--color-light);
  text-decoration: none;
  font-weight: 500;
}

.contact__details a:hover {
  text-decoration: underline;
  color: var(--color-meteorite);
}

.contact__maplink {
  width: 100%;
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(140, 133, 255, 0.14);
  background: #0c0d0f;
}

.site-footer__inner {
  text-align: center;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.site-footer__legal a {
  color: var(--color-meteorite);
}

/* Anclas: compensar cabecera fija (scroll nativo y JS) */
[data-jumper-section] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

#contenido-principal {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Navegación lateral: saltar de sección con clic */
.section-jumper {
  position: fixed;
  z-index: 60;
  right: clamp(0.5rem, 2vw, 1.25rem);
  top: 50%;
  translate: 0 -50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.4rem;
  background: rgba(12, 13, 18, 0.85);
  border: 1px solid rgba(140, 133, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.4);
}

.section-jumper__dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.section-jumper__dots > li {
  margin: 0;
  padding: 0;
}

.section-jumper__dot {
  position: relative;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.section-jumper__dot:hover,
.section-jumper__dot:focus-visible {
  transform: scale(1.35);
  background: var(--color-meteorite);
  box-shadow: 0 0 14px rgba(140, 133, 255, 0.55);
}

.section-jumper__dot.is-active {
  background: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(103, 61, 230, 0.5);
  transform: scale(1.22);
}

.section-jumper__tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  translate: 0 -50%;
  white-space: nowrap;
  padding: 0.3rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(20, 21, 26, 0.96);
  border: 1px solid rgba(140, 133, 255, 0.3);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, translate 0.2s ease;
}

.section-jumper__dot:hover .section-jumper__tip,
.section-jumper__dot:focus-visible .section-jumper__tip {
  opacity: 1;
  translate: -4px -50%;
}

.section-jumper__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.section-jumper__arrow:hover:not(:disabled),
.section-jumper__arrow:focus-visible:not(:disabled) {
  background: rgba(103, 61, 230, 0.4);
  color: #fff;
}

.section-jumper__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .section-jumper__tip {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-jumper {
    top: auto;
    bottom: max(1rem, env(safe-area-inset-bottom, 12px));
    right: auto;
    left: 50%;
    translate: -50% 0;
    flex-direction: row;
    align-items: center;
    padding: 0.45rem 0.65rem;
    gap: 0.5rem;
    max-width: min(420px, calc(100vw - 1.25rem));
  }

  .section-jumper__dots {
    flex-direction: row;
    flex: 1;
    justify-content: center;
    gap: 0.42rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .section-jumper__dots::-webkit-scrollbar {
    display: none;
  }

  .section-jumper__arrow--prev {
    flex-shrink: 0;
  }

  .section-jumper__arrow--next {
    flex-shrink: 0;
  }
}

/* GSAP / motion hints */
.js-anim .hero__title .char,
.js-anim .hero__lead .word,
.js-anim .eyebrow .char {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .hero__title .char,
  .hero__lead .word,
  .eyebrow .char {
    will-change: auto;
  }

  .product-card:hover {
    transform: none;
  }

  .btn--secondary:hover {
    transform: none;
  }
}
