:root {
  --nx-ink: #15151d;
  --nx-plum: #293c9b;
  --nx-plum-dark: #10162f;
  --nx-orchid: #e42b45;
  --nx-coral: #f47b2d;
  --nx-blue: #4055c5;
  --nx-green: #20a447;
  --nx-green-dark: #168438;
  --nx-cream: #fbf8f5;
  --nx-soft: #f1f3fc;
  --nx-white: #fff;
  --nx-muted: #626475;
  --nx-line: #dfe2ef;
  --nx-shadow: 0 24px 70px rgba(26, 39, 111, .14);
}

html {
  scroll-behavior: smooth;
}

body.page-nexz {
  margin: 0;
  overflow-x: hidden;
  color: var(--nx-ink);
  background: var(--nx-white);
}

.page-nexz *,
.page-nexz *::before,
.page-nexz *::after {
  box-sizing: border-box;
}

.page-nexz img {
  max-width: 100%;
}

.page-nexz .nx-container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.nx-skip-link {
  position: fixed;
  z-index: 9999;
  top: -100px;
  left: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: #062b45;
  font-weight: 800;
  text-decoration: none;
  transition: top .18s ease;
}

.nx-skip-link:focus {
  top: 12px;
}

.nx-guide {
  overflow: clip;
}

.nx-breadcrumb {
  border-bottom: 1px solid var(--nx-line);
  background: #fff;
}

.nx-breadcrumb .nx-container {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: #746b73;
  font-size: .75rem;
  white-space: nowrap;
}

.nx-breadcrumb a {
  color: #5c515b;
  text-decoration: none;
}

.nx-breadcrumb a:hover {
  color: var(--nx-plum);
  text-decoration: underline;
}

.nx-breadcrumb strong {
  overflow: hidden;
  color: var(--nx-ink);
  text-overflow: ellipsis;
}

.nx-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(52, 75, 190, .42), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(228, 43, 69, .28), transparent 31%),
    linear-gradient(135deg, #0f142d 0%, #181b3c 56%, #2d1424 100%);
}

.nx-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, #000, transparent 76%);
}

.nx-hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr);
  align-items: center;
  gap: clamp(38px, 5vw, 72px);
  padding-block: 60px 66px;
}

.nx-hero-copy {
  min-width: 0;
}

.nx-kicker,
.nx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--nx-orchid);
  font-size: .75rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nx-kicker {
  margin-bottom: 19px;
  color: #ffb6c2;
}

.nx-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--nx-orchid), var(--nx-coral));
}

.nx-hero h1 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 4vw, 4.25rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.nx-lead {
  max-width: 680px;
  margin: 23px 0 0;
  color: #eceef8;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.58;
}

.nx-lead strong {
  color: #fff;
}

.nx-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.nx-hero-facts span {
  min-width: 104px;
  display: grid;
  gap: 3px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
}

.nx-hero-facts small {
  color: #c5c9df;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.nx-hero-facts strong {
  color: #fff;
  font-size: 1rem;
}

.nx-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
}

.page-nexz .nx-hero .button,
.page-nexz .nx-final-cta .button {
  min-height: 54px;
}

.nx-button-secondary,
.nx-whatsapp {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 10px;
  color: #fff;
  font-size: .875rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.nx-button-secondary:hover,
.nx-whatsapp:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.nx-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: 20px;
  color: #b9bdd2;
  font-size: .75rem;
}

.nx-meta strong {
  color: #f0f1f8;
}

.nx-hero-media {
  min-width: 0;
  margin: 0;
}

.nx-hero-media img {
  width: 100%;
  height: 390px;
  display: block;
  border: 9px solid rgba(255,255,255,.08);
  border-radius: 24px;
  object-fit: cover;
  object-position: center 36%;
  box-shadow: 0 34px 80px rgba(0,0,0,.32);
}

.nx-hero-media figcaption {
  margin-top: 10px;
  color: #aeb3ca;
  font-size: .7rem;
  line-height: 1.45;
  text-align: right;
}

.nx-hero-media figcaption a {
  color: #dce0f2;
}

.nx-fast-answer {
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.nx-fast-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  border: 1px solid var(--nx-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--nx-shadow);
}

.nx-fast-time {
  min-width: 104px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--nx-plum), #3e57c4);
}

.nx-fast-time small {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.nx-fast-time strong {
  font-size: 2rem;
  letter-spacing: -.04em;
}

.nx-fast-card h2 {
  margin: 5px 0 5px;
  color: var(--nx-ink);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.nx-fast-card p {
  margin: 0;
  color: var(--nx-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.nx-toc {
  position: sticky;
  z-index: 90;
  top: 82px;
  border-bottom: 1px solid var(--nx-line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}

.nx-toc .nx-container {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nx-toc strong {
  flex: none;
  color: var(--nx-plum);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nx-toc .nx-container > div {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nx-toc .nx-container > div::-webkit-scrollbar {
  display: none;
}

.nx-toc a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  color: #615761;
  font-size: .8rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.nx-toc a:hover {
  color: var(--nx-plum);
}

.nx-section {
  padding-block: clamp(66px, 8vw, 102px);
  scroll-margin-top: 150px;
}

.nx-section-heading h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--nx-ink);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.nx-section-heading p {
  max-width: 620px;
  margin: 15px 0 0;
  color: var(--nx-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.nx-heading-inline {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: end;
  gap: 44px;
}

.nx-heading-inline > p {
  margin: 0 0 4px;
}

.nx-heading-centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.nx-schedule {
  background: var(--nx-cream);
}

.nx-running-order {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.nx-running-order article {
  min-height: 144px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--nx-line);
  border-radius: 16px;
  background: #fff;
}

.nx-running-order article.is-nexz {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(145deg, var(--nx-plum), #4259c5);
  box-shadow: 0 18px 42px rgba(41, 60, 155, .24);
}

.nx-running-order time {
  color: var(--nx-plum);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.nx-running-order .is-nexz time {
  color: #fff;
}

.nx-running-order div {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding-left: 14px;
  border-left: 1px solid var(--nx-line);
}

.nx-running-order .is-nexz div {
  border-color: rgba(255,255,255,.25);
}

.nx-running-order span {
  color: #8a7f88;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.nx-running-order .is-nexz span {
  color: #d9def8;
}

.nx-running-order strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.25;
}

.nx-date-note {
  margin: 18px 0 0;
  padding: 15px 18px;
  border-left: 4px solid var(--nx-coral);
  color: #594f57;
  background: #fff;
  font-size: .88rem;
  line-height: 1.55;
}

.nx-setlist {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(228,43,69,.3), transparent 30%),
    linear-gradient(145deg, #0f142d, #182252 62%, #281424);
}

.nx-setlist::after {
  content: "NEXZ";
  position: absolute;
  right: -30px;
  bottom: -38px;
  color: rgba(255,255,255,.025);
  font-size: clamp(7rem, 17vw, 16rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}

.nx-setlist-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.nx-setlist h2 {
  margin: 10px 0 20px;
  color: #fff;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.nx-setlist-copy > p {
  color: #d9ddec;
  font-size: 1rem;
  line-height: 1.72;
}

.nx-setlist-copy > p strong {
  color: #fff;
}

.nx-confirmed {
  display: grid;
  gap: 7px;
  margin-top: 25px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}

.nx-confirmed span {
  color: #ff9eae;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.nx-confirmed strong {
  line-height: 1.5;
}

.nx-setlist-copy .nx-disclaimer {
  margin-top: 16px;
  color: #aeb4ca;
  font-size: .8rem;
}

.nx-tracklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow: hidden;
  list-style: none;
  background: rgba(255,255,255,.12);
}

.nx-tracklist li {
  min-height: 72px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  align-items: center;
  gap: 3px 13px;
  padding: 14px 17px;
  background: rgba(21, 12, 21, .82);
}

.nx-tracklist span {
  grid-row: 1 / 3;
  color: #f04a61;
  font-size: .72rem;
  font-weight: 900;
}

.nx-tracklist strong {
  font-size: .96rem;
  line-height: 1.2;
}

.nx-tracklist small {
  color: #aeb4ca;
  font-size: .65rem;
  line-height: 1.35;
}

.nx-watch {
  background: #fff;
}

.nx-watch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.nx-watch-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--nx-line);
  border-radius: 18px;
  background: var(--nx-cream);
}

.nx-watch-grid article.is-primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(145deg, var(--nx-plum), #4259c5);
  box-shadow: var(--nx-shadow);
}

.nx-watch-grid span {
  color: var(--nx-orchid);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.nx-watch-grid .is-primary span {
  color: #ffbdc7;
}

.nx-watch-grid h3 {
  margin: 10px 0 12px;
  font-size: 1.65rem;
  letter-spacing: -.03em;
}

.nx-watch-grid p {
  margin: 0;
  color: var(--nx-muted);
  font-size: .9rem;
  line-height: 1.62;
}

.nx-watch-grid .is-primary p {
  color: #e8ebf8;
}

.nx-watch-grid strong {
  margin-top: auto;
  padding-top: 20px;
  color: var(--nx-plum);
  font-size: .78rem;
}

.nx-watch-grid .is-primary strong {
  color: #fff;
}

.nx-free-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px solid #dce4ee;
  border-radius: 14px;
  background: #f7f9fc;
}

.nx-free-note strong {
  color: #263a54;
}

.nx-free-note p {
  margin: 0;
  color: #5b6674;
  font-size: .84rem;
  line-height: 1.55;
}

.nx-free-note a {
  color: #2459a1;
  font-size: .78rem;
  font-weight: 850;
  white-space: nowrap;
}

.nx-cie {
  background: var(--nx-soft);
}

.nx-cie-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
}

.nx-cie h2 {
  max-width: 690px;
  margin: 10px 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.nx-cie-copy > p {
  margin: 0;
  color: var(--nx-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.nx-cie-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.nx-cie-checks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--nx-line);
  border-radius: 12px;
  background: #fff;
}

.nx-cie-checks li > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--nx-green);
  font-size: .75rem;
  font-weight: 900;
}

.nx-cie-checks strong {
  display: block;
  font-size: .84rem;
  line-height: 1.35;
}

.nx-cie-checks p {
  margin: 4px 0 0;
  color: var(--nx-muted);
  font-size: .75rem;
  line-height: 1.45;
}

.nx-text-link {
  color: var(--nx-plum);
  font-size: .83rem;
  font-weight: 850;
  text-underline-offset: 4px;
}

.nx-cie-media {
  margin: 0;
  padding: 30px 24px 20px;
  border: 1px solid var(--nx-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--nx-shadow);
}

.nx-cie-media img {
  width: 100%;
  height: auto;
  display: block;
}

.nx-cie-media figcaption {
  margin-top: 16px;
  color: var(--nx-muted);
  font-size: .75rem;
  text-align: center;
}

.nx-urgency {
  padding-block: 58px;
  background: #fff;
}

.nx-urgency-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid #d8def5;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff 0%, #f3f5ff 100%);
  box-shadow: 0 20px 52px rgba(41,60,155,.1);
}

.nx-urgency-number {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--nx-plum);
  font-size: 2.4rem;
  font-weight: 900;
}

.nx-urgency h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.nx-urgency p {
  margin: 0;
  color: var(--nx-muted);
  font-size: .88rem;
  line-height: 1.6;
}

.nx-urgency small {
  display: block;
  margin-top: 8px;
  color: #797d91;
  font-size: .72rem;
  line-height: 1.45;
}

.nx-urgency-actions {
  min-width: 224px;
  display: grid;
  gap: 9px;
}

.nx-urgency-actions .button,
.nx-urgency-actions .nx-whatsapp {
  width: 100%;
  min-height: 48px;
  padding: 11px 17px;
  font-size: .78rem;
}

.nx-urgency-actions .nx-whatsapp {
  border-color: #a8d9b4;
  color: var(--nx-green-dark);
  background: #f1fbf4;
}

.nx-related {
  border-top: 1px solid var(--nx-line);
  background: var(--nx-cream);
}

.nx-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.nx-related-grid a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--nx-line);
  border-radius: 16px;
  color: var(--nx-ink);
  background: #fff;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.nx-related-grid a:hover {
  border-color: #b8c0e7;
  box-shadow: 0 16px 35px rgba(41,60,155,.1);
  transform: translateY(-3px);
}

.nx-related-grid small {
  color: var(--nx-orchid);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.nx-related-grid strong {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.35;
}

.nx-related-grid span {
  margin-top: auto;
  padding-top: 18px;
  color: var(--nx-plum);
  font-size: .78rem;
  font-weight: 850;
}

.nx-faq {
  background: #fff;
}

.nx-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(38px, 7vw, 86px);
}

.nx-faq-layout .nx-section-heading {
  position: sticky;
  top: 170px;
}

.nx-faq-list {
  border-top: 1px solid var(--nx-line);
}

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

.nx-faq-list summary {
  position: relative;
  padding: 20px 42px 20px 0;
  color: var(--nx-ink);
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.nx-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--nx-plum);
  background: var(--nx-soft);
  font-size: 1.15rem;
}

.nx-faq-list details[open] summary::after {
  content: "−";
}

.nx-faq-list p {
  margin: -4px 0 20px;
  padding-right: 42px;
  color: var(--nx-muted);
  font-size: .9rem;
  line-height: 1.65;
}

.nx-sources {
  padding-block: 34px;
  border-top: 1px solid var(--nx-line);
  background: #f3f4f9;
}

.nx-sources .nx-container {
  display: grid;
  gap: 13px;
}

.nx-sources strong {
  font-size: .8rem;
}

.nx-sources nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.nx-sources a {
  color: var(--nx-plum);
  font-size: .74rem;
  font-weight: 750;
}

.nx-sources p {
  margin: 0;
  color: #7d8192;
  font-size: .7rem;
  line-height: 1.5;
}

.nx-final-cta {
  padding-block: 52px;
  color: #fff;
  background: linear-gradient(135deg, var(--nx-plum-dark), var(--nx-plum));
}

.nx-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 32px;
}

.nx-final-cta h2 {
  margin: 7px 0 6px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.nx-final-cta p {
  margin: 0;
  color: #dce0f1;
}

.nx-final-validity {
  display: grid;
  gap: 4px;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.2);
}

.nx-final-validity small {
  color: #bdc6ed;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.nx-final-validity strong {
  font-size: 1rem;
}

.nx-mobile-cta {
  display: none;
}

@media (max-width: 1040px) {
  .nx-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr);
    gap: 34px;
  }

  .nx-hero h1 {
    font-size: clamp(2.45rem, 5vw, 3.55rem);
  }

  .nx-running-order {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .nx-urgency-card {
    grid-template-columns: auto 1fr;
  }

  .nx-urgency-actions {
    grid-column: 2;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nx-hero-grid,
  .nx-setlist-grid,
  .nx-cie-grid,
  .nx-faq-layout {
    grid-template-columns: 1fr;
  }

  .nx-hero-grid {
    min-height: 0;
    padding-block: 52px 60px;
  }

  .nx-hero-media {
    max-width: 680px;
  }

  .nx-hero-media img {
    height: 330px;
  }

  .nx-heading-inline {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 15px;
  }

  .nx-heading-inline > p {
    margin: 0;
  }

  .nx-setlist-grid {
    gap: 38px;
  }

  .nx-watch-grid {
    grid-template-columns: 1fr;
  }

  .nx-watch-grid article {
    min-height: 220px;
  }

  .nx-free-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nx-free-note a {
    white-space: normal;
  }

  .nx-cie-media {
    max-width: 600px;
  }

  .nx-faq-layout .nx-section-heading {
    position: static;
  }

  .nx-final-grid {
    grid-template-columns: 1fr auto;
  }

  .nx-final-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .page-nexz .nx-container {
    width: min(100% - 30px, 1160px);
  }

  .nx-breadcrumb .nx-container {
    min-height: 42px;
    font-size: .68rem;
  }

  .nx-hero-grid {
    gap: 30px;
    padding-block: 40px 52px;
  }

  .nx-kicker {
    margin-bottom: 15px;
    font-size: .67rem;
  }

  .nx-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.01;
  }

  .nx-lead {
    margin-top: 19px;
    font-size: 1rem;
  }

  .nx-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nx-hero-facts span {
    min-width: 0;
    padding: 10px;
  }

  .nx-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nx-actions .button,
  .nx-button-secondary {
    width: 100%;
  }

  .nx-meta {
    display: grid;
  }

  .nx-hero-media img {
    height: 230px;
    border-width: 6px;
    border-radius: 18px;
    object-position: center 31%;
  }

  .nx-hero-media figcaption {
    text-align: left;
  }

  .nx-fast-answer {
    margin-top: -20px;
  }

  .nx-fast-card {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .nx-fast-time {
    min-width: 0;
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 10px;
    padding: 10px 14px;
  }

  .nx-fast-time strong {
    font-size: 1.45rem;
  }

  .nx-toc {
    top: 70px;
  }

  .nx-toc .nx-container {
    display: block;
    padding-top: 9px;
  }

  .nx-toc .nx-container > strong {
    display: block;
  }

  .nx-toc .nx-container > div {
    gap: 18px;
  }

  .nx-toc a {
    min-height: 42px;
  }

  .nx-section {
    padding-block: 62px;
    scroll-margin-top: 132px;
  }

  .nx-section-heading h2,
  .nx-cie h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .nx-running-order,
  .nx-tracklist,
  .nx-cie-checks,
  .nx-related-grid {
    grid-template-columns: 1fr;
  }

  .nx-running-order article {
    min-height: 112px;
  }

  .nx-setlist h2 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .nx-tracklist li {
    min-height: 64px;
  }

  .nx-watch-grid article {
    min-height: 0;
  }

  .nx-watch-grid strong {
    margin-top: 18px;
  }

  .nx-cie-media {
    padding: 22px 14px 16px;
  }

  .nx-urgency-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .nx-urgency-number {
    width: 64px;
    height: 64px;
    font-size: 1.9rem;
  }

  .nx-urgency-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .nx-related-grid a {
    min-height: 158px;
  }

  .nx-faq-list summary {
    font-size: .9rem;
  }

  .nx-final-grid {
    grid-template-columns: 1fr;
  }

  .nx-final-grid > div:first-child {
    grid-column: auto;
  }

  .nx-final-validity {
    padding: 15px 0 0;
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 0;
  }

  .nx-final-cta .button {
    width: 100%;
  }

  .nx-sources nav {
    display: grid;
  }

  .nx-mobile-cta {
    position: fixed;
    z-index: 240;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
    border-top: 1px solid #d6e2db;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
  }

  .nx-mobile-cta a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    color: #fff;
    background: var(--nx-green);
    box-shadow: 0 12px 26px rgba(32,164,71,.25);
    font-size: .9rem;
    font-weight: 900;
    text-decoration: none;
  }

  .page-nexz .ncie-footer {
    padding-bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-nexz *,
  .page-nexz *::before,
  .page-nexz *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
