/* ============================================
   SEUWEB — PREMIUM 25k LAYER (Awwwards craft)
   Solo craft + sistema gráfico. No toca funnel.
   Principio: primero caro en estático.
   ============================================ */

/* --- Icon system --- */
.icon {
  display: inline-block;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: currentColor;
  vertical-align: middle;
}
.icon--lg { width: 1.75rem; height: 1.75rem; }
.icon--xl { width: 2.25rem; height: 2.25rem; }
.icon--sm { width: 1.05rem; height: 1.05rem; }

.icon-badge {
  --icon-badge-size: 3.1rem;
  width: var(--icon-badge-size);
  height: var(--icon-badge-size);
  display: grid;
  place-items: center;
  border-radius: 1rem;
  border: 1px solid var(--color-border-strong);
  background:
    linear-gradient(145deg, rgba(94, 215, 232, 0.08), transparent 55%),
    var(--color-surface);
  color: var(--color-accent);
  box-shadow: var(--shadow-glass), 0 12px 32px -18px rgba(0, 0, 0, 0.55);
  transition:
    border-color var(--dur-ui) var(--ease-premium),
    transform var(--dur-ui) var(--ease-premium),
    box-shadow var(--dur-ui) var(--ease-premium),
    color var(--dur-ui) var(--ease-premium);
}
.icon-badge .icon { width: 1.45rem; height: 1.45rem; }
.card--service:hover .icon-badge,
.process-step:hover .icon-badge,
.stat-card:hover .icon-badge {
  border-color: var(--color-border-accent);
  color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(94, 215, 232, 0.12), 0 18px 40px -20px rgba(94, 215, 232, 0.25);
}

/* --- Mountain section divider --- */
.ridge {
  position: relative;
  height: 0;
  margin: 0;
  pointer-events: none;
  z-index: 2;
}
.ridge__svg {
  display: block;
  width: 100%;
  height: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-border-strong);
  opacity: 0.55;
  transform: translateY(-50%);
}
.ridge--soft .ridge__svg { opacity: 0.32; }

/* --- Atelier stats strip --- */
.atelier-strip {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  border-block: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(94, 215, 232, 0.05), transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 40%, rgba(109, 143, 173, 0.06), transparent 55%),
    var(--color-bg-elevated);
  overflow: hidden;
}
.atelier-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 80L80 0' stroke='rgba(242,240,235,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.atelier-strip__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.stat-card {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color var(--dur-ui) var(--ease-premium), background var(--dur-ui) var(--ease-premium);
}
.stat-card:hover {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.015);
}
.stat-card__body { min-width: 0; }
.stat-card__value {
  font-family: var(--font-display-sans);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.stat-card__value .stat-suffix {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--color-accent);
  margin-left: 0.08em;
}
.stat-card__label {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .atelier-strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .atelier-strip__inner { grid-template-columns: 1fr; gap: 0.35rem; }
  .stat-card { padding: 0.85rem 0.35rem; }
}

/* --- Service icons --- */
.card--service {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card--service .icon-badge { margin-bottom: 1.25rem; }
.card--service .card__desc { flex: 1; margin-bottom: 1.35rem; }
.card--service .btn { align-self: flex-start; }

/* --- Comparison row icons --- */
.comparison-item {
  position: relative;
}
.comparison-item__icon {
  display: none;
}
@media (min-width: 769px) {
  .comparison-grid {
    gap: 1rem;
  }
  .comparison-item {
    display: grid;
    grid-template-columns: auto 1fr auto 1.2fr;
    align-items: center;
    gap: 0.85rem 1rem;
  }
  .comparison-item__icon {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    border: 1px solid var(--color-border);
    color: var(--color-violet-light);
    background: var(--color-surface);
  }
  .comparison-item__icon .icon { width: 1.1rem; height: 1.1rem; }
}

/* --- Process timeline elevated --- */
.process-timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 44rem;
  margin: 0 auto;
  padding-left: 0.25rem;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: calc(1.55rem + 0.5px);
  top: 1.6rem;
  bottom: 1.6rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(94, 215, 232, 0.35) 12%,
    rgba(109, 143, 173, 0.28) 50%,
    rgba(94, 215, 232, 0.2) 88%,
    transparent 100%
  );
}
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.15rem 0 1.15rem 0;
}
.process-step__mark {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}
.process-step__num {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--color-text-faint);
  font-weight: 600;
}
.process-step .icon-badge {
  --icon-badge-size: 3.1rem;
  border-radius: 999px;
}
.process-step__content {
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}
.process-step:last-child .process-step__content { border-bottom: 0; }
.process-step__content h3 {
  font-family: var(--font-display-sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}
.process-step__content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36rem;
}
.process-step.is-inview .icon-badge {
  border-color: var(--color-border-accent);
  box-shadow: 0 0 0 1px rgba(94, 215, 232, 0.1), 0 14px 36px -16px rgba(94, 215, 232, 0.35);
}

/* --- Guarantees with icons --- */
.guarantees {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.guarantee {
  text-align: center;
  padding: 1.35rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  transition: border-color var(--dur-ui) var(--ease-premium), transform var(--dur-ui) var(--ease-premium);
}
.guarantee:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-2px);
}
.guarantee .icon-badge {
  --icon-badge-size: 2.6rem;
  margin: 0 auto 0.85rem;
  border-radius: 0.75rem;
}
.guarantee strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}
.guarantee span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}
@media (max-width: 700px) {
  .guarantees { grid-template-columns: 1fr; max-width: 22rem; }
}

/* --- Section label craft mark --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.section-label::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0.7;
}

/* --- Decorative orbit on cards --- */
.card--service::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 1px solid rgba(94, 215, 232, 0.06);
  pointer-events: none;
  transition: border-color 0.5s var(--ease-premium), transform 0.7s var(--ease-premium);
}
.card--service:hover::after {
  border-color: rgba(94, 215, 232, 0.16);
  transform: scale(1.06);
}

/* --- Craft manifesto strip (between proceso and planes visual break) --- */
.craft-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem auto 0;
  max-width: 40rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: rgba(94, 215, 232, 0.03);
  font-size: 0.84rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.45;
}
.craft-note__mark {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
  white-space: nowrap;
}
.craft-note strong { color: var(--color-text); font-weight: 600; }

/* --- Easter egg toast --- */
.egg-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: calc(var(--z-fab) + 5);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-accent);
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(16px);
  color: var(--color-text);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 48px -12px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(94, 215, 232, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s var(--ease-out-expo), opacity 0.45s ease;
  max-width: min(92vw, 28rem);
  text-align: center;
}
.egg-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.egg-toast__kicker {
  display: block;
  font-family: var(--font-mono, monospace);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 0.2rem;
}

/* --- Easter modes --- */
html.is-atelier {
  --color-accent: #7aeffa;
  --color-glow-strong: rgba(122, 239, 250, 0.35);
}
html.is-atelier .constelacion,
html.is-atelier .hero__constelacion {
  opacity: 0.55 !important;
  transition: opacity 0.8s ease;
}
html.is-atelier .page-grain { opacity: 0.42; }
html.is-atelier .nav__wordmark {
  background: linear-gradient(90deg, var(--color-text), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html.is-blizzard .hero__canvas { opacity: 0.55 !important; }
html.is-blizzard .hero__photo { filter: contrast(1.08) saturate(0.55) brightness(0.7) hue-rotate(-10deg); }
html.is-blizzard::after {
  content: "❄ ATELIER BLIZZARD";
  position: fixed;
  top: calc(var(--nav-height) + 0.65rem);
  right: 1rem;
  z-index: var(--z-nav);
  font-family: var(--font-mono, monospace);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  pointer-events: none;
  opacity: 0.85;
}

html.is-gold-flash {
  --color-accent: #d4bb90;
  --color-border-accent: rgba(196, 165, 116, 0.45);
}
html.is-gold-flash .text-gradient {
  background: linear-gradient(90deg, #d4bb90, #f2f0eb);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Secret peak — appears on easter */
.secret-peak {
  position: fixed;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4.5rem;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 0.9s var(--ease-out-expo), transform 1s var(--ease-out-expo);
  color: rgba(109, 143, 173, 0.22);
}
html.is-peak .secret-peak {
  opacity: 1;
  transform: translateY(0);
}
.secret-peak svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Nav brand egg affordance */
.nav__brand[data-egg-logo] { cursor: pointer; }
.nav__brand.is-egg-pulse .nav__robot {
  filter: drop-shadow(0 0 10px rgba(94, 215, 232, 0.55));
}

/* Focus / reduced motion */
@media (prefers-reduced-motion: reduce) {
  .icon-badge,
  .stat-card,
  .guarantee,
  .card--service::after,
  .egg-toast,
  .secret-peak {
    transition: none !important;
  }
  html.is-blizzard::after { display: none; }
}

/* --- FAQ + contact micro polish --- */
.faq-list summary,
.faq-item summary {
  position: relative;
  padding-right: 2rem;
}
.faq-list summary::after,
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono, monospace);
  color: var(--color-accent);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--dur-ui) var(--ease-premium);
}
.faq-list details[open] summary::after,
.faq-item[open] summary::after {
  content: "−";
}

/* Audit list icons */
.audit__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.audit__list .icon {
  margin-top: 0.2rem;
  color: var(--color-accent);
  opacity: 0.9;
  flex-shrink: 0;
}

/* Case image frame (sheen universal abajo) */
.case__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

/* --- Reflejo / sheen unificado (todas las tarjetas) --- */
.card-sheen {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(242, 240, 235, 0.07) 46%,
    rgba(94, 215, 232, 0.14) 50%,
    rgba(242, 240, 235, 0.06) 54%,
    transparent 62%
  );
  transform: translateX(-130%) skewX(-8deg);
  opacity: 0;
  transition: none;
}
.has-sheen {
  position: relative;
  overflow: hidden;
}
.has-sheen:hover .card-sheen,
.has-sheen:focus-within .card-sheen {
  opacity: 1;
  animation: card-sheen-sweep 0.9s var(--ease-out-expo) forwards;
}
/* Imagen de caso: el sheen también sobre la foto */
.case__image-wrap.has-sheen {
  overflow: hidden;
}
@keyframes card-sheen-sweep {
  from { transform: translateX(-130%) skewX(-8deg); opacity: 0.2; }
  15% { opacity: 1; }
  to { transform: translateX(130%) skewX(-8deg); opacity: 0; }
}
@media (hover: none), (pointer: coarse) {
  .has-sheen:hover .card-sheen { animation: none; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .has-sheen:hover .card-sheen,
  .has-sheen:focus-within .card-sheen {
    animation: none;
    opacity: 0;
  }
}

/* Marquee sep as easter target */
.marquee__sep {
  cursor: default;
  transition: color 0.3s ease, transform 0.3s var(--ease-spring);
}
.marquee__sep[data-egg-star] {
  cursor: pointer;
  pointer-events: auto;
}
.marquee__sep[data-egg-star]:hover {
  color: var(--color-accent);
  transform: scale(1.35) rotate(18deg);
}

/* ============================================
   ALIVE LAYER — página viva de punta a punta
   ============================================ */
:root {
  --px: 50%;
  --py: 40%;
  --pxn: 0;
  --pyn: 0;
}

html.has-alive body {
  background-image:
    radial-gradient(900px 520px at var(--px) var(--py), rgba(94, 215, 232, 0.045), transparent 55%),
    radial-gradient(700px 420px at calc(100% - var(--px)) calc(100% - var(--py)), rgba(109, 143, 173, 0.04), transparent 50%);
  background-attachment: fixed;
}

/* Header solidifies */
.header.is-scrolled .nav {
  background: rgba(6, 8, 12, 0.94);
  border-bottom-color: var(--color-border-strong);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.65);
}

/* Scroll progress pulse with progress */
.scroll-progress {
  box-shadow: 0 0 calc(8px + 14px * var(--glow, 0.4)) rgba(94, 215, 232, calc(0.25 + 0.45 * var(--glow, 0.4)));
}

/* Section alive */
.alive-section {
  position: relative;
  isolation: isolate;
}
.alive-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(94, 215, 232, 0.03), transparent 70%);
  opacity: 0;
  transition: opacity 0.9s var(--ease-out-expo);
  pointer-events: none;
  z-index: 0;
}
.alive-section.is-alive::before { opacity: 1; }
.alive-section > .container { position: relative; z-index: 1; }

/* Big section watermark */
.section-watermark {
  position: absolute;
  top: -0.4rem;
  right: 0;
  font-family: var(--font-display-sans);
  font-weight: 800;
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 240, 235, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo), transform 1.1s var(--ease-out-expo);
}
.alive-section.is-alive .section-watermark {
  opacity: 1;
  transform: none;
}
@media (max-width: 700px) {
  .section-watermark { font-size: 4.5rem; opacity: 0.5; right: 0.5rem; }
}

/* Title clip reveal */
.alive-title {
  clip-path: inset(0 0 100% 0);
  transform: translateY(0.4em);
  transition: clip-path 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.alive-title.is-title-in {
  clip-path: inset(0 0 0 0);
  transform: none;
}

/* Stagger children */
.alive-child {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo),
    border-color var(--dur-ui) var(--ease-premium),
    box-shadow var(--dur-ui) var(--ease-premium);
  transition-delay: calc(var(--stagger-i, 0) * 70ms);
}
[data-alive-stagger].is-staggered .alive-child {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .alive-child,
  .alive-title {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}

/* Spotlight cards */
.has-spotlight {
  position: relative;
  overflow: hidden;
}
.has-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--spot-x, 50%) var(--spot-y, 0%),
    rgba(94, 215, 232, 0.1),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.has-spotlight:hover::before { opacity: 1; }
.has-spotlight > * { position: relative; z-index: 1; }

/* Beam: línea de borde que recorre cian → hueso → oro (planes) */
.has-beam {
  position: relative;
  isolation: isolate;
}
.has-beam::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    110deg,
    transparent 10%,
    rgba(94, 215, 232, 0.15) 28%,
    rgba(94, 215, 232, 0.9) 40%,
    rgba(242, 240, 235, 0.75) 48%,
    rgba(196, 165, 116, 0.95) 56%,
    rgba(94, 215, 232, 0.55) 68%,
    transparent 88%
  );
  background-size: 280% 280%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 4;
  transform: none !important; /* anula sheen oro de Marca (translate/skew) */
  will-change: background-position, opacity;
}
.has-beam:hover::after,
.has-beam:focus-within::after {
  opacity: 1;
  animation: beam-run 2.2s linear infinite;
}
/* Marca: sin resplandor oro; gana el beam multicolor */
.card--price-from.has-beam::after,
.card--price.has-beam::after,
.card--care.has-beam::after,
.card--renovacion-price.has-beam::after {
  display: block !important;
  opacity: 0;
}
.card--price-from.has-beam:hover::after,
.card--price.has-beam:hover::after,
.card--care.has-beam:hover::after,
.card--renovacion-price.has-beam:hover::after,
.card--price-from.has-beam:focus-within::after {
  opacity: 1;
  animation: beam-run 2.2s linear infinite;
  transform: none !important;
}
/* Apaga el sheen oro táctil de bundle cuando hay beam */
.card--price-from.has-beam.is-sheen-run::after {
  animation: beam-run 2.2s linear infinite !important;
  transform: none !important;
  opacity: 1 !important;
  inset: -1px !important;
  background: linear-gradient(
    110deg,
    transparent 10%,
    rgba(94, 215, 232, 0.15) 28%,
    rgba(94, 215, 232, 0.9) 40%,
    rgba(242, 240, 235, 0.75) 48%,
    rgba(196, 165, 116, 0.95) 56%,
    rgba(94, 215, 232, 0.55) 68%,
    transparent 88%
  ) !important;
  background-size: 280% 280% !important;
  padding: 1px !important;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) !important;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
}
@keyframes beam-run {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .has-beam:hover::after,
  .has-beam:focus-within::after,
  .card--price-from.has-beam.is-sheen-run::after {
    animation: none !important;
    opacity: 0.85;
    background-position: 40% 50%;
  }
}

/* Case / blog parallax img */
.case__image-wrap,
.blog-card__image {
  overflow: hidden;
}
.alive-parallax-img {
  will-change: transform;
  transform: scale(1.06);
  transition: transform 0.15s linear;
}

/* Marquee speed var */
.marquee__track {
  --mq-speed: 1;
  animation-duration: calc(42s / var(--mq-speed, 1)) !important;
}

/* Comparison after accent pulse */
.comparison-item__after {
  position: relative;
}
.comparison-item:hover .comparison-item__after {
  color: var(--color-accent-light);
}

/* Service card top rule draw */
.card--service {
  --service-draw: 0;
}
.card--service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.55s var(--ease-out-expo);
  z-index: 2;
}
.card--service:hover::before,
[data-alive-stagger].is-staggered .card--service::before {
  transform: scaleX(1);
}

/* Process line stronger when alive */
.alive-section.is-alive .process-timeline::before {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(94, 215, 232, 0.55) 15%,
    rgba(109, 143, 173, 0.4) 50%,
    rgba(94, 215, 232, 0.35) 85%,
    transparent 100%
  );
  box-shadow: 0 0 18px rgba(94, 215, 232, 0.25);
}

/* Contact channels live */
.contact-channel {
  transition: transform 0.25s var(--ease-premium), border-color 0.25s ease, box-shadow 0.3s ease;
}
.contact-channel:hover {
  border-color: var(--color-border-accent);
  box-shadow: 0 16px 40px -20px rgba(94, 215, 232, 0.3);
}

/* Form fields alive */
.form__input,
.form__select,
.form__textarea,
input, select, textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* Blog card lift */
.blog-card {
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}
.blog-card:hover {
  transform: translateY(-4px);
}

/* Floating deco dots between sections */
.float-deco {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.25rem 0 0;
  pointer-events: none;
}
.float-deco span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.35;
  animation: float-dot 2.8s ease-in-out infinite;
}
.float-deco span:nth-child(2) { animation-delay: 0.35s; opacity: 0.55; }
.float-deco span:nth-child(3) { animation-delay: 0.7s; opacity: 0.3; }
@keyframes float-dot {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-6px); opacity: 0.75; }
}

/* Audit glass pulse border */
.audit.glass {
  position: relative;
  overflow: hidden;
}
.audit.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(94, 215, 232, 0.06) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: audit-sheen 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes audit-sheen {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Nav brand micro pulse when atelier */
.nav__wordmark {
  transition: filter 0.4s ease;
}

/* Hero scroll indicator more alive */
.hero__scroll-indicator .scroll-line {
  animation: scroll-line-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-line-pulse {
  0%, 100% { transform: scaleY(0.45); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* CTA primary shine sweep stronger */
.btn--primary .btn__shine {
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
}
.btn--primary:hover .btn__shine {
  animation: shine-sweep 0.9s var(--ease-out-expo);
}
@keyframes shine-sweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

/* Footer breathe */
.footer {
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 215, 232, 0.35), transparent);
}

/* Price was strike softer */
.price__was { opacity: 0.55; }

/* Comparison handle glow */
.comparison__handle-grip {
  box-shadow: 0 0 0 6px rgba(94, 215, 232, 0.12), 0 8px 24px rgba(0,0,0,0.4);
}

/* Reduced motion kill switch for alive extras */
@media (prefers-reduced-motion: reduce) {
  .float-deco span,
  .audit.glass::after,
  .hero__scroll-indicator .scroll-line,
  .has-beam:hover::after {
    animation: none !important;
  }
  html.has-alive body { background-image: none; }
}

/* ---- Sparklines (métricas) ---- */
.sparkline {
  display: block;
  width: 100%;
  max-width: 5.5rem;
  height: 1.15rem;
  margin-top: 0.55rem;
  color: var(--color-accent);
  opacity: 0.55;
}
.stat-card:hover .sparkline { opacity: 0.95; }
.sparkline path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.2s var(--ease-out-expo);
}
[data-alive-stagger].is-staggered .sparkline path,
.stat-card.is-revealed .sparkline path,
.stat-card.revealed .sparkline path {
  stroke-dashoffset: 0;
}

/* Process fill bar */
.process-timeline {
  --process-fill: 0%;
}
.process-timeline::after {
  content: "";
  position: absolute;
  left: calc(1.55rem + 0.5px);
  top: 1.6rem;
  width: 2px;
  height: var(--process-fill, 0%);
  /* el tope lo fija alive.js en el centro del último icono; el calc
     de antes llegaba al final del bloque y la línea se pasaba del 04 */
  max-height: var(--process-fill-max, calc(100% - 3.2rem));
  background: linear-gradient(180deg, var(--color-accent), var(--color-violet));
  box-shadow: 0 0 12px rgba(94, 215, 232, 0.45);
  border-radius: 2px;
  transition: height 0.15s linear;
  z-index: 0;
  pointer-events: none;
}

/* Case type chip pulse */
.case__type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.case__type::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 rgba(94, 215, 232, 0.45);
  animation: case-dot 2.4s ease-out infinite;
}
@keyframes case-dot {
  0% { box-shadow: 0 0 0 0 rgba(94, 215, 232, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(94, 215, 232, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 215, 232, 0); }
}

/* Live status on contact */
.contact-header .section-label {
  position: relative;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3dd68c;
  margin-right: 0.45rem;
  box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.5);
  animation: live-pulse 2s ease-out infinite;
  vertical-align: middle;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(61, 214, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 214, 140, 0); }
}

/* Horizontal scroller fade edges */
.cases-scroll {
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

/* Form field focus ring premium */
#contacto input:focus,
#contacto select:focus,
#contacto textarea:focus {
  outline: none;
  border-color: var(--color-border-accent);
  box-shadow: 0 0 0 3px rgba(94, 215, 232, 0.12), 0 12px 32px -18px rgba(94, 215, 232, 0.25);
}

/* Iter 6 self-check: button press depth */
.btn:active {
  transform: translateY(1px) scale(0.985);
}

@media (prefers-reduced-motion: reduce) {
  .case__type::before,
  .live-dot { animation: none; }
  .sparkline path { stroke-dasharray: none; stroke-dashoffset: 0; }
  .process-timeline::after { transition: none; }
}

/* ============================================
   RITMO + RESPONSIVE POLISH (post-auditoría)
   ============================================ */

/* Compactar aire muerto vertical */
.atelier-strip {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}
.float-deco {
  padding: 0.15rem 0;
  margin: -0.35rem 0;
}
.ridge__svg {
  height: clamp(1.75rem, 4vw, 3rem);
}
.guarantees {
  margin-top: clamp(1.75rem, 4vw, 2.75rem) !important;
}
.craft-note {
  margin-top: clamp(1.5rem, 3vw, 2.25rem) !important;
}
.section-lead {
  margin-bottom: 0;
  max-width: 36rem;
}
.comparison-grid {
  margin-top: clamp(1.25rem, 3vw, 1.85rem);
  gap: 0.35rem;
}
.comparison-item {
  padding: 0.65rem 0 !important;
}
.cases-cta {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.planes-block + .planes-block,
.planes-block--care {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}
.planes-block__header {
  margin-bottom: 1.25rem !important;
}
.pricing-bolsa,
.pricing-micro,
.pricing-note {
  margin-top: 0.85rem;
}
.faq-list details {
  padding: 0.9rem 0 !important;
}
.contact-header {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.contact-channels {
  gap: 0.75rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}
.process-step {
  padding: 0.85rem 0 0.85rem 0 !important;
}
.hero__proof {
  margin-top: clamp(1.25rem, 3vw, 1.85rem);
}
.marquee {
  margin-block: 0;
  padding-block: 0.85rem;
}

/* Responsive 100% — touch + layout */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}
.container {
  width: min(100% - 1.75rem, var(--max-width, 78rem));
  margin-inline: auto;
  padding-inline: 0;
}
@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, var(--max-width, 78rem));
  }
}

/* Services / blog: evita 1.5 cols rotas */
.services-grid,
.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.5rem), 1fr)) !important;
  gap: clamp(0.9rem, 2.5vw, 1.35rem) !important;
}

/* Blog con 6 entradas: 3+3 limpio en escritorio (el auto-fit daría 4+2) */
@media (min-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

/* Pricing care: 4 → 2 → 1 limpio */
.pricing-care--four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1100px) {
  .pricing-care--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .pricing-care--four { grid-template-columns: 1fr; }
}

/* Build plans: stack en tablet estrecha */
@media (max-width: 900px) {
  .pricing-grid--build {
    grid-template-columns: 1fr !important;
    max-width: 28rem;
    margin-inline: auto;
  }
}

/* Cases scroller: padding y snap */
.cases-scroll {
  gap: 1rem !important;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.card--case {
  scroll-snap-align: start;
  flex: 0 0 min(85vw, 20.5rem);
  max-width: 22rem;
}

/* Nav: no wrap brutal en móvil */
@media (max-width: 768px) {
  .nav__location { display: none; }
  .section-watermark {
    font-size: clamp(3.2rem, 18vw, 5rem);
    opacity: 0.35;
    top: 0;
  }
  .stat-card {
    padding: 0.65rem 0.25rem !important;
  }
  .atelier-strip__inner {
    gap: 0.25rem !important;
  }
  .proof-bar {
    gap: 0.65rem 1rem;
    flex-wrap: wrap;
  }
  .proof-bar__item {
    font-size: 0.78rem;
  }
  .hero__ctas {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .btn--xl {
    width: 100%;
    justify-content: center;
  }
  .hero__secondary-link {
    width: 100%;
    text-align: center;
  }
}

/* Touch targets */
@media (pointer: coarse) {
  .nav__link,
  .nav__lang-opt,
  .btn,
  .faq-list summary {
    min-height: 44px;
  }
  .comparison__input {
    height: 44px;
  }
}

/* Comparison stack mobile limpio */
@media (max-width: 768px) {
  .comparison-item {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.35rem !important;
  }
  .comparison-item__icon { display: none !important; }
  .comparison-item__arrow { opacity: 0.5; }
}

/* Form full width */
#contacto input,
#contacto select,
#contacto textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Guarantees already 1 col small */
@media (max-width: 700px) {
  .process-timeline::before,
  .process-timeline::after {
    left: calc(1.4rem + 0.5px);
  }
}

/* Footer wrap */
.footer__inner,
.footer {
  overflow-wrap: anywhere;
}

/* =========================================================
   15 RONDAS · MEJORA CONTINUA WOW / PREMIUM
   Cada bloque = una pasada de craft de punta a punta
   ========================================================= */

/* R1 — Tipografía: peso editorial, gradiente vivo */
.section-title {
  letter-spacing: -0.038em;
  text-wrap: balance;
}
.section-title .text-gradient,
.text-gradient {
  background: linear-gradient(
    105deg,
    #f2f0eb 0%,
    #8ae4f0 38%,
    #c4a574 62%,
    #f2f0eb 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-drift 12s ease-in-out infinite;
}
@keyframes gradient-drift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero__lead {
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
}
.hero__sublead {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.55;
  max-width: 32rem;
}
.hero__sublead strong {
  color: var(--color-text);
  font-weight: 650;
  box-shadow: inset 0 -0.35em 0 rgba(94, 215, 232, 0.18);
}

/* R2 — Separadores de sección: hairline luminosa */
.section--border {
  border-top: none !important;
  position: relative;
}
.section--border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(94, 215, 232, 0.22) 20%,
    rgba(242, 240, 235, 0.14) 50%,
    rgba(196, 165, 116, 0.2) 80%,
    transparent
  );
  pointer-events: none;
}

/* R3 — Nav: cristal más denso, CTA con pulso sutil */
.header.is-scrolled .nav {
  background: rgba(6, 8, 12, 0.96) !important;
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  box-shadow:
    0 1px 0 rgba(94, 215, 232, 0.08),
    0 18px 50px -28px rgba(0, 0, 0, 0.75) !important;
}
.nav__wordmark {
  letter-spacing: -0.03em;
  font-weight: 800;
}
.nav__link.is-active {
  color: var(--color-text);
  opacity: 1;
}
.nav__link.is-active::after {
  width: 100%;
}
.nav .btn--primary {
  box-shadow: 0 0 0 1px rgba(242, 240, 235, 0.08), 0 8px 28px -12px rgba(94, 215, 232, 0.35);
}

/* R4 — Proof bar: joyas de confianza */
.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  align-items: stretch;
}
.proof-bar__item {
  position: relative;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 240, 235, 0.08);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-premium);
}
.proof-bar__item:hover {
  border-color: rgba(94, 215, 232, 0.28);
  background: rgba(94, 215, 232, 0.05);
  transform: translateY(-1px);
}
.proof-bar__value {
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-right: 0.25em;
}

/* R5 — Marquee: peso editorial dual */
.marquee {
  border-block: 1px solid rgba(242, 240, 235, 0.06);
  background: linear-gradient(
    180deg,
    rgba(94, 215, 232, 0.03),
    transparent 40%,
    transparent 60%,
    rgba(109, 143, 173, 0.04)
  );
}
.marquee__item {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.72;
}
.marquee__item--serif {
  font-family: var(--font-display, Georgia, serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  opacity: 0.9;
  color: var(--color-text);
}
.marquee__sep {
  color: var(--color-accent);
  opacity: 0.55;
}

/* R6 — Cards: borde vivo en idle + lift premium */
.card:not(.card--price):not(.card--care):not(.card--price-from):not(.card--renovacion-price) {
  border: 1px solid rgba(242, 240, 235, 0.08) !important;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.025) 0%, transparent 42%),
    var(--color-surface, #0e1218) !important;
  box-shadow:
    var(--shadow-glass, inset 0 1px 0 rgba(255,255,255,0.05)),
    0 20px 50px -28px rgba(0, 0, 0, 0.55) !important;
  transition:
    transform 0.45s var(--ease-premium),
    border-color 0.35s ease,
    box-shadow 0.45s var(--ease-premium) !important;
}
.card:not(.card--price):not(.card--care):not(.card--price-from):not(.card--renovacion-price):hover {
  border-color: rgba(94, 215, 232, 0.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 70px -22px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(94, 215, 232, 0.08) !important;
  transform: translateY(-4px) !important;
}
.card--service .card__title {
  letter-spacing: -0.03em;
}
.card--case .case__name {
  letter-spacing: -0.025em;
}

/* R7 — Botones: profundidad, shine, press */
.btn {
  letter-spacing: 0.03em;
  font-weight: 650;
}
.btn--primary {
  background: linear-gradient(180deg, #f7f5f0 0%, #e8e4dc 100%) !important;
  color: var(--color-bg) !important;
  border-color: transparent !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 12px 32px -14px rgba(94, 215, 232, 0.35),
    0 4px 12px -4px rgba(0, 0, 0, 0.4);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #8ae4f0 0%, #5ed7e8 100%) !important;
  color: #06080c !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 16px 40px -12px rgba(94, 215, 232, 0.55);
}
.btn--primary .btn__arrow {
  transition: transform 0.3s var(--ease-premium);
  display: inline-block;
}
.btn--primary:hover .btn__arrow {
  transform: translateX(4px);
}
.btn--ghost,
.btn--secondary {
  border-color: rgba(242, 240, 235, 0.16) !important;
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover,
.btn--secondary:hover {
  border-color: rgba(94, 215, 232, 0.4) !important;
  background: rgba(94, 215, 232, 0.06);
  color: var(--color-accent-light);
}
.btn:active {
  transform: translateY(1px) scale(0.98) !important;
}

/* R8 — Precios: ver rounds-real.css (estado avanzado restaurado) */

/* R9 — Proceso: ritual de lujo */
.process-step__content h3 {
  letter-spacing: -0.025em;
}
.process-step.is-inview .process-step__num {
  color: var(--color-accent);
}
.process-step:hover .process-step__content h3 {
  color: var(--color-accent-light);
}
.craft-note {
  border-color: rgba(94, 215, 232, 0.18) !important;
  background:
    linear-gradient(90deg, rgba(94, 215, 232, 0.06), rgba(196, 165, 116, 0.04), rgba(94, 215, 232, 0.06)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* R10 — FAQ: apertura premium */
.faq-list details {
  border-bottom: 1px solid rgba(242, 240, 235, 0.07) !important;
  transition: background 0.3s ease;
  border-radius: 0.5rem;
  padding-inline: 0.5rem !important;
}
.faq-list details[open] {
  background: rgba(94, 215, 232, 0.03);
  border-bottom-color: transparent !important;
  margin-bottom: 0.35rem;
  box-shadow: 0 0 0 1px rgba(94, 215, 232, 0.1);
}
.faq-list summary {
  transition: color 0.25s ease;
  padding-block: 0.35rem;
}
.faq-list details[open] summary {
  color: var(--color-accent-light);
}
.faq-list details p {
  animation: faq-open 0.4s var(--ease-out-expo);
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* R11 — Formulario / contacto */
.contact-channel {
  border: 1px solid rgba(242, 240, 235, 0.1);
  border-radius: var(--radius-lg, 0.9rem);
  padding: 1rem 1.15rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.03), transparent 50%),
    rgba(10, 14, 20, 0.5);
}
.contact-channel .label {
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.85;
}
.contact-channel .value {
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
#contacto input,
#contacto select,
#contacto textarea {
  border: 1px solid rgba(242, 240, 235, 0.1) !important;
  background: rgba(6, 8, 12, 0.55) !important;
  border-radius: var(--radius-md, 0.55rem) !important;
  padding: 0.85rem 1rem !important;
  color: var(--color-text) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}
#contacto input:hover,
#contacto select:hover,
#contacto textarea:hover {
  border-color: rgba(242, 240, 235, 0.18) !important;
}
#contacto input:focus,
#contacto select:focus,
#contacto textarea:focus {
  border-color: rgba(94, 215, 232, 0.45) !important;
  background: rgba(10, 14, 20, 0.85) !important;
  box-shadow:
    0 0 0 3px rgba(94, 215, 232, 0.12),
    0 12px 36px -18px rgba(94, 215, 232, 0.3) !important;
}
#contacto label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

/* R12 — Footer: cierre de marca */
.footer {
  margin-top: 0;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(94, 215, 232, 0.05), transparent 60%),
    var(--color-bg);
}
.footer__brand {
  background: linear-gradient(90deg, #f2f0eb, #8ae4f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer a {
  transition: color 0.25s ease;
}
.footer a:hover {
  color: var(--color-accent-light);
}
.footer__bottom {
  letter-spacing: 0.02em;
}

/* R13 — Scroll, selección, focus global */
::selection {
  background: rgba(94, 215, 232, 0.28);
  color: #f2f0eb;
}
.scroll-progress {
  height: 2px !important;
  background: linear-gradient(
    90deg,
    #5ed7e8,
    #c4a574,
    #8ae4f0
  ) !important;
  transform-origin: left center;
}
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
a.link-accent {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.35s var(--ease-out-expo), color 0.25s ease;
}
a.link-accent:hover {
  background-size: 100% 1px;
  color: var(--color-accent-light);
}

/* R14 — Preloader + grain + badge hero */
.preloader__word {
  letter-spacing: 0.28em;
  background: linear-gradient(90deg, #f2f0eb, #5ed7e8, #f2f0eb);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-drift 3s linear infinite;
}
.preloader__bar-fill {
  background: linear-gradient(90deg, #5ed7e8, #c4a574, #5ed7e8) !important;
  background-size: 200% 100%;
  animation: gradient-drift 1.2s linear infinite;
}
.hero__badge {
  border: 1px solid rgba(94, 215, 232, 0.22);
  background: rgba(6, 8, 12, 0.45);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 0 24px -8px rgba(94, 215, 232, 0.35);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3dd68c;
  box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.5);
  animation: live-pulse 2s ease-out infinite;
  display: inline-block;
}
.page-grain {
  opacity: 0.22;
  pointer-events: none;
}
.comparison {
  border-radius: var(--radius-xl, 1.35rem);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(242, 240, 235, 0.08),
    0 40px 100px -40px rgba(0, 0, 0, 0.75);
}
.comparison__label {
  letter-spacing: 0.16em;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* R15 — Detalles finales: blog, sticky, FAB, watermark breathing */
.blog-card__title {
  letter-spacing: -0.025em;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card__title {
  color: var(--color-accent-light);
}
.blog-card__cta {
  color: var(--color-accent);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.blog-card__meta {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--color-text-faint);
}
.section-watermark {
  animation: watermark-breathe 8s ease-in-out infinite;
}
.alive-section.is-alive .section-watermark {
  animation: watermark-breathe 8s ease-in-out infinite;
}
@keyframes watermark-breathe {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.9; }
}
.sticky-cta,
.fab,
[class*="fab"] {
  box-shadow: 0 12px 40px -10px rgba(94, 215, 232, 0.4), 0 8px 24px -8px rgba(0,0,0,0.5);
}
.guarantee strong {
  background: linear-gradient(180deg, #f2f0eb, #5ed7e8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card__value {
  background: linear-gradient(180deg, #f2f0eb 30%, #8ae4f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__scroll-indicator span {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-family: var(--font-mono, monospace);
  color: var(--color-text-faint);
}
.cases-scroll-hint {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--color-text-faint);
  text-align: center;
  margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .text-gradient,
  .preloader__word,
  .preloader__bar-fill,
  .section-watermark,
  .badge-dot {
    animation: none !important;
  }
  .faq-list details p { animation: none; }
}



/* PLAN SWEEP WINS — no beam de borde en tarjetas de plan */
.card--price.has-beam::after,
.card--care.has-beam::after {
  /* si queda clase residual, no forzar beam-run de borde */
}
