/* ============================================================
   SAYOVA — LANDING PAGE
   Paleta: Blanco frío · Grafito · Eléctrico #4F6EF7
   Efecto: Liquid Glass (backdrop-filter + bordes iridiscentes)
   ============================================================ */

:root {
  --sy-bg: #F2F2F5;
  --sy-surface: #FFFFFF;
  --sy-sunken: #E8E8ED;
  --sy-deep: #0E0E11;
  --sy-deep2: #16161A;

  --sy-accent: #4F6EF7;
  --sy-accent2: #7B96FA;
  --sy-accent3: #A8BFFF;
  --sy-glow: rgba(79, 110, 247, 0.18);
  --sy-glow2: rgba(79, 110, 247, 0.08);

  --sy-t1: #0E0E11;
  --sy-t2: #5A5A6A;
  --sy-t3: #9696A8;
  --sy-ti: #F2F2F5;

  --sy-b: rgba(14, 14, 17, 0.08);
  --sy-b2: rgba(14, 14, 17, 0.14);
  --sy-b3: rgba(14, 14, 17, 0.22);

  --sy-green: #1A8A5A;
  --sy-green-bg: rgba(26, 138, 90, 0.09);
  --sy-amber: #9B6E1A;
  --sy-amber-bg: rgba(155, 110, 26, 0.09);

  --sy-r-sm: 8px;
  --sy-r-md: 14px;
  --sy-r-lg: 20px;
  --sy-r-xl: 28px;
  --sy-r-2xl: 40px;
  --sy-r-full: 9999px;

  /* Liquid Glass tokens */
  --lg-bg: rgba(255, 255, 255, 0.55);
  --lg-bg-dark: rgba(20, 20, 28, 0.55);
  --lg-blur: saturate(200%) blur(22px);
  --lg-blur-hvy: saturate(220%) blur(32px);
  --lg-border: rgba(255, 255, 255, 0.70);
  --lg-border-dark: rgba(255, 255, 255, 0.12);
  --lg-shadow: 0 8px 40px rgba(14, 14, 17, 0.10), 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 -1px 0 rgba(14, 14, 17, 0.06) inset;
  --lg-shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.10) inset;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--sy-bg);
  color: var(--sy-t1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   FONDO HERO — Orbes animadas + grid
   ============================================================ */
.sy-bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Grid punteada */
.sy-bg-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(14, 14, 17, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* Orbe 1 — azul eléctrico */
.sy-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 1;
  animation: sy-orb-drift 18s ease-in-out infinite;
}

.sy-orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.40) 0%, transparent 65%);
  top: -250px;
  left: -200px;
  animation-delay: 0s;
  animation-duration: 20s;
}

.sy-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(120, 80, 255, 0.28) 0%, transparent 65%);
  top: 35%;
  right: -120px;
  animation-delay: -7s;
  animation-duration: 17s;
}

.sy-orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.22) 0%, transparent 65%);
  bottom: 8%;
  left: 15%;
  animation-delay: -12s;
  animation-duration: 22s;
}

@keyframes sy-orb-drift {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -60px) scale(1.05);
  }

  66% {
    transform: translate(-30px, 40px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* ============================================================
   LIQUID GLASS — componente base
   ============================================================ */
.sy-glass {
  background: var(--lg-bg);
  backdrop-filter: var(--lg-blur);
  -webkit-backdrop-filter: var(--lg-blur);
  border: 1px solid var(--lg-border);
  box-shadow: var(--lg-shadow);
}

.sy-glass-dark {
  background: var(--lg-bg-dark);
  backdrop-filter: var(--lg-blur-hvy);
  -webkit-backdrop-filter: var(--lg-blur-hvy);
  border: 1px solid var(--lg-border-dark);
  box-shadow: var(--lg-shadow-dark);
}

/* Borde iridiscente (arco iris sutil) */
.sy-glass-iris {
  position: relative;
}

.sy-glass-iris::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(180, 200, 255, 0.5) 25%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(200, 180, 255, 0.4) 75%,
      rgba(255, 255, 255, 0.8) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   NAV — Liquid Glass flotante
   ============================================================ */
.sy-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  z-index: 100;
  border-radius: var(--sy-r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  animation: sy-nav-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes sy-nav-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.sy-nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

/* SVG logo inline — usa el path real */
.sy-nav-logo svg {
  height: 22px;
  width: auto;
  display: block;
}

.sy-nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.sy-nav-links a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--sy-t2);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--sy-r-full);
  transition: background 0.15s, color 0.15s;
  letter-spacing: -0.01em;
}

.sy-nav-links a:hover {
  background: rgba(14, 14, 17, 0.05);
  color: var(--sy-t1);
}

.sy-nav-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sy-nav-login {
  font-size: 13px;
  font-weight: 500;
  color: var(--sy-t2);
  background: none;
  border: none;
  padding: 7px 14px;
  border-radius: var(--sy-r-full);
  cursor: pointer;
  transition: color 0.15s;
  letter-spacing: -0.01em;
  font-family: inherit;
  text-decoration: none;
}

.sy-nav-login:hover {
  color: var(--sy-t1);
}

.sy-nav-cta {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--sy-accent);
  border: none;
  border-radius: var(--sy-r-full);
  padding: 8px 20px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 14px var(--sy-glow);
  transition: opacity 0.15s, box-shadow 0.15s, transform 0.15s;
  letter-spacing: -0.01em;
}

.sy-nav-cta:hover {
  opacity: 0.9;
  box-shadow: 0 4px 22px var(--sy-glow);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.sy-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
}

/* Badge pill animado */
.sy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--sy-accent);
  padding: 6px 16px 6px 8px;
  border-radius: var(--sy-r-full);
  margin-bottom: 32px;
  animation: sy-fade-up 0.6s ease 0.3s both;
}

.sy-hero-badge-dot {
  width: 20px;
  height: 20px;
  background: var(--sy-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(79, 110, 247, 0.18);
  animation: sy-badge-pulse 2.5s ease-in-out infinite;
}

@keyframes sy-badge-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(79, 110, 247, 0.18);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(79, 110, 247, 0.06);
  }
}

.sy-hero-badge-dot svg {
  width: 10px;
  height: 10px;
}

/* Headline */
.sy-hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  text-align: center;
  line-height: 1.0;
  letter-spacing: -0.05em;
  color: var(--sy-t1);
  max-width: 860px;
  margin-bottom: 24px;
  animation: sy-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.sy-hero-title-line2 {
  background: linear-gradient(135deg, var(--sy-accent) 0%, var(--sy-accent2) 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sy-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  text-align: center;
  color: var(--sy-t2);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
  animation: sy-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
  letter-spacing: -0.01em;
}

.sy-hero-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: sy-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
  margin-bottom: 64px;
}

.sy-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--sy-r-full);
  padding: 13px 26px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.18s;
  letter-spacing: -0.01em;
}

.sy-btn-primary {
  background: var(--sy-accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--sy-glow);
}

.sy-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--sy-glow);
}

.sy-btn-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  color: var(--sy-t1);
  box-shadow: 0 2px 12px rgba(14, 14, 17, 0.08);
}

.sy-btn-glass:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

/* Scroll hint */
.sy-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sy-t3);
  animation: sy-fade-up 1s ease 1.2s both;
}

.sy-scroll-arrow {
  width: 22px;
  height: 22px;
  border: 1px solid var(--sy-b2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sy-scroll-bounce 2s ease-in-out infinite;
}

@keyframes sy-scroll-bounce {

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

  50% {
    transform: translateY(5px);
  }
}

/* ============================================================
   HERO VISUAL — Agente central con liquid glass
   ============================================================ */
.sy-hero-visual {
  width: 100%;
  max-width: 900px;
  animation: sy-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
  position: relative;
}

/* Wrapper interno del panel — padding lateral solo en desktop */
.sy-hero-demo-wrap {
  position: relative;
  padding: 0 60px;
}

@media (max-width: 600px) {
  .sy-hero-demo-wrap {
    padding: 0;
  }
}

/* Panel central de demostración — Liquid Glass */
.sy-demo-panel {
  border-radius: var(--sy-r-2xl);
  overflow: hidden;
  position: relative;
}

/* Tira superior del panel */
.sy-demo-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.25);
}

.sy-demo-dots {
  display: flex;
  gap: 6px;
}

.sy-demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.sy-demo-dots span:nth-child(1) {
  background: #FF5F57;
}

.sy-demo-dots span:nth-child(2) {
  background: #FEBC2E;
}

.sy-demo-dots span:nth-child(3) {
  background: #28C840;
}

.sy-demo-topbar-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--sy-t2);
}

.sy-demo-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sy-green);
}

.sy-demo-status::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--sy-green);
  border-radius: 50%;
  animation: sy-blink 2s infinite;
}

@keyframes sy-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Grid interna del panel */
.sy-demo-grid {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  min-height: 420px;
}

/* Sidebar izquierda — canales */
.sy-demo-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sy-sidebar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sy-t3);
  padding: 0 8px;
  margin-bottom: 6px;
  margin-top: 4px;
}

.sy-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--sy-r-md);
  cursor: default;
  transition: background 0.15s;
  position: relative;
}

.sy-sidebar-item:hover {
  background: rgba(255, 255, 255, 0.3);
}

.sy-sidebar-item.active {
  background: rgba(79, 110, 247, 0.12);
  border: 1px solid rgba(79, 110, 247, 0.18);
}

.sy-sidebar-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.sy-sidebar-info {
  flex: 1;
  min-width: 0;
}

.sy-sidebar-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--sy-t1);
  letter-spacing: -0.01em;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sy-sidebar-last {
  font-size: 10px;
  color: var(--sy-t3);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sy-sidebar-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--sy-accent);
  color: #fff;
  border-radius: var(--sy-r-full);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sy-sidebar-badge.green {
  background: var(--sy-green);
}

.sy-sidebar-badge.amber {
  background: var(--sy-amber);
}

/* Centro — chat */
.sy-demo-chat {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.sy-demo-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sy-chat-avatar-sm {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(79, 110, 247, 0.15);
}

.sy-chat-header-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--sy-t1);
  letter-spacing: -0.02em;
}

.sy-chat-header-sub {
  font-size: 10px;
  color: var(--sy-t3);
}

.sy-chat-source-pills {
  margin-left: auto;
  display: flex;
  gap: 4px;
}

.sy-source-pill {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--sy-r-full);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--sy-t2);
}

.sy-demo-msgs {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  background: rgba(14, 14, 17, 0.03);
}

.sy-msg-row {
  display: flex;
  gap: 7px;
  align-items: flex-start;
}

.sy-msg-row.right {
  justify-content: flex-end;
}

.sy-msg-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  margin-top: 2px;
}

.sy-msg-av.sayova {
  background: white;
}

.sy-msg-av.sayova svg {
  width: 11px;
  height: 11px;
}

.sy-msg-av.user {
  background: var(--sy-sunken);
  color: var(--sy-t2);
  font-size: 9px;
}

.sy-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.sy-bubble.in {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--sy-t1);
  border-bottom-left-radius: 3px;
  box-shadow: 0 1px 4px rgba(14, 14, 17, 0.06);
}

.sy-bubble.out {
  background: var(--sy-deep);
  color: rgba(242, 242, 245, 0.92);
  border-bottom-right-radius: 3px;
  box-shadow: 0 1px 4px rgba(14, 14, 17, 0.10);
}

.sy-msg-tags {
  display: flex;
  gap: 4px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.sy-msg-tag {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--sy-t3);
}

.sy-msg-tag.ai {
  background: rgba(79, 110, 247, 0.10);
  border-color: rgba(79, 110, 247, 0.22);
  color: var(--sy-accent);
}

.sy-demo-input-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.sy-demo-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--sy-r-full);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 300;
  font-family: inherit;
  color: var(--sy-t2);
  outline: none;
  backdrop-filter: blur(8px);
}

.sy-demo-send {
  width: 30px;
  height: 30px;
  background: var(--sy-accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--sy-glow);
}

.sy-demo-send svg {
  width: 12px;
  height: 12px;
}

/* Panel derecho — info */
.sy-demo-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sy-info-card {
  border-radius: var(--sy-r-md);
  padding: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.sy-info-card-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sy-t3);
  margin-bottom: 6px;
}

.sy-info-card-val {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--sy-t1);
  line-height: 1;
}

.sy-info-card-val span {
  font-size: 13px;
  color: var(--sy-accent);
}

.sy-info-card-sub {
  font-size: 10px;
  color: var(--sy-t3);
  margin-top: 3px;
}

.sy-channel-dots {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sy-ch-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--sy-t2);
  font-weight: 500;
}

.sy-ch-dot-icon {
  font-size: 13px;
}

.sy-ch-dot-bar {
  flex: 1;
  height: 3px;
  background: var(--sy-sunken);
  border-radius: var(--sy-r-full);
  overflow: hidden;
}

.sy-ch-dot-fill {
  height: 100%;
  background: var(--sy-accent);
  border-radius: var(--sy-r-full);
}

.sy-ch-dot-num {
  font-size: 10px;
  color: var(--sy-t3);
  font-weight: 600;
  min-width: 22px;
  text-align: right;
}

/* ============================================================
   FLOATING CHANNEL CARDS — alrededor del panel
   ============================================================ */
.sy-float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sy-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--sy-r-lg);
  pointer-events: none;
  white-space: nowrap;
}

.sy-float-card-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.sy-float-card-text {}

.sy-float-card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--sy-t1);
  letter-spacing: -0.02em;
}

.sy-float-card-sub {
  font-size: 10px;
  color: var(--sy-t3);
}

.sy-float-card-1 {
  top: -18px;
  left: -20px;
  animation: sy-float-1 6s ease-in-out infinite;
}

.sy-float-card-2 {
  top: 30%;
  right: -24px;
  animation: sy-float-2 7s ease-in-out infinite;
}

.sy-float-card-3 {
  bottom: 60px;
  left: -18px;
  animation: sy-float-3 5.5s ease-in-out infinite;
}

.sy-float-card-4 {
  bottom: -16px;
  right: 60px;
  animation: sy-float-4 6.5s ease-in-out infinite;
}

@keyframes sy-float-1 {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

@keyframes sy-float-2 {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
}

@keyframes sy-float-3 {

  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-7px) rotate(1deg);
  }
}

@keyframes sy-float-4 {

  0%,
  100% {
    transform: translateY(0) rotate(0.8deg);
  }

  50% {
    transform: translateY(-9px) rotate(-0.8deg);
  }
}

/* ============================================================
   SECCIÓN FEATURES
   ============================================================ */
.sy-section {
  position: relative;
  z-index: 1;
  padding: 100px 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.sy-section-full {
  max-width: none;
}

.sy-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sy-t3);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sy-section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sy-t3);
}

.sy-section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--sy-t1);
  line-height: 1.12;
  margin-bottom: 16px;
}

.sy-section-title span {
  color: var(--sy-accent);
}

.sy-section-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--sy-t2);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

/* Features bento grid */
.sy-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 14px;
}

.sy-bento-card {
  border-radius: var(--sy-r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.sy-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(14, 14, 17, 0.12);
}

.sy-bento-card.wide {
  grid-column: span 2;
}

.sy-bento-card.tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Card blanca glass */
.sy-card-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--lg-blur);
  -webkit-backdrop-filter: var(--lg-blur);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--lg-shadow);
}

/* Card oscura glass */
.sy-card-dark {
  background: rgba(14, 14, 17, 0.88);
  backdrop-filter: var(--lg-blur);
  -webkit-backdrop-filter: var(--lg-blur);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

/* Card accent glass */
.sy-card-accent {
  background: linear-gradient(135deg, rgba(79, 110, 247, 0.88) 0%, rgba(100, 80, 240, 0.88) 100%);
  backdrop-filter: var(--lg-blur);
  -webkit-backdrop-filter: var(--lg-blur);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 40px rgba(79, 110, 247, 0.3);
}

.sy-bento-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sy-card-light .sy-bento-eyebrow {
  color: var(--sy-t3);
}

.sy-card-dark .sy-bento-eyebrow {
  color: rgba(255, 255, 255, 0.3);
}

.sy-card-accent .sy-bento-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.sy-bento-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.sy-card-light .sy-bento-title {
  color: var(--sy-t1);
}

.sy-card-dark .sy-bento-title {
  color: rgba(255, 255, 255, 0.92);
}

.sy-card-accent .sy-bento-title {
  color: #fff;
}

.sy-bento-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.sy-card-light .sy-bento-desc {
  color: var(--sy-t2);
}

.sy-card-dark .sy-bento-desc {
  color: rgba(255, 255, 255, 0.38);
}

.sy-card-accent .sy-bento-desc {
  color: rgba(255, 255, 255, 0.65);
}

/* Decoraciones dentro de las cards */
.sy-card-deco {
  position: absolute;
  pointer-events: none;
}

/* Orbe decorativo dentro de card oscura */
.sy-card-dark .sy-card-deco {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  bottom: -40px;
  right: -40px;
}

/* Mini waves en card de canales */
.sy-mini-channels {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.sy-mini-ch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--sy-r-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--sy-t1);
  backdrop-filter: blur(8px);
}

/* Métricas grandes */
.sy-big-metric {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #fff;
  margin: 16px 0 8px;
}

.sy-big-metric-label {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

/* Gráfica de barras mini */
.sy-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-top: 20px;
}

.sy-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(79, 110, 247, 0.25);
  transition: background 0.2s;
}

.sy-bar.hi {
  background: var(--sy-accent);
}

.sy-bento-card:hover .sy-bar {
  background: rgba(79, 110, 247, 0.35);
}

.sy-bento-card:hover .sy-bar.hi {
  background: var(--sy-accent2);
}

/* CRM card list */
.sy-crm-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sy-crm-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--sy-r-md);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.sy-crm-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}

.sy-crm-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--sy-t1);
  letter-spacing: -0.01em;
}

.sy-crm-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--sy-r-full);
}

.sy-crm-tag.hot {
  background: rgba(255, 92, 74, 0.10);
  color: #E03A28;
}

.sy-crm-tag.warm {
  background: var(--sy-amber-bg);
  color: var(--sy-amber);
}

.sy-crm-tag.cold {
  background: var(--sy-glow2);
  color: var(--sy-accent);
}

/* ============================================================
   HOW IT WORKS — Timeline animada premium
   ============================================================ */
.sy-steps-wrap {
  position: relative;
  padding: 20px 0 0;
}

/* === LÍNEA CONECTORA con luz viajera === */
.sy-steps-line {
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 2px;
  z-index: 0;
}

.sy-steps-line-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--sy-b2) 10%, var(--sy-b2) 90%, transparent 100%);
  border-radius: 2px;
}

/* Partícula de luz que recorre la línea */
.sy-steps-line-glow {
  position: absolute;
  top: -2px;
  left: 0;
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--sy-accent), var(--sy-accent2), transparent);
  border-radius: 6px;
  filter: blur(1px);
  animation: sy-light-travel 4s ease-in-out infinite;
}

@keyframes sy-light-travel {
  0% {
    left: -80px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: calc(100% + 80px);
    opacity: 0;
  }
}

/* === GRID DE PASOS === */
.sy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* === CARD INDIVIDUAL === */
.sy-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Número flotante con glow animado */
.sy-step-num {
  width: 48px;
  height: 48px;
  background: var(--sy-deep);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  box-shadow: 0 4px 20px rgba(14, 14, 17, 0.2);
}

/* Anillo exterior con gradiente rotante */
.sy-step-num::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--sy-accent), var(--sy-accent2), var(--sy-accent3), var(--sy-accent));
  z-index: -1;
  animation: sy-ring-spin 6s linear infinite;
  opacity: 0.7;
}

/* Máscara para hacer el gradiente solo borde */
.sy-step-num::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: var(--sy-deep);
  z-index: -1;
}

@keyframes sy-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.sy-step-card:nth-child(2) .sy-step-num::before {
  animation-delay: -1.5s;
}

.sy-step-card:nth-child(3) .sy-step-num::before {
  animation-delay: -3s;
}

.sy-step-card:nth-child(4) .sy-step-num::before {
  animation-delay: -4.5s;
}

.sy-step-card:hover .sy-step-num {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 8px 30px rgba(79, 110, 247, 0.3);
}

.sy-step-card:hover .sy-step-num::before {
  opacity: 1;
  animation-duration: 2s;
}

/* Conector vertical del número a la card */
.sy-step-stem {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--sy-accent), rgba(79, 110, 247, 0.1));
  border-radius: 2px;
  flex-shrink: 0;
}

/* Card glass con efecto hover premium */
.sy-step-body {
  border-radius: var(--sy-r-xl);
  padding: 28px 24px 24px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

/* Glow sutil en el fondo de la card */
.sy-step-body::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  transition: opacity 0.4s, transform 0.4s;
  opacity: 0;
  pointer-events: none;
}

.sy-step-card:hover .sy-step-body::before {
  opacity: 1;
  transform: translateX(-50%) scale(1.5);
}

.sy-step-card:hover .sy-step-body {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(14, 14, 17, 0.12), 0 0 0 1px rgba(79, 110, 247, 0.1), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* Icono con fondo circular glass */
.sy-step-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sy-step-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(79, 110, 247, 0.06);
  border: 1px solid rgba(79, 110, 247, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sy-step-icon-circle img {
  width: 26px;
  height: 26px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sy-step-card:hover .sy-step-icon-circle {
  background: rgba(79, 110, 247, 0.12);
  border-color: rgba(79, 110, 247, 0.25);
  transform: scale(1.08);
}

.sy-step-card:hover .sy-step-icon-circle img {
  transform: scale(1.1) rotate(-5deg);
}

.sy-step-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sy-t1);
  margin-bottom: 8px;
}

.sy-step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--sy-t2);
  line-height: 1.65;
}

/* Etiqueta de tiempo estimado */
.sy-step-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: var(--sy-r-full);
  background: rgba(79, 110, 247, 0.06);
  border: 1px solid rgba(79, 110, 247, 0.10);
  font-size: 10px;
  font-weight: 600;
  color: var(--sy-accent);
  letter-spacing: 0.02em;
}

/* Legacy connector cleanup */
.sy-step-connector {
  display: none;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.sy-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sy-testimonial {
  border-radius: var(--sy-r-xl);
  padding: 28px;
}

.sy-testimonial-quote {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--sy-t1);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.sy-testimonial-quote strong {
  font-weight: 600;
  color: var(--sy-accent);
}

.sy-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sy-testimonial-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.sy-testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--sy-t1);
  letter-spacing: -0.02em;
}

.sy-testimonial-role {
  font-size: 11px;
  color: var(--sy-t3);
}

.sy-stars {
  color: #F5C064;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* ============================================================
   PRICING — Cards Liquid Glass
   ============================================================ */
.sy-pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;
}

.sy-plan {
  border-radius: var(--sy-r-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.sy-plan-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--sy-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 var(--sy-r-md) var(--sy-r-md);
  letter-spacing: 0.02em;
}

.sy-plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sy-card-light .sy-plan-name {
  color: var(--sy-t3);
}

.sy-card-dark .sy-plan-name {
  color: rgba(255, 255, 255, 0.35);
}

.sy-card-accent .sy-plan-name {
  color: rgba(255, 255, 255, 0.6);
}

.sy-plan-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 4px;
}

.sy-card-light .sy-plan-price {
  color: var(--sy-t1);
}

.sy-card-dark .sy-plan-price {
  color: rgba(255, 255, 255, 0.92);
}

.sy-card-accent .sy-plan-price {
  color: #fff;
}

.sy-plan-price sup {
  font-size: 24px;
  vertical-align: super;
}

.sy-plan-period {
  font-size: 12px;
  color: var(--sy-t3);
  margin-bottom: 24px;
}

.sy-card-accent .sy-plan-period {
  color: rgba(255, 255, 255, 0.5);
}

.sy-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.sy-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.sy-card-light .sy-plan-features li {
  color: var(--sy-t2);
}

.sy-card-dark .sy-plan-features li {
  color: rgba(255, 255, 255, 0.5);
}

.sy-card-accent .sy-plan-features li {
  color: rgba(255, 255, 255, 0.75);
}

.sy-feat-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.sy-card-light .sy-feat-check {
  background: var(--sy-green-bg);
  color: var(--sy-green);
}

.sy-card-dark .sy-feat-check {
  background: rgba(79, 110, 247, 0.15);
  color: var(--sy-accent2);
}

.sy-card-accent .sy-feat-check {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.sy-plan-btn {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--sy-r-full);
  padding: 13px;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
  transition: all 0.18s;
}

.sy-card-light .sy-plan-btn {
  background: var(--sy-deep);
  color: var(--sy-ti);
}

.sy-card-light .sy-plan-btn:hover {
  opacity: 0.8;
}

.sy-card-dark .sy-plan-btn {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sy-card-accent .sy-plan-btn {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.sy-card-accent .sy-plan-btn:hover {
  background: rgba(255, 255, 255, 0.32);
}

/* ============================================================
   CTA FINAL — Gran panel oscuro con alto contraste
   ============================================================ */
.sy-cta-wrap {
  position: relative;
  z-index: 1;
  padding: 0 32px 100px;
  max-width: 1160px;
  margin: 0 auto;
}

.sy-cta-panel {
  border-radius: var(--sy-r-2xl);
  padding: 80px 64px;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0a0a12 0%, #0e1025 40%, #121530 70%, #0a0a12 100%);
  border: 1px solid rgba(79, 110, 247, 0.15);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(79, 110, 247, 0.08) inset;
}

.sy-cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(79, 110, 247, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(120, 80, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(79, 110, 247, 0.10) 0%, transparent 40%);
  pointer-events: none;
}

.sy-cta-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(79, 110, 247, 0.3) 0%, transparent 40%, transparent 60%, rgba(120, 80, 255, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.sy-cta-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
  position: relative;
}

.sy-cta-title span {
  color: var(--sy-accent2);
}

.sy-cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
  position: relative;
}

.sy-cta-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.sy-btn-white {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.8);
}

.sy-btn-white:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.sy-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--sy-b);
  padding: 64px 32px 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.sy-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.sy-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sy-footer-brand svg {
  height: 22px;
  width: auto;
}

.sy-footer-brand-desc {
  font-size: 13px;
  color: var(--sy-t2);
  line-height: 1.65;
  max-width: 280px;
}

.sy-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.sy-footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(14, 14, 17, 0.05);
  border: 1px solid var(--sy-b);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.sy-footer-social a:hover {
  background: rgba(79, 110, 247, 0.1);
  border-color: rgba(79, 110, 247, 0.25);
}

.sy-footer-social a svg {
  width: 14px;
  height: 14px;
}

.sy-footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sy-t1);
  margin-bottom: 16px;
}

.sy-footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sy-footer-col-links a {
  font-size: 13px;
  color: var(--sy-t2);
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 400;
}

.sy-footer-col-links a:hover {
  color: var(--sy-accent);
}

.sy-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--sy-b);
  gap: 16px;
  flex-wrap: wrap;
}

.sy-footer-copy {
  font-size: 12px;
  color: var(--sy-t3);
}

.sy-footer-legal {
  display: flex;
  gap: 20px;
}

.sy-footer-legal a {
  font-size: 12px;
  color: var(--sy-t3);
  text-decoration: none;
  transition: color 0.15s;
}

.sy-footer-legal a:hover {
  color: var(--sy-t1);
}

/* Legacy footer (remove if not used) */
.sy-footer-logo {
  display: flex;
  align-items: center;
}

.sy-footer-logo svg {
  height: 18px;
  width: auto;
}

.sy-footer-links {
  display: flex;
  gap: 24px;
}

.sy-footer-links a {
  font-size: 12px;
  color: var(--sy-t3);
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 500;
}

.sy-footer-links a:hover {
  color: var(--sy-t1);
}

/* ============================================================
   ANIMACIONES GLOBALES
   ============================================================ */
@keyframes sy-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Intersection observer classes */
.sy-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sy-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sy-reveal-delay-1 {
  transition-delay: 0.1s;
}

.sy-reveal-delay-2 {
  transition-delay: 0.2s;
}

.sy-reveal-delay-3 {
  transition-delay: 0.3s;
}

.sy-reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Separador de sección */
.sy-sep {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sy-b2), transparent);
  margin: 0 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .sy-bento {
    grid-template-columns: 1fr 1fr;
  }

  .sy-bento-card.wide {
    grid-column: span 2;
  }

  .sy-bento-card.tall {
    grid-row: span 1;
  }

  .sy-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .sy-steps-line {
    display: none;
  }

  .sy-testimonials {
    grid-template-columns: 1fr;
  }

  .sy-pricing {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }

  .sy-demo-grid {
    grid-template-columns: 1fr;
  }

  .sy-demo-sidebar,
  .sy-demo-info {
    display: none;
  }

  .sy-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .sy-footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .sy-nav {
    width: calc(100% - 24px);
    padding: 10px 14px;
    top: 10px;
  }

  .sy-nav-links {
    display: none;
  }

  .sy-nav-login {
    display: none;
  }

  .sy-nav-cta {
    font-size: 12px;
    padding: 8px 14px;
  }

  .sy-hero {
    padding: 100px 20px 60px;
  }

  .sy-hero-title {
    font-size: 38px;
  }

  .sy-hero-sub {
    font-size: 15px;
    padding: 0 4px;
  }

  .sy-hero-badge {
    font-size: 11px;
    padding: 5px 12px 5px 6px;
  }

  .sy-hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: stretch;
    margin-bottom: 40px;
  }

  .sy-hero-actions .sy-btn {
    justify-content: center;
    width: 100%;
  }

  .sy-hero-visual {
    max-width: 100%;
  }

  .sy-demo-panel {
    border-radius: var(--sy-r-lg);
  }

  .sy-demo-chat {
    border-right: none;
  }

  .sy-bubble {
    font-size: 11px;
    padding: 7px 10px;
    max-width: 220px;
  }

  .sy-demo-topbar {
    padding: 10px 14px;
    font-size: 11px;
  }

  .sy-demo-msgs {
    padding: 10px 12px;
  }

  .sy-section {
    padding: 60px 20px;
  }

  .sy-section-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .sy-section-desc {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .sy-bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sy-bento-card {
    padding: 24px;
  }

  .sy-bento-card.wide {
    grid-column: span 1;
  }

  .sy-bento-card.tall {
    grid-row: span 1;
  }

  .sy-bento-title {
    font-size: 20px;
  }

  .sy-big-metric {
    font-size: 48px;
  }

  .sy-steps {
    grid-template-columns: 1fr;
  }

  .sy-cta-panel {
    padding: 48px 24px;
    border-radius: var(--sy-r-xl);
  }

  .sy-cta-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .sy-cta-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: stretch;
  }

  .sy-cta-actions .sy-btn {
    justify-content: center;
    width: 100%;
  }

  .sy-float-cards {
    display: none;
  }

  .sy-pricing {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .sy-plan {
    padding: 28px 24px;
  }

  /* Footer mobile */
  .sy-footer {
    padding: 40px 20px 80px;
  }

  .sy-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sy-footer-brand {
    grid-column: span 1;
  }

  .sy-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sy-footer-legal {
    flex-wrap: wrap;
    gap: 14px;
  }

  .sy-sep {
    margin: 0 20px;
  }

  .sy-scroll-hint {
    bottom: 16px;
  }
}

@media (max-width: 400px) {
  .sy-hero-title {
    font-size: 32px;
  }

  .sy-nav-logo svg {
    height: 18px;
  }

  .sy-bubble {
    max-width: 190px;
  }
}

/* ============================================================
   SVG ICON SIZING (referenced via <img>)
   ============================================================ */
.sy-icon {
  display: inline-block;
  vertical-align: middle;
}

.sy-float-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sy-float-card-icon img {
  width: 20px;
  height: 20px;
}

.sy-sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sy-sidebar-icon img {
  width: 16px;
  height: 16px;
  filter: saturate(0) brightness(0.55);
  transition: filter 0.15s;
}

.sy-sidebar-item.active .sy-sidebar-icon img {
  filter: none;
}

.sy-sidebar-item:hover .sy-sidebar-icon img {
  filter: saturate(0.5) brightness(0.7);
}

.sy-mini-ch img {
  width: 12px;
  height: 12px;
  vertical-align: -1px;
}

.sy-ch-dot-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sy-ch-dot-icon img {
  width: 13px;
  height: 13px;
  filter: saturate(0) brightness(0.55);
}

.sy-step-icon {
  display: flex;
  align-items: center;
}

.sy-step-icon img {
  width: 28px;
  height: 28px;
}

.sy-msg-tag img {
  width: 10px;
  height: 10px;
  vertical-align: -1px;
}

.sy-source-pill img {
  width: 10px;
  height: 10px;
  vertical-align: -1px;
}

.sy-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.sy-stars img {
  width: 14px;
  height: 14px;
}

.sy-feat-check img {
  width: 10px;
  height: 10px;
}

/* ============================================================
   LOGIN — Spinner de carga
   ============================================================ */
.sy-login-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: sy-spin 0.65s linear infinite;
  vertical-align: -2px;
  margin-right: 7px;
  flex-shrink: 0;
}

@keyframes sy-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   PLATFORM DIAGRAM — Stats bar (usada por PlatformDiagram.astro)
   Los estilos del diagrama HTML están en el propio componente.
   ============================================================ */

/* Stats bar below diagram */
.sy-diag-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
  padding: 24px 32px;
  border-radius: var(--sy-r-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--sy-b);
  flex-wrap: wrap;
  row-gap: 20px;
}

.sy-diag-stat {
  text-align: center;
  padding: 0 32px;
  flex: 1;
  min-width: 120px;
}

.sy-diag-stat-num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--sy-t1);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--sy-accent) 0%, var(--sy-accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sy-diag-stat-label {
  font-size: 0.8125rem;
  color: var(--sy-t3);
  margin-top: 4px;
}

.sy-diag-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sy-b2);
  flex-shrink: 0;
}

/* ─── Responsive stats bar ────────────────────────── */
@media (max-width: 720px) {
  .sy-diag-stats {
    padding: 20px 16px;
    gap: 16px;
  }
  .sy-diag-stat {
    padding: 0 16px;
  }
  .sy-diag-stat-divider {
    display: none;
  }
}

/* ============================================================
   PÁGINAS INTERNAS — Legal, Seguridad, SLA, Estado, Contacto
   ============================================================ */

/* ─── Wrapper genérico de página con nav fijo ─────────── */
.sy-page-wrap {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 108px 24px 0;
}

.sy-page-wrap-wide {
  max-width: 1040px;
}

/* ─── Tarjeta legal ────────────────────────────────────── */
.sy-legal-card {
  padding: 48px 56px;
  border-radius: var(--sy-r-2xl);
}

.sy-legal-card h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--sy-t1);
  margin: 0 0 6px;
  letter-spacing: -0.03em;
}

.sy-legal-updated {
  font-size: 0.8125rem;
  color: var(--sy-t3);
  margin-bottom: 32px;
  display: block;
}

.sy-legal-card h2 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--sy-t1);
  margin: 32px 0 10px;
  padding-top: 24px;
  border-top: 1px solid var(--sy-b);
}

.sy-legal-card p,
.sy-legal-card ul {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--sy-t2);
  margin: 0 0 14px;
}

.sy-legal-card ul {
  padding-left: 20px;
}

.sy-legal-card li {
  margin-bottom: 6px;
}

.sy-legal-card a {
  color: var(--sy-accent);
  text-decoration: underline;
}

.sy-legal-card strong {
  color: var(--sy-t1);
  font-weight: 600;
}

/* ─── Tabla SLA ────────────────────────────────────────── */
.sy-sla-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}

.sy-sla-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sy-t3);
  border-bottom: 1px solid var(--sy-b2);
}

.sy-sla-table td {
  padding: 12px 14px;
  color: var(--sy-t2);
  border-bottom: 1px solid var(--sy-b);
  vertical-align: top;
}

.sy-sla-table td:first-child {
  color: var(--sy-t1);
  font-weight: 500;
}

.sy-sla-table tr:last-child td {
  border-bottom: none;
}

/* ─── Seguridad — badges ───────────────────────────────── */
.sy-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 24px;
}

.sy-sec-card {
  padding: 20px 22px;
  border-radius: var(--sy-r-lg);
  border: 1px solid var(--sy-b);
  background: var(--sy-surface);
}

.sy-sec-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--sy-r-md);
  background: var(--sy-glow2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.sy-sec-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sy-accent);
}

.sy-sec-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sy-t1);
  margin-bottom: 4px;
}

.sy-sec-card-desc {
  font-size: 0.8125rem;
  color: var(--sy-t3);
  line-height: 1.5;
}

/* ─── Estado del servicio ──────────────────────────────── */
.sy-status-hero {
  text-align: center;
  padding: 120px 24px 40px;
  position: relative;
  z-index: 1;
}

.sy-status-overall-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--sy-r-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.sy-status-overall-badge.ok {
  background: var(--sy-green-bg);
  color: var(--sy-green);
  border: 1px solid rgba(26, 138, 90, 0.2);
}

.sy-status-overall-badge.warn {
  background: var(--sy-amber-bg);
  color: var(--sy-amber);
  border: 1px solid rgba(155, 110, 26, 0.2);
}

.sy-status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: sy-pulse 2s ease-in-out infinite;
}

.sy-status-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--sy-t1);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.sy-status-hero p {
  font-size: 1rem;
  color: var(--sy-t2);
}

.sy-status-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.sy-status-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sy-t3);
  margin: 32px 0 10px;
}

.sy-status-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.sy-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--sy-r-md);
}

.sy-status-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sy-status-item-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--sy-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sy-bg);
  flex-shrink: 0;
}

.sy-status-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--sy-t2);
}

.sy-status-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sy-t1);
}

.sy-status-item-sub {
  font-size: 0.775rem;
  color: var(--sy-t3);
  margin-top: 1px;
}

.sy-status-pill {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 11px;
  border-radius: var(--sy-r-full);
  flex-shrink: 0;
}

.sy-status-pill.operational {
  color: var(--sy-green);
  background: var(--sy-green-bg);
}

.sy-status-pill.degraded {
  color: var(--sy-amber);
  background: var(--sy-amber-bg);
}

.sy-uptime-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--sy-r-md);
  margin-bottom: 2px;
}

.sy-uptime-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sy-t2);
  min-width: 160px;
}

.sy-uptime-bar {
  flex: 1;
  height: 5px;
  border-radius: var(--sy-r-full);
  background: var(--sy-b);
  overflow: hidden;
}

.sy-uptime-bar-fill {
  height: 100%;
  border-radius: var(--sy-r-full);
  background: linear-gradient(90deg, #1A8A5A 0%, #22c55e 100%);
}

.sy-uptime-pct {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sy-green);
  min-width: 48px;
  text-align: right;
}

.sy-status-empty-incidents {
  text-align: center;
  padding: 28px;
  font-size: 0.9rem;
  color: var(--sy-t3);
  border-radius: var(--sy-r-lg);
}

/* ─── Contacto con nav/footer ──────────────────────────── */
.sy-contacto-outer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 108px 24px 80px;
}

.contacto-card {
  width: 100%;
  max-width: 520px;
  padding: 3rem 2.5rem;
  border-radius: var(--sy-r-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contacto-card h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sy-t1);
  margin: 0;
  text-align: center;
  letter-spacing: -0.02em;
}

.contacto-card > p {
  color: var(--sy-t2);
  text-align: center;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contacto-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacto-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sy-t1);
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sy-b2);
  border-radius: 12px;
  background: var(--sy-surface);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--sy-t1);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  border-color: var(--sy-accent);
  box-shadow: 0 0 0 3px var(--sy-glow);
}

.contacto-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contacto-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#formMessage {
  text-align: center;
  font-size: 0.9rem;
  min-height: 1.2em;
}

#formMessage.success { color: var(--sy-green); }
#formMessage.error   { color: #c0392b; }

.contacto-back {
  font-size: 0.875rem;
  color: var(--sy-t3);
  text-decoration: none;
  transition: color 0.2s;
}

.contacto-back:hover { color: var(--sy-accent); }

.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ─── Login con nav ────────────────────────────────────── */
.login-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 24px 48px;
}

.login-card {
  width: 100%;
  max-width: 440px;
  padding: 48px 40px 40px;
  border-radius: var(--sy-r-2xl);
  text-align: center;
}

.login-logo { margin-bottom: 28px; display: block; }

.login-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--sy-t1);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.login-subtitle {
  font-size: 14px;
  color: var(--sy-t2);
  margin-bottom: 28px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.login-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--sy-t1);
  margin-bottom: 4px;
  display: block;
}

.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--sy-t1);
  background: var(--sy-surface);
  border: 1px solid var(--sy-b2);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
  border-color: var(--sy-accent);
  box-shadow: 0 0 0 3px var(--sy-glow);
}

.login-form input::placeholder { color: var(--sy-t3); }

.login-field { display: flex; flex-direction: column; gap: 4px; }

.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.login-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--sy-t2);
  cursor: pointer;
  user-select: none;
}

.login-remember input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--sy-accent);
  cursor: pointer;
}

.login-forgot {
  font-size: 13px;
  color: var(--sy-accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.18s;
}

.login-forgot:hover { opacity: 0.7; }
.login-submit { margin-top: 8px; width: 100%; justify-content: center; }

.login-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 4px;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sy-b2);
}

.login-divider span { font-size: 12px; color: var(--sy-t3); white-space: nowrap; }

.login-sso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--sy-t1);
  background: var(--sy-surface);
  border: 1px solid var(--sy-b2);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box;
}

.login-sso:hover {
  border-color: var(--sy-accent);
  box-shadow: 0 0 0 3px var(--sy-glow);
}

.login-sso svg { width: 18px; height: 18px; flex-shrink: 0; }

.login-error {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 13px;
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-radius: 12px;
  text-align: center;
}

.login-error.visible { display: block; }

.login-footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.login-signup { font-size: 14px; color: var(--sy-t2); }

.login-signup a {
  color: var(--sy-accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.18s;
}

.login-signup a:hover { opacity: 0.7; }

.login-back {
  display: inline-block;
  font-size: 13px;
  color: var(--sy-t3);
  text-decoration: none;
  transition: color 0.18s;
}

.login-back:hover { color: var(--sy-accent); }

.login-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.login-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--sy-t3);
  letter-spacing: 0.01em;
}

.login-trust-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ─── Responsive páginas internas ─────────────────────── */
@media (max-width: 640px) {
  .sy-legal-card  { padding: 32px 20px; }
  .sy-page-wrap   { padding-top: 88px; padding-left: 16px; padding-right: 16px; }
  .sy-contacto-outer { padding-top: 88px; padding-left: 16px; padding-right: 16px; }
  .contacto-card  { padding: 2rem 1.25rem; }
  .contacto-row   { grid-template-columns: 1fr; }
  .sy-sec-grid    { grid-template-columns: 1fr; }
  .login-card     { padding: 32px 20px 28px; }
  .login-row      { flex-direction: column; gap: 10px; align-items: flex-start; }
  .sy-uptime-label { min-width: 120px; }
}