@charset "UTF-8";
/* Events page components, layered on top of the shared .samx system
 * (accelerator-model.scss loads first). Page-only pieces: the poster-fan
 * hero with its city ticker, the next-up spotlight with the segmented live
 * counter, poster cards that never crop the artwork, the year-grouped
 * past-events trail, and the full-width event sheets.
 */
/* ==========================================================================
   Event type accents: one color per format, used by every dot on the page
   ========================================================================== */
.samx-evtypedot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--samx-tx-dim);
  flex-shrink: 0;
}

/* One color per type, used identically by the dots and the sheet text.
 * Cyan and blue go to the two most common types, keeping every type clear
 * of the date amber and the Upcoming teal. */
.samx-evtypedot--conference {
  background: var(--samx-cyan);
  box-shadow: 0 0 8px rgba(38, 201, 216, 0.45);
}

.samx-evtypedot--webinar {
  background: var(--samx-blue);
  box-shadow: 0 0 8px rgba(11, 134, 209, 0.45);
}

.samx-evtypedot--happy-hour {
  background: #6bd3b4;
  box-shadow: 0 0 8px rgba(107, 211, 180, 0.45);
}

.samx-evtypedot--hackathon {
  background: var(--samx-coral);
  box-shadow: 0 0 8px rgba(224, 99, 71, 0.45);
}

.samx-evtypedot--panel-talk {
  background: #e0913a;
  box-shadow: 0 0 8px rgba(224, 145, 58, 0.45);
}

/* ==========================================================================
   Hero: two-scale headline, live facts, and the poster fan
   ========================================================================== */
/* The hero matches the header's nav tone so the top of the page reads as
 * one piece; the rest of the page keeps the shared .samx near-black. */
.samx-evhero {
  position: relative;
  background: #131416;
  overflow: clip;
}

.samx-evhero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.samx-evhero__bg span {
  position: absolute;
}

.samx-evhero__glow {
  border-radius: 50%;
  filter: blur(90px);
}

.samx-evhero__glow--a {
  width: 520px;
  height: 520px;
  right: -6%;
  top: -18%;
  background: radial-gradient(circle, rgba(247, 176, 65, 0.12), transparent 65%);
}

.samx-evhero__glow--b {
  width: 460px;
  height: 460px;
  left: -10%;
  bottom: -30%;
  background: radial-gradient(circle, rgba(38, 201, 216, 0.07), transparent 65%);
}

.samx-evhero__gridlines {
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, #000 30%, transparent 75%);
}

.samx-evhero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.25rem) clamp(2.5rem, 4.5vw, 3.5rem);
}

.samx-evhero__title {
  margin: 22px 0 0;
  font-family: var(--samx-ft-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--samx-tx);
}

.samx-evhero__accent {
  font-style: normal;
  background: var(--samx-grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.samx-evhero__lede {
  max-width: 52ch;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.7;
  color: var(--samx-tx-muted);
}

/* Live facts, set as a sentence rather than stat boxes. */
.samx-evhero__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 24px 0 0;
  font-size: 0.95rem;
  color: var(--samx-tx-muted);
}
.samx-evhero__facts strong {
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--samx-tx);
}

.samx-evhero__factsep {
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: rgba(247, 176, 65, 0.5);
  transform: rotate(45deg);
}

.samx-evhero .samx-hero__actions {
  margin-top: 28px;
}

/* The poster fan: real event artwork, stacked like flyers on a desk. */
.samx-evhero__fan {
  position: relative;
  min-height: clamp(330px, 33vw, 470px);
}

.samx-evhero__poster {
  position: absolute;
  appearance: none;
  padding: 0;
  background: var(--samx-surface);
  border: 1px solid var(--samx-border-hover);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transform: rotate(var(--samx-rot, 0deg));
  transition: transform 0.5s var(--samx-ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.samx-evhero__poster img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
}
.samx-evhero__poster:hover {
  transform: rotate(0deg) scale(1.04);
  border-color: rgba(247, 176, 65, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 24px rgba(247, 176, 65, 0.1);
  z-index: 6;
}

.samx-evhero__poster--0 {
  --samx-rot: 3deg;
  width: 58%;
  top: 0;
  right: 0;
  z-index: 3;
}

.samx-evhero__poster--1 {
  --samx-rot: -4.5deg;
  width: 52%;
  top: 31%;
  left: 2%;
  z-index: 2;
}

.samx-evhero__poster--2 {
  --samx-rot: 2deg;
  width: 46%;
  top: 60%;
  right: 8%;
  z-index: 1;
}

.samx-evhero__postertag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 11px;
  font-family: var(--samx-ft-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--samx-tx);
  background: rgba(6, 6, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* Hero entrance: a deterministic load cascade. Poster keyframes omit a "to"
 * frame so each poster settles into its own declared rotation, leaving
 * transform free for the hover straighten. */
@keyframes samx-evhero-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes samx-evhero-poster-in {
  from {
    opacity: 0;
    transform: translateY(38px) rotate(0deg) scale(0.94);
  }
}
.samx-js .samx-evhero .samx-crumbs {
  animation: samx-evhero-in 0.55s var(--samx-ease) 0.05s both;
}

.samx-js .samx-evhero__title {
  animation: samx-evhero-in 0.75s var(--samx-ease) 0.14s both;
}

.samx-js .samx-evhero__lede {
  animation: samx-evhero-in 0.7s var(--samx-ease) 0.3s both;
}

.samx-js .samx-evhero__facts {
  animation: samx-evhero-in 0.7s var(--samx-ease) 0.42s both;
}

.samx-js .samx-evhero .samx-hero__actions {
  animation: samx-evhero-in 0.7s var(--samx-ease) 0.54s both;
}

.samx-js .samx-evhero__poster--0 {
  animation: samx-evhero-poster-in 0.85s var(--samx-ease) 0.3s backwards;
}

.samx-js .samx-evhero__poster--1 {
  animation: samx-evhero-poster-in 0.85s var(--samx-ease) 0.46s backwards;
}

.samx-js .samx-evhero__poster--2 {
  animation: samx-evhero-poster-in 0.85s var(--samx-ease) 0.62s backwards;
}

.samx-js .samx-evhero__ticker {
  animation: samx-evhero-in 0.8s var(--samx-ease) 0.75s both;
}

/* The city ticker: every place the trail has touched, drifting by. */
/* stylelint-disable-next-line no-descending-specificity */
.samx-evhero__ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--samx-border);
  padding-block: 15px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.samx-evhero__tickertrack {
  display: flex;
  width: max-content;
  animation: samx-evhero-ticker 70s linear infinite;
}

@keyframes samx-evhero-ticker {
  to {
    transform: translateX(-50%);
  }
}
.samx-evhero__tickerrun {
  display: flex;
  align-items: center;
}

.samx-evhero__city {
  padding: 0 20px;
  font-family: var(--samx-ft-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--samx-tx-dim);
}

.samx-evhero__dot {
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: rgba(247, 176, 65, 0.45);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Smart fit for off-ratio artwork: squarer images zoom gently and portrait
 * images more, so the stage carries less empty space. Set by events.js from
 * each image's natural ratio; the lightbox always shows the full art. The
 * 1.5 portrait tier knowingly crops the poster's top and bottom edges — a
 * deliberate trade against the deep side gutters portrait art leaves on a
 * 16:9 stage; the full artwork is one zoom click away. */
.samx-evcard__img.is-boxy,
.samx-evnext__mediaimg.is-boxy,
.samx-evmodal__stageimg.is-boxy {
  transform: scale(1.18);
}

.samx-evcard__img.is-tall,
.samx-evnext__mediaimg.is-tall,
.samx-evmodal__stageimg.is-tall {
  transform: scale(1.5);
}

/* ==========================================================================
   Next up spotlight with the segmented counter
   ========================================================================== */
.samx-evnext {
  position: relative;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
  background: var(--samx-grad-card);
  border: 1px solid rgba(247, 176, 65, 0.22);
  border-radius: 16px;
  overflow: clip;
}
.samx-evnext::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(247, 176, 65, 0.8), rgba(38, 201, 216, 0.35), transparent);
}

.samx-evnext__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
}

/* The blurred echo fills whatever the contained artwork leaves uncovered;
 * standard 16:9 graphics cover it entirely on their own. */
.samx-evnext__mediabg,
.samx-evcard__bg,
.samx-evmodal__stagebg {
  position: absolute;
  inset: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  object-fit: cover;
  filter: blur(26px) saturate(1.1) brightness(0.5);
}

/* The artwork shows whole on a 16:9 stage over its blurred echo; standard
 * graphics (1920x1080) fill it exactly. */
.samx-evnext__media {
  position: relative;
  appearance: none;
  padding: 0;
  aspect-ratio: 16/9;
  border: 1px solid var(--samx-border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: radial-gradient(120% 120% at 50% 30%, #0c0c12 0%, #060609 75%);
  transition: border-color 0.25s ease, transform 0.3s var(--samx-ease);
}
.samx-evnext__media:hover {
  border-color: rgba(247, 176, 65, 0.35);
  transform: translateY(-2px);
}
.samx-evnext__media:focus-visible {
  outline: none;
  box-shadow: var(--samx-shadow-focus);
}

.samx-evnext__mediaimg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.samx-evnext__flag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-family: var(--samx-ft-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--samx-amber);
}

.samx-evnext__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--samx-amber);
  box-shadow: 0 0 10px rgba(247, 176, 65, 0.8);
  animation: samx-evnext-pulse 2.2s ease-in-out infinite;
}

@keyframes samx-evnext-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.samx-evnext__title {
  margin: 0 0 10px;
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--samx-tx);
}

.samx-evnext__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  font-family: var(--samx-ft-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--samx-tx-muted);
}
.samx-evnext__meta time {
  color: var(--samx-amber);
}

.samx-evnext__metasep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--samx-tx-dim);
}

.samx-evnext__excerpt {
  margin: 0 0 20px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--samx-tx-muted);
}

/* The counter: three lit units ticking down to doors-open. */
.samx-evcount {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}

.samx-evcount__unit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 74px;
  padding: 12px 14px 10px;
  background: #08080c;
  border: 1px solid var(--samx-border-hover);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.samx-evcount__unit::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(247, 176, 65, 0.55);
  transition: left 0.3s var(--samx-ease), right 0.3s var(--samx-ease);
}

.samx-evcount:hover .samx-evcount__unit {
  border-color: rgba(247, 176, 65, 0.35);
  box-shadow: 0 0 18px rgba(247, 176, 65, 0.08);
}
.samx-evcount:hover .samx-evcount__unit::after {
  left: 8%;
  right: 8%;
}

.samx-evcount__num {
  display: block;
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  color: var(--samx-tx);
  font-variant-numeric: tabular-nums;
}

.samx-evcount__num.is-flip {
  animation: samx-evcount-flip 0.5s var(--samx-ease);
}

@keyframes samx-evcount-flip {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  38% {
    transform: translateY(-58%);
    opacity: 0;
  }
  40% {
    transform: translateY(52%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.samx-evcount__label {
  margin-top: 2px;
  font-family: var(--samx-ft-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--samx-tx-dim);
}

.samx-evcount__sep {
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--samx-tx-dim);
  animation: samx-evcount-blink 2s steps(1) infinite;
}

@keyframes samx-evcount-blink {
  50% {
    opacity: 0.3;
  }
}
/* An event in progress: the counter's slot carries a live badge instead of
 * a timer that would sit at zero all day. */
.samx-evcount--live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 19px;
  border: 1px solid rgba(46, 173, 142, 0.35);
  border-radius: 12px;
  background: rgba(46, 173, 142, 0.07);
}

.samx-evcount__livedot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--samx-teal);
  box-shadow: 0 0 12px rgba(46, 173, 142, 0.8);
  animation: samx-evnext-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

.samx-evcount__livetext {
  font-family: var(--samx-ft-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--samx-teal);
}

.samx-evnext__flag--live {
  color: var(--samx-teal);
}
.samx-evnext__flag--live .samx-evnext__pulse {
  background: var(--samx-teal);
  box-shadow: 0 0 10px rgba(46, 173, 142, 0.8);
}

.samx-evnext__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Upcoming poster cards
   ========================================================================== */
.samx-evgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.samx-evcard {
  background: var(--samx-grad-card);
  border: 1px solid var(--samx-border);
  border-radius: 16px;
  overflow: clip;
  transition: border-color 0.25s ease, transform 0.3s var(--samx-ease), box-shadow 0.3s ease;
}
.samx-evcard:hover {
  border-color: rgba(247, 176, 65, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--samx-shadow-hover);
}

.samx-evcard__hit {
  display: block;
  width: 100%;
  appearance: none;
  padding: 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.samx-evcard__hit:focus-visible {
  outline: none;
  box-shadow: var(--samx-shadow-focus);
}

/* Poster canvas: the artwork contained in full on a clean 16:9 stage. */
.samx-evcard__canvas {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 30%, #0c0c12 0%, #060609 75%);
  border-bottom: 1px solid var(--samx-border);
}

.samx-evcard__img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.samx-evcard__body {
  display: block;
  padding: 18px 18px 16px;
}

.samx-evcard__date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  font-family: var(--samx-ft-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--samx-tx-muted);
}
.samx-evcard__date time {
  color: var(--samx-amber);
}

.samx-evcard__datesep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--samx-tx-dim);
  flex-shrink: 0;
}

.samx-evcard__title {
  display: block;
  margin-bottom: 8px;
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--samx-tx);
}

.samx-evcard__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
  font-size: 0.89rem;
  line-height: 1.6;
  color: var(--samx-tx-muted);
}

.samx-evcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--samx-border);
}

.samx-evcard__type {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  font-family: var(--samx-ft-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--samx-tx-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--samx-border);
  border-radius: 999px;
}

.samx-evcard__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--samx-tx-dim);
  transition: color 0.2s ease, gap 0.25s var(--samx-ease);
}

.samx-evcard:hover .samx-evcard__more {
  color: var(--samx-amber);
  gap: 9px;
}

.samx-evempty {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--samx-grad-card);
  border: 1px solid var(--samx-border);
  border-radius: 14px;
}
.samx-evempty h3 {
  margin: 0 0 8px;
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--samx-tx);
}
.samx-evempty p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--samx-tx-muted);
}

/* ==========================================================================
   Past events: filter chips + the trail
   ========================================================================== */
.samx-evfilter {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(1.6rem, 3vw, 2.2rem);
}

.samx-js .samx-evfilter {
  display: flex;
}

.samx-evfilter__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  appearance: none;
  padding: 9px 15px;
  font-family: var(--samx-ft-body);
  font-size: 0.89rem;
  font-weight: 600;
  color: var(--samx-tx-muted);
  background: var(--samx-card);
  border: 1px solid var(--samx-border);
  border-radius: 10px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}
.samx-evfilter__chip:hover {
  color: var(--samx-tx);
  border-color: var(--samx-border-hover);
}
.samx-evfilter__chip:focus-visible {
  outline: none;
  box-shadow: var(--samx-shadow-focus);
}
.samx-evfilter__chip.is-active {
  color: var(--samx-amber);
  border-color: rgba(247, 176, 65, 0.5);
  background: rgba(247, 176, 65, 0.05);
  box-shadow: 0 0 16px rgba(247, 176, 65, 0.1);
}

.samx-evfilter__count {
  padding: 1px 8px;
  font-family: var(--samx-ft-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--samx-tx-dim);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 7px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.samx-evfilter__chip.is-active .samx-evfilter__count {
  color: var(--samx-amber);
  background: rgba(247, 176, 65, 0.12);
}

/* The trail: an animated rail down the left, years as stations. */
.samx-evtrail {
  position: relative;
  --samx-evtrail-pad: clamp(1.6rem, 3.4vw, 2.4rem);
}

.samx-evtrail__group {
  position: relative;
  padding-left: var(--samx-evtrail-pad);
  /* The rail itself. */
  /* A charge of light travels the rail. */
}
.samx-evtrail__group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 0;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(247, 176, 65, 0.55), rgba(247, 176, 65, 0.12));
}
.samx-evtrail__group::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: 72px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, rgba(247, 176, 65, 0.9), transparent);
  animation: samx-evtrail-charge 5.5s ease-in-out infinite;
}

@keyframes samx-evtrail-charge {
  0% {
    transform: translateY(-72px);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateY(min(60vh, 640px));
    opacity: 0;
  }
}
.samx-evtrail__group:last-of-type::before {
  background: linear-gradient(180deg, rgba(247, 176, 65, 0.55), transparent 94%);
}

.samx-evtrail__group + .samx-evtrail__group {
  margin-top: clamp(1.8rem, 3.4vw, 2.6rem);
}

.samx-evtrail__year {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 16px;
}

/* The station node, a lit diamond centered on the rail. */
.samx-evtrail__node {
  position: absolute;
  left: calc(-1 * var(--samx-evtrail-pad) - 4px);
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--samx-bg);
  border: 2px solid var(--samx-amber);
  border-radius: 2px;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 14px rgba(247, 176, 65, 0.55);
}

.samx-evtrail__yeartext {
  font-family: var(--samx-ft-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  letter-spacing: -0.4px;
  color: var(--samx-tx);
}

.samx-evtrail__yearcount {
  font-family: var(--samx-ft-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--samx-tx-dim);
}

.samx-evtrail__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.samx-evtrail__row {
  position: relative;
}

.samx-evtrail__row.is-hidden {
  display: none;
}

/* A tick reaches from the rail to the row when it wakes. */
.samx-evtrail__row::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--samx-evtrail-pad));
  top: 50%;
  width: calc(var(--samx-evtrail-pad) - 10px);
  height: 2px;
  border-radius: 2px;
  background: rgba(247, 176, 65, 0.5);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--samx-ease);
}

.samx-evtrail__row:hover::before {
  transform: translateY(-50%) scaleX(1);
}

.samx-evtrail__hit {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  appearance: none;
  padding: 15px 20px;
  background: var(--samx-card);
  border: 1px solid var(--samx-border);
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.3s var(--samx-ease), box-shadow 0.3s ease;
}
.samx-evtrail__hit:hover {
  background: var(--samx-hover);
  border-color: rgba(247, 176, 65, 0.3);
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.samx-evtrail__hit:focus-visible {
  outline: none;
  box-shadow: var(--samx-shadow-focus);
}

/* A calendar leaf for the date. */
.samx-evtrail__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 4px 6px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--samx-border);
  border-radius: 10px;
  transition: border-color 0.25s ease;
}

.samx-evtrail__hit:hover .samx-evtrail__day {
  border-color: rgba(247, 176, 65, 0.35);
}

.samx-evtrail__daynum {
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.05;
  color: var(--samx-tx);
}

.samx-evtrail__daymon {
  font-family: var(--samx-ft-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--samx-tx-dim);
}

.samx-evtrail__title {
  display: block;
  font-family: var(--samx-ft-display);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: var(--samx-tx);
  transition: color 0.2s ease;
}

.samx-evtrail__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--samx-tx-muted);
}
.samx-evtrail__loc svg {
  color: var(--samx-tx-dim);
  flex-shrink: 0;
}

.samx-evtrail__type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  font-family: var(--samx-ft-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--samx-tx-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--samx-border);
  border-radius: 999px;
}

.samx-evtrail__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--samx-tx-dim);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--samx-border);
  border-radius: 50%;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.3s var(--samx-ease), background-color 0.25s ease;
}

.samx-evtrail__hit:hover .samx-evtrail__chev {
  color: var(--samx-on-cta);
  background: var(--samx-amber);
  border-color: var(--samx-amber);
  transform: translate(2px, -2px);
}

.samx-evtrail__group.is-hidden {
  display: none;
}

.samx-evtrail__empty {
  display: none;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--samx-card);
  border: 1px solid var(--samx-border);
  border-radius: 14px;
  text-align: center;
}
.samx-evtrail__empty.is-visible {
  display: block;
}
.samx-evtrail__empty h3 {
  margin: 0 0 8px;
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--samx-tx);
}
.samx-evtrail__empty p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--samx-tx-muted);
}

/* ==========================================================================
   The event sheet
   ========================================================================== */
.samx-evmodal {
  max-width: min(1120px, 100vw - 28px);
  width: 100%;
  max-height: calc(100vh - 40px);
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
  color: var(--samx-tx);
}
.samx-evmodal::backdrop {
  background: rgba(4, 4, 8, 0.72);
  backdrop-filter: blur(7px);
}

.samx-evmodal[open] .samx-evmodal__sheet {
  animation: samx-evmodal-in 0.4s var(--samx-ease);
}

@keyframes samx-evmodal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* stylelint-disable-next-line no-descending-specificity */
.samx-evmodal__sheet {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  background: var(--samx-surface);
  border: 1px solid var(--samx-border-hover);
  border-radius: 18px;
  box-shadow: var(--samx-shadow-modal);
  overflow: hidden;
}

.samx-evmodal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  appearance: none;
  color: var(--samx-tx);
  background: rgba(6, 6, 12, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, transform 0.25s var(--samx-ease);
}
.samx-evmodal__close:hover {
  border-color: var(--samx-amber);
  transform: rotate(90deg);
}
.samx-evmodal__close:focus-visible {
  outline: none;
  box-shadow: var(--samx-shadow-focus);
}

/* The top band: the artwork stage at 60% beside a 40% facts panel. The cap
 * keeps the band from claiming the whole sheet on short viewports (landscape
 * phones); the facts panel scrolls instead, and the desktop band sits well
 * under the cap so nothing changes there. */
.samx-evmodal__top {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  flex-shrink: 0;
  max-height: min(62vh, 560px);
  border-bottom: 1px solid var(--samx-border);
}

.samx-evmodal__top--noart {
  grid-template-columns: minmax(0, 1fr);
}

.samx-evmodal__stagearea {
  position: relative;
  aspect-ratio: 16/9;
  min-height: 100%;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 30%, #0c0c12 0%, #060609 75%);
  border-right: 1px solid var(--samx-border);
}

.samx-evmodal__info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.015);
}

.samx-evmodal__inforow {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--samx-border);
}

.samx-evmodal__infolabel {
  margin: 0 0 4px;
  font-family: var(--samx-ft-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--samx-tx-dim);
}

.samx-evmodal__infovalue {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--samx-tx);
}
.samx-evmodal__infovalue time {
  color: var(--samx-amber);
}

.samx-evmodal__infovalue--live {
  color: var(--samx-teal);
}

/* The type reads as colored text in the facts panel, in the same color
 * its dot carries everywhere else. */
.samx-evmodal__infovalue--type-conference {
  color: var(--samx-cyan);
}

.samx-evmodal__infovalue--type-webinar {
  color: var(--samx-blue);
}

.samx-evmodal__infovalue--type-happy-hour {
  color: #6bd3b4;
}

.samx-evmodal__infovalue--type-hackathon {
  color: var(--samx-coral);
}

.samx-evmodal__infovalue--type-panel-talk {
  color: #e0913a;
}

.samx-evmodal__cta {
  margin-top: auto;
}

.samx-evmodal__stageimg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

/* The full screen control, resting quietly in the stage corner. */
.samx-evmodal__expand {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  appearance: none;
  color: var(--samx-tx);
  background: rgba(6, 6, 12, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, transform 0.25s var(--samx-ease), color 0.2s ease;
}
.samx-evmodal__expand:hover {
  color: var(--samx-amber);
  border-color: rgba(247, 176, 65, 0.5);
  transform: scale(1.08);
}
.samx-evmodal__expand:focus-visible {
  outline: none;
  box-shadow: var(--samx-shadow-focus);
}

/* ==========================================================================
   The image lightbox: one shared dialog stacked above the sheet
   ========================================================================== */
/* The lightbox spans the whole viewport so every click lands inside the
 * dialog: on the image it stays, anywhere else it closes. */
.samx-evlightbox {
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100vh;
  padding: clamp(16px, 3vw, 40px);
  background: transparent;
  border: 0;
}
.samx-evlightbox[open] {
  display: grid;
  place-items: center;
}
.samx-evlightbox::backdrop {
  background: rgba(3, 3, 6, 0.88);
  backdrop-filter: blur(10px);
}

.samx-evlightbox[open] .samx-evlightbox__img {
  animation: samx-evlightbox-in 0.35s var(--samx-ease);
}

@keyframes samx-evlightbox-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* stylelint-disable-next-line no-descending-specificity */
.samx-evlightbox__img {
  display: block;
  max-width: min(1400px, 94vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.7);
  cursor: zoom-out;
}

.samx-evlightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  appearance: none;
  color: var(--samx-tx);
  background: rgba(6, 6, 12, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, transform 0.25s var(--samx-ease);
}
.samx-evlightbox__close:hover {
  border-color: var(--samx-amber);
  transform: rotate(90deg);
}
.samx-evlightbox__close:focus-visible {
  outline: none;
  box-shadow: var(--samx-shadow-focus);
}

.samx-evmodal__body {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow-y: auto;
}

.samx-evmodal__title {
  margin: 0 0 14px;
  font-family: var(--samx-ft-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--samx-tx);
}

.samx-evmodal__desc {
  max-width: 78ch;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--samx-tx-muted);
}
.samx-evmodal__desc p {
  margin: 0 0 14px;
}
.samx-evmodal__desc p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   CTA extras
   ========================================================================== */
.samx-cta__mail {
  margin: 22px 0 0;
  font-size: 0.95rem;
  color: var(--samx-tx-muted);
  /* stylelint-disable-next-line no-descending-specificity */
  /* stylelint-disable-next-line no-descending-specificity */
}
.samx-cta__mail a {
  margin-left: 4px;
  font-weight: 700;
  color: var(--samx-amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 176, 65, 0.35);
  transition: border-color 0.2s ease;
}
.samx-cta__mail a:hover {
  border-color: var(--samx-amber);
}

/* ==========================================================================
   Motion preferences & responsive
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .samx-js .samx-evhero .samx-crumbs,
  .samx-js .samx-evhero__title,
  .samx-js .samx-evhero__lede,
  .samx-js .samx-evhero__facts,
  .samx-js .samx-evhero .samx-hero__actions,
  .samx-js .samx-evhero__poster--0,
  .samx-js .samx-evhero__poster--1,
  .samx-js .samx-evhero__poster--2,
  .samx-js .samx-evhero__ticker {
    animation: none;
  }
  .samx-evhero__tickertrack,
  .samx-evnext__pulse,
  .samx-evcount__sep,
  .samx-evcount__num.is-flip {
    animation: none;
  }
  .samx-evtrail__group::after {
    display: none;
  }
  .samx-evmodal[open] .samx-evmodal__sheet,
  .samx-evlightbox[open] .samx-evlightbox__img {
    animation: none;
  }
  .samx-evmodal__expand,
  .samx-evlightbox__close {
    transition: none;
  }
  .samx-evmodal__expand:hover,
  .samx-evlightbox__close:hover {
    transform: none;
  }
  .samx-evhero__poster,
  .samx-evcard,
  .samx-evtrail__hit,
  .samx-evtrail__chev,
  .samx-evnext__media,
  .samx-evmodal__close {
    transition: none;
  }
  .samx-evhero__poster:hover,
  .samx-evcard:hover,
  .samx-evtrail__hit:hover,
  .samx-evtrail__chev:hover,
  .samx-evnext__media:hover,
  .samx-evmodal__close:hover {
    transform: none;
  }
  .samx-evtrail__hit:hover .samx-evtrail__chev {
    transform: none;
  }
}
@media (max-width: 1060px) {
  .samx-evhero__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .samx-evhero__fan {
    min-height: 340px;
    max-width: 560px;
  }
  /* On the short single-column fan the third poster pins to the box's
   * bottom edge; a percentage top would push it out over the ticker. */
  .samx-evhero__poster--2 {
    top: auto;
    bottom: 0;
  }
  .samx-evgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .samx-evnext__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 720px) {
  .samx-evgrid {
    grid-template-columns: minmax(0, 1fr);
  }
  .samx-evhero__fan {
    min-height: 280px;
  }
  .samx-evcount {
    display: flex;
  }
  .samx-evcount__unit {
    flex: 1 1 0;
    min-width: 0;
  }
  .samx-evtrail {
    --samx-evtrail-pad: 1.15rem;
  }
  .samx-evtrail__hit {
    grid-template-columns: 46px minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 13px 14px;
  }
  .samx-evtrail__type {
    display: none;
  }
  .samx-evtrail__yearcount {
    font-size: 0.8rem;
  }
  .samx-evmodal__top {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
  }
  .samx-evmodal__stagearea {
    max-height: 38vh;
    border-right: 0;
    border-bottom: 1px solid var(--samx-border);
  }
  .samx-evmodal__info {
    gap: 10px;
  }
}
/*# sourceMappingURL=events.css.map */