/* agenda.css — Experiencia Tech 2026
   Estilos de la página Agenda (hero + speakers marquee + grilla + modal).
   Reutiliza los tokens de color de skin.css (:root), ya cargado antes. */

  .et-ag-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 16px 40px;
  }
  @media (min-width: 640px) { .et-ag-hero { padding: 80px 32px 40px; } }

  .et-ag-hero p {
    max-width: 48rem;
    font-size: 16px;
    color: var(--et-muted);
    margin: 0;
  }
  @media (min-width: 640px) { .et-ag-hero p { font-size: 18px; } }

  .et-ag-hero h1 {
    margin: 32px 0 0;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--et-fg);
  }
  @media (min-width: 640px) { .et-ag-hero h1 { font-size: 68px; } }

  .et-ag-hero h1 em {
    font-style: italic;
    background: var(--et-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 8px;
  }

  .et-ag-hero__meta {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--et-muted);
  }

  .et-ag-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    border: 1px solid var(--et-border);
    background: oklch(1 0 0 / 4%);
    padding: 8px 16px;
  }
  .et-ag-hero__pill svg {
    height: 16px;
    width: 16px;
    color: var(--et-primary);
    flex-shrink: 0;
  }

  .et-ag-speakers {
    position: relative;
    max-width: 1760px;
    margin: 0 auto;
    padding: 64px 0;
    overflow: hidden;
  }
  @media (min-width: 640px) { .et-ag-speakers { padding: 96px 0; } }

  .et-ag-speakers__head {
    max-width: 1280px;
    margin: 0 auto 40px;
    padding: 0 16px;
  }
  @media (min-width: 640px) { .et-ag-speakers__head { padding: 0 32px; margin-bottom: 56px; } }

  .et-ag-speakers__eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--et-muted);
  }

  .et-ag-speakers__title h2 {
    margin: 12px 0 0;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--et-fg);
  }
  @media (min-width: 640px) { .et-ag-speakers__title h2 { font-size: 64px; } }

  .et-ag-speakers__title em {
    font-style: italic;
    background: var(--et-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 8px;
  }

  .et-ag-speakers__more {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    padding: 0 16px;
  }
  @media (min-width: 640px) { .et-ag-speakers__more { margin-top: 56px; } }

  .et-ag-speakers__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 9999px;
    border: 1px solid oklch(0.66 0.22 295 / 0.4);
    background: rgba(11, 17, 61, 0.8);
    backdrop-filter: blur(20px);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--et-fg);
    cursor: pointer;
    box-shadow: 0 0 60px -10px oklch(0.66 0.22 295 / 0.55);
    transition: transform 0.2s ease;
  }
  .et-ag-speakers__more-btn:hover { transform: scale(1.04); }

  .et-ag-speakers__rows {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .et-ag-srow {
    position: relative;
    overflow: hidden;
  }

  .et-ag-srow__track {
    display: flex;
    width: max-content;
    animation: et-ag-speakers-scroll 40s linear infinite;
  }
  .et-ag-srow--reverse .et-ag-srow__track {
    animation-direction: reverse;
  }

  @keyframes et-ag-speakers-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .et-ag-srow__fade {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 96px;
    z-index: 5;
  }
  .et-ag-srow__fade--left { left: 0; background: linear-gradient(90deg, #0a0d35, transparent); }
  .et-ag-srow__fade--right { right: 0; background: linear-gradient(270deg, #0a0d35, transparent); }

  .et-ag-scard {
    flex-shrink: 0;
    width: 220px;
    margin: 0 12px;
  }
  @media (min-width: 640px) { .et-ag-scard { width: 260px; } }

  .et-ag-scard__frame {
    position: relative;
    margin: 0 auto;
    height: 220px;
    width: 220px;
  }
  @media (min-width: 640px) { .et-ag-scard__frame { height: 260px; width: 260px; } }

  .et-ag-scard__accent {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 12px;
    height: 64px;
    opacity: 0.9;
    background: linear-gradient(135deg, #ff2bd6 0%, #a46bfe 100%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    filter: drop-shadow(0 0 24px rgba(255, 43, 214, 0.55));
  }

  .et-ag-scard__photo-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: oklch(1 0 0 / 5%);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  }

  .et-ag-scard__photo-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.25);
    display: block;
  }

  .et-ag-scard__text {
    margin-top: 16px;
    text-align: center;
  }
  .et-ag-scard__name {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .et-ag-scard__role {
    margin-top: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--et-muted);
  }
  .et-ag-scard__tag {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #ff2bd6;
  }

  .et-ag-schedule {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px 96px;
  }
  @media (min-width: 640px) { .et-ag-schedule { padding: 0 32px 96px; } }

  /* Tabs */
  .et-ag-tabs {
    display: flex;
    align-items: flex-end;
    gap: 8px;
  }
  .et-ag-tab {
    border: none;
    cursor: pointer;
    border-radius: 24px 24px 0 0;
    padding: 20px 32px 24px;
    font-size: 26px;
    font-weight: 900;
    background: oklch(1 0 0 / 10%);
    color: oklch(1 0 0 / 60%);
    transition: background 0.2s ease, color 0.2s ease;
  }
  @media (min-width: 640px) { .et-ag-tab { font-size: 32px; } }
  .et-ag-tab:hover { background: oklch(1 0 0 / 15%); }
  .et-ag-tab--active,
  .et-ag-tab--active:hover {
    background: #f4eefb;
    color: #0b113d;
  }

  /* Light lavender surface */
  .et-ag-surface {
    border-radius: 0 24px 24px 24px;
    background: #f4eefb;
    color: #0b113d;
    padding: 16px;
  }
  @media (min-width: 640px) { .et-ag-surface { padding: 32px; } }

  /* Track headers (desktop) */
  .et-ag-track-headers {
    display: none;
    grid-template-columns: 80px repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  @media (min-width: 768px) { .et-ag-track-headers { display: grid; } }

  .et-ag-track-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 9999px;
    background: oklch(1 0 0 / 70%);
    padding: 10px 16px;
  }
  .et-ag-track-head__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .et-ag-track-head__sub {
    font-size: 10px;
    color: rgba(11, 17, 61, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .et-ag-track-head__dot {
    height: 12px;
    width: 12px;
    flex-shrink: 0;
    border-radius: 9999px;
  }

  /* Track chips (mobile) */
  .et-ag-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  @media (min-width: 768px) { .et-ag-chips { display: none; } }
  .et-ag-chip {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    background: oklch(1 0 0 / 70%);
    padding: 8px 12px;
  }
  .et-ag-chip__dot {
    height: 10px;
    width: 10px;
    border-radius: 9999px;
  }
  .et-ag-chip__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
  }

  /* Desktop grid */
  .et-ag-grid-wrap { display: none; }
  @media (min-width: 768px) { .et-ag-grid-wrap { display: block; } }

  .et-ag-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 80px repeat(4, minmax(0, 1fr));
    column-gap: 12px;
  }

  .et-ag-time {
    padding-top: 12px;
    border-top: 1px dashed rgba(11, 17, 61, 0.15);
    font-family: ui-monospace, "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    color: rgba(11, 17, 61, 0.7);
  }
  .et-ag-time div:last-child { color: rgba(11, 17, 61, 0.4); }

  .et-ag-sep {
    grid-column: 2 / -1;
    border-top: 1px dashed rgba(11, 17, 61, 0.1);
    height: 1px;
  }

  .et-ag-card {
    margin: 4px;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    padding: 16px;
    text-align: left;
    box-shadow: 0 2px 0 rgba(11, 17, 61, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-left-width: 3px;
    border-left-style: solid;
    font: inherit;
    color: inherit;
  }
  .et-ag-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 50px -18px rgba(74, 54, 180, 0.55);
  }

  .et-ag-card__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  .et-ag-card__time { font-family: ui-monospace, monospace; font-size: 11px; font-weight: 700; color: rgba(11, 17, 61, 0.7); }
  .et-ag-card__tag { border-radius: 9999px; padding: 2px 8px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; }
  .et-ag-card__title { margin-top: 8px; font-size: 15px; font-weight: 900; line-height: 1.35; }
  .et-ag-card__sub { margin-top: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(11, 17, 61, 0.5); }

  .et-ag-card--plenaria {
    background: linear-gradient(135deg, rgba(164, 107, 254, 0.12), rgba(255, 255, 255, 1) 55%);
    border-left-width: 4px;
  }
  .et-ag-card--plenaria .et-ag-card__title { font-size: 17px; }

  /* Mobile lists */
  .et-ag-mobile { margin-top: 16px; display: flex; flex-direction: column; gap: 32px; }
  @media (min-width: 768px) { .et-ag-mobile { display: none; } }

  .et-ag-mobile__head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
  .et-ag-mobile__dot { height: 10px; width: 10px; border-radius: 9999px; }
  .et-ag-mobile__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; }

  .et-ag-mobile-card {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: flex-start;
    gap: 12px;
    border-radius: 16px;
    background: #fff;
    padding: 16px;
    text-align: left;
    box-shadow: 0 2px 0 rgba(11, 17, 61, 0.06);
    border: none;
    border-left-width: 3px;
    border-left-style: solid;
    font: inherit;
    color: inherit;
    margin-bottom: 8px;
  }
  .et-ag-mobile-card__time { width: 56px; flex-shrink: 0; font-family: ui-monospace, monospace; font-size: 11px; font-weight: 700; color: rgba(11, 17, 61, 0.7); }
  .et-ag-mobile-card__time div:last-child { color: rgba(11, 17, 61, 0.4); }
  .et-ag-mobile-card__title { font-size: 15px; font-weight: 900; line-height: 1.35; }
  .et-ag-mobile-card__sub { margin-top: 4px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(11, 17, 61, 0.5); }

  .et-ag-mobile-plenaria {
    display: block;
    width: 100%;
    cursor: pointer;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(164, 107, 254, 0.18), #fff 60%);
    padding: 16px;
    text-align: left;
    box-shadow: 0 2px 0 rgba(11, 17, 61, 0.06);
    font: inherit;
    color: inherit;
    margin-bottom: 24px;
  }
  .et-ag-mobile-plenaria__time {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    font-weight: 700;
    color: rgba(11, 17, 61, 0.7);
  }
  .et-ag-mobile-plenaria__tag {
    margin-left: 8px;
    border-radius: 9999px;
    padding: 2px 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: rgba(164, 107, 254, 0.15);
    color: #4a36b4;
  }
  .et-ag-mobile-plenaria__title { display: block; margin-top: 8px; font-size: 16px; font-weight: 900; line-height: 1.35; }

  /* Próximamente (día 2) */
  .et-ag-soon { display: flex; min-height: 380px; align-items: center; justify-content: center; padding: 48px 24px; text-align: center; }
  .et-ag-soon__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; color: rgba(74, 54, 180, 0.7); }
  .et-ag-soon__title { margin-top: 12px; font-size: 24px; font-weight: 900; }
  .et-ag-soon__sub { margin-top: 12px; font-size: 14px; color: rgba(11, 17, 61, 0.6); }

  .et-ag-note { margin-top: 24px; font-size: 12px; color: var(--et-muted); }
  .et-ag-changes-note { margin-top: 32px; font-size: 22px; font-weight: 700; color: var(--et-fg); }
  @media (min-width: 640px) { .et-ag-changes-note { font-size: 28px; } }

  /* Modal */
  .et-ag-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(5, 8, 30, 0.7);
    padding: 20px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }
  .et-ag-modal-overlay--open { display: flex; }

  .et-ag-modal {
    max-width: 42rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    border: 1px solid var(--et-border);
    background: #0b113d;
    color: var(--et-fg);
  }

  .et-ag-modal__head { padding: 32px 24px 24px; }
  @media (min-width: 640px) { .et-ag-modal__head { padding: 40px 40px 24px; } }
  .et-ag-modal__eyebrow { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; }
  .et-ag-modal__eyebrow-dot { height: 8px; width: 8px; border-radius: 9999px; }
  .et-ag-modal__title { margin-top: 16px; font-size: 26px; font-weight: 900; line-height: 1.2; }
  @media (min-width: 640px) { .et-ag-modal__title { font-size: 30px; } }
  .et-ag-modal__meta { margin-top: 12px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 14px; color: oklch(0.98 0.01 275 / 0.7); }
  .et-ag-modal__pill { display: inline-flex; align-items: center; gap: 8px; border-radius: 9999px; border: 1px solid var(--et-border); background: oklch(1 0 0 / 5%); padding: 4px 12px; }
  .et-ag-modal__cluster { border-radius: 9999px; padding: 4px 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: #fff; }

  .et-ag-modal__body { padding: 0 24px 32px; display: flex; flex-direction: column; gap: 16px; }
  @media (min-width: 640px) { .et-ag-modal__body { padding: 0 40px 40px; } }

  .et-ag-modal__speaker {
    border-radius: 16px;
    border: 1px solid var(--et-border);
    background: oklch(1 0 0 / 4%);
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--et-muted);
  }

  .et-ag-field { border-radius: 16px; border: 1px solid var(--et-border-soft); background: oklch(1 0 0 / 3%); padding: 16px; }
  .et-ag-field--highlight { border-color: oklch(0.66 0.22 295 / 0.3); background: oklch(0.66 0.22 295 / 0.1); }
  .et-ag-field__label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: var(--et-muted); }
  .et-ag-field__value { margin-top: 4px; font-size: 14px; color: oklch(0.98 0.01 275 / 0.9); }

  .et-ag-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid var(--et-border);
    background: oklch(1 0 0 / 5%);
    color: var(--et-fg);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
  }
  .et-ag-modal__inner { position: relative; }


/* ---------- Botones (compartido, copiado de home.css para que Agenda también los tenga) ---------- */
.et-home-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .et-home-section { padding: 0 32px; } }

.et-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 9999px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.et-btn:hover { transform: scale(1.03); }

.et-btn--primary {
  background: linear-gradient(135deg, var(--et-primary), var(--et-primary-glow));
  box-shadow: 0 0 60px -10px oklch(0.66 0.22 295 / 0.55);
}

.et-btn--outline {
  border: 1px solid oklch(0.66 0.22 295 / 0.5);
  color: var(--et-primary-glow);
  padding: 14px 28px;
  font-size: 13px;
}
.et-btn--outline:hover { background: oklch(0.66 0.22 295 / 0.1); }

/* .et-link-arrow y .et-arrow: usados por las 3 tarjetas finales (EventCards) */
.et-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--et-primary-glow);
  text-decoration: none;
}
a.et-link-arrow:hover { text-decoration: underline; }
.et-link-arrow .et-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.et-event-card:hover .et-link-arrow .et-arrow {
  transform: translateX(4px);
}

/* ---------- 3 event cards ---------- */
.et-events {
  margin-top: 96px;
  margin-bottom: 96px;
}

.et-events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .et-events__grid { grid-template-columns: repeat(3, 1fr); } }

.et-event-card-pane {
  min-height: 1px;
  height: 100%;
}
.et-event-card-pane > * {
  height: 100%;
}

.et-event-card,
.et-event-card * {
  text-decoration: none;
}
.et-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--et-border);
  background: oklch(0.20 0.09 283 / 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.et-event-card:hover {
  transform: translateY(-4px);
  border-color: var(--et-primary);
  box-shadow: 0 0 60px -10px oklch(0.66 0.22 295 / 0.55);
}

.et-event-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, oklch(0.30 0.14 290), oklch(0.20 0.09 283));
  display: flex;
  align-items: center;
  justify-content: center;
}
.et-event-card__image img {
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 12px;
  mix-blend-mode: screen;
  filter: invert(1) hue-rotate(200deg) saturate(1.4) brightness(1.15) drop-shadow(0 0 18px rgba(164, 107, 254, 0.55));
  transition: transform 0.5s ease;
}
.et-event-card:hover .et-event-card__image img {
  transform: scale(1.04);
}

.et-event-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.et-badge-date {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  border-radius: 9999px;
  background: oklch(0.1 0.03 275);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--et-muted);
}
.et-badge-date svg {
  height: 14px;
  width: 14px;
  color: var(--et-primary-glow);
  flex-shrink: 0;
}

.et-pill-outline svg {
  height: 14px;
  width: 14px;
  color: var(--et-primary-glow);
  flex-shrink: 0;
}

.et-event-card__body h3 {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 800;
  color: var(--et-fg);
}

.et-event-card__body p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--et-muted);
  flex: 1;
}

.et-event-card__venue {
  margin-top: 12px;
  font-size: 12px;
  color: var(--et-muted);
}

/* ---------- CTA flotante (StickyRegisterCTA) ---------- */
.et-ag-sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(64px);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.et-ag-sticky-cta--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.et-ag-sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 9999px;
  border: 1px solid oklch(0.66 0.22 295 / 0.4);
  background: rgba(11, 17, 61, 0.9);
  backdrop-filter: blur(20px);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--et-fg);
  text-decoration: none;
  box-shadow: 0 0 60px -10px oklch(0.66 0.22 295 / 0.55);
  transition: transform 0.2s ease;
}
.et-ag-sticky-cta a:hover { transform: scale(1.04); }
.et-ag-sticky-cta__dot {
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background: var(--et-primary);
  animation: et-ag-pulse-live 1.6s ease-in-out infinite;
}
@keyframes et-ag-pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
