@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  /* -- Base Colors -- */
  --background: hsl(0 0% 4%);
  --foreground: hsl(0 0% 95%);
  --card: hsl(0 0% 7%);
  --primary: hsl(175 80% 50%);
  --primary-fg: hsl(0 0% 2%);
  --secondary: hsl(0 0% 12%);
  --muted-fg: hsl(0 0% 50%);
  --border: hsl(0 0% 14%);
  --text-dim: hsl(0 0% 45%);
  --text-secondary: hsl(0 0% 65%);
  --surface-glass: hsl(0 0% 100% / 0.04);
  --surface-glass-hover: hsl(0 0% 100% / 0.08);

  /* -- Glow Values & Misc -- */
  --glow-primary: 175 80% 50%;
  --glow-secondary: 260 70% 60%;
  --radius: 0.75rem;

  /* -- Extracted Exact Colors & Hex -- */
  --white: hsl(0 0% 100%);
  --white-hex: #fff;
  --selection-fg: hsl(0 0% 98%);
  --autofill-bg: #0a0a0a;
  --error-color: hsl(0, 80%, 65%);

  /* -- Primary Alpha Variants & Hover -- */
  --primary-hover: hsl(175 80% 45%);
  --primary-a60: hsl(175 80% 50% / 0.6);
  --primary-a50: hsl(175 80% 50% / 0.5);
  --primary-a40: hsl(175 80% 50% / 0.4);
  --primary-a30: hsl(175 80% 50% / 0.3);
  --primary-a20: hsl(175 80% 50% / 0.2);
  --primary-a15: hsl(175 80% 50% / 0.15);
  --primary-a10: hsl(175 80% 50% / 0.1);
  --primary-a08: hsl(175 80% 50% / 0.08);
  --primary-a06: hsl(175 80% 50% / 0.06);
  --primary-a05: hsl(175 80% 50% / 0.05);

  /* -- Secondary Glow Alpha Variants -- */
  --glow-secondary-a30: hsl(260 70% 60% / 0.3);

  /* -- Neutral Alpha Variants -- */
  --white-a05: hsl(0 0% 100% / 0.05);
  --bg-a85: hsl(0 0% 4% / 0.85);
  --card-a90: hsla(0, 0%, 7%, 0.897);
  --border-a50: hsl(0 0% 14% / 0.5);
  --muted-a50: hsl(0 0% 50% / 0.5);
  --muted-a40: hsl(0 0% 50% / 0.4);
  --foreground-a90: hsl(0 0% 95% / 0.9);
  --black-a80: hsla(0, 0%, 0%, 0.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

#contacto {
  scroll-margin-top: -5rem;
}
#clientes {
  scroll-margin-top: 5rem;
}

::selection {
  background: var(--primary-a30);
  color: var(--selection-fg);
}

/* ── Scrollbar Chido ── */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted-fg);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--background);
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}
input,
textarea {
  font: inherit;
  color: inherit;
}

/* ── Utilities ── */
.container {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 6rem;
}
.tracking-display {
  letter-spacing: -0.03em;
}
.tracking-tight {
  letter-spacing: -0.02em;
}

.glass-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface-glass);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
  background: var(--surface-glass-hover);
  border-color: var(--primary-a30);
  box-shadow: 0 0 40px -10px var(--primary-a15);
}

.glow-border {
  position: relative;
}
.glow-border::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--primary-a50),
    transparent 50%,
    var(--glow-secondary-a30)
  );
  -webkit-mask:
    linear-gradient(var(--white-hex) 0 0) content-box,
    linear-gradient(var(--white-hex) 0 0);
  mask:
    linear-gradient(var(--white-hex) 0 0) content-box,
    linear-gradient(var(--white-hex) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.text-gradient-hero {
  background: linear-gradient(
    to right,
    var(--white),
    var(--white) 40%,
    var(--primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hairline {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}

.dot-grid {
  background-image: radial-gradient(
    circle,
    var(--white-a05) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}

/* ── Animations ── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes glow-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px var(--primary-a60);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 12px var(--primary-a30);
  }
}
@keyframes scroll-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}
.animate-glow-pulse {
  animation: glow-pulse 2s ease-in-out infinite;
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  padding-top: 1.5rem;
  pointer-events: none;
  animation: fadeInUp 0.5s ease-out;
}

.navbar-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 105rem;
  margin: 0 auto;

  width: calc(100% - 2rem);
  padding: 1.25rem 2.5rem;
  background: var(--bg-a85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-a50);
  border-radius: 9999px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-brand:hover .nav-brand-text {
  color: var(--primary);
}

.nav-logo {
  height: 1.5rem;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-link:hover {
  color: var(--foreground);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-login {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.nav-login:hover {
  color: var(--foreground);
}

.btn-primary {
  display: inline-block;
  border-radius: 9999px;
  background: var(--primary);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-fg);
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 20px -5px var(--primary-a50);
}

.btn-primary-lg {
  padding: 0.875rem 2rem;
  font-weight: 600;
}
.btn-primary-lg:hover {
  box-shadow: 0 0 30px -5px var(--primary-a60);
  transform: scale(1.02);
}

.btn-outline {
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid var(--border);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: all 0.3s;
}
.btn-outline:hover {
  color: var(--foreground);
  border-color: var(--muted-a50);
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  height: 1px;
  width: 20px;
  background: var(--foreground);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
  pointer-events: auto;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  width: calc(100% - 3rem);
  max-width: 80rem;
  margin: 0.5rem auto 0;
  background: var(--bg-a85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-a50);
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.6);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.feature-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.feature-desc {
  font-size: 1.125rem;
}

.text-right {
  text-align: right;
  align-items: flex-end;
}

.feature-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  border-radius: var(--radius);
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 38rem;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
}

.feature-card-img {
  padding: 0.5rem;
}

.feature-glow {
  position: absolute;
  inset: -20%;
  background: var(--primary-a10);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 1;
}

.feature-glow.alt {
  background: var(--glow-secondary-a30);
}

.divider-light {
  margin: 4rem 0;
  opacity: 0.3;
}

.hero-img-rounded {
  border-radius: 1rem;
}

.text-center-max {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.desc-text {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-text.text-right .hero-label {
  flex-direction: row-reverse;
}
.hero-text.text-right .hero-buttons {
  justify-content: flex-end;
}

@media (min-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
  .feature-row.reverse .feature-text,
  .hero-grid.reverse .hero-text {
    order: 2;
  }
  .feature-row.reverse .feature-image,
  .hero-grid.reverse .hero-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none !important;
  }

  .hero-text.text-right,
  .feature-text.text-right,
  .feature-text {
    text-align: center !important;
    align-items: center !important;
  }

  .hero-text.text-right .hero-label {
    flex-direction: row !important;
    justify-content: center;
  }

  .hero-text.text-right .hero-buttons {
    justify-content: center !important;
  }

  .hero {
    padding-bottom: 7rem !important;
    height: auto !important;
  }

  .feature-row .vant-card-label,
  .feature-row .vant-card-title,
  .feature-row .vant-card-desc {
    text-align: center !important;
  }

  .hero-image {
    margin: 2rem 0 !important;
  }

  .hero-image img {
    max-width: 85% !important;
    margin: 0 auto;
  }
}
.mobile-menu-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu a {
  color: var(--muted-fg);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--foreground);
}
.mobile-menu .btn-primary {
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  opacity: 0.6;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 0%,
    var(--primary-a15) 0%,
    transparent 60%
  );
}
.hero-glow-2 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(120px);
  pointer-events: none;
  background: var(--primary);
}
.hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 10;
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
  }
}

.hero-image img {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 38rem;
  border-radius: var(--radius);
  filter: drop-shadow(0 0 60px var(--primary-a20));
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-label-line {
  height: 1px;
  width: 2rem;
  background: var(--primary);
}
.hero-label-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
}
.hero h1 .accent {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 28rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.hero-buttons .arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s;
}
.hero-buttons a:hover .arrow {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}
.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 2px;
}
.hero-stat-divider {
  height: 2rem;
  width: 1px;
  background: var(--border);
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.hero-image-glow {
  position: absolute;
  inset: 0;
  background: var(--primary-a10);
  filter: blur(100px);
  border-radius: 50%;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 0.5s 1.5s both;
}
.scroll-indicator span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 1.5rem;
  background: linear-gradient(to bottom, var(--primary-a60), transparent);
  animation: scroll-bob 1.5s infinite;
}

/* ── Products ── */
.products {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.products-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 50%,
    var(--primary-a08) 0%,
    transparent 70%
  );
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}
.section-title {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
}
.section-title .dim {
  color: var(--muted-fg);
}

.vant-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  grid-auto-rows: 280px;
}
@media (min-width: 768px) {
  .vant-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .vant-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
  }
}

.vant-span-2 {
  grid-column: span 1;
}
@media (min-width: 768px) {
  .vant-span-2 {
    grid-column: span 2;
  }
}

.vant-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}
.vant-card-title {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.vant-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* pod card */
.vant-pod {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media (min-width: 1024px) {
  .vant-pod {
    flex-direction: row;
    align-items: center;
  }
}
.vant-pod-text {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vant-pod-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}
.vant-pod-text p {
  max-width: 22rem;
}
.vant-pod-img {
  flex: 1;
  position: relative;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vant-pod-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, var(--primary-a05), transparent);
}
.vant-pod-img img {
  width: 18rem;
  object-fit: contain;
  filter: drop-shadow(0 0 20px var(--primary-a15));
  transition: transform 0.5s;
  border-radius: var(--radius);
}
.vant-pod-img img:hover {
  transform: scale(1.05);
}

.vant-pods {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}
.vant-pods-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.vant-pods-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  animation: glow-pulse 2s ease-in-out infinite;
}
.vant-pods-status span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Wearable */
.vant-wearable {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.vant-wearable-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.vant-wearable-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--primary-a05), transparent);
}
.vant-wearable-img img {
  width: 10rem;
  object-fit: contain;
  filter: drop-shadow(0 0 20px var(--primary-a15));
  border-radius: var(--radius);
  transition: transform 0.5s;
}
.vant-wearable-img img:hover {
  transform: scale(1.05);
}
.vant-wearable-text {
  padding: 1.5rem;
  padding-top: 0;
}
.vant-wearable-text h3 {
  font-size: 1.125rem;
}
.vant-wearable-text p {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* Dashboard */
.vant-dashboard {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .vant-dashboard {
    flex-direction: row;
    align-items: stretch;
  }
}

.vant-dashboard-text {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vant-dashboard-text h3 {
  font-size: 1.5rem;
}

.vant-dashboard-text p {
  max-width: 30rem;
}

.vant-dashboard-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

@media (min-width: 1024px) {
  .vant-dashboard-carousel {
    min-height: auto;
  }
}

.carousel-track {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.carousel-img-wrapper {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* ── Estilos del carrousel ── */
.carousel-image-container {
  position: relative;
  width: 80%;
  max-width: 28rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-a50);
  box-shadow: 0 10px 40px -10px var(--primary-a10);
  overflow: hidden;
}

.carousel-image-container img {
  width: 100%;
  height: auto;
  display: block;

  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.carousel-gradient-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0) 50%
  );

  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.carousel-overlay-title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .carousel-image-container {
    width: fit-content !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    display: flex !important;
  }

  .carousel-image-container img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 200px !important;
    object-fit: contain !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .carousel-gradient-overlay {
    padding: 1rem !important;
  }

  .carousel-overlay-title {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .vant-dashboard {
    height: auto !important;
    min-height: 0 !important;
  }

  .vant-dashboard-text {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem !important;
    flex: none !important;
  }
  .vant-dashboard-carousel {
    height: 260px !important;
    min-height: 220px !important;
    flex: none !important;
    background: transparent !important;
  }

  .products {
    padding: 5rem 0;
  }
}

.social-proof {
  position: relative;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 4rem;
  margin-bottom: 8rem;
}
.logos-row span {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted-a40);
  transition: color 0.3s;
  cursor: default;
}
.logos-row span:hover {
  color: var(--muted-fg);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.tech-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden;
  background-size: 100%;
  background-position: center;
  min-height: 120px;
  max-width: 260px;
  transition:
    background-size 1s ease,
    transform 1s ease;
}

.tech-card:hover {
  transform: translateY(-3px) !important;
  background-size: 102%;
}

.tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
  transition: background 0.3s ease;
}

.tech-card:hover::before {
  background: rgba(0, 0, 0, 0.5);
}

.tech-card-label {
  position: relative;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
}

.tech-card:hover .tech-card-label {
  color: var(--foreground);
}

.testimonial {
  margin-top: 8rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.testimonial-inner {
  padding: 2.5rem;
}
@media (min-width: 1024px) {
  .testimonial-inner {
    padding: 3.5rem;
  }
}
.testimonial-quote {
  width: 2rem;
  height: 2rem;
  color: var(--primary-a40);
  margin: 0 auto 1.5rem;
}
.testimonial-text {
  font-size: 1.125rem;
  color: var(--foreground-a90);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
}
@media (min-width: 1024px) {
  .testimonial-text {
    font-size: 1.25rem;
  }
}
.testimonial-author {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.testimonial-info {
  text-align: left;
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.lead-gen {
  position: relative;
  padding: 8rem 0;
}
.lead-gen-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(ellipse, var(--primary-a06) 0%, transparent 70%);
}
.lead-gen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .lead-gen-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lead-gen-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lead-gen-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--foreground);
}
.lead-gen-copy h2 .accent {
  color: var(--primary);
}
.lead-gen-copy > p {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 28rem;
}
.lead-gen-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.lead-gen-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lead-gen-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.lead-gen-benefit span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Form */
.lead-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media (min-width: 1024px) {
  .lead-form {
    padding: 2rem;
  }
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-a40);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--primary);
}
.form-group textarea {
  resize: none;
}

.form-submit {
  margin-top: 1rem;
  width: 100%;
}
.form-note {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.25rem;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--foreground);
  -webkit-box-shadow: 0 0 0px 1000px var(--autofill-bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%237F7F7F%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem top 50%;
  background-size: 0.65rem auto;
}
.form-group select option {
  background: var(--background);
  color: var(--foreground);
}

.custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--muted-a40);
  transition: border-color 0.3s;
}

.custom-select.has-value .custom-select-trigger {
  color: var(--foreground);
}

.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
  border-bottom-color: var(--primary);
}

.custom-select-trigger .arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-dim);
  transition: transform 0.3s ease;
}

.custom-select.open .arrow {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  margin-top: 0.5rem;
  background: var(--card-a90);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 40px -10px var(--black-a80);
  overflow: hidden;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.custom-option:hover,
.custom-option.selected {
  background: var(--surface-glass-hover);
  color: var(--primary);
}

.custom-select.invalid .custom-select-trigger {
  border-bottom-color: var(--error-color);
}

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
  border-bottom-color: var(--error-color);
}

.form-group {
  position: relative;
}

.error-message {
  position: absolute;
  bottom: -1.25rem;
  right: 0;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--error-color);
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-bottom-color: var(--error-color);
}

.error-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-success {
  padding: 3rem;
  text-align: center;
  display: none;
}
.form-success.visible {
  display: block;
}
.form-success-icon {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  background: var(--primary-a10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}
.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--text-secondary);
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo {
  height: 2.5rem;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--foreground);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.hero-image {
  position: relative;
}

.hero-image-overlay {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;

  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.75rem 1.8rem;
  border-radius: 9999px;
  z-index: 20;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.7);
}

.promo-text {
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-btn {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

a.hero-image-overlay {
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-image-overlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.8);
}

.hero-image-overlay:hover .promo-btn {
  color: var(--white);
  text-shadow: 0 0 8px var(--primary-a60);
}

.hero-image-overlay:hover .promo-btn .arrow {
  transform: translateX(4px);
}
.promo-btn:hover .arrow {
  transform: translateX(4px);
}


@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
  }

  .hero-glow,
  .hero-glow-2,
  .lead-gen-glow {
    max-width: 100%;
    width: 100%;
  }

  .container {
    padding: 0 1.5rem;
  }

  #contacto {
    scroll-margin-top: -3rem;
  }

  .hairline {
    margin-bottom: 4rem !important;
  }

  .hero {
    padding-top: 7rem;
    text-align: center;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  .hero-text {
    display: contents;
  }

  .hero-label {
    order: 1;
  }

  .text-gradient-hero {
    order: 2;
    margin-bottom: 0;
  }

  .hero-image {
    order: 3;
    margin: 1.5rem 0;
    width: 100%;
  }

  .hero-desc {
    order: 4;
    font-size: 1rem;
  }

  .hero-buttons {
    order: 5;
  }

  .hero-stats {
    order: 6;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .hero-image-overlay {
    bottom: 1rem;
    padding: 0.6rem 1.2rem;
    gap: 0.8rem;
  }

  .hero-image-overlay .promo-text,
  .hero-image-overlay .promo-btn {
    font-size: 0.75rem;
  }
  .vant-grid {
    grid-auto-rows: auto;
    gap: 1.5rem;
  }

  .glass-card {
    height: auto;
  }

  .vant-pod-text,
  .vant-dashboard-text {
    padding: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .vant-pod-img,
  .vant-wearable-img {
    min-height: 250px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .vant-pod-img::before {
    background: radial-gradient(
      circle at center,
      var(--primary-a08) 0%,
      transparent 70%
    );
  }

  .vant-dashboard-img {
    padding: 0 1rem;
    min-height: 200px;
  }

  .vant-pod-img img,
  .vant-wearable-img img,
  .vant-dashboard-img img {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .vant-pods,
  .vant-wearable-text {
    padding: 1rem;
    text-align: center;
  }

  .vant-pods-status {
    justify-content: center;
  }

  .logos-row {
    gap: 1.5rem;
    margin-bottom: 4rem;
  }

  .logos-row span {
    font-size: 1rem;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-inner {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .lead-gen-grid {
    gap: 3rem;
  }

  .lead-gen-copy {
    text-align: center;
    align-items: center;
  }

  .lead-form {
    padding: 1.5rem 1rem;
  }

  .footer-inner {
    gap: 1.5rem;
    text-align: center;
  }

  .footer-logo {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .tech-card {
    width: 100%;
    max-width: 280px;
  }
}
