/* =====================================================================
   EVENT EXPERIENCE — bespoke virtual-event landing layout
   (originally the old MLC site's Rethink 2026 Virtual page; now the
   reusable single-event-experience.php template, wdg-nam theme)
   Scoped under .rtx so nothing leaks into the site masthead/footer.

   Brand palette (from MLC brand guide):
     Creators Blue  #0032a0   Bright Blue  #00a9e0
     Electric Teal  #12ddb6   Electric Rose #ee448d
     Grey           #bbbcbc   Light Blue   #cceef9
   Type: Helvetica Neue LT W05 family (already loaded by the theme).
   ===================================================================== */

.rtx {
  /* ---- palette: theme tokens with the MLC brand hexes as fallbacks, so
     another site adopting this template picks up its own scheme ---- */
  --c-blue:        var(--wdg-color-primary, #0032a0);            /* Creators Blue   */
  --c-blue-deep:   #00226e;   /* deeper layering shade derived from --c-blue (not a scheme token) */
  --c-blue-night:  #001a55;   /* deepest grounding navy derived from --c-blue (not a scheme token) */
  --c-bright:      var(--wdg-color-bright-blue, #00a9e0);        /* Bright Blue */
  --c-teal:        var(--wdg-color-electric-teal, #12ddb6);      /* Electric Teal */
  --c-rose:        var(--wdg-color-electric-rose, #ee448d);      /* Electric Rose */
  --c-grey:        var(--wdg-color-cool-gray, #bbbcbc);          /* Grey */
  --c-lightblue:   var(--wdg-color-bright-blue-xlight, #cceef9); /* Light Blue */

  --ink:           #0a1430;   /* near-navy text on light */
  --ink-soft:      #4a5573;
  --paper:         #f4f8fc;   /* page background for light sections */
  --paper-2:       #ffffff;
  --line:          #e2e8f2;

  /* ---- type ---- */
  --display: "Helvetica Neue LT W05_77 Bd Cn", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --heading: "Helvetica Neue LT W05 65 Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body:    "Helvetica Neue LT W05 55 Roman", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bold:    "Helvetica Neue LT W05_75 Bold", "Helvetica Neue", Helvetica, Arial, sans-serif; /* non-condensed bold */

  /* ---- gradients ---- */
  --grad-brand: linear-gradient(120deg, var(--c-blue) 0%, var(--c-bright) 100%);
  --grad-pop:   linear-gradient(120deg, var(--c-bright) 0%, var(--c-teal) 100%);
  --grad-rose:  linear-gradient(120deg, #7a1bd1 0%, var(--c-rose) 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -18px rgba(8, 23, 66, 0.28);
  --shadow-lift: 0 28px 70px -22px rgba(8, 23, 66, 0.42);

  font-family: var(--body);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- full-bleed: the wdg-nam theme's main#page has no width constraints,
   so the experience naturally spans the viewport. Zero out any incidental
   spacing on the template's ancestors (body class set by
   functions/event-experience.php). ---- */
body.event-experience main#page,
body.event-experience main.main {
  padding: 0 !important;
  margin-top: 0 !important;
  max-width: none !important;
}

/* ---- scoped resets ---- */
.rtx *,
.rtx *::before,
.rtx *::after { box-sizing: border-box; }

.rtx :where(img) { max-width: 100%; height: auto; display: block; }
.rtx :where(a) { color: inherit; text-decoration: none; }
/* sane default icon size — inline SVGs here use a 24x24 viewBox with no width/height */
.rtx :where(svg) { width: 1.15em; height: 1.15em; flex: none; }

/* zero-specificity reset so component classes always win; color is inherited
   (light sections inherit --ink from .rtx; dark sections set their own #fff) */
.rtx :where(h1, h2, h3, h4) {
  font-family: var(--heading);
  line-height: 1.08;
  margin: 0;
}

.rtx__inner { width: min(1200px, 100% - 48px); margin-inline: auto; }

.rtx-eyebrow {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--c-bright);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.rtx-eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--grad-pop);
  display: inline-block;
}

.rtx-section { position: relative; padding: clamp(64px, 8vw, 120px) 0; }
.rtx-section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.rtx-section__title {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
}
.rtx-section__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); margin-top: 14px; }

/* ---- buttons ---- */
.rtx-btn {
  --bg: var(--grad-brand);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--heading);
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 999px;
  border: 0; cursor: pointer;
  background-image: var(--bg);
  color: #fff;
  position: relative;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
  box-shadow: 0 12px 28px -10px rgba(0, 169, 224, .6);
}
.rtx-btn:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -12px rgba(0, 169, 224, .75); }
.rtx-btn--pop { --bg: var(--grad-pop); box-shadow: 0 12px 28px -10px rgba(18, 221, 182, .6); color: #04263b; }
.rtx-btn--rose { --bg: var(--grad-rose); box-shadow: 0 12px 28px -10px rgba(238, 68, 141, .55); }
.rtx-btn--ghost {
  background-image: none;
  background-color: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(4px);
}
.rtx-btn--ghost:hover { background-color: rgba(255,255,255,.14); box-shadow: none; }
.rtx-btn svg { width: 18px; height: 18px; }

/* ---- add-to-calendar dropdown ---- */
.rtx-cal { position: relative; display: inline-block; }
.rtx-cal__caret { font-size: .7em; opacity: .8; margin-left: 2px; }
.rtx-cal__menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px; z-index: 25;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift); padding: 7px; display: none;
}
.rtx-cal__menu--up { top: auto; bottom: calc(100% + 10px); }
.rtx-cal.is-open .rtx-cal__menu { display: block; animation: rtx-fade .2s ease; }
.rtx-cal__item {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 11px 14px; border: 0; background: transparent; border-radius: 9px;
  font-family: var(--heading); font-size: .95rem; color: var(--ink); cursor: pointer;
}
.rtx-cal__item:hover { background: var(--c-lightblue); color: var(--c-blue); }

/* =====================================================================
   HERO
   ===================================================================== */
.rtx-hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(130% 110% at 75% -12%, #1140b8 0%, var(--c-blue) 48%, #00256e 100%);
  padding: clamp(120px, 16vh, 200px) 0 clamp(80px, 10vh, 130px);
  isolation: isolate;
}
.rtx-hero__media {
  position: absolute; inset: 0; z-index: -3;
  background-size: cover; background-position: center;
  opacity: .16;
  filter: saturate(1.1) contrast(1.05);
  mix-blend-mode: luminosity;
}
.rtx-hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, rgba(0,26,92,.10) 0%, rgba(0,26,92,.42) 60%, var(--c-blue-deep) 100%);
}
/* animated colour orbs */
.rtx-hero__orb { position: absolute; z-index: -3; border-radius: 50%; filter: blur(60px); opacity: .42; }
.rtx-hero__orb--1 { width: 46vw; height: 46vw; left: -14vw; top: -10vw; background: radial-gradient(circle, rgba(0,169,224,.9), transparent 65%); animation: rtx-float 16s ease-in-out infinite; }
.rtx-hero__orb--2 { width: 38vw; height: 38vw; right: -10vw; top: 6vw; background: radial-gradient(circle, rgba(18,221,182,.8), transparent 65%); animation: rtx-float 20s ease-in-out infinite reverse; }
.rtx-hero__orb--3 { width: 30vw; height: 30vw; right: 18vw; bottom: -12vw; background: radial-gradient(circle, rgba(238,68,141,.7), transparent 65%); animation: rtx-float 24s ease-in-out infinite; }
/* faint engineering grid */
.rtx-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 20%, #000 30%, transparent 80%);
          mask-image: radial-gradient(120% 90% at 50% 20%, #000 30%, transparent 80%);
}

.rtx-hero__inner { width: min(1180px, 100% - 48px); margin-inline: auto; position: relative; }

.rtx-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--heading);
  text-transform: uppercase; letter-spacing: 0.26em; font-size: .76rem;
  padding: 9px 18px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  color: #eaf6ff;
}
.rtx-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-teal); box-shadow: 0 0 0 4px rgba(18,221,182,.25); animation: rtx-pulse 2s infinite; }

.rtx-hero__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(3.6rem, 11vw, 8.6rem);
  line-height: .86;
  letter-spacing: -0.01em;
  margin: 22px 0 6px;
  color: #fff;
  text-shadow: 0 8px 60px rgba(0,169,224,.35);
}
.rtx-hero__title .yr {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text; background-clip: text;
  background-image: var(--grad-pop);
}
.rtx-hero__lockup { display: flex; align-items: baseline; gap: clamp(12px, 2vw, 28px); flex-wrap: wrap; }
/* official "rethink." wordmark in place of the text lockup */
.rtx-hero__title--img { display: block; width: 100%; margin: 16px 0 10px; line-height: 1; }
.rtx-hero__logo { display: block; width: clamp(240px, 42vw, 560px); max-width: 100%; height: auto; filter: drop-shadow(0 12px 34px rgba(0,0,0,.22)); }
.rtx-hero__sub {
  font-family: var(--bold);   /* non-condensed bold */
  font-weight: 700;
  text-transform: none;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  line-height: 1.12;
  max-width: 20em;        /* two lines; last two words are bound (nbsp) so it breaks after "Transformation" */
  color: #fff;            /* bright white, fully opaque */
  margin: 0;
}
.rtx-hero__tagline { max-width: 56ch; color: #b9c9e6; font-size: clamp(1rem, 1.4vw, 1.18rem); margin: 22px 0 0; }
/* brand "•••" motif (Electric Teal), sits directly under the subtitle */
.rtx-dots { display: flex; gap: 11px; margin: 20px 0; }
.rtx-dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--c-teal); }

.rtx-hero__meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 6px; }
.rtx-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px; border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--heading); font-size: .98rem; color: #eaf6ff;
}
.rtx-pill svg { width: 18px; height: 18px; color: var(--c-bright); }

.rtx-hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }

/* countdown */
.rtx-countdown { display: flex; gap: 14px; margin-top: 46px; flex-wrap: wrap; }

/* Post-event line shown where the countdown used to sit */
.rtx-hero__wrap { margin: 40px 0 0; color: #bcd2ef; font-size: 1.05rem; }
.rtx-hero__wrap::before { content: ""; display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--c-bright); margin-right: 10px; vertical-align: 1px; }
.rtx-count {
  min-width: 92px; text-align: center;
  padding: 16px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.rtx-count__num { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.rtx-count__lbl { display: block; margin-top: 6px; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: #9fb4d6; }

/* hero stat strip */
.rtx-hero__stats {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.rtx-stat { background: rgba(4,17,46,.5); padding: 26px 22px; backdrop-filter: blur(4px); }
.rtx-stat__num { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1;
  -webkit-text-fill-color: transparent; -webkit-background-clip: text; background-clip: text; background-image: var(--grad-pop); }
.rtx-stat__lbl { color: #c2d2ec; font-size: .92rem; margin-top: 8px; }

.rtx-scrollcue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.rtx-scrollcue span { width: 1px; height: 38px; background: linear-gradient(var(--c-bright), transparent); animation: rtx-cue 1.8s ease-in-out infinite; }

/* =====================================================================
   STICKY IN-PAGE NAV
   ===================================================================== */
.rtx-subnav {
  position: sticky; top: var(--rtx-top, 0px); z-index: 30;
  background: rgba(0, 26, 85, .85);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.rtx-subnav.is-stuck { transform: translateY(0); }
.rtx-subnav__inner { width: min(1200px, 100% - 48px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.rtx-subnav__brand { font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; color: #fff; font-size: 1.15rem; }
.rtx-subnav__brand b { color: var(--c-bright); -webkit-text-fill-color: var(--c-bright); }
.rtx-subnav__logo { height: 24px; width: auto; display: block; }
.rtx-subnav__links { display: flex; gap: 6px; align-items: center; }
.rtx-subnav__links a { font-family: var(--heading); font-size: .92rem; color: #c8d6ef; padding: 9px 14px; border-radius: 999px; transition: color .2s, background .2s; }
.rtx-subnav__links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.rtx-subnav__links a.is-active { color: #04263b; background: var(--c-bright); }
.rtx-subnav__cta { padding: 10px 22px; font-size: .9rem; }
.rtx-subnav__toggle { display: none; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.rtx-about { background: var(--paper); }
.rtx-about__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.rtx-about__body p { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); margin: 0 0 18px; }
.rtx-about__body p.lead { font-family: var(--heading); color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.35; }
.rtx-feature-cards { display: grid; gap: 16px; }
.rtx-feature {
  position: relative; overflow: hidden;
  padding: 28px 26px 26px; border-radius: var(--radius);
  background: var(--paper-2); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.rtx-feature::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--grad-brand); }
.rtx-feature:nth-child(2)::before { background: var(--grad-pop); }
.rtx-feature:nth-child(3)::before { background: var(--grad-rose); }
.rtx-feature__ico { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--c-lightblue); color: var(--c-blue); margin-bottom: 16px; }
.rtx-feature__ico svg { width: 24px; height: 24px; }
.rtx-feature h3 { font-size: 1.25rem; margin-bottom: 8px; }
.rtx-feature p { color: var(--ink-soft); margin: 0; font-size: 1rem; }

/* =====================================================================
   AGENDA
   ===================================================================== */
.rtx-agenda { background: linear-gradient(180deg, #eaf3fb 0%, var(--paper) 100%); }
.rtx-agenda__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }

.rtx-daytabs { display: inline-flex; padding: 6px; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow); }
.rtx-daytab {
  font-family: var(--heading); font-size: .98rem; color: var(--ink-soft);
  padding: 12px 22px; border-radius: 999px; border: 0; background: transparent; cursor: pointer;
  transition: color .2s; white-space: nowrap;
}
.rtx-daytab small { display: block; font-size: .72rem; color: var(--c-grey); font-family: var(--body); }
.rtx-daytab.is-active { background-image: var(--grad-brand); color: #fff; }
.rtx-daytab.is-active small { color: rgba(255,255,255,.85); }

.rtx-day { display: none; }
.rtx-day.is-active { display: block; animation: rtx-fade .5s ease; }

/* timeline */
.rtx-timeline { position: relative; margin-left: 6px; }
.rtx-timeline::before {
  content: ""; position: absolute; left: 168px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--c-bright), var(--c-teal));
  opacity: .35;
}
.rtx-ses { position: relative; display: grid; grid-template-columns: 168px 1fr; gap: 28px; padding: 0 0 22px; }
.rtx-ses__time { text-align: right; padding-top: 22px; position: relative; }
.rtx-ses__time time { font-family: var(--display); font-size: 1.15rem; color: var(--c-blue); letter-spacing: .01em; white-space: nowrap; }
.rtx-ses__dot {
  position: absolute; right: -29px; top: 30px; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid var(--c-bright); box-shadow: 0 0 0 5px rgba(0,169,224,.14); z-index: 1;
}
.rtx-ses__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s;
}
.rtx-ses__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: #cfe0f3; }
.rtx-ses__kicker { display: inline-block; font-family: var(--heading); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-bright); margin-bottom: 8px; }
.rtx-ses__title { font-size: clamp(1.15rem, 1.8vw, 1.45rem); color: var(--ink); }
.rtx-ses__desc { color: var(--ink-soft); margin: 10px 0 0; font-size: 1rem; }
.rtx-ses__note { margin: 10px 0 0; font-size: .95rem; color: var(--ink-soft); }
.rtx-ses__note b { color: var(--ink); }
.rtx-ses__people { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.rtx-chip {
  display: inline-flex; align-items: baseline; gap: 8px; max-width: 100%;
  padding: 8px 16px; border-radius: 14px;
  background: var(--c-lightblue); color: var(--c-blue);
  font-size: .92rem;
}
.rtx-chip b { font-family: var(--heading); font-weight: 400; white-space: nowrap; }
.rtx-chip span { color: var(--ink-soft); font-family: var(--body); font-size: .84rem; }

/* break row */
.rtx-ses--break .rtx-ses__card {
  background: transparent; border: 1px dashed #c4d4e8; box-shadow: none;
  display: flex; align-items: center; gap: 12px; color: var(--ink-soft); padding: 14px 22px;
}
.rtx-ses--break .rtx-ses__card:hover { transform: none; }
.rtx-ses--break .rtx-ses__title { font-family: var(--heading); font-size: 1rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .12em; }
.rtx-ses--break .rtx-ses__dot { border-color: var(--c-grey); box-shadow: none; }

/* =====================================================================
   SPEAKERS
   ===================================================================== */
.rtx-speakers { background: var(--c-blue-night); color: #fff; overflow: hidden; position: relative; }
.rtx-speakers::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 60% at 90% 0%, rgba(0,169,224,.25), transparent 60%), radial-gradient(60% 50% at 0% 100%, rgba(238,68,141,.18), transparent 60%); pointer-events:none; }
.rtx-speakers .rtx-section__title { color: #fff; }
.rtx-speakers .rtx-section__lead { color: #b9c9e6; }
.rtx-spk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.rtx-spk {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s;
}
.rtx-spk:hover { transform: translateY(-6px); border-color: rgba(0,169,224,.6); }
.rtx-spk__photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #0a1f4a; }
.rtx-spk__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.rtx-spk:hover .rtx-spk__photo img { transform: scale(1.06); }
.rtx-spk__photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(0,18,66,.9) 100%); }
.rtx-spk__ph-fallback { width:100%; height:100%; display:grid; place-items:center; font-family:var(--display); font-size:2.4rem; color:#fff; background-image: var(--grad-brand); }
.rtx-spk__body { padding: 16px 18px 20px; position: relative; }
.rtx-spk__name { font-family: var(--heading); font-size: 1.08rem; color: #fff; }
.rtx-spk__role { color: #a9bcdc; font-size: .86rem; margin-top: 4px; line-height: 1.4; }
.rtx-spk__co { color: var(--c-bright); font-size: .86rem; font-family: var(--heading); margin-top: 6px; }
.rtx-spk__accent { position:absolute; left:0; right:0; top:0; height:3px; background: var(--grad-pop); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.rtx-spk:hover .rtx-spk__accent { transform: scaleX(1); }
.rtx-spk:nth-child(3n) .rtx-spk__accent { background: var(--grad-rose); }
.rtx-spk:nth-child(3n+1) .rtx-spk__accent { background: var(--grad-brand); }

/* =====================================================================
   SPONSORS
   ===================================================================== */
.rtx-sponsors { background: var(--paper); }
.rtx-sponsors__sub { font-family: var(--heading); text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; color: var(--c-blue); margin: 0 0 22px; display:flex; align-items:center; gap:14px; }
.rtx-sponsors__sub::after { content:""; flex:1; height:1px; background: var(--line); }
.rtx-partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 64px; }
.rtx-partner {
  display: grid; place-items: center; padding: 38px 28px; min-height: 150px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.rtx-partner:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.rtx-partner img { max-height: 70px; width: auto; object-fit: contain; }

.rtx-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.rtx-logo {
  display: grid; place-items: center; padding: 24px 18px; min-height: 108px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: transform .3s, box-shadow .3s;
}
.rtx-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rtx-logo img { max-height: 52px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .3s, opacity .3s; }
.rtx-logo:hover img { filter: none; opacity: 1; }

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.rtx-cta { position: relative; overflow: hidden; color: #fff; padding: clamp(70px, 10vw, 130px) 0; background: radial-gradient(120% 140% at 0% 0%, #103fb0, var(--c-blue-deep) 70%); }
.rtx-cta__orb { position:absolute; border-radius:50%; filter: blur(70px); opacity:.5; z-index:0; }
.rtx-cta__orb--a { width: 40vw; height:40vw; right:-10vw; top:-14vw; background: radial-gradient(circle, rgba(0,169,224,.9), transparent 65%); }
.rtx-cta__orb--b { width: 30vw; height:30vw; left:-8vw; bottom:-12vw; background: radial-gradient(circle, rgba(18,221,182,.8), transparent 65%); }
.rtx-cta__inner { position: relative; z-index:1; text-align: center; }
.rtx-cta__logo { width: clamp(200px, 32vw, 380px); height: auto; margin: 0 auto 22px; filter: drop-shadow(0 12px 34px rgba(0,0,0,.22)); }
.rtx-cta__title { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 5rem); line-height: .95; color:#fff; }
.rtx-cta__title .yr { -webkit-text-fill-color: transparent; -webkit-background-clip:text; background-clip:text; background-image: var(--grad-pop); }
.rtx-cta__sub { color:#cfe0f6; font-size: clamp(1.05rem,1.6vw,1.3rem); margin: 18px auto 0; max-width: 56ch; }
.rtx-cta__actions { margin-top: 34px; display:flex; gap:16px; justify-content:center; flex-wrap: wrap; }
.rtx-cta__date { margin-top: 22px; font-family: var(--heading); letter-spacing:.08em; color:#9fb4d6; text-transform: uppercase; font-size:.85rem; }

/* =====================================================================
   WATCH LIVE (gated)
   ===================================================================== */
.rtx-live { background: var(--c-blue-night); color: #fff; position: relative; overflow: hidden; }
.rtx-live::before { content:""; position:absolute; inset:0; background: radial-gradient(70% 60% at 85% 0%, rgba(0,169,224,.22), transparent 60%), radial-gradient(60% 50% at 0% 100%, rgba(18,221,182,.14), transparent 60%); pointer-events:none; }
.rtx-live .rtx-section__title { color: #fff; }
.rtx-live .rtx-section__lead { color: #b9c9e6; }
.rtx-live__stage { position: relative; max-width: 980px; margin: 0 auto; }
.rtx-login {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lift);
}
.rtx-login__label { display: block; margin: 0 0 16px; color: #cfe0f6; font-family: var(--heading); }
.rtx-login__row { display: flex; gap: 12px; flex-wrap: wrap; }
.rtx-login__input {
  flex: 1 1 220px; min-width: 0;
  padding: 14px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08); color: #fff;
  font-family: var(--body); font-size: 1rem;
}
.rtx-login__input::placeholder { color: #9fb4d6; }
.rtx-login__input:focus { outline: none; border-color: var(--c-bright); box-shadow: 0 0 0 3px rgba(0,169,224,.25); }
.rtx-login__btn { flex: 0 0 auto; }
.rtx-login__error { color: #ff9bbf; margin: 14px 0 0; min-height: 1em; font-size: .92rem; }

/* ---------- On-demand session replay gallery ---------- */
.rtx-vod {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
}
.rtx-vod__card {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  border-radius: 12px;
}
.rtx-vod__card:focus-visible { outline: 3px solid var(--c-bright); outline-offset: 4px; }
.rtx-vod__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 24px rgba(0,8,28,.35);
}
.rtx-vod__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* YT hqdefault is 4:3 — cover crops the letterbox bars */
  display: block;
  transition: transform .35s ease;
}
.rtx-vod__card:hover .rtx-vod__thumb img,
.rtx-vod__card:focus-visible .rtx-vod__thumb img { transform: scale(1.06); }
.rtx-vod__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 8, 28, .55);
  border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(4px);
  color: #fff;
  transition: background .25s ease, transform .25s ease;
}
.rtx-vod__play svg { width: 22px; height: 22px; display: block; margin-left: 3px; }
.rtx-vod__card:hover .rtx-vod__play,
.rtx-vod__card:focus-visible .rtx-vod__play { background: var(--c-bright); transform: translate(-50%, -50%) scale(1.08); }
.rtx-vod__title {
  display: block;
  margin-top: 12px;
  font-size: .92rem;
  line-height: 1.45;
  color: #cfe0f6;
}
.rtx-vod__card:hover .rtx-vod__title { color: #fff; }
@media (max-width: 900px) {
  .rtx-vod { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rtx-vod { grid-template-columns: 1fr; gap: 22px; }
}
.rtx-live__video {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lift); background: #000;
}
.rtx-live__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =====================================================================
   VIDEO MODAL
   ===================================================================== */
.rtx-modal { position: fixed; inset: 0; z-index: 9999; display: none; place-items: center; padding: 24px; background: rgba(0,8,28,.85); backdrop-filter: blur(6px); }
.rtx-modal.is-open { display: grid; animation: rtx-fade .3s ease; }
.rtx-modal__frame { width: min(960px, 100%); aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); background:#000; }
.rtx-modal__frame iframe { width: 100%; height: 100%; border: 0; }
.rtx-modal__close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color:#fff; font-size: 1.4rem; cursor: pointer; }
.rtx-modal__close:hover { background: rgba(255,255,255,.18); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.rtx-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.rtx-reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   KEYFRAMES
   ===================================================================== */
@keyframes rtx-float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(3%, 5%) scale(1.08); } }
@keyframes rtx-pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(18,221,182,.25); } 50% { box-shadow: 0 0 0 8px rgba(18,221,182,0); } }
@keyframes rtx-cue { 0%,100% { transform: scaleY(.4); opacity:.4; } 50% { transform: scaleY(1); opacity:1; } }
@keyframes rtx-fade { from { opacity: 0; } to { opacity: 1; } }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .rtx-spk-grid { grid-template-columns: repeat(3, 1fr); }
  .rtx-partners { grid-template-columns: repeat(2, 1fr); }
  .rtx-logos { grid-template-columns: repeat(4, 1fr); }
  .rtx-about__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .rtx-subnav__links { display: none; }
  .rtx-subnav__links.is-open { display: flex; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: rgba(0,26,85,.97); padding: 12px; gap: 4px; }
  .rtx-subnav__toggle { display: inline-grid; place-items:center; width:42px; height:42px; border-radius:10px; border:1px solid rgba(255,255,255,.2); background:transparent; color:#fff; cursor:pointer; }
  .rtx-spk-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .rtx-logos { grid-template-columns: repeat(3, 1fr); }
  .rtx-timeline::before { left: 8px; }
  .rtx-ses { grid-template-columns: 1fr; gap: 6px; }
  .rtx-ses__time { text-align: left; padding: 0 0 0 30px; }
  .rtx-ses__dot { left: 2px; right: auto; top: 6px; }
  .rtx-ses__time time { font-size: 1rem; }
}
@media (max-width: 480px) {
  .rtx-spk-grid { grid-template-columns: 1fr 1fr; }
  .rtx-partners { grid-template-columns: 1fr 1fr; }
  .rtx-count { min-width: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  .rtx *, .rtx *::before, .rtx *::after { animation: none !important; transition: none !important; }
  .rtx-reveal { opacity: 1; transform: none; }
}
