:root {
  --hxl-ink: #160d1d;
  --hxl-ink-soft: #21122b;
  --hxl-panel: #2b1737;
  --hxl-panel-soft: #382047;
  --hxl-paper: #fffaf6;
  --hxl-paper-soft: #f7eee9;
  --hxl-text: #25152d;
  --hxl-text-soft: #6f6075;
  --hxl-white: #fffafc;
  --hxl-white-soft: rgba(255, 250, 252, 0.72);
  --hxl-coral: #ff6f61;
  --hxl-coral-bright: #ff8a72;
  --hxl-pink: #ff5aa7;
  --hxl-violet: #8d62ff;
  --hxl-yellow: #ffc857;
  --hxl-line: rgba(37, 21, 45, 0.12);
  --hxl-line-dark: rgba(255, 250, 252, 0.13);
  --hxl-shadow: 0 30px 90px rgba(47, 23, 57, 0.14);
  --hxl-shadow-dark: 0 30px 100px rgba(8, 4, 12, 0.35);

  --hx-font-heading: "Sora", "DM Sans", system-ui, sans-serif;
  --hx-font-body: "DM Sans", system-ui, sans-serif;
  --hx-color-bg: var(--hxl-paper);
  --hx-color-surface: #ffffff;
  --hx-color-surface-soft: var(--hxl-paper-soft);
  --hx-color-text: var(--hxl-text);
  --hx-color-text-soft: var(--hxl-text-soft);
  --hx-color-primary: var(--hxl-coral);
  --hx-color-primary-strong: #e95349;
  --hx-color-secondary: var(--hxl-violet);
  --hx-color-border: var(--hxl-line);
  --hx-color-focus: var(--hxl-pink);
  --hx-container: 1180px;
  --hx-container-wide: 1420px;
  --hx-header-height: 78px;
  --hx-section-space: clamp(5rem, 9vw, 9rem);
}

html {
  scroll-padding-top: calc(var(--hx-header-height) + 48px);
}

body.hxl-site {
  background: var(--hxl-paper);
  color: var(--hxl-text);
}

body.hxl-site::selection,
body.hxl-site *::selection {
  background: var(--hxl-pink);
  color: #fff;
}

.hxl-site h1,
.hxl-site h2,
.hxl-site h3,
.hxl-site h4,
.hxl-site h5,
.hxl-site h6 {
  color: var(--hxl-text);
}

.hxl-site h1 {
  font-size: clamp(3rem, 7vw, 6.65rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hxl-site h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hxl-site h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.hxl-main {
  overflow: hidden;
}

.hxl-section {
  padding-block: var(--hx-section-space);
}

.hxl-kicker,
.hxl-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hxl-kicker {
  margin-bottom: 1.15rem;
  color: var(--hxl-coral);
}

.hxl-overline {
  color: var(--hxl-white-soft);
}

.hxl-live-dot {
  position: relative;
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--hxl-coral);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 111, 97, 0.6);
  animation: hxl-pulse 2s ease-out infinite;
}

@keyframes hxl-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 111, 97, 0.55); }
  65%, 100% { box-shadow: 0 0 0 10px rgba(255, 111, 97, 0); }
}

.hxl-section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 8rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.hxl-section-heading > div {
  max-width: 840px;
}

.hxl-section-heading h2 {
  margin-bottom: 1.25rem;
}

.hxl-section-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--hxl-text-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hxl-section-heading--compact {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

/* Broadcast bar */
.hxl-broadcast-bar {
  position: sticky;
  top: 0;
  z-index: 1002;
  min-height: 38px;
  background: var(--hxl-coral);
  color: #2c1010;
}

.hxl-broadcast-bar__inner {
  min-height: 38px;
}

.hxl-broadcast-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 38px;
  font-size: 0.78rem;
}

.hxl-broadcast-bar a:hover {
  color: #2c1010;
}

.hxl-broadcast-bar .hxl-live-dot {
  width: 0.42rem;
  height: 0.42rem;
  background: #2c1010;
  animation: none;
}

.hxl-broadcast-bar strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hxl-broadcast-bar .hx-icon {
  width: 0.9rem;
}

/* Header */
.hxl-header {
  top: 38px;
  background: color-mix(in srgb, var(--hxl-ink) 88%, transparent);
  border-bottom-color: var(--hxl-line-dark);
}

.admin-bar .hxl-broadcast-bar {
  top: 32px;
}

.admin-bar .hxl-header {
  top: 70px;
}

.hxl-header.is-scrolled {
  background: rgba(22, 13, 29, 0.94);
  border-color: rgba(255, 250, 252, 0.12);
  box-shadow: 0 18px 50px rgba(8, 4, 12, 0.22);
}

.hxl-header__inner {
  min-height: 78px;
}

.hxl-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--hxl-white);
}

.hxl-brand__logo {
  display: inline-flex;
  align-items: center;
}

.hxl-brand__logo .custom-logo {
  max-width: 180px;
  max-height: 44px;
}

.hxl-brand__signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 30px;
  height: 30px;
  background: linear-gradient(145deg, var(--hxl-coral), var(--hxl-pink));
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 90, 167, 0.32);
}

.hxl-brand__signal span {
  width: 2px;
  background: #fff;
  border-radius: 999px;
}

.hxl-brand__signal span:nth-child(1) { height: 8px; }
.hxl-brand__signal span:nth-child(2) { height: 15px; }
.hxl-brand__signal span:nth-child(3) { height: 6px; }

.hxl-brand__name {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hxl-brand__edition {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.22rem 0.58rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--hxl-coral-bright);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hxl-header .hx-nav__link {
  color: rgba(255, 250, 252, 0.68);
  font-size: 0.88rem;
}

.hxl-header .hx-nav__link:hover,
.hxl-header .current-menu-item > .hx-nav__link,
.hxl-header .current-menu-ancestor > .hx-nav__link {
  color: var(--hxl-white);
}

.hxl-header .hx-nav .sub-menu {
  background: var(--hxl-panel);
  border-color: var(--hxl-line-dark);
}

.hxl-header .hx-nav .sub-menu a {
  color: rgba(255, 250, 252, 0.72);
}

.hxl-header .hx-nav .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.hxl-header__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hxl-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255, 250, 252, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hxl-icon-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.hxl-header__cta {
  min-height: 42px;
  margin-left: 0.2rem;
  padding: 0.65rem 1rem;
  background: var(--hxl-white);
  color: var(--hxl-ink);
  border-radius: 999px;
  font-size: 0.82rem;
  box-shadow: none;
}

.hxl-header__cta:hover {
  background: var(--hxl-coral);
  color: var(--hxl-ink);
}

.hxl-header__cta-dot {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--hxl-coral);
  border-radius: 50%;
}

.hxl-nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

/* Buttons */
.hxl-button {
  min-height: 54px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: none;
}

.hxl-button--primary {
  background: linear-gradient(135deg, var(--hxl-coral), var(--hxl-pink));
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 90, 167, 0.22);
}

.hxl-button--primary:hover {
  background: linear-gradient(135deg, var(--hxl-coral-bright), #ff71b8);
  color: #fff;
  box-shadow: 0 22px 44px rgba(255, 90, 167, 0.32);
}

.hxl-button--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--hxl-white);
  border-color: rgba(255, 255, 255, 0.15);
}

.hxl-button--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hxl-button--light {
  background: var(--hxl-white);
  color: var(--hxl-ink);
}

.hxl-button--light:hover {
  background: var(--hxl-yellow);
  color: var(--hxl-ink);
}

.hxl-button--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hxl-button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hxl-button__play {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

/* Hero */
.hxl-hero {
  position: relative;
  min-height: calc(100svh - 38px);
  padding: clamp(5rem, 9vw, 8rem) 0 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(141, 98, 255, 0.16), transparent 36%),
    linear-gradient(180deg, var(--hxl-ink) 0%, #1d1026 100%);
  color: var(--hxl-white);
}

.hxl-hero__ambient,
.hxl-hero__light,
.hxl-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hxl-hero__light {
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.18;
}

.hxl-hero__light--coral {
  top: 28%;
  left: -20rem;
  background: var(--hxl-coral);
}

.hxl-hero__light--violet {
  top: 8%;
  right: -15rem;
  left: auto;
  background: var(--hxl-violet);
}

.hxl-hero__grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 82%);
}

.hxl-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.hxl-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hxl-hero h1 {
  max-width: 850px;
  margin: 1.5rem 0 1.5rem;
  color: var(--hxl-white);
}

.hxl-hero__lead {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 250, 252, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.75;
}

.hxl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hxl-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  margin-top: 2.2rem;
  color: rgba(255, 250, 252, 0.55);
  font-size: 0.78rem;
}

.hxl-hero__notes span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hxl-hero__notes i {
  width: 4px;
  height: 4px;
  background: var(--hxl-coral);
  border-radius: 50%;
}

/* Hero stage */
.hxl-stage-wrap {
  --hxl-stage-x: 0deg;
  --hxl-stage-y: 0deg;
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}

.hxl-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 650px);
  padding: 0.85rem;
  overflow: hidden;
  background: rgba(35, 18, 45, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  box-shadow: var(--hxl-shadow-dark);
  transform: translate(-50%, -50%) rotateX(var(--hxl-stage-x)) rotateY(var(--hxl-stage-y));
  transform-style: preserve-3d;
  transition: transform 120ms ease-out;
}

.hxl-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 38%);
  pointer-events: none;
}

.hxl-stage__header,
.hxl-stage__controls {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hxl-stage__header {
  justify-content: space-between;
  min-height: 46px;
  padding-inline: 0.6rem;
}

.hxl-stage__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 250, 252, 0.76);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hxl-stage__label {
  color: rgba(255, 250, 252, 0.42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.hxl-stage__screen {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 410px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 90, 167, 0.26), transparent 18%),
    radial-gradient(circle at 50% 48%, rgba(141, 98, 255, 0.22), transparent 42%),
    linear-gradient(145deg, #2b1737, #160d1d 75%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.35rem;
}

.hxl-stage__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hxl-stage__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hxl-stage__rings span {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hxl-stage__rings span:nth-child(2) {
  width: 350px;
  height: 350px;
  border-color: rgba(255, 90, 167, 0.12);
}

.hxl-stage__rings span:nth-child(3) {
  width: 470px;
  height: 470px;
  border-color: rgba(141, 98, 255, 0.1);
}

.hxl-stage.is-previewing .hxl-stage__rings span:nth-child(1) {
  animation: hxl-ring 2.4s ease-out infinite;
}

.hxl-stage.is-previewing .hxl-stage__rings span:nth-child(2) {
  animation: hxl-ring 2.4s 0.4s ease-out infinite;
}

.hxl-stage.is-previewing .hxl-stage__rings span:nth-child(3) {
  animation: hxl-ring 2.4s 0.8s ease-out infinite;
}

@keyframes hxl-ring {
  0% { transform: scale(0.72); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: scale(1.1); opacity: 0; }
}

.hxl-stage__play {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  padding: 0;
  background: rgba(255, 250, 252, 0.94);
  color: var(--hxl-ink);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 60px rgba(255, 90, 167, 0.28);
}

.hxl-stage__play:hover {
  background: var(--hxl-coral);
  color: var(--hxl-ink);
  transform: scale(1.04);
}

.hxl-stage__play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.hxl-stage.is-previewing .hxl-stage__play span {
  width: 14px;
  height: 18px;
  margin-left: 0;
  border: 0;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
}

.hxl-stage__caption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.hxl-stage__caption span {
  color: var(--hxl-coral-bright);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hxl-stage__caption strong {
  max-width: 360px;
  color: var(--hxl-white);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: right;
}

.hxl-stage__controls {
  gap: 0.75rem;
  min-height: 54px;
  padding-inline: 0.65rem;
}

.hxl-stage__control-play {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgba(255, 255, 255, 0.72);
}

.hxl-stage__progress {
  position: relative;
  flex: 1 1 auto;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.hxl-stage__progress i {
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, var(--hxl-coral), var(--hxl-pink));
}

.hxl-stage__levels {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 68px;
  height: 22px;
}

.hxl-stage__levels i {
  flex: 1;
  height: 25%;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.hxl-stage__levels i:nth-child(2n) { height: 52%; }
.hxl-stage__levels i:nth-child(3n) { height: 88%; }
.hxl-stage__levels i:nth-child(5n) { height: 35%; }

.hxl-stage.is-previewing .hxl-stage__levels i {
  animation: hxl-levels 0.8s ease-in-out infinite alternate;
}

.hxl-stage.is-previewing .hxl-stage__levels i:nth-child(2n) { animation-delay: -0.2s; }
.hxl-stage.is-previewing .hxl-stage__levels i:nth-child(3n) { animation-delay: -0.45s; }

@keyframes hxl-levels {
  to { height: 100%; background: var(--hxl-coral); }
}

.hxl-stage__time {
  color: rgba(255, 250, 252, 0.42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
}

.hxl-stage-card {
  position: absolute;
  z-index: 5;
  padding: 1rem 1.15rem;
  background: rgba(255, 250, 252, 0.96);
  color: var(--hxl-ink);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(8, 4, 12, 0.24);
}

.hxl-stage-card--date {
  top: 5%;
  right: -1rem;
  width: 180px;
  transform: rotate(3deg);
}

.hxl-stage-card--date small,
.hxl-stage-card--date strong {
  display: block;
}

.hxl-stage-card--date small {
  margin-bottom: 0.35rem;
  color: var(--hxl-text-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hxl-stage-card--date strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.hxl-stage-card--people {
  bottom: 6%;
  left: -1rem;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  transform: rotate(-3deg);
}

.hxl-stage-card--people span,
.hxl-stage-card--people i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.hxl-stage-card--people span:first-child { margin-left: 0; background: var(--hxl-coral); }
.hxl-stage-card--people span:nth-child(2) { background: var(--hxl-violet); }
.hxl-stage-card--people span:nth-child(3) { background: var(--hxl-yellow); }
.hxl-stage-card--people i { background: var(--hxl-ink); color: #fff; font-style: normal; font-size: 0.75rem; }

.hxl-hero__ticker {
  position: relative;
  z-index: 2;
  margin-top: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hxl-hero__ticker > div {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  min-width: max-content;
  min-height: 56px;
  color: rgba(255, 250, 252, 0.44);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.hxl-hero__ticker i {
  width: 4px;
  height: 4px;
  background: var(--hxl-coral);
  border-radius: 50%;
}

/* Next event */
.hxl-next {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  background: var(--hxl-paper);
}

.hxl-next__card {
  overflow: hidden;
  background: linear-gradient(135deg, var(--hxl-coral) 0%, #f95f78 45%, var(--hxl-pink) 100%);
  color: #31121e;
  border-radius: 2.2rem;
  box-shadow: 0 30px 80px rgba(255, 90, 167, 0.22);
}

.hxl-next__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(49, 18, 30, 0.15);
}

.hxl-next__meta .hxl-overline {
  color: #35131f;
}

.hxl-next__meta .hxl-live-dot {
  background: #35131f;
  animation: none;
}

.hxl-next__date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hxl-next__body {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(2rem, 5vw, 4.5rem);
}

.hxl-next__copy .hxl-kicker {
  color: rgba(49, 18, 30, 0.62);
}

.hxl-next__copy h2 {
  max-width: 850px;
  margin-bottom: 1.25rem;
  color: #2e111d;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.hxl-next__copy p {
  max-width: 690px;
  margin-bottom: 1.5rem;
  color: rgba(49, 18, 30, 0.75);
  font-size: 1.05rem;
}

.hxl-next__timezone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(49, 18, 30, 0.7);
  font-size: 0.8rem;
}

.hxl-next__timezone span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding-inline: 0.55rem;
  background: rgba(49, 18, 30, 0.11);
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  font-weight: 600;
}

.hxl-next__action {
  display: grid;
  justify-items: end;
  gap: 1.25rem;
}

.hxl-countdown {
  width: min(100%, 390px);
}

.hxl-countdown__label {
  display: block;
  margin-bottom: 0.65rem;
  color: rgba(49, 18, 30, 0.6);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.hxl-countdown__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.hxl-countdown__values span {
  padding: 0.85rem 0.55rem;
  background: rgba(49, 18, 30, 0.1);
  border: 1px solid rgba(49, 18, 30, 0.12);
  border-radius: 1rem;
  text-align: center;
}

.hxl-countdown__values strong,
.hxl-countdown__values small {
  display: block;
}

.hxl-countdown__values strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.hxl-countdown__values small {
  margin-top: 0.4rem;
  color: rgba(49, 18, 30, 0.62);
  font-size: 0.62rem;
}

.hxl-next__placeholder-countdown {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(49, 18, 30, 0.34);
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 600;
}

.hxl-next__placeholder-countdown i {
  font-style: normal;
  font-weight: 400;
}

/* Presence */
.hxl-presence {
  background: var(--hxl-paper);
}

.hxl-presence__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hxl-line);
  border-bottom: 1px solid var(--hxl-line);
}

.hxl-presence-card {
  position: relative;
  min-height: 470px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--hxl-line);
}

.hxl-presence-card:last-child {
  border-right: 0;
}

.hxl-presence-card__number {
  color: rgba(37, 21, 45, 0.35);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.hxl-presence-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  margin-block: 2rem;
  overflow: hidden;
  background: var(--hxl-paper-soft);
  border-radius: 1.5rem;
}

.hxl-presence-card__visual--signal {
  gap: 6px;
}

.hxl-presence-card__visual--signal i {
  width: 8px;
  height: 20%;
  background: linear-gradient(180deg, var(--hxl-coral), var(--hxl-pink));
  border-radius: 999px;
}

.hxl-presence-card__visual--signal i:nth-child(2) { height: 42%; }
.hxl-presence-card__visual--signal i:nth-child(3) { height: 74%; }
.hxl-presence-card__visual--signal i:nth-child(4) { height: 48%; }
.hxl-presence-card__visual--signal i:nth-child(5) { height: 88%; }
.hxl-presence-card__visual--signal i:nth-child(6) { height: 32%; }

.hxl-presence-card__visual--people span {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 7px solid var(--hxl-paper-soft);
  border-radius: 50%;
}

.hxl-presence-card__visual--people span:nth-child(1) { transform: translate(-54px, -6px); background: var(--hxl-coral); }
.hxl-presence-card__visual--people span:nth-child(2) { z-index: 2; transform: translate(0, -25px); background: var(--hxl-violet); }
.hxl-presence-card__visual--people span:nth-child(3) { transform: translate(54px, -6px); background: var(--hxl-yellow); }

.hxl-presence-card__visual--people i {
  position: absolute;
  bottom: 48px;
  width: 180px;
  height: 62px;
  border: 2px solid rgba(37, 21, 45, 0.13);
  border-radius: 50% 50% 20px 20px;
}

.hxl-presence-card__visual--path {
  gap: 0;
}

.hxl-presence-card__visual--path span {
  z-index: 2;
  width: 24px;
  height: 24px;
  background: var(--hxl-paper);
  border: 6px solid var(--hxl-violet);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(141, 98, 255, 0.08);
}

.hxl-presence-card__visual--path span:first-child { border-color: var(--hxl-coral); box-shadow: 0 0 0 10px rgba(255, 111, 97, 0.08); }
.hxl-presence-card__visual--path span:last-child { border-color: var(--hxl-pink); box-shadow: 0 0 0 10px rgba(255, 90, 167, 0.08); }

.hxl-presence-card__visual--path i {
  width: 54px;
  height: 2px;
  background: rgba(37, 21, 45, 0.18);
}

.hxl-presence-card h3 {
  margin-bottom: 0.75rem;
}

.hxl-presence-card p {
  margin: 0;
  color: var(--hxl-text-soft);
}

/* Formats */
.hxl-formats {
  background: var(--hxl-ink);
  color: var(--hxl-white);
}

.hxl-formats__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.hxl-formats__intro {
  position: sticky;
  top: calc(var(--hx-header-height) + 2rem);
  align-self: start;
}

.hxl-formats__intro h2 {
  margin-bottom: 1.2rem;
  color: var(--hxl-white);
}

.hxl-formats__intro > p {
  color: rgba(255, 250, 252, 0.62);
}

.hxl-format-tabs {
  display: grid;
  margin-top: 2.5rem;
  border-top: 1px solid var(--hxl-line-dark);
}

.hxl-format-tabs button {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 62px;
  padding: 0.75rem 0;
  background: transparent;
  color: rgba(255, 250, 252, 0.46);
  border: 0;
  border-bottom: 1px solid var(--hxl-line-dark);
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.hxl-format-tabs button:hover {
  transform: none;
  background: transparent;
  color: #fff;
}

.hxl-format-tabs button[aria-selected="true"] {
  color: var(--hxl-coral-bright);
}

.hxl-format-tabs button span {
  color: rgba(255, 250, 252, 0.25);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
}

.hxl-format-panels {
  min-width: 0;
}

.hxl-format-panel {
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--hxl-line-dark);
  border-radius: 2rem;
}

.hxl-format-panel[hidden] {
  display: none;
}

.hxl-format-panel.is-active {
  animation: hxl-panel-in 420ms ease both;
}

@keyframes hxl-panel-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hxl-format-panel__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 370px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 90, 167, 0.28), transparent 28%),
    linear-gradient(145deg, #3b1f49, #24132f);
  border-bottom: 1px solid var(--hxl-line-dark);
}

.hxl-format-panel__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hxl-format-panel__halo {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 90, 167, 0.05), 0 0 0 110px rgba(141, 98, 255, 0.04);
}

.hxl-format-panel__figure {
  position: relative;
  z-index: 2;
  width: 98px;
  height: 150px;
  background: linear-gradient(180deg, var(--hxl-coral), var(--hxl-pink));
  border-radius: 55px 55px 26px 26px;
  box-shadow: 0 20px 55px rgba(255, 90, 167, 0.28);
}

.hxl-format-panel__figure::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 50%;
  width: 74px;
  height: 74px;
  background: var(--hxl-yellow);
  border: 8px solid #3b1f49;
  border-radius: 50%;
  transform: translateX(-50%);
}

.hxl-format-panel__waves {
  position: absolute;
  right: 12%;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 130px;
}

.hxl-format-panel__waves i {
  width: 4px;
  height: 20%;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 999px;
}

.hxl-format-panel__waves i:nth-child(2) { height: 55%; }
.hxl-format-panel__waves i:nth-child(3) { height: 92%; background: var(--hxl-coral); }
.hxl-format-panel__waves i:nth-child(4) { height: 65%; }
.hxl-format-panel__waves i:nth-child(5) { height: 34%; }

.hxl-format-panel__copy {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.hxl-format-panel__copy > span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--hxl-coral-bright);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hxl-format-panel__copy h3 {
  margin-bottom: 0.8rem;
  color: #fff;
}

.hxl-format-panel__copy p {
  max-width: 650px;
  color: rgba(255, 250, 252, 0.6);
}

.hxl-format-panel__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hxl-format-panel__copy li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 250, 252, 0.72);
  font-size: 0.78rem;
}

.hxl-format-panel__copy li .hx-icon {
  color: var(--hxl-coral);
}

.hxl-format-panel__visual--talks {
  background:
    radial-gradient(circle at 32% 50%, rgba(255, 111, 97, 0.24), transparent 22%),
    radial-gradient(circle at 68% 50%, rgba(141, 98, 255, 0.26), transparent 22%),
    linear-gradient(145deg, #301a3c, #1d1026);
}

.hxl-format-panel__bubble {
  position: absolute;
  width: 170px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.hxl-format-panel__bubble::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 44px;
  height: 44px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.hxl-format-panel__bubble--one {
  left: 24%;
  background: linear-gradient(135deg, var(--hxl-coral), var(--hxl-pink));
  transform: translateY(-25px);
}

.hxl-format-panel__bubble--two {
  right: 24%;
  background: linear-gradient(135deg, var(--hxl-violet), #6f51d4);
  transform: translateY(38px) scale(0.84);
}

.hxl-format-panel__line {
  position: absolute;
  width: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(-12deg);
}

.hxl-format-panel__visual--demo {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 200, 87, 0.18), transparent 25%),
    linear-gradient(145deg, #24132f, #341d40);
}

.hxl-format-panel__device {
  position: absolute;
  width: 190px;
  height: 240px;
  background: #fff8f3;
  border: 12px solid #4d2a5b;
  border-radius: 2rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.hxl-format-panel__device::before {
  content: "";
  position: absolute;
  inset: 28px 22px;
  background:
    radial-gradient(circle at 50% 55%, var(--hxl-coral) 0 12px, transparent 13px),
    radial-gradient(circle at 50% 55%, rgba(255, 90, 167, 0.25) 0 42px, transparent 43px),
    var(--hxl-paper-soft);
  border-radius: 1rem;
}

.hxl-format-panel__scan {
  position: absolute;
  z-index: 2;
  width: 160px;
  height: 2px;
  background: var(--hxl-coral);
  box-shadow: 0 0 18px var(--hxl-coral);
  animation: hxl-scan 2.8s ease-in-out infinite alternate;
}

@keyframes hxl-scan {
  from { transform: translateY(-75px); }
  to { transform: translateY(75px); }
}

.hxl-format-panel__visual--demo > i {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.hxl-format-panel__visual--demo > i:nth-of-type(1) { left: 18%; top: 28%; }
.hxl-format-panel__visual--demo > i:nth-of-type(2) { right: 18%; top: 42%; width: 70px; height: 70px; }
.hxl-format-panel__visual--demo > i:nth-of-type(3) { left: 24%; bottom: 18%; width: 32px; height: 32px; }

.hxl-format-panel__visual--training {
  background:
    radial-gradient(circle at 54% 48%, rgba(141, 98, 255, 0.2), transparent 28%),
    linear-gradient(145deg, #331c40, #1f1129);
}

.hxl-format-panel__board {
  position: absolute;
  width: min(68%, 430px);
  height: 230px;
  background: rgba(255, 250, 252, 0.92);
  border: 10px solid #4b295a;
  border-radius: 1.5rem;
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.3);
}

.hxl-format-panel__board::before,
.hxl-format-panel__board::after {
  content: "";
  position: absolute;
  left: 32px;
  height: 12px;
  background: var(--hxl-paper-soft);
  border-radius: 999px;
}

.hxl-format-panel__board::before {
  top: 38px;
  width: 48%;
  box-shadow: 0 34px 0 var(--hxl-paper-soft), 0 68px 0 var(--hxl-paper-soft), 0 102px 0 var(--hxl-paper-soft);
}

.hxl-format-panel__board::after {
  right: 32px;
  bottom: 22px;
  left: auto;
  width: 26%;
  background: linear-gradient(90deg, var(--hxl-violet), var(--hxl-pink));
}

.hxl-format-panel__cursor {
  position: absolute;
  z-index: 2;
  width: 36px;
  height: 48px;
  background: var(--hxl-coral);
  clip-path: polygon(0 0, 100% 70%, 60% 76%, 78% 100%, 62% 100%, 45% 78%, 0 100%);
  transform: translate(110px, 45px) rotate(-8deg);
}

.hxl-format-panel__visual--training > i {
  position: absolute;
  bottom: 24px;
  width: 12px;
  height: 12px;
  background: var(--hxl-coral);
  border-radius: 50%;
}

.hxl-format-panel__visual--training > i:nth-of-type(1) { left: 42%; }
.hxl-format-panel__visual--training > i:nth-of-type(2) { left: 50%; background: var(--hxl-violet); }
.hxl-format-panel__visual--training > i:nth-of-type(3) { left: 58%; background: var(--hxl-yellow); }

/* Journey */
.hxl-journey {
  background: var(--hxl-paper-soft);
}

.hxl-journey__track {
  display: grid;
  grid-template-columns: 1fr minmax(40px, 0.25fr) 1fr minmax(40px, 0.25fr) 1fr;
  align-items: center;
}

.hxl-journey__track article {
  min-height: 330px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--hxl-line);
  border-radius: 1.6rem;
}

.hxl-journey__step {
  color: rgba(37, 21, 45, 0.42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.hxl-journey__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-block: 2rem;
  background: var(--hxl-paper-soft);
  border-radius: 50%;
}

.hxl-journey__icon > i {
  position: absolute;
  width: 7px;
  background: var(--hxl-coral);
  border-radius: 999px;
}

.hxl-journey__icon > i:nth-child(1) { height: 24px; transform: translateX(-14px); }
.hxl-journey__icon > i:nth-child(2) { height: 48px; }
.hxl-journey__icon > i:nth-child(3) { height: 34px; transform: translateX(14px); }

.hxl-journey__icon--live span {
  width: 28px;
  height: 28px;
  background: var(--hxl-coral);
  border-radius: 50%;
  box-shadow: 0 0 0 15px rgba(255, 111, 97, 0.13), 0 0 0 30px rgba(255, 111, 97, 0.06);
}

.hxl-journey__icon--after i {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 3px solid var(--hxl-violet);
  border-radius: 50%;
}

.hxl-journey__icon--after i:nth-child(1) { transform: translate(-10px, -8px); }
.hxl-journey__icon--after i:nth-child(2) { transform: translate(10px, 8px); border-color: var(--hxl-pink); }

.hxl-journey__track h3 {
  margin-bottom: 0.7rem;
}

.hxl-journey__track p {
  margin: 0;
  color: var(--hxl-text-soft);
}

.hxl-journey__connector {
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(37, 21, 45, 0.24) 0 8px, transparent 8px 15px);
}

/* Editor */
.hxl-editor-content {
  background: #fff;
}

.hxl-editor-content .hx-entry-content > * {
  max-width: 820px;
}

/* Agenda */
.hxl-agenda {
  background: var(--hxl-paper);
}

.hxl-agenda__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.hxl-agenda-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hxl-line);
  border-radius: 1.5rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hxl-agenda-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 111, 97, 0.3);
  box-shadow: var(--hxl-shadow);
}

.hxl-agenda-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--hxl-ink);
}

.hxl-agenda-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.hxl-agenda-card:hover .hxl-agenda-card__media img {
  transform: scale(1.04);
}

.hxl-agenda-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 90, 167, 0.3), transparent 26%),
    linear-gradient(145deg, #2c1837, #160d1d);
}

.hxl-agenda-card__placeholder i {
  width: 6px;
  height: 24%;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.hxl-agenda-card__placeholder i:nth-child(2) { height: 48%; }
.hxl-agenda-card__placeholder i:nth-child(3) { height: 78%; background: var(--hxl-coral); }
.hxl-agenda-card__placeholder i:nth-child(4) { height: 56%; }
.hxl-agenda-card__placeholder i:nth-child(5) { height: 31%; }

.hxl-agenda-card__index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 250, 252, 0.92);
  color: var(--hxl-ink);
  border-radius: 50%;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
}

.hxl-agenda-card__body {
  padding: 1.4rem;
}

.hxl-agenda-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: rgba(37, 21, 45, 0.48);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.57rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hxl-agenda-card__meta span {
  color: var(--hxl-coral);
}

.hxl-agenda-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

.hxl-agenda-card h3 a:hover {
  color: var(--hxl-coral);
}

.hxl-agenda-card p {
  color: var(--hxl-text-soft);
  font-size: 0.92rem;
}

.hxl-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--hxl-coral);
  font-size: 0.82rem;
  font-weight: 700;
}

.hxl-text-link:hover {
  color: var(--hxl-pink);
}

.hxl-agenda__empty {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--hxl-paper-soft);
  border: 1px dashed rgba(37, 21, 45, 0.18);
  border-radius: 1.5rem;
}

.hxl-agenda__empty-signal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;
  width: 94px;
  height: 94px;
  background: #fff;
  border-radius: 50%;
}

.hxl-agenda__empty-signal i {
  width: 4px;
  height: 18%;
  background: var(--hxl-coral);
  border-radius: 999px;
}

.hxl-agenda__empty-signal i:nth-child(2) { height: 38%; }
.hxl-agenda__empty-signal i:nth-child(3) { height: 65%; }
.hxl-agenda__empty-signal i:nth-child(4) { height: 42%; }
.hxl-agenda__empty-signal i:nth-child(5) { height: 24%; }

.hxl-agenda__empty h3 {
  margin-bottom: 0.5rem;
}

.hxl-agenda__empty p {
  max-width: 690px;
  margin: 0;
  color: var(--hxl-text-soft);
}

/* Pro */
.hxl-pro {
  position: relative;
  padding-block: var(--hx-section-space);
  overflow: hidden;
  background: linear-gradient(145deg, #6b46d9, var(--hxl-violet) 55%, #a87dff);
  color: #fff;
}

.hxl-pro__ambient {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hxl-pro__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.hxl-pro__visual {
  position: relative;
  min-height: 500px;
}

.hxl-pro__console {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 580px);
  overflow: hidden;
  background: rgba(25, 13, 34, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  box-shadow: 0 30px 100px rgba(35, 16, 80, 0.35);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.hxl-pro__console-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding-inline: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hxl-pro__console-top span {
  width: 8px;
  height: 8px;
  background: var(--hxl-coral);
  border-radius: 50%;
}

.hxl-pro__console-top span:nth-child(2) { background: var(--hxl-yellow); }
.hxl-pro__console-top span:nth-child(3) { background: #68d391; }

.hxl-pro__console-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 350px;
}

.hxl-pro__console-side {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.hxl-pro__console-side i {
  height: 9px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
}

.hxl-pro__console-side i:first-child { background: var(--hxl-coral); }

.hxl-pro__console-main {
  padding: 2rem;
}

.hxl-pro__console-title {
  display: block;
  width: 46%;
  height: 13px;
  margin-bottom: 2.2rem;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
}

.hxl-pro__console-chart {
  display: flex;
  align-items: end;
  gap: 0.6rem;
  height: 155px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.hxl-pro__console-chart i {
  flex: 1;
  height: 28%;
  background: linear-gradient(180deg, var(--hxl-coral), var(--hxl-pink));
  border-radius: 0.4rem 0.4rem 0 0;
}

.hxl-pro__console-chart i:nth-child(2) { height: 48%; }
.hxl-pro__console-chart i:nth-child(3) { height: 38%; }
.hxl-pro__console-chart i:nth-child(4) { height: 72%; }
.hxl-pro__console-chart i:nth-child(5) { height: 58%; }
.hxl-pro__console-chart i:nth-child(6) { height: 90%; }
.hxl-pro__console-chart i:nth-child(7) { height: 68%; }

.hxl-pro__console-line {
  display: block;
  width: 80%;
  height: 9px;
  margin-top: 1.4rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.hxl-pro__console-line--short {
  width: 52%;
  margin-top: 0.75rem;
}

.hxl-pro__badge {
  position: absolute;
  right: 4%;
  bottom: 8%;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  background: var(--hxl-yellow);
  color: var(--hxl-ink);
  border: 10px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(40, 18, 90, 0.3);
  transform: rotate(8deg);
}

.hxl-pro__content .hxl-kicker {
  color: var(--hxl-yellow);
}

.hxl-pro__content h2 {
  margin-bottom: 1.2rem;
  color: #fff;
}

.hxl-pro__content > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.hxl-pro__content ul {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 2.2rem;
  padding: 0;
  list-style: none;
}

.hxl-pro__content li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
}

.hxl-pro__content li .hx-icon {
  flex: 0 0 auto;
  margin-top: 0.2rem;
  color: var(--hxl-yellow);
}

.hxl-pro__content li span,
.hxl-pro__content li strong {
  display: block;
}

.hxl-pro__content li strong {
  margin-bottom: 0.15rem;
  color: #fff;
}

/* FAQ */
.hxl-faq {
  background: var(--hxl-paper-soft);
}

.hxl-faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.hxl-faq__intro {
  max-width: 470px;
}

.hxl-faq__intro h2 {
  margin-bottom: 1rem;
}

.hxl-faq__intro p {
  color: var(--hxl-text-soft);
}

.hxl-faq__list {
  border-top: 1px solid var(--hxl-line);
}

.hxl-faq details {
  border-bottom: 1px solid var(--hxl-line);
}

.hxl-faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
  padding: 1rem 3.4rem 1rem 0;
  cursor: pointer;
  list-style: none;
  color: var(--hxl-text);
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 600;
}

.hxl-faq summary::-webkit-details-marker {
  display: none;
}

.hxl-faq summary span,
.hxl-faq summary span::before {
  position: absolute;
  right: 0;
  width: 18px;
  height: 2px;
  background: var(--hxl-coral);
  border-radius: 999px;
  content: "";
  transition: transform 180ms ease;
}

.hxl-faq summary span::before {
  inset: 0;
  transform: rotate(90deg);
}

.hxl-faq details[open] summary span::before {
  transform: rotate(0);
}

.hxl-faq details p {
  max-width: 760px;
  margin: -0.35rem 3.5rem 1.6rem 0;
  color: var(--hxl-text-soft);
}

/* Final CTA */
.hxl-final-cta {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  overflow: hidden;
  background: var(--hxl-ink);
  color: #fff;
}

.hxl-final-cta::before {
  content: "";
  position: absolute;
  top: -20rem;
  left: 50%;
  width: 52rem;
  height: 52rem;
  background: radial-gradient(circle, rgba(255, 90, 167, 0.22), transparent 68%);
  transform: translateX(-50%);
}

.hxl-final-cta__signal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 22px);
  opacity: 0.11;
}

.hxl-final-cta__signal span {
  width: clamp(6px, 0.8vw, 12px);
  height: 18%;
  background: #fff;
  border-radius: 999px;
}

.hxl-final-cta__signal span:nth-child(2) { height: 32%; }
.hxl-final-cta__signal span:nth-child(3) { height: 48%; }
.hxl-final-cta__signal span:nth-child(4) { height: 72%; }
.hxl-final-cta__signal span:nth-child(5) { height: 92%; background: var(--hxl-coral); }
.hxl-final-cta__signal span:nth-child(6) { height: 66%; }
.hxl-final-cta__signal span:nth-child(7) { height: 44%; }
.hxl-final-cta__signal span:nth-child(8) { height: 29%; }
.hxl-final-cta__signal span:nth-child(9) { height: 16%; }

.hxl-final-cta__inner {
  position: relative;
  max-width: 930px;
  text-align: center;
}

.hxl-final-cta h2 {
  margin: 1.25rem auto;
  color: #fff;
}

.hxl-final-cta p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: rgba(255, 250, 252, 0.65);
  font-size: 1.05rem;
}

.hxl-final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Footer */
.hxl-footer {
  position: relative;
  overflow: hidden;
  background: #0d0711;
  color: rgba(255, 250, 252, 0.62);
}

.hxl-footer__wave {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: clamp(5px, 1.2vw, 16px);
  height: 82px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.32;
}

.hxl-footer__wave span {
  width: clamp(5px, 0.7vw, 9px);
  height: 18%;
  background: linear-gradient(180deg, var(--hxl-coral), var(--hxl-pink));
  border-radius: 999px 999px 0 0;
}

.hxl-footer__wave span:nth-child(2) { height: 42%; }
.hxl-footer__wave span:nth-child(3) { height: 74%; }
.hxl-footer__wave span:nth-child(4) { height: 55%; }
.hxl-footer__wave span:nth-child(5) { height: 88%; }
.hxl-footer__wave span:nth-child(6) { height: 48%; }
.hxl-footer__wave span:nth-child(7) { height: 66%; }
.hxl-footer__wave span:nth-child(8) { height: 30%; }

.hxl-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.hxl-footer__identity {
  max-width: 440px;
}

.hxl-footer__brand {
  margin-bottom: 1.2rem;
}

.hxl-footer__identity p {
  color: rgba(255, 250, 252, 0.5);
}

.hxl-footer__online {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--hxl-coral-bright);
  font-size: 0.82rem;
  font-weight: 700;
}

.hxl-footer__online:hover {
  color: #fff;
}

.hxl-footer__column h2 {
  margin-bottom: 1.2rem;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hxl-footer__column ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hxl-footer__column a {
  color: rgba(255, 250, 252, 0.56);
  font-size: 0.86rem;
}

.hxl-footer__column a:hover {
  color: var(--hxl-coral-bright);
}

.hxl-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hxl-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
}

.hxl-footer__bottom p {
  margin: 0;
}

.hxl-footer__legal {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hxl-footer__legal a {
  color: rgba(255, 250, 252, 0.5);
}

/* Inner pages inherited from core */
.hxl-site:not(.hxl-front-page) .hx-main {
  background: var(--hxl-paper);
}

.hxl-site:not(.hxl-front-page) .hx-page__inner,
.hxl-site:not(.hxl-front-page) .hx-article,
.hxl-site:not(.hxl-front-page) .hx-content-grid,
.hxl-site:not(.hxl-front-page) .hx-empty-state,
.hxl-site:not(.hxl-front-page) .hx-error-page {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hxl-site .hx-post-card,
.hxl-site .hx-card {
  border-radius: 1.35rem;
  box-shadow: none;
}

.hxl-site .hx-post-card:hover,
.hxl-site .hx-card:hover {
  border-color: rgba(255, 111, 97, 0.32);
  box-shadow: var(--hxl-shadow);
}

/* Reveal */
[data-hx-reveal] {
  --hx-reveal-y: 26px;
}

/* Responsive */
@media (max-width: 1180px) {
  .hxl-hero__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 3rem;
  }

  .hxl-stage-wrap {
    min-height: 560px;
  }

  .hxl-stage__screen {
    min-height: 360px;
  }

  .hxl-stage-card--date { right: 0; }
  .hxl-stage-card--people { left: 0; }

  .hxl-footer__top {
    grid-template-columns: minmax(260px, 1.3fr) repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .hxl-header__cta {
    display: inline-flex;
  }

  .hxl-hero {
    padding-top: 6rem;
  }

  .hxl-hero__layout {
    grid-template-columns: 1fr;
  }

  .hxl-hero__content {
    max-width: 900px;
  }

  .hxl-stage-wrap {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .hxl-next__body,
  .hxl-formats__layout,
  .hxl-pro__layout,
  .hxl-faq__layout {
    grid-template-columns: 1fr;
  }

  .hxl-next__action {
    justify-items: start;
  }

  .hxl-countdown__label {
    text-align: left;
  }

  .hxl-presence-card {
    min-height: 440px;
  }

  .hxl-formats__intro {
    position: static;
  }

  .hxl-format-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--hxl-line-dark);
  }

  .hxl-format-tabs button {
    padding-inline: 1rem;
    border-right: 1px solid var(--hxl-line-dark);
  }

  .hxl-pro__visual {
    min-height: 460px;
  }

  .hxl-footer__top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .hxl-footer__contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 860px) {
  .hxl-header__navigation {
    top: calc(var(--hx-header-height) + 38px);
    background: var(--hxl-panel);
    border-left-color: var(--hxl-line-dark);
    box-shadow: -30px 0 70px rgba(8, 4, 12, 0.35);
  }

  .admin-bar .hxl-header__navigation {
    top: calc(var(--hx-header-height) + 70px);
  }

  .hxl-header .hx-nav__item {
    border-bottom-color: var(--hxl-line-dark);
  }

  .hxl-header .hx-nav__link {
    color: rgba(255, 250, 252, 0.75);
  }

  .hxl-header__actions {
    margin-top: 1.25rem;
  }

  .hxl-section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hxl-presence__grid {
    grid-template-columns: 1fr;
  }

  .hxl-presence-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    min-height: 0;
    gap: 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--hxl-line);
  }

  .hxl-presence-card:last-child {
    border-bottom: 0;
  }

  .hxl-presence-card__number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .hxl-presence-card__visual {
    grid-row: 1 / span 3;
    height: 230px;
    margin: 0;
  }

  .hxl-presence-card h3 {
    align-self: end;
  }

  .hxl-presence-card p {
    align-self: start;
  }

  .hxl-journey__track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hxl-journey__connector {
    width: 1px;
    height: 36px;
    margin-left: 50%;
    background: repeating-linear-gradient(180deg, rgba(37, 21, 45, 0.24) 0 8px, transparent 8px 15px);
  }

  .hxl-agenda__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hxl-footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .hxl-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hxl-broadcast-bar a span:not(.hxl-live-dot) {
    display: none;
  }

  .hxl-broadcast-bar a {
    justify-content: flex-start;
  }

  .hxl-header__inner {
    min-height: 68px;
  }

  .hxl-header__actions {
    flex-wrap: wrap;
  }

  .hxl-header__cta {
    width: 100%;
  }

  .hxl-brand__name {
    font-size: 1.05rem;
  }

  .hxl-brand__edition {
    font-size: 0.5rem;
  }

  .hxl-hero {
    min-height: 0;
    padding-top: 4.5rem;
  }

  .hxl-hero__actions,
  .hxl-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hxl-hero__actions .hxl-button,
  .hxl-final-cta__actions .hxl-button {
    width: 100%;
  }

  .hxl-hero__notes {
    display: grid;
    gap: 0.65rem;
  }

  .hxl-stage-wrap {
    min-height: 430px;
  }

  .hxl-stage {
    padding: 0.55rem;
    border-radius: 1.35rem;
  }

  .hxl-stage__screen {
    min-height: 280px;
    border-radius: 1rem;
  }

  .hxl-stage__play {
    width: 66px;
    height: 66px;
  }

  .hxl-stage__caption {
    display: block;
  }

  .hxl-stage__caption strong {
    display: block;
    margin-top: 0.35rem;
    text-align: left;
  }

  .hxl-stage__levels {
    display: none;
  }

  .hxl-stage-card--date {
    top: -0.75rem;
    right: 0;
    width: 150px;
  }

  .hxl-stage-card--people {
    bottom: -0.5rem;
    left: 0;
  }

  .hxl-hero__ticker {
    width: calc(100% - 1.25rem);
  }

  .hxl-hero__ticker > div {
    justify-content: flex-start;
    animation: hxl-ticker 18s linear infinite;
  }

  @keyframes hxl-ticker {
    to { transform: translateX(-55%); }
  }

  .hxl-next__card {
    border-radius: 1.5rem;
  }

  .hxl-next__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hxl-next__body {
    padding: 1.5rem;
  }

  .hxl-next__action,
  .hxl-next__action .hxl-button,
  .hxl-countdown {
    width: 100%;
  }

  .hxl-presence-card {
    display: block;
    padding: 1.25rem;
  }

  .hxl-presence-card__visual {
    height: 210px;
    margin-bottom: 1.5rem;
  }

  .hxl-format-tabs {
    grid-template-columns: 1fr;
  }

  .hxl-format-panel {
    min-height: 0;
    border-radius: 1.4rem;
  }

  .hxl-format-panel__visual {
    min-height: 300px;
  }

  .hxl-format-panel__copy ul {
    display: grid;
  }

  .hxl-format-panel__bubble {
    width: 130px;
    height: 90px;
  }

  .hxl-format-panel__bubble--one { left: 16%; }
  .hxl-format-panel__bubble--two { right: 16%; }

  .hxl-format-panel__device {
    transform: scale(0.82);
  }

  .hxl-format-panel__board {
    width: 82%;
    height: 190px;
  }

  .hxl-journey__track article {
    min-height: 300px;
  }

  .hxl-agenda__grid {
    grid-template-columns: 1fr;
  }

  .hxl-agenda__empty {
    align-items: flex-start;
    flex-direction: column;
  }

  .hxl-pro__visual {
    min-height: 350px;
  }

  .hxl-pro__console {
    width: 105%;
  }

  .hxl-pro__console-body {
    grid-template-columns: 66px 1fr;
    min-height: 260px;
  }

  .hxl-pro__console-main {
    padding: 1.25rem;
  }

  .hxl-pro__console-chart {
    height: 120px;
  }

  .hxl-pro__badge {
    right: -0.5rem;
    bottom: 0;
    width: 84px;
    height: 84px;
    border-width: 7px;
    font-size: 0.85rem;
  }

  .hxl-faq summary {
    min-height: 76px;
    padding-right: 2rem;
  }

  .hxl-faq details p {
    margin-right: 0;
  }

  .hxl-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .hxl-footer__identity,
  .hxl-footer__contact {
    grid-column: 1 / -1;
  }

  .hxl-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hxl-footer__top {
    grid-template-columns: 1fr;
  }

  .hxl-footer__identity,
  .hxl-footer__contact {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hxl-live-dot,
  .hxl-stage__rings span,
  .hxl-stage__levels i,
  .hxl-format-panel__scan,
  .hxl-hero__ticker > div {
    animation: none !important;
  }

  .hxl-stage {
    transform: translate(-50%, -50%) !important;
  }
}


@media screen and (max-width: 782px) {
  .admin-bar .hxl-broadcast-bar {
    top: 46px;
  }

  .admin-bar .hxl-header {
    top: 84px;
  }

  .admin-bar .hxl-header__navigation {
    top: calc(var(--hx-header-height) + 84px);
  }
}
