* {
  box-sizing: border-box;
}

html {
  font-family: Arial, sans-serif;
  background: #f6f8fc;
  color: #172033;
}

body {
  margin: 0;
}

.site-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6eaf2;
}

.site-header .site-container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  color: #172033;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: #172033;
  text-decoration: none;
}

.button-link,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 10px;
  background: #172033;
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
}

.placeholder {
  min-height: calc(100vh - 146px);
  display: grid;
  align-items: center;
  padding: 80px 0;
}

.placeholder h1 {
  max-width: 760px;
  margin: 10px 0 18px;
  font-size: clamp(42px, 8vw, 84px);
  line-height: 0.98;
}

.placeholder p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
}

.eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.primary-button {
  margin-top: 18px;
}

.site-footer {
  padding: 24px 0;
  background: #ffffff;
  border-top: 1px solid #e6eaf2;
}

.registration-page {
  padding: 70px 0 100px;
}

.registration-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.registration-heading h1 {
  margin: 10px 0 16px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}

.registration-heading > p:last-child {
  color: #5f6879;
  font-size: 18px;
  line-height: 1.7;
}

.back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: #172033;
  font-weight: 700;
  text-decoration: none;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  align-items: start;
  gap: 30px;
}

.registration-form-card,
.programme-summary {
  border: 1px solid #e3e8f1;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(23, 32, 51, 0.08);
}

.registration-form-card {
  padding: 34px;
}

.form-section + .form-section {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid #e7ebf2;
}

.form-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.form-section-heading > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: #172033;
  color: #ffffff;
  font-weight: 800;
}

.form-section-heading h2 {
  margin: 0 0 5px;
  font-size: 22px;
}

.form-section-heading p {
  margin: 0;
  color: #697286;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field > span {
  font-size: 14px;
  font-weight: 750;
}

.form-field strong,
.checkbox-field strong {
  color: #d84444;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #ccd3df;
  border-radius: 12px;
  background: #ffffff;
  color: #172033;
  font: inherit;
  padding: 0 15px;
  outline: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: #172033;
  box-shadow: 0 0 0 3px rgba(23, 32, 51, 0.1);
}

.phone-input-grid {
  display: grid;
  grid-template-columns:
    minmax(145px, 0.9fr)
    minmax(0, 1.25fr);
  gap: 10px;
}

.phone-input-grid select,
.phone-input-grid input {
  min-width: 0;
}

.field-help {
  color: #727c8f;
  font-size: 12px;
  line-height: 1.45;
}

.phone-field-help {
  grid-column: 2;
  display: block;
  margin-top: -12px;
}

.affiliate-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #eef3ff;
}

.affiliate-notice span {
  color: #566177;
}

.affiliate-notice strong {
  word-break: break-word;
}

/* REGISTRATION_PAYMENT_OPTIONS_UI_V1 */
.payment-option-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-option-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 148px;
  padding: 18px;
  border: 1px solid #d9dfeb;
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.payment-option-card:hover {
  border-color: #9d84c9;
  box-shadow:
    0 10px 28px
    rgba(34, 0, 84, 0.08);
  transform: translateY(-1px);
}

.payment-option-card:has(input:checked) {
  border-color: #5704d4;
  box-shadow:
    0 0 0 3px
    rgba(87, 4, 212, 0.10);
  background:
    linear-gradient(
      145deg,
      rgba(87, 4, 212, 0.055),
      rgba(0, 91, 252, 0.025)
    );
}

.payment-option-card input {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin: 3px 0 0;
  accent-color: #5704d4;
}

.payment-option-content {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.payment-option-kicker {
  color: #220054;
  font-size: 14px;
  font-weight: 800;
}

.payment-option-amount {
  color: #172033;
  font-size: 26px;
  line-height: 1.1;
}

.payment-option-content small {
  color: #697286;
  font-size: 12px;
  line-height: 1.55;
}

.payment-option-content small strong {
  color: #4b5567;
}

@media (max-width: 640px) {
  .payment-option-grid {
    grid-template-columns: 1fr;
  }

  .payment-option-card {
    min-height: 0;
  }
}

.form-consents {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4f596c;
  line-height: 1.55;
  cursor: pointer;
}

.checkbox-field input {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 2px;
}

.registration-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 28px;
  border: 0;
  border-radius: 14px;
  background: #172033;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.registration-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.secure-note {
  margin: 13px 0 0;
  color: #6a7385;
  font-size: 13px;
  text-align: center;
}

.form-alert {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 13px;
  line-height: 1.5;
}

.form-alert-error {
  border: 1px solid #f2b7b7;
  background: #fff1f1;
  color: #982a2a;
}

.form-alert-success {
  border: 1px solid #addfc3;
  background: #effbf4;
  color: #17643a;
}

.programme-summary {
  position: sticky;
  top: 24px;
  padding: 30px;
}

.summary-label {
  margin: 0 0 12px;
  color: #697286;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.programme-summary h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.programme-summary > p {
  color: #626c7e;
  line-height: 1.65;
}

.programme-points {
  margin-top: 26px;
  border-top: 1px solid #e5e9f0;
}

.programme-points > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid #e5e9f0;
}

.programme-points span {
  color: #697286;
}

.seat-notice {
  margin-top: 24px;
  padding: 17px;
  border-radius: 14px;
  background: #f0f3f8;
  color: #4d586b;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .programme-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 640px) {
  .registration-page {
    padding: 42px 0 70px;
  }

  .registration-form-card,
  .programme-summary {
    padding: 22px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .phone-input-grid {
    grid-template-columns: 1fr;
  }

  .phone-field-help {
    grid-column: 1;
    margin-top: -8px;
  }

  .affiliate-notice {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   PAYMENT STATUS AND E-RECEIPT
   ========================================================= */

.payment-page,
.receipt-page {
  min-height: calc(100vh - 146px);
  padding: 70px 0 100px;
}

.payment-status-card,
.receipt-loading-card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid #e3e8f1;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(23, 32, 51, 0.08);
  text-align: center;
}

.payment-status-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: #eef1f6;
  color: #172033;
  font-size: 34px;
  font-weight: 900;
}

.payment-state-success .payment-status-icon {
  background: #e7f8ed;
  color: #167540;
}

.payment-state-failed .payment-status-icon,
.payment-state-cancelled .payment-status-icon {
  background: #fff0f0;
  color: #b42c2c;
}

.payment-state-refunded .payment-status-icon {
  background: #fff7df;
  color: #8b6500;
}

.payment-status-card h1,
.receipt-loading-card h1 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.05;
}

.payment-status-message,
.receipt-loading-card p {
  max-width: 570px;
  margin: 0 auto;
  color: #626c7e;
  font-size: 17px;
  line-height: 1.7;
}

.payment-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  color: #626c7e;
}

.payment-spinner {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid #dce1ea;
  border-top-color: #172033;
  border-radius: 50%;
  animation: payment-spin 0.8s linear infinite;
}

@keyframes payment-spin {
  to {
    transform: rotate(360deg);
  }
}

.payment-page-alert {
  width: min(720px, 100%);
  margin: 24px auto;
  padding: 17px 19px;
  border: 1px solid #f2b7b7;
  border-radius: 14px;
  background: #fff1f1;
  color: #982a2a;
  line-height: 1.6;
}

.payment-summary-card {
  margin-top: 32px;
  border-top: 1px solid #e5e9f0;
  text-align: left;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e9f0;
}

.payment-summary-row span {
  color: #697286;
}

.payment-summary-row strong {
  max-width: 58%;
  text-align: right;
  word-break: break-word;
}

.payment-page-actions,
.receipt-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid #ccd3df;
  border-radius: 10px;
  background: #ffffff;
  color: #172033;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.payment-test-notice {
  margin: 24px 0 0;
  padding: 12px 15px;
  border-radius: 11px;
  background: #fff7df;
  color: #755800;
  font-size: 13px;
}

.receipt-loading-card {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.receipt-document {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 44px;
  border: 1px solid #dfe4ed;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(23, 32, 51, 0.08);
}

.receipt-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 2px solid #172033;
}

.receipt-brand-label {
  margin: 0 0 8px;
  color: #697286;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.receipt-header h1 {
  margin: 0 0 8px;
  font-size: 31px;
}

.receipt-header p {
  margin: 0;
  color: #697286;
}

.receipt-header-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.receipt-header-meta strong {
  font-size: 18px;
}

.receipt-test-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff3c9;
  color: #765800;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.receipt-status-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 26px 0 0;
  padding: 17px 20px;
  border-radius: 13px;
  background: #eaf8ef;
  color: #17643a;
}

.receipt-section {
  margin-top: 34px;
}

.receipt-section h2 {
  margin: 0 0 18px;
  font-size: 18px;
}

.receipt-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.receipt-details-grid > div {
  display: grid;
  gap: 6px;
}

.receipt-details-grid span {
  color: #697286;
  font-size: 13px;
}

.receipt-details-grid strong {
  word-break: break-word;
}

.receipt-totals {
  margin-top: 36px;
  border-top: 1px solid #dfe4ed;
}

.receipt-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #dfe4ed;
}

.receipt-totals span {
  color: #697286;
}

.receipt-outstanding {
  font-size: 19px;
}

.receipt-outstanding strong {
  color: #172033;
}

.receipt-footer {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #dfe4ed;
  color: #697286;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.receipt-footer p {
  margin: 4px 0;
}

@media (max-width: 640px) {
  .payment-page,
  .receipt-page {
    padding: 42px 0 70px;
  }

  .payment-status-card,
  .receipt-loading-card,
  .receipt-document {
    padding: 24px;
    border-radius: 18px;
  }

  .payment-summary-row,
  .receipt-header,
  .receipt-status-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-summary-row strong {
    max-width: 100%;
    text-align: left;
  }

  .receipt-header-meta {
    justify-items: start;
    text-align: left;
  }

  .receipt-details-grid {
    grid-template-columns: 1fr;
  }

  .payment-page-actions,
  .receipt-actions {
    display: grid;
  }
}

@media print {
  html,
  body {
    background: #ffffff;
  }

  .site-header,
  .site-footer,
  .receipt-actions {
    display: none !important;
  }

  .receipt-page {
    min-height: auto;
    padding: 0;
  }

  .receipt-document {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}


/* =========================================================
   PAYMENT VISIBILITY AND ACTION BUTTON FIX
   ========================================================= */

/*
 * Prevent author CSS display properties from overriding
 * elements hidden dynamically by JavaScript.
 */
[hidden] {
  display: none !important;
}

/*
 * Keep links and real buttons visually consistent.
 */
.payment-page-actions > .primary-button,
.payment-page-actions > .secondary-button,
.receipt-actions > .primary-button,
.receipt-actions > .secondary-button {
  min-width: 170px;
  min-height: 52px;
  margin-top: 0;
  padding: 12px 18px;
  font-size: 15px;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .payment-page-actions > .primary-button,
  .payment-page-actions > .secondary-button,
  .receipt-actions > .primary-button,
  .receipt-actions > .secondary-button {
    width: 100%;
    min-width: 0;
  }
}


/* =========================================================
   INTAKE AVAILABILITY STATES
   ========================================================= */

.intake-availability-card {
  width: min(760px, 100%);
  margin: 0 auto 32px;
  padding: 36px;
  border: 1px solid #dfe5ee;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(23, 32, 51, 0.07);
  text-align: center;
}

.intake-loading-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.intake-loading-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.intake-loading-card p,
.intake-unavailable-card > p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
}

.intake-availability-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: #fff0f0;
  color: #ad2727;
  font-size: 34px;
  font-weight: 900;
}

.intake-unavailable-card h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
}

.intake-availability-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.intake-availability-actions > * {
  min-width: 170px;
  min-height: 50px;
  margin-top: 0;
}

.remaining-seats-notice {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #edf8f1;
  color: #17643a;
  text-align: center;
}

.remaining-seats-notice strong {
  margin-right: 4px;
  font-size: 20px;
}

@media (max-width: 640px) {
  .intake-availability-card {
    padding: 25px;
    border-radius: 18px;
  }

  .intake-loading-card {
    align-items: center;
    flex-direction: column;
  }

  .intake-availability-actions {
    display: grid;
  }

  .intake-availability-actions > * {
    width: 100%;
    min-width: 0;
  }
}

/* === NEXA PUBLIC HOMEPAGE START === */

:root {
  --nexa-blue: #189ecf;
  --nexa-purple: #562fc6;
  --nexa-purple-bright: #7429d4;
  --nexa-dark: #13182a;
  --nexa-text: #20263a;
  --nexa-muted: #657086;
  --nexa-border: #e7eaf2;
  --nexa-soft: #f7f8fc;
  --nexa-white: #ffffff;
  --nexa-gradient:
    linear-gradient(
      135deg,
      #189ecf 0%,
      #562fc6 58%,
      #7429d4 100%
    );
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  overflow-x: hidden;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--nexa-text);
}

.site-container {
  width: min(1180px, calc(100% - 48px));
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(223, 227, 237, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(27, 35, 62, 0.04);
  backdrop-filter: blur(16px);
}

.site-header .header-inner {
  min-height: 78px;
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-logo img {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: #333a4f;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav > a:not(.button-link)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--nexa-gradient);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav > a:not(.button-link):hover {
  color: var(--nexa-purple);
}

.site-nav > a:not(.button-link):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header .button-link {
  min-height: 46px;
  padding: 12px 21px;
  border-radius: 999px;
  background: var(--nexa-gradient);
  box-shadow: 0 12px 26px rgba(86, 47, 198, 0.2);
  color: #ffffff !important;
}

.site-header .button-link:hover {
  transform: translateY(-2px);
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--nexa-border);
  border-radius: 13px;
  background: #ffffff;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-lines {
  display: grid;
  gap: 4px;
}

.mobile-menu-lines i {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--nexa-dark);
}

.mobile-menu-panel {
  position: absolute;
  top: 54px;
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 48px));
  padding: 14px;
  border: 1px solid var(--nexa-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 65px rgba(25, 32, 55, 0.16);
}

.mobile-menu-panel a {
  padding: 13px 14px;
  border-radius: 11px;
  color: var(--nexa-text);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu-panel a:hover {
  background: var(--nexa-soft);
}

.mobile-menu-panel .mobile-apply-link {
  margin-top: 7px;
  background: var(--nexa-gradient);
  color: #ffffff;
  text-align: center;
}

.private-page-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid var(--nexa-border);
  border-radius: 999px;
  background: #ffffff;
}

.home-page {
  background: #ffffff;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p {
  text-wrap: pretty;
}

.home-section {
  padding: 100px 0;
}

.home-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--nexa-purple);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-eyebrow span {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(24, 158, 207, 0.2);
  border-radius: 999px;
  background: rgba(24, 158, 207, 0.08);
  color: #117da4;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 90px;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(24, 158, 207, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 12%,
      rgba(116, 41, 212, 0.11),
      transparent 28%
    ),
    #ffffff;
}

.home-hero::after {
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(86, 47, 198, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(360px, 0.82fr);
  align-items: center;
  gap: 68px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--nexa-dark);
  font-size: clamp(48px, 6.2vw, 82px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero-copy h1 span {
  display: block;
  background: var(--nexa-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 650px;
  margin: 27px 0 0;
  color: #41495d;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}

.hero-bm {
  max-width: 610px;
  margin: 15px 0 0;
  color: var(--nexa-muted);
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.home-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button-primary {
  background: var(--nexa-gradient);
  box-shadow: 0 16px 34px rgba(86, 47, 198, 0.23);
  color: #ffffff;
}

.home-button-secondary {
  border-color: #d9deea;
  background: #ffffff;
  color: var(--nexa-text);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--nexa-border);
}

.hero-highlights > div {
  display: grid;
  gap: 4px;
}

.hero-highlights strong {
  color: var(--nexa-dark);
  font-size: 14px;
}

.hero-highlights span {
  color: var(--nexa-muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  width: min(100%, 480px);
  margin-left: auto;
  padding: 16px;
  border: 1px solid rgba(219, 223, 234, 0.9);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 35px 90px rgba(33, 37, 67, 0.16);
}

.hero-image-frame > img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 27px;
  object-fit: cover;
}

.hero-image-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-decoration-one {
  z-index: 1;
  top: -42px;
  right: -45px;
  width: 140px;
  height: 140px;
  background: rgba(116, 41, 212, 0.16);
}

.hero-decoration-two {
  z-index: 3;
  bottom: -28px;
  left: -28px;
  width: 100px;
  height: 100px;
  border: 20px solid rgba(24, 158, 207, 0.18);
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  right: -36px;
  bottom: 52px;
  display: flex;
  max-width: 250px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(224, 227, 237, 0.9);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(25, 31, 55, 0.18);
  backdrop-filter: blur(12px);
}

.hero-floating-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--nexa-gradient);
  color: #ffffff;
}

.hero-floating-icon svg {
  width: 22px;
  height: 22px;
}

.hero-floating-card > span:last-child {
  display: grid;
  gap: 3px;
}

.hero-floating-card strong {
  color: var(--nexa-dark);
  font-size: 12px;
}

.hero-floating-card small {
  color: var(--nexa-muted);
  font-size: 10px;
}

.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.83fr)
    minmax(0, 1.17fr);
  align-items: start;
  gap: 78px;
}

.section-intro h2,
.section-heading h2,
.trainer-copy h2,
.faq-heading h2 {
  margin: 0;
  color: var(--nexa-dark);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-intro > p:not(.home-eyebrow),
.section-heading > p:not(.home-eyebrow),
.trainer-copy > p:not(.home-eyebrow),
.faq-heading > p:not(.home-eyebrow) {
  margin: 23px 0 0;
  color: var(--nexa-muted);
  font-size: 16px;
  line-height: 1.78;
}

.bm-callout {
  margin-top: 28px;
  padding: 19px 21px;
  border-left: 4px solid var(--nexa-blue);
  border-radius: 0 15px 15px 0;
  background: #f2f9fc;
  color: #315464;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  min-height: 238px;
  padding: 27px;
  border: 1px solid var(--nexa-border);
  border-radius: 23px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(27, 35, 62, 0.055);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.audience-card:last-child {
  grid-column: 1 / -1;
  min-height: auto;
}

.audience-card:hover {
  border-color: rgba(86, 47, 198, 0.22);
  box-shadow: 0 24px 60px rgba(38, 42, 82, 0.1);
  transform: translateY(-4px);
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background:
    linear-gradient(
      145deg,
      rgba(24, 158, 207, 0.12),
      rgba(116, 41, 212, 0.12)
    );
  color: var(--nexa-purple);
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.audience-card h3 {
  margin: 23px 0 9px;
  color: var(--nexa-dark);
  font-size: 20px;
}

.audience-card p {
  margin: 0;
  color: var(--nexa-muted);
  font-size: 14px;
  line-height: 1.7;
}

.transformation-section {
  background: var(--nexa-soft);
}

.section-heading {
  max-width: 760px;
}

.centred-heading {
  margin: 0 auto;
  text-align: center;
}

.centred-heading .home-eyebrow {
  justify-content: center;
}

.transformation-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    58px
    minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 52px;
}

.transformation-card {
  min-height: 455px;
  padding: 37px;
  border-radius: 27px;
}

.before-card {
  border: 1px solid #dfe3eb;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(24, 31, 52, 0.07);
}

.after-card {
  position: relative;
  overflow: hidden;
  background: var(--nexa-gradient);
  box-shadow: 0 30px 70px rgba(86, 47, 198, 0.24);
  color: #ffffff;
}

.after-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 35px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.transformation-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef0f5;
  color: #596174;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.after-card .transformation-label {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.transformation-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 25px;
  color: var(--nexa-dark);
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.after-card h3 {
  color: #ffffff;
}

.transformation-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.transformation-card li {
  position: relative;
  padding-left: 28px;
  color: #5d6679;
  font-size: 14px;
  line-height: 1.6;
}

.transformation-card li::before {
  position: absolute;
  top: 8px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bdc3d0;
  content: "";
}

.after-card li {
  color: rgba(255, 255, 255, 0.9);
}

.after-card li::before {
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

.transformation-arrow {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(26, 32, 54, 0.11);
  color: var(--nexa-purple);
}

.transformation-arrow svg {
  width: 25px;
  height: 25px;
}

.programme-section {
  background: #ffffff;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.month-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: 30px;
  border: 1px solid var(--nexa-border);
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(29, 35, 62, 0.06);
}

.month-card::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(24, 158, 207, 0.06);
  content: "";
}

.month-two::after {
  background: rgba(86, 47, 198, 0.07);
}

.month-three::after {
  background: rgba(116, 41, 212, 0.08);
}

.month-number {
  display: inline-flex;
  color: var(--nexa-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.month-icon {
  display: grid;
  width: 57px;
  height: 57px;
  margin-top: 35px;
  place-items: center;
  border-radius: 18px;
  background: rgba(24, 158, 207, 0.1);
  color: var(--nexa-blue);
}

.month-two .month-icon {
  background: rgba(86, 47, 198, 0.1);
  color: var(--nexa-purple);
}

.month-three .month-icon {
  background: rgba(116, 41, 212, 0.1);
  color: var(--nexa-purple-bright);
}

.month-icon svg {
  width: 27px;
  height: 27px;
}

.month-card h3 {
  position: relative;
  z-index: 1;
  margin: 27px 0 13px;
  color: var(--nexa-dark);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.month-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--nexa-muted);
  font-size: 14px;
  line-height: 1.75;
}

.learning-section {
  background:
    linear-gradient(
      145deg,
      #11182c 0%,
      #1c2140 52%,
      #301a59 100%
    );
}

.learning-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(0, 1.22fr);
  align-items: start;
  gap: 70px;
}

.learning-heading .home-eyebrow {
  color: #63d3f5;
}

.learning-heading h2 {
  color: #ffffff;
}

.learning-heading > p:not(.home-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.learning-card {
  display: flex;
  min-height: 205px;
  align-items: flex-start;
  gap: 17px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(10px);
}

.learning-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.11);
  color: #74daf7;
  font-size: 11px;
  font-weight: 850;
}

.learning-card h3 {
  margin: 3px 0 9px;
  color: #ffffff;
  font-size: 17px;
}

.learning-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

.trainer-section {
  background: #ffffff;
}

.trainer-grid {
  display: grid;
  grid-template-columns:
    minmax(350px, 0.8fr)
    minmax(0, 1.05fr);
  align-items: center;
  gap: 84px;
}

.trainer-image-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 465px);
  margin: 0 auto;
  padding: 30px 30px 0;
  border: 1px solid var(--nexa-border);
  border-radius: 32px;
  background:
    linear-gradient(
      145deg,
      #f7fbfd,
      #f4effc
    );
  box-shadow: 0 32px 80px rgba(34, 37, 68, 0.13);
}

.trainer-background-shape {
  position: absolute;
  top: 50px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      rgba(24, 158, 207, 0.22),
      rgba(116, 41, 212, 0.17)
    );
}

.trainer-image-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center bottom;
}

.trainer-title {
  margin-top: 11px !important;
  color: var(--nexa-purple) !important;
  font-size: 15px !important;
  font-weight: 800;
}

.trainer-credentials {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.trainer-credentials > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trainer-credentials span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 158, 207, 0.11);
  color: #1386ae;
  font-size: 12px;
  font-weight: 900;
}

.trainer-credentials p {
  margin: 0;
  color: #4f586c;
  font-size: 14px;
  line-height: 1.65;
}

.faq-section {
  background: var(--nexa-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(0, 1.15fr);
  align-items: start;
  gap: 75px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--nexa-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(28, 34, 60, 0.04);
}

.faq-list summary {
  position: relative;
  padding: 22px 60px 22px 23px;
  color: var(--nexa-dark);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--nexa-soft);
  color: var(--nexa-purple);
  content: "+";
  font-size: 20px;
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: 0;
  padding: 0 23px 23px;
  color: var(--nexa-muted);
  font-size: 14px;
  line-height: 1.75;
}

.home-cta-section {
  padding: 30px 0 105px;
  background: #ffffff;
}

.home-cta-card {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: 34px;
  background: var(--nexa-gradient);
  box-shadow: 0 35px 80px rgba(86, 47, 198, 0.25);
  color: #ffffff;
}

.cta-decoration {
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border: 55px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 770px;
}

.cta-content .home-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.cta-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 63px);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.cta-content > p:not(.home-eyebrow) {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.home-button-light {
  background: #ffffff;
  color: var(--nexa-purple);
}

.home-button-outline-light {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.home-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.84;
}

.application-note {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.site-footer {
  padding: 58px 0 22px;
  border-top: 1px solid var(--nexa-border);
  background: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  align-items: start;
  gap: 60px;
  padding-bottom: 38px;
}

.footer-brand {
  max-width: 470px;
}

.footer-logo {
  display: inline-flex;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--nexa-muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-label {
  margin: 0 0 13px;
  color: var(--nexa-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.footer-social-link {
  display: flex;
  min-width: 205px;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid var(--nexa-border);
  border-radius: 15px;
  background: #ffffff;
  color: var(--nexa-text);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.footer-social-link:hover {
  border-color: rgba(86, 47, 198, 0.23);
  box-shadow: 0 15px 35px rgba(30, 35, 65, 0.08);
  transform: translateY(-2px);
}

.footer-social-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(
      145deg,
      rgba(24, 158, 207, 0.11),
      rgba(116, 41, 212, 0.1)
    );
  color: var(--nexa-purple);
}

.footer-social-icon svg {
  width: 21px;
  height: 21px;
}

.footer-social-link > span:last-child {
  display: grid;
  gap: 3px;
}

.footer-social-link strong {
  font-size: 13px;
}

.footer-social-link small {
  color: var(--nexa-muted);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 21px;
  border-top: 1px solid var(--nexa-border);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #7a8292;
  font-size: 12px;
}

.footer-bottom a {
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .hero-grid,
  .about-grid,
  .learning-layout,
  .trainer-grid,
  .faq-layout {
    gap: 48px;
  }

  .hero-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(330px, 0.75fr);
  }

  .hero-floating-card {
    right: -10px;
  }

  .trainer-grid {
    grid-template-columns:
      minmax(310px, 0.72fr)
      minmax(0, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-container {
    width: min(100% - 36px, 720px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .learning-layout,
  .trainer-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 55px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .home-eyebrow,
  .hero-actions,
  .hero-highlights {
    justify-content: center;
  }

  .hero-lead,
  .hero-bm {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    max-width: 520px;
    margin: 15px auto 0;
  }

  .hero-image-frame {
    margin: 0 auto;
  }

  .about-grid,
  .learning-layout,
  .trainer-grid,
  .faq-layout {
    gap: 45px;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
  }

  .transformation-arrow {
    margin: -5px auto;
    transform: rotate(90deg);
  }

  .transformation-card {
    min-height: auto;
  }

  .month-grid {
    grid-template-columns: 1fr;
  }

  .month-card {
    min-height: auto;
  }

  .learning-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trainer-visual {
    order: 2;
  }

  .faq-heading {
    position: static;
  }

  .home-cta-card {
    padding: 52px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-container {
    width: min(100% - 28px, 540px);
  }

  .site-header .header-inner {
    min-height: 70px;
  }

  .site-logo img {
    height: 40px;
  }

  .private-page-nav a {
    padding: 9px 13px;
    font-size: 12px;
  }

  .home-section {
    padding: 74px 0;
  }

  .home-hero {
    padding: 45px 0 70px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .home-button {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-highlights > div {
    padding: 13px 0;
    border-bottom: 1px solid var(--nexa-border);
  }

  .hero-image-frame {
    padding: 10px;
    border-radius: 26px;
  }

  .hero-image-frame > img {
    border-radius: 20px;
  }

  .hero-floating-card {
    right: 7px;
    bottom: 22px;
    max-width: 215px;
  }

  .audience-grid,
  .learning-grid {
    grid-template-columns: 1fr;
  }

  .audience-card:last-child {
    grid-column: auto;
  }

  .section-intro h2,
  .section-heading h2,
  .trainer-copy h2,
  .faq-heading h2 {
    font-size: clamp(34px, 10vw, 47px);
  }

  .transformation-card {
    padding: 27px;
    border-radius: 22px;
  }

  .month-card {
    padding: 26px;
  }

  .trainer-image-card {
    padding: 20px 20px 0;
    border-radius: 25px;
  }

  .home-cta-section {
    padding-bottom: 76px;
  }

  .home-cta-card {
    padding: 38px 25px;
    border-radius: 25px;
  }

  .cta-content h2 {
    font-size: clamp(36px, 11vw, 49px);
  }

  .footer-main {
    gap: 36px;
  }

  .footer-socials {
    display: grid;
  }

  .footer-social-link {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* === NEXA PUBLIC HOMEPAGE END === */

/* === NEXA MOBILE MARQUEE START === */

/*
 * The duplicated set is hidden on desktop.
 * It is only displayed when the mobile marquee
 * animation is active.
 */
.mobile-marquee-set[aria-hidden="true"] {
  display: none;
}

@keyframes nexa-mobile-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 767px) {
  .mobile-marquee {
    width: 100vw;
    margin-top: 34px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 8px 14px 20px;
  }

  .mobile-marquee-track {
    display: flex;
    width: max-content;
    animation:
      nexa-mobile-marquee
      var(--marquee-duration, 26s)
      linear
      infinite;
    will-change: transform;
  }

  .audience-track {
    --marquee-duration: 22s;
  }

  .programme-track {
    --marquee-duration: 25s;
  }

  .learning-track {
    --marquee-duration: 30s;
  }

  .mobile-marquee:hover
  .mobile-marquee-track,
  .mobile-marquee:focus-within
  .mobile-marquee-track {
    animation-play-state: paused;
  }

  .mobile-marquee-set {
    display: flex !important;
    flex: 0 0 auto;
    gap: 14px;
    padding-right: 14px;
  }

  .mobile-marquee-set[aria-hidden="true"] {
    display: flex !important;
  }

  /*
   * About NEXA cards
   */
  .audience-marquee .audience-card {
    width: min(84vw, 360px);
    min-height: 250px;
    flex: 0 0 min(84vw, 360px);
  }

  .audience-marquee
  .audience-card:last-child {
    min-height: 250px;
  }

  /*
   * Six-week programme cards
   */
  .programme-marquee .month-card {
    width: min(84vw, 360px);
    min-height: 370px;
    flex: 0 0 min(84vw, 360px);
  }

  /*
   * Learning Experience cards
   */
  .learning-marquee {
    margin-top: 5px;
  }

  .learning-marquee .learning-card {
    width: min(84vw, 350px);
    min-height: 215px;
    flex: 0 0 min(84vw, 350px);
  }
}

/*
 * Accessibility:
 * Users who disable motion get a normal
 * horizontal swipe layout instead.
 */
@media
  (max-width: 767px)
  and (prefers-reduced-motion: reduce) {

  .mobile-marquee {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mobile-marquee::-webkit-scrollbar {
    display: none;
  }

  .mobile-marquee-track {
    animation: none;
    transform: none;
  }

  .mobile-marquee-set[aria-hidden="true"] {
    display: none !important;
  }

  .mobile-marquee-set > * {
    scroll-snap-align: start;
  }
}

/* === NEXA MOBILE MARQUEE END === */

/* === NEXA DARK FRAME START === */

:root {
  --nexa-header-dark: #0f1220;
  --nexa-header-dark-soft: #15192b;
  --nexa-footer-dark: #0a0c14;
  --nexa-footer-card: rgba(255, 255, 255, 0.055);
  --nexa-footer-border: rgba(255, 255, 255, 0.11);
}

/* =========================================================
   DARK TOPBAR
   ========================================================= */

.site-header {
  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      135deg,
      var(--nexa-header-dark) 0%,
      var(--nexa-header-dark-soft) 100%
    );
  box-shadow:
    0 12px 36px
    rgba(5, 7, 15, 0.2);
  backdrop-filter: blur(18px);
}

.site-logo {
  padding: 6px 11px;
  border:
    1px solid
    rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: #ffffff;
  box-shadow:
    0 7px 22px
    rgba(0, 0, 0, 0.15);
}

.site-logo img {
  height: 42px;
}

.site-nav a {
  color:
    rgba(255, 255, 255, 0.76);
}

.site-nav > a:not(.button-link):hover {
  color: #ffffff;
}

.site-nav > a:not(.button-link)::after {
  background:
    linear-gradient(
      90deg,
      #47c8f3,
      #9b67ff
    );
}

.site-header .button-link {
  border:
    1px solid
    rgba(255, 255, 255, 0.11);
  box-shadow:
    0 14px 34px
    rgba(86, 47, 198, 0.35);
}

/* Registration/payment page navigation */

.private-page-nav a {
  border:
    1px solid
    rgba(255, 255, 255, 0.15);
  background:
    rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.private-page-nav a:hover {
  border-color:
    rgba(255, 255, 255, 0.26);
  background:
    rgba(255, 255, 255, 0.12);
}

/* Mobile menu button */

.mobile-menu summary {
  border:
    1px solid
    rgba(255, 255, 255, 0.15);
  background:
    rgba(255, 255, 255, 0.08);
}

.mobile-menu-lines i {
  background: #ffffff;
}

/* Mobile dropdown */

.mobile-menu-panel {
  border:
    1px solid
    rgba(255, 255, 255, 0.1);
  background: #151827;
  box-shadow:
    0 25px 65px
    rgba(0, 0, 0, 0.35);
}

.mobile-menu-panel a {
  color:
    rgba(255, 255, 255, 0.82);
}

.mobile-menu-panel a:hover {
  background:
    rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.mobile-menu-panel
.mobile-apply-link {
  color: #ffffff;
}

/* =========================================================
   SLIGHT CONTRAST FOR TRAINER AREA
   ========================================================= */

.trainer-section {
  background:
    linear-gradient(
      180deg,
      #f8f8fc 0%,
      #f2f3f9 100%
    );
}

/* =========================================================
   DARK FOOTER
   ========================================================= */

.site-footer {
  border-top:
    1px solid
    rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(116, 41, 212, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 12% 100%,
      rgba(24, 158, 207, 0.12),
      transparent 30%
    ),
    var(--nexa-footer-dark);
  color: #ffffff;
}

.footer-logo {
  padding: 7px 12px;
  border-radius: 13px;
  background: #ffffff;
  box-shadow:
    0 8px 24px
    rgba(0, 0, 0, 0.22);
}

.footer-logo img {
  height: 43px;
}

.footer-brand p {
  color:
    rgba(255, 255, 255, 0.62);
}

.footer-label {
  color: #ffffff;
}

.footer-social-link {
  border:
    1px solid
    var(--nexa-footer-border);
  background:
    var(--nexa-footer-card);
  color: #ffffff;
}

.footer-social-link:hover {
  border-color:
    rgba(99, 211, 245, 0.38);
  background:
    rgba(255, 255, 255, 0.09);
  box-shadow:
    0 16px 38px
    rgba(0, 0, 0, 0.24);
}

.footer-social-icon {
  background:
    linear-gradient(
      145deg,
      rgba(24, 158, 207, 0.22),
      rgba(116, 41, 212, 0.24)
    );
  color: #ffffff;
}

.footer-social-link small {
  color:
    rgba(255, 255, 255, 0.58);
}

.footer-bottom {
  border-top:
    1px solid
    rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  color:
    rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 620px) {
  .site-logo {
    padding: 5px 9px;
    border-radius: 11px;
  }

  .site-logo img {
    height: 35px;
  }

  .footer-logo img {
    height: 39px;
  }
}

/* === NEXA DARK FRAME END === */


/* === NEXA AUGUST 2026 LANDING START === */

.campaign-page,
.campaign-success-page {
  --campaign-blue: #189ecf;
  --campaign-purple: #562fc6;
  --campaign-violet: #7429d4;
  --campaign-dark: #111526;
  --campaign-muted: #657087;
  --campaign-border: #e3e7f0;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(116, 41, 212, 0.08),
      transparent 25%
    ),
    #ffffff;
}

.campaign-shell {
  width: min(
    820px,
    calc(100% - 32px)
  );
  margin: 0 auto;
}

.campaign-urgency-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      100deg,
      #1599c9,
      #562fc6 55%,
      #7429d4
    );
  color: #ffffff;
  box-shadow:
    0 12px 32px
    rgba(44, 27, 105, 0.2);
}

.urgency-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.urgency-inner > div:first-child {
  display: grid;
  gap: 4px;
}

.urgency-inner > div:first-child strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.urgency-inner > div:first-child span {
  color:
    rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.campaign-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.campaign-countdown > span {
  min-width: 58px;
  padding: 7px 9px;
  border:
    1px solid
    rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  background:
    rgba(255, 255, 255, 0.1);
  text-align: center;
}

.campaign-countdown strong,
.campaign-countdown small {
  display: block;
}

.campaign-countdown strong {
  font-size: 18px;
  line-height: 1;
}

.campaign-countdown small {
  margin-top: 4px;
  color:
    rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.campaign-countdown-started {
  font-size: 13px !important;
}

.campaign-hero {
  padding: 82px 0 70px;
  overflow: hidden;
  text-align: center;
}

.campaign-eyebrow {
  margin: 0 0 15px;
  color: var(--campaign-purple);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.campaign-hero h1 {
  max-width: 780px;
  margin: 0 auto;
  color: var(--campaign-dark);
  font-size:
    clamp(42px, 8vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.campaign-hero h1 span {
  display: block;
  margin-top: 7px;
  background:
    linear-gradient(
      100deg,
      var(--campaign-blue),
      var(--campaign-purple),
      var(--campaign-violet)
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.campaign-lead {
  max-width: 680px;
  margin: 27px auto 0;
  color: #3e475a;
  font-size:
    clamp(18px, 2.7vw, 22px);
  line-height: 1.65;
}

.campaign-bm {
  max-width: 650px;
  margin: 17px auto 0;
  color: var(--campaign-muted);
  font-size: 15px;
  line-height: 1.7;
}

.campaign-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 34px;
}

.campaign-actions > span {
  color: #727b8e;
  font-size: 13px;
  font-weight: 700;
}

.campaign-primary-button,
.campaign-secondary-button,
.campaign-wide-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.campaign-primary-button,
.campaign-wide-button {
  padding: 15px 26px;
  background:
    linear-gradient(
      100deg,
      var(--campaign-blue),
      var(--campaign-purple),
      var(--campaign-violet)
    );
  color: #ffffff;
  box-shadow:
    0 16px 38px
    rgba(86, 47, 198, 0.26);
}

.campaign-secondary-button {
  padding: 14px 25px;
  border:
    1px solid
    #cfd5e1;
  background: #ffffff;
  color: var(--campaign-dark);
}

.campaign-primary-button:hover,
.campaign-secondary-button:hover,
.campaign-wide-button:hover {
  transform: translateY(-2px);
}

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

.campaign-facts article {
  padding: 18px 12px;
  border:
    1px solid
    var(--campaign-border);
  border-radius: 17px;
  background:
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 32px
    rgba(23, 32, 51, 0.06);
}

.campaign-facts strong,
.campaign-facts span {
  display: block;
}

.campaign-facts strong {
  color: var(--campaign-dark);
  font-size: 15px;
}

.campaign-facts span {
  margin-top: 6px;
  color: var(--campaign-muted);
  font-size: 11px;
}

.campaign-section {
  padding: 76px 0;
}

.campaign-soft-section {
  background:
    linear-gradient(
      180deg,
      #f7f8fc,
      #f2f4fa
    );
}

.campaign-section-heading {
  max-width: 690px;
  margin: 0 auto 34px;
  text-align: center;
}

.campaign-section-heading h2,
.campaign-form-heading h2 {
  margin: 0;
  color: var(--campaign-dark);
  font-size:
    clamp(32px, 5.5vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.campaign-section-heading > p:last-child,
.campaign-form-heading > p:last-child {
  margin: 18px auto 0;
  color: var(--campaign-muted);
  font-size: 16px;
  line-height: 1.7;
}

.campaign-poster {
  margin: 0;
  overflow: hidden;
  border:
    1px solid
    var(--campaign-border);
  border-radius: 25px;
  background: #ffffff;
  box-shadow:
    0 24px 70px
    rgba(23, 32, 51, 0.13);
}

.campaign-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.campaign-feature-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 32px;
}

.campaign-feature-grid article {
  padding: 24px;
  border:
    1px solid
    var(--campaign-border);
  border-radius: 19px;
  background: #ffffff;
}

.campaign-feature-grid article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      rgba(24, 158, 207, 0.14),
      rgba(116, 41, 212, 0.16)
    );
  color: var(--campaign-purple);
  font-size: 12px;
  font-weight: 900;
}

.campaign-feature-grid h3 {
  margin: 18px 0 8px;
  color: var(--campaign-dark);
  font-size: 19px;
}

.campaign-feature-grid p {
  margin: 0;
  color: var(--campaign-muted);
  font-size: 14px;
  line-height: 1.65;
}

.campaign-wide-button {
  width: 100%;
  margin-top: 27px;
}

.campaign-application-section {
  padding: 80px 0 96px;
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(24, 158, 207, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(116, 41, 212, 0.17),
      transparent 32%
    ),
    #101425;
}

.campaign-form-card {
  padding:
    clamp(25px, 6vw, 48px);
  border:
    1px solid
    rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 30px 90px
    rgba(0, 0, 0, 0.3);
}

.campaign-form-heading {
  max-width: 650px;
  margin-bottom: 30px;
}

.campaign-form-heading h2 {
  font-size:
    clamp(31px, 5vw, 46px);
}

.campaign-referral-notice {
  margin-bottom: 22px;
  padding: 14px 16px;
  border:
    1px solid
    rgba(86, 47, 198, 0.18);
  border-radius: 13px;
  background:
    rgba(86, 47, 198, 0.07);
  color: #4d5870;
  font-size: 13px;
}

.campaign-referral-notice strong {
  color: var(--campaign-purple);
}

.campaign-form {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.campaign-field {
  display: grid;
  gap: 9px;
}

.campaign-field > span {
  color: var(--campaign-dark);
  font-size: 13px;
  font-weight: 800;
}

.campaign-field strong,
.campaign-consent strong {
  color: #d3405b;
}

.campaign-field input,
.campaign-field select {
  width: 100%;
  min-width: 0;
  min-height: 53px;
  padding: 0 15px;
  border:
    1px solid
    #cbd2de;
  border-radius: 12px;
  background: #ffffff;
  color: var(--campaign-dark);
  font: inherit;
  outline: none;
}

.campaign-field input:focus,
.campaign-field select:focus {
  border-color:
    var(--campaign-purple);
  box-shadow:
    0 0 0 4px
    rgba(86, 47, 198, 0.1);
}

.campaign-field-full {
  grid-column: 1 / -1;
}

.campaign-phone-grid {
  display: grid;
  grid-template-columns:
    minmax(145px, 0.9fr)
    minmax(0, 1.2fr);
  gap: 10px;
}

.campaign-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4f596d;
  font-size: 13px;
  line-height: 1.6;
  cursor: pointer;
}

.campaign-consent input {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin: 2px 0 0;
}

.campaign-submit-button {
  min-height: 58px;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(
      100deg,
      var(--campaign-blue),
      var(--campaign-purple),
      var(--campaign-violet)
    );
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 16px 38px
    rgba(86, 47, 198, 0.23);
}

.campaign-submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.campaign-form-note {
  margin: -4px 0 0;
  color: #727b8e;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.campaign-form-alert {
  margin-bottom: 22px;
  padding: 15px 17px;
  border:
    1px solid
    #f0bdc8;
  border-radius: 13px;
  background: #fff2f5;
  color: #a32641;
  font-size: 14px;
  line-height: 1.55;
}

.campaign-form-alert[data-type="success"] {
  border-color: #a9dccd;
  background: #edfbf6;
  color: #17614f;
}

.campaign-success-page {
  min-height:
    calc(100vh - 72px);
}

.campaign-success-section {
  min-height:
    calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 75px 0 95px;
}

.campaign-success-card {
  padding:
    clamp(30px, 7vw, 62px);
  border:
    1px solid
    var(--campaign-border);
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow:
    0 28px 90px
    rgba(23, 32, 51, 0.13);
}

.campaign-success-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 25px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      var(--campaign-blue),
      var(--campaign-purple)
    );
  color: #ffffff;
  box-shadow:
    0 16px 38px
    rgba(86, 47, 198, 0.25);
}

.campaign-success-icon svg {
  width: 38px;
  height: 38px;
}

.campaign-success-card h1 {
  margin: 0;
  color: var(--campaign-dark);
  font-size:
    clamp(37px, 7vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.campaign-success-card > p:not(.campaign-eyebrow) {
  max-width: 630px;
  margin: 20px auto 0;
  color: var(--campaign-muted);
  font-size: 16px;
  line-height: 1.7;
}

.campaign-success-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 33px;
}

.campaign-success-help {
  font-size: 13px !important;
}

.campaign-success-help a {
  color: var(--campaign-purple);
  font-weight: 800;
}

@media (max-width: 700px) {
  .campaign-shell {
    width:
      min(
        100% - 24px,
        820px
      );
  }

  .urgency-inner {
    gap: 12px;
  }

  .urgency-inner > div:first-child span {
    display: none;
  }

  .campaign-countdown {
    gap: 5px;
  }

  .campaign-countdown > span {
    min-width: 47px;
    padding: 7px 5px;
  }

  .campaign-countdown strong {
    font-size: 16px;
  }

  .campaign-hero {
    padding: 58px 0 53px;
  }

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

  .campaign-section {
    padding: 58px 0;
  }

  .campaign-feature-grid {
    grid-template-columns: 1fr;
  }

  .campaign-form {
    grid-template-columns: 1fr;
  }

  .campaign-field-full {
    grid-column: auto;
  }

  .campaign-application-section {
    padding: 58px 0 72px;
  }
}

@media (max-width: 500px) {
  .campaign-urgency-bar {
    position: relative;
  }

  .urgency-inner {
    min-height: 62px;
  }

  .urgency-inner > div:first-child strong {
    font-size: 12px;
  }

  .campaign-countdown > span {
    min-width: 43px;
  }

  .campaign-hero h1 {
    font-size: 43px;
  }

  .campaign-lead {
    font-size: 17px;
  }

  .campaign-poster,
  .campaign-form-card,
  .campaign-success-card {
    border-radius: 20px;
  }

  .campaign-phone-grid {
    grid-template-columns: 1fr;
  }

  .campaign-success-actions {
    display: grid;
  }

  .campaign-success-actions a {
    width: 100%;
  }
}

/* === NEXA AUGUST 2026 LANDING END === */


/* === NEXA AUGUST 2026 REFINEMENT V2 START === */

.campaign-urgency-bar {
  position: sticky !important;
  top: 0;
  z-index: 100;
}

.campaign-hero {
  padding-top: 58px;
  padding-bottom: 52px;
}

.campaign-hero h1 {
  max-width: 720px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.campaign-hero h1 span {
  margin-top: 4px;
}

.campaign-lead {
  max-width: 690px;
  margin-top: 22px;
  font-size: 25px;
  line-height: 1.45;
}

.campaign-bm {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.65;
}

.campaign-section-heading h2 {
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.campaign-form-heading h2 {
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.campaign-facts {
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 18px 0;
  border-top:
    1px solid
    var(--campaign-border);
  border-bottom:
    1px solid
    var(--campaign-border);
}

.campaign-facts article {
  padding: 5px 14px;
  border: 0;
  border-right:
    1px solid
    var(--campaign-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.campaign-facts article:last-child {
  border-right: 0;
}

.campaign-feature-list {
  margin-bottom: 32px;
  padding: 8px 28px;
  border:
    1px solid
    rgba(86, 47, 198, 0.14);
  border-radius: 23px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 249, 238, 0.96),
      rgba(255, 236, 242, 0.92)
    );
}

.campaign-feature-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
  padding: 22px 0;
  border-bottom:
    1px solid
    rgba(86, 47, 198, 0.1);
}

.campaign-feature-row:last-child {
  border-bottom: 0;
}

.campaign-feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: #ffffff;
  font-size: 21px;
  box-shadow:
    0 8px 22px
    rgba(45, 35, 80, 0.08);
}

.campaign-feature-row h3 {
  margin: 0;
  color: var(--campaign-dark);
  font-size: 17px;
  line-height: 1.35;
}

.campaign-feature-row p {
  margin: 7px 0 0;
  color: var(--campaign-muted);
  font-size: 14px;
  line-height: 1.65;
}

.campaign-section {
  padding: 62px 0;
}

.campaign-section-heading {
  margin-bottom: 28px;
}

.campaign-application-section {
  padding-top: 66px;
  padding-bottom: 76px;
}

.campaign-success-card h1 {
  font-size: 34px;
  line-height: 1.12;
}

.campaign-compact-footer {
  padding: 24px 0;
  border-top:
    1px solid
    rgba(255, 255, 255, 0.09);
  background: #0f1220;
  color: #ffffff;
}

.campaign-compact-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.campaign-compact-footer-inner > div {
  display: grid;
  gap: 5px;
}

.campaign-compact-footer strong {
  font-size: 14px;
}

.campaign-compact-footer span {
  color:
    rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.campaign-compact-footer nav {
  display: flex;
  gap: 18px;
}

.campaign-compact-footer a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 700px) {
  .campaign-hero h1 {
    font-size: 32px;
  }

  .campaign-lead {
    font-size: 21px;
  }

  .campaign-section-heading h2,
  .campaign-form-heading h2 {
    font-size: 27px;
  }

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

  .campaign-facts article {
    padding: 13px 10px;
    border-right: 0;
    border-bottom:
      1px solid
      var(--campaign-border);
  }

  .campaign-facts article:nth-child(odd) {
    border-right:
      1px solid
      var(--campaign-border);
  }

  .campaign-facts article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .campaign-feature-list {
    padding: 4px 20px;
  }

  .campaign-feature-row {
    grid-template-columns: 44px 1fr;
    gap: 13px;
    padding: 19px 0;
  }

  .campaign-compact-footer-inner {
    display: grid;
    text-align: center;
  }

  .campaign-compact-footer nav {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .campaign-urgency-bar {
    position: sticky !important;
    top: 0;
  }

  .campaign-hero {
    padding-top: 46px;
    padding-bottom: 45px;
  }

  .campaign-hero h1 {
    font-size: 30px;
  }

  .campaign-lead {
    font-size: 20px;
  }

  .campaign-bm {
    font-size: 14px;
  }

  .campaign-feature-list {
    border-radius: 19px;
  }

  .campaign-feature-row h3 {
    font-size: 16px;
  }

  .campaign-feature-row p {
    font-size: 13px;
  }
}

/* === NEXA AUGUST 2026 REFINEMENT V2 END === */


/* =========================================================
   REGISTER PAYMENTS ADMIN
   REGISTER_PAYMENTS_ADMIN_UI_V1
   ========================================================= */

.register-payments-admin {
  min-height: calc(100vh - 146px);
  padding: 64px 0 100px;
  background:
    radial-gradient(
      circle at 4% 5%,
      rgba(24, 158, 207, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 96% 10%,
      rgba(116, 41, 212, 0.08),
      transparent 28%
    ),
    #f8f9fc;
}


/* =========================
   HEADER
   ========================= */

.register-payments-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.register-payments-heading > div:first-child {
  max-width: 760px;
}

.register-payments-heading .home-eyebrow {
  margin-bottom: 14px;
}

.register-payments-heading h1 {
  margin: 0;
  color: var(--nexa-dark);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.register-payments-heading > div:first-child > p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--nexa-muted);
  font-size: 16px;
  line-height: 1.7;
}

.register-payments-heading-actions {
  flex: 0 0 auto;
}

.register-payments-heading-actions .secondary-button {
  min-width: 120px;
  min-height: 48px;
  margin: 0;
}


/* =========================
   ERROR
   ========================= */

.register-payments-alert {
  display: grid;
  gap: 5px;
  margin-bottom: 24px;
  padding: 17px 20px;
  border: 1px solid #f0b6b6;
  border-radius: 15px;
  background: #fff2f2;
  color: #922b2b;
}

.register-payments-alert strong {
  font-size: 14px;
}

.register-payments-alert span {
  font-size: 13px;
  line-height: 1.6;
}


/* =========================
   SUMMARY CARDS
   ========================= */

.register-payments-summary-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.register-payment-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 164px;
  padding: 23px;
  border: 1px solid var(--nexa-border);
  border-radius: 21px;
  background: #ffffff;
  box-shadow:
    0 14px 40px
    rgba(28, 35, 60, 0.055);
}

.register-payment-stat-card::after {
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background:
    rgba(86, 47, 198, 0.045);
  content: "";
}

.register-payment-stat-card > span {
  position: relative;
  z-index: 1;
  display: block;
  color: #687185;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.register-payment-stat-card > strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 15px;
  color: var(--nexa-dark);
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
}

.register-payment-stat-card > small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 13px;
  color: var(--nexa-muted);
  font-size: 12px;
  line-height: 1.5;
}

.register-payment-stat-highlight {
  border-color:
    rgba(86, 47, 198, 0.18);
  background:
    linear-gradient(
      135deg,
      #220054 0%,
      #562fc6 58%,
      #189ecf 135%
    );
  box-shadow:
    0 20px 46px
    rgba(86, 47, 198, 0.19);
}

.register-payment-stat-highlight::after {
  right: -45px;
  bottom: -55px;
  width: 140px;
  height: 140px;
  border:
    24px solid
    rgba(255, 255, 255, 0.07);
  background: transparent;
}

.register-payment-stat-highlight > span,
.register-payment-stat-highlight > strong {
  color: #ffffff;
}

.register-payment-stat-highlight > small {
  color:
    rgba(255, 255, 255, 0.72);
}


/* =========================
   FILTERS
   ========================= */

.register-payments-filters {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.8fr)
    minmax(125px, 0.7fr)
    minmax(150px, 0.85fr)
    minmax(150px, 0.85fr)
    auto;
  align-items: end;
  gap: 13px;
  margin-bottom: 18px;
  padding: 19px;
  border: 1px solid var(--nexa-border);
  border-radius: 19px;
  background: #ffffff;
  box-shadow:
    0 12px 35px
    rgba(28, 35, 60, 0.04);
}

.register-payments-filters label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.register-payments-filters label > span {
  color: #5e677a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.register-payments-filters input,
.register-payments-filters select {
  width: 100%;
  min-width: 0;
  min-height: 47px;
  padding: 0 13px;
  border: 1px solid #d7dce7;
  border-radius: 11px;
  background: #ffffff;
  color: var(--nexa-text);
  font: inherit;
  font-size: 13px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.register-payments-filters input:focus,
.register-payments-filters select:focus {
  border-color:
    rgba(86, 47, 198, 0.62);
  box-shadow:
    0 0 0 3px
    rgba(86, 47, 198, 0.09);
}

.register-payments-filters input::placeholder {
  color: #9aa1af;
}

.register-payments-filter-button {
  min-height: 47px;
  padding: 0 20px;
  border: 0;
  border-radius: 11px;
  background: var(--nexa-gradient);
  box-shadow:
    0 10px 22px
    rgba(86, 47, 198, 0.17);
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.register-payments-filter-button:hover {
  box-shadow:
    0 14px 28px
    rgba(86, 47, 198, 0.23);
  transform: translateY(-1px);
}


/* =========================
   RESULT INFO
   ========================= */

.register-payments-results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 2px 13px;
}

.register-payments-results-meta strong {
  color: var(--nexa-dark);
  font-size: 13px;
}

.register-payments-results-meta span {
  color: var(--nexa-muted);
  font-size: 12px;
}


/* =========================
   TABLE
   ========================= */

.register-payments-table-card {
  overflow: hidden;
  border: 1px solid var(--nexa-border);
  border-radius: 21px;
  background: #ffffff;
  box-shadow:
    0 18px 55px
    rgba(28, 35, 60, 0.06);
}

.register-payments-table-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.register-payments-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  border-spacing: 0;
}

.register-payments-table th {
  padding: 15px 17px;
  border-bottom:
    1px solid
    #e7eaf1;
  background: #f8f9fc;
  color: #697286;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.register-payments-table td {
  padding: 19px 17px;
  border-bottom:
    1px solid
    #edf0f5;
  color: var(--nexa-text);
  font-size: 13px;
  vertical-align: top;
}

.register-payments-table tbody tr:last-child td {
  border-bottom: 0;
}

.register-payments-table tbody tr {
  transition:
    background 150ms ease;
}

.register-payments-table tbody tr:hover {
  background:
    rgba(247, 248, 252, 0.74);
}


/* Participant */

.register-payment-participant {
  display: grid;
  width: 220px;
  gap: 5px;
}

.register-payment-participant > strong {
  color: var(--nexa-dark);
  font-size: 13px;
  line-height: 1.45;
}

.register-payment-participant > small {
  color: var(--nexa-purple);
  font-size: 11px;
  font-weight: 750;
}

.register-payment-participant > span {
  color: #7b8495;
  font-size: 11px;
  line-height: 1.45;
}

.register-payment-participant > a {
  overflow: hidden;
  color: #4f5b71;
  font-size: 11px;
  line-height: 1.45;
  text-decoration: none;
  text-overflow: ellipsis;
}

.register-payment-participant > a:hover {
  color: var(--nexa-purple);
  text-decoration: underline;
}


/* Payment type */

.register-payment-type-cell {
  display: grid;
  gap: 7px;
  min-width: 130px;
}

.register-payment-type-cell > strong {
  color: var(--nexa-dark);
  font-size: 13px;
}

.register-payment-type-cell > span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f0f2f6;
  color: #697286;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}


/* Amount */

.register-payment-amount {
  display: block;
  min-width: 105px;
  color: var(--nexa-dark);
  font-size: 15px;
}

.register-payment-programme-total {
  display: block;
  margin-top: 7px;
  color: #8991a1;
  font-size: 10px;
  white-space: nowrap;
}


/* Status */

.register-payment-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.register-payment-status-success {
  border: 1px solid #b9e7ca;
  background: #ecf9f1;
  color: #197246;
}

.register-payment-status-pending {
  border: 1px solid #f1d692;
  background: #fff8e7;
  color: #86620c;
}

.register-payment-status-failed,
.register-payment-status-cancelled {
  border: 1px solid #efbebe;
  background: #fff0f0;
  color: #a42c2c;
}

.register-payment-status-refunded {
  border: 1px solid #c9d3ee;
  background: #f1f4fc;
  color: #475881;
}

.register-payment-status-unknown {
  border: 1px solid #d8dde6;
  background: #f4f5f8;
  color: #60697a;
}

.register-payment-raw-status {
  display: block;
  margin-top: 6px;
  color: #929aaa;
  font-size: 10px;
  text-transform: capitalize;
}


/* Date */

.register-payment-date {
  display: grid;
  min-width: 150px;
  gap: 6px;
}

.register-payment-date > strong {
  color: #394156;
  font-size: 11px;
  line-height: 1.5;
}

.register-payment-date > small {
  color: #929aaa;
  font-size: 10px;
}


/* Transaction */

.register-payment-reference {
  display: grid;
  width: 205px;
  gap: 6px;
}

.register-payment-reference > strong {
  color: #454e63;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 10px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.register-payment-reference > span {
  color: #8b93a2;
  font-size: 10px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}


/* Empty */

.register-payments-empty {
  padding: 70px 30px;
  text-align: center;
}

.register-payments-empty strong {
  display: block;
  color: var(--nexa-dark);
  font-size: 17px;
}

.register-payments-empty p {
  margin: 9px 0 0;
  color: var(--nexa-muted);
  font-size: 13px;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1080px) {
  .register-payments-summary-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .register-payments-filters {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .register-payments-search {
    grid-column: 1 / -1;
  }

  .register-payments-filter-button {
    width: 100%;
  }
}


@media (max-width: 700px) {
  .register-payments-admin {
    padding: 42px 0 72px;
  }

  .register-payments-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .register-payments-heading-actions,
  .register-payments-heading-actions .secondary-button {
    width: 100%;
  }

  .register-payments-heading h1 {
    font-size: 38px;
  }

  .register-payments-summary-grid {
    grid-template-columns: 1fr;
  }

  .register-payment-stat-card {
    min-height: 142px;
  }

  .register-payments-filters {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .register-payments-search {
    grid-column: auto;
  }

  .register-payments-results-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .register-payments-table-card {
    border-radius: 17px;
  }
}
/* =========================================================
   NEXA REGISTER PAGE REVAMP V1
   Scoped to body[data-page="register"] only.
   ========================================================= */

body[data-page="register"] {
  background: #101010;
  color: #172033;
}

body[data-page="register"] .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.10);
  background: #101010;
}

body[data-page="register"] .site-logo img {
  padding: 7px;
  border-radius: 50%;
  background: #ffffff;
}

body[data-page="register"] .site-nav a {
  color: #ffffff;
}

body[data-page="register"] .site-footer {
  border-top-color: rgba(255, 255, 255, 0.10);
  background: #101010;
  color: #d8deea;
}

body[data-page="register"] .registration-page {
  position: relative;
  overflow: hidden;
  padding: 42px 0 90px;
  background:
    radial-gradient(
      circle at 10% 8%,
      rgba(0, 51, 141, 0.30),
      transparent 32%
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(138, 3, 115, 0.28),
      transparent 34%
    ),
    #101010;
}

body[data-page="register"] .registration-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  margin-bottom: 42px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(
      140deg,
      rgba(0, 51, 141, 0.24),
      rgba(16, 16, 16, 0.96) 48%,
      rgba(138, 3, 115, 0.22)
    );
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

body[data-page="register"] .registration-hero-copy {
  min-width: 0;
}

body[data-page="register"] .registration-hero .back-link {
  margin-bottom: 28px;
  color: #dfe8ff;
}

body[data-page="register"] .registration-hero .back-link:hover {
  color: #ffffff;
}

body[data-page="register"] .registration-hero .eyebrow {
  margin: 0 0 15px;
  color: #4cc8ff;
  font-size: 13px;
}

body[data-page="register"] .registration-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

body[data-page="register"] #registrationCommercialIntro {
  max-width: 650px;
  margin: 22px 0 0;
  color: #cbd3e1;
  font-size: 18px;
  line-height: 1.7;
}

body[data-page="register"] .registration-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

body[data-page="register"] .registration-hero-points span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f5f7fb;
  font-size: 12px;
  font-weight: 750;
}

/* NEXA_REGISTER_READY_TOP_V2 */
body[data-page="register"] .registration-hero-poster {
  display: grid;
  gap: 17px;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 7px 7px 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #00338d, #16c4ef, #8a0373);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(138, 3, 115, 0.20);
}

body[data-page="register"] .registration-hero-poster img {
  display: block;
  width: 100%;
  max-height: 520px;
  border-radius: 18px;
  background: #080a11;
  object-fit: contain;
}

/* =========================================================
   NEXA REGISTER VERIFIED PEARL CTA V1
   Adapted from the supplied pretty-goose-7 button.
   ========================================================= */

body[data-page="register"] .registration-hero-cta {
  --pearl-white: #ffe7ff;
  --pearl-bg: #080808;
  --pearl-radius: 100px;
  position: relative;
  display: block;
  width: calc(100% - 22px);
  margin: 0 11px;
  overflow: hidden;
  border: 0;
  border-radius: var(--pearl-radius);
  outline: none;
  background-color: var(--pearl-bg);
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    inset 0 0.3rem 0.9rem rgba(255, 255, 255, 0.30),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.70),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.50),
    0 1.8rem 2.4rem rgba(0, 0, 0, 0.28),
    0 0.8rem 0.9rem -0.6rem rgba(0, 0, 0, 0.80);
}

body[data-page="register"] .pearl-button-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 19px 24px;
  border-radius: inherit;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 800;
}

body[data-page="register"] .pearl-button-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0;
  transform: translateY(2%);
  transition: transform 0.2s ease;
  -webkit-mask-image: linear-gradient(to bottom, white 48%, rgba(255, 255, 255, 0.72));
  mask-image: linear-gradient(to bottom, white 48%, rgba(255, 255, 255, 0.72));
}

body[data-page="register"] .registration-verified-badge {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: #1877f2;
  filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.48));
}

body[data-page="register"] .pearl-button-wrap::before,
body[data-page="register"] .pearl-button-wrap::after {
  position: absolute;
  content: "";
  transition: all 0.3s ease;
}

body[data-page="register"] .pearl-button-wrap::before {
  inset: -100% -15% 25%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
}

body[data-page="register"] .pearl-button-wrap::after {
  inset: 12% 6% 40%;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.30) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  box-shadow: inset 0 10px 8px -10px rgba(255, 255, 255, 0.80);
}

body[data-page="register"] .registration-hero-cta:hover {
  color: #ffffff;
  box-shadow:
    inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.40),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.70),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.70),
    0 1.8rem 2.4rem rgba(0, 0, 0, 0.30),
    0 0.8rem 0.9rem -0.6rem rgba(0, 0, 0, 0.80);
}

body[data-page="register"] .registration-hero-cta:hover .pearl-button-wrap::before {
  transform: translateY(-5%);
}

body[data-page="register"] .registration-hero-cta:hover .pearl-button-wrap::after {
  opacity: 0.4;
  transform: translateY(5%);
}

body[data-page="register"] .registration-hero-cta:hover .pearl-button-label {
  transform: translateY(-4%);
}

body[data-page="register"] .registration-hero-cta:active {
  transform: translateY(4px);
  box-shadow:
    inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.50),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.80),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.40),
    0 1.4rem 2rem rgba(0, 0, 0, 0.28);
}

body[data-page="register"] .registration-hero-cta:focus-visible {
  box-shadow:
    0 0 0 4px rgba(24, 119, 242, 0.34),
    inset 0 0.3rem 0.9rem rgba(255, 255, 255, 0.30),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.50);
}


body[data-page="register"] .intake-availability-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

body[data-page="register"] .registration-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.72fr);
  gap: 28px;
}

body[data-page="register"] .registration-form-card,
body[data-page="register"] .programme-summary {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

body[data-page="register"] .registration-form-card {
  padding: clamp(24px, 4vw, 42px);
}

body[data-page="register"] .form-section-heading > span {
  background: linear-gradient(135deg, #00338d, #8a0373);
  box-shadow: 0 8px 20px rgba(0, 51, 141, 0.22);
}

body[data-page="register"] .form-field input:focus,
body[data-page="register"] .form-field select:focus {
  border-color: #00338d;
  box-shadow: 0 0 0 3px rgba(0, 51, 141, 0.12);
}

body[data-page="register"] .payment-option-card:has(input:checked) {
  border-color: #8a0373;
  background:
    linear-gradient(
      145deg,
      rgba(0, 51, 141, 0.07),
      rgba(138, 3, 115, 0.07)
    );
  box-shadow: 0 0 0 3px rgba(138, 3, 115, 0.10);
}

body[data-page="register"] .payment-option-card input {
  accent-color: #8a0373;
}

body[data-page="register"] .registration-submit {
  min-height: 62px;
  border-radius: 15px;
  background: linear-gradient(110deg, #00338d, #6b168f, #8a0373);
  box-shadow: 0 15px 34px rgba(77, 12, 118, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

body[data-page="register"] .registration-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 19px 42px rgba(77, 12, 118, 0.34);
}

body[data-page="register"] .programme-summary {
  top: 20px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, #121a2c, #151017);
  color: #ffffff;
}

body[data-page="register"] .programme-summary .summary-label {
  color: #57caff;
}

body[data-page="register"] .programme-summary h2 {
  color: #ffffff;
}

body[data-page="register"] .programme-summary > p,
body[data-page="register"] .programme-points span {
  color: #c6cfde;
}

body[data-page="register"] .programme-points {
  border-top-color: rgba(255, 255, 255, 0.13);
}

body[data-page="register"] .programme-points > div {
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

body[data-page="register"] .programme-points strong {
  color: #ffffff;
}

body[data-page="register"] .seat-notice,
body[data-page="register"] .remaining-seats-notice {
  border: 1px solid rgba(87, 202, 255, 0.16);
  background: rgba(0, 51, 141, 0.20);
  color: #e4ebf6;
}

body[data-page="register"] #nexaRegistrationForm {
  scroll-margin-top: 24px;
}

@media (max-width: 900px) {
  body[data-page="register"] .registration-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  body[data-page="register"] .registration-hero .back-link {
    justify-content: center;
  }

  body[data-page="register"] .registration-hero h1,
  body[data-page="register"] #registrationCommercialIntro {
    margin-right: auto;
    margin-left: auto;
  }

  body[data-page="register"] .registration-hero-points {
    justify-content: center;
  }

  body[data-page="register"] .registration-hero-poster {
    width: min(100%, 430px);
  }

  body[data-page="register"] .registration-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="register"] .programme-summary {
    position: static;
    order: 0;
  }
}

@media (max-width: 640px) {
  body[data-page="register"] .registration-page {
    padding: 24px 0 62px;
  }

  body[data-page="register"] .registration-page > .site-container {
    width: min(100% - 24px, 1120px);
  }

  body[data-page="register"] .registration-hero {
    gap: 26px;
    margin-bottom: 28px;
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  body[data-page="register"] .registration-hero .back-link {
    margin-bottom: 22px;
  }

  body[data-page="register"] .registration-hero h1 {
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1.02;
  }

  body[data-page="register"] #registrationCommercialIntro {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }

  body[data-page="register"] .registration-hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  body[data-page="register"] .registration-hero-points span {
    width: 100%;
  }

  body[data-page="register"] .registration-hero-poster {
    padding: 5px;
    border-radius: 18px;
  }

  body[data-page="register"] .registration-hero-poster img {
    max-height: none;
    border-radius: 14px;
  }

  body[data-page="register"] .registration-hero-cta {
    width: calc(100% - 14px);
    margin: 0 7px;
  }

  body[data-page="register"] .registration-form-card,
  body[data-page="register"] .programme-summary {
    border-radius: 18px;
  }

}

/* NEXA_HOME_V2_START */
body[data-page="home"] {
  overflow-x: hidden;
  background: #0b0b0e;
}

body[data-page="home"] .site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 14, 0.9);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  will-change: transform;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease;
}

body[data-page="home"] .site-header.nh-header-hidden {
  transform: translateY(calc(-100% - 2px));
}

body[data-page="home"] .site-logo {
  width: 58px;
  height: 58px;
  overflow: hidden;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
}

body[data-page="home"] .site-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

body[data-page="home"] .site-nav > a:not(.button-link),
body[data-page="home"] .site-logo,
body[data-page="home"] .private-page-nav a {
  color: #ffffff;
}

body[data-page="home"] .site-nav .button-link,
body[data-page="home"] .mobile-apply-link {
  border-radius: 999px;
  background: linear-gradient(135deg, #00338d, #8a0373 58%, #d82e87);
  box-shadow: 0 12px 32px rgba(138, 3, 115, 0.3);
  color: #ffffff !important;
}

body[data-page="home"] .mobile-menu > summary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

body[data-page="home"] .mobile-menu-lines i {
  background: #ffffff;
}

body[data-page="home"] .mobile-menu-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(15, 15, 20, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

body[data-page="home"] .mobile-menu-panel a:not(.mobile-apply-link) {
  color: #ffffff;
}

.nexa-home-v2 {
  --nh-dark: #101010;
  --nh-dark-soft: #18181d;
  --nh-light: #f7f7fa;
  --nh-white: #ffffff;
  --nh-ink: #11121a;
  --nh-muted-dark: #bcbeca;
  --nh-muted-light: #656878;
  --nh-blue: #00338d;
  --nh-cyan: #08b7ee;
  --nh-purple: #8a0373;
  --nh-magenta: #db2d8a;
  --nh-gradient: linear-gradient(135deg, #08b7ee 0%, #00338d 35%, #8a0373 72%, #db2d8a 100%);
  overflow: hidden;
  background: var(--nh-dark);
  color: var(--nh-white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
}

.nexa-home-v2 *,
.nexa-home-v2 *::before,
.nexa-home-v2 *::after {
  box-sizing: border-box;
}

.nexa-home-v2 img {
  display: block;
  max-width: 100%;
}

.nexa-home-v2 a {
  color: inherit;
}

.nexa-home-v2 section[id] {
  scroll-margin-top: 100px;
}

.nh-section {
  position: relative;
  padding: 105px 0;
}

.nh-eyebrow {
  margin: 0 0 18px;
  color: #38c9f5;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nh-clean-title,
.nh-brush,
.nh-lead,
.nh-supporting-copy {
  text-wrap: balance;
}

.nh-clean-title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.nh-gradient-text {
  display: block;
  color: var(--nh-magenta);
  background: var(--nh-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nh-brush {
  margin: 0;
  font-family: "Knewave", "Arial Black", sans-serif;
  font-size: clamp(2.45rem, 5vw, 4.3rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

.nh-dark-title,
.nh-dark-brush {
  color: var(--nh-ink);
}

.nh-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--nh-muted-dark);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.75;
}

.nh-dark-lead {
  color: var(--nh-muted-light);
}

.nh-centred-heading {
  max-width: 900px;
  margin: 0 auto 52px;
  text-align: center;
}

.nh-centred-heading .nh-lead {
  margin-inline: auto;
}

.nh-actions,
.nh-centred-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.nh-centred-actions {
  justify-content: center;
}

.nh-cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nh-cta:hover,
.nh-cta:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.nh-cta:focus-visible,
.nh-pearl-cta:focus-visible {
  outline: 3px solid rgba(8, 183, 238, 0.55);
  outline-offset: 4px;
}

.nexa-home-v2 .nh-cta-primary {
  background: var(--nh-gradient);
  box-shadow: 0 20px 45px rgba(138, 3, 115, 0.34);
  color: #ffffff;
}

.nh-cta-silver {
  overflow: hidden;
  background: var(--nh-gradient);
  box-shadow: 0 20px 45px rgba(138, 3, 115, 0.34);
  color: #ffffff;
}

.nh-cta-shimmer-text {
  color: #ffffff;
  background: linear-gradient(110deg, #ffffff 0%, #ffffff 28%, #c7c8cd 42%, #f5f5f7 52%, #bfc1c7 63%, #ffffff 78%, #ffffff 100%);
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: nh-font-shimmer 3s linear infinite;
}

.nh-cta-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

@keyframes nh-font-shimmer {
  to { background-position: -240% 0; }
}

.nh-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 51, 141, 0.38), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(138, 3, 115, 0.26), transparent 35%),
    #101010;
}

.nh-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.nh-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 70px;
}

.nh-hero-brush {
  margin-top: 22px;
  color: #ffcb47;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.nh-supporting-copy {
  max-width: 700px;
  margin: 16px 0 0;
  color: #e8e8ef;
  font-size: 1rem;
}

.nh-audience-note {
  margin: 18px 0 0;
  color: #8f92a0;
  font-size: 0.82rem;
}

.nh-hero-visual {
  position: relative;
  width: min(100%, 510px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
}

.nh-hero-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 26px;
  object-fit: contain;
}

.nh-image-glow {
  position: absolute;
  inset: 12% -12% -8% 20%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(8, 183, 238, 0.35), rgba(138, 3, 115, 0.38));
  filter: blur(50px);
}

.nh-floating-message {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 38px;
  display: grid;
  gap: 3px;
  max-width: 265px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(15, 15, 20, 0.86);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.nh-floating-message strong {
  font-size: 0.9rem;
}

.nh-floating-message span {
  color: var(--nh-muted-dark);
  font-size: 0.76rem;
}

.nh-problem {
  background:
    radial-gradient(circle at 18% 0%, rgba(138, 3, 115, 0.25), transparent 28%),
    #151519;
}

.nh-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nh-glass-card,
.nh-learning-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.14), 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nh-glass-card {
  min-height: 270px;
  padding: 29px;
}

.nh-card-number,
.nh-learning-card > span {
  display: inline-flex;
  color: #45cdf5;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.nh-glass-card h3,
.nh-learning-card h3 {
  margin: 45px 0 12px;
  font-size: 1.23rem;
  line-height: 1.3;
}

.nh-glass-card p,
.nh-learning-card p {
  margin: 0;
  color: var(--nh-muted-dark);
  font-size: 0.9rem;
}

.nh-problem-closing {
  max-width: 820px;
  margin: 42px auto 0;
  color: #eeeeF4;
  font-size: 1.12rem;
  font-weight: 650;
  text-align: center;
}

.nh-bridge {
  padding: 55px 0 85px;
  background: #151519;
}

.nh-bridge-frame {
  overflow: hidden;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
}

.nh-bridge-frame picture {
  display: block;
}

.nh-bridge-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 21px;
  object-fit: contain;
}

.nh-about,
.nh-transformation,
.nh-testimonials {
  background: var(--nh-light);
  color: var(--nh-ink);
}

.nh-about .nh-eyebrow,
.nh-transformation .nh-eyebrow,
.nh-testimonials .nh-eyebrow {
  color: var(--nh-purple);
}

.nh-about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: start;
  gap: 75px;
}

.nh-about-copy p:not(.nh-brush) {
  margin: 18px 0 0;
  color: var(--nh-muted-light);
}

.nh-about-copy .nh-brush {
  color: var(--nh-purple);
  font-size: clamp(2rem, 3vw, 3rem);
}

.nh-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  margin-top: 64px;
}

.nh-scenario-card {
  overflow: hidden;
  border: 1px solid #e1e2e9;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(22, 25, 45, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nh-scenario-card:hover {
  box-shadow: 0 28px 70px rgba(26, 29, 58, 0.14);
  transform: translateY(-5px);
}

.nh-scenario-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.nh-scenario-card > div {
  padding: 23px;
}

.nh-scenario-card span {
  color: var(--nh-purple);
  font-size: 0.7rem;
  font-weight: 900;
}

.nh-scenario-card h3 {
  margin: 10px 0 8px;
  color: var(--nh-ink);
  font-size: 1.15rem;
}

.nh-scenario-card p {
  margin: 0;
  color: var(--nh-muted-light);
  font-size: 0.82rem;
  line-height: 1.65;
}

.nh-thought-panel {
  display: grid;
  max-width: 800px;
  margin: 65px auto 0;
  padding: 36px;
  border: 1px solid rgba(138, 3, 115, 0.14);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(0, 51, 141, 0.07), rgba(138, 3, 115, 0.08));
  text-align: center;
}

.nh-thought-panel p {
  margin: 0 0 5px;
  color: var(--nh-muted-light);
}

.nh-thought-panel strong {
  margin-bottom: 18px;
  color: var(--nh-ink);
  font-size: 1.15rem;
}

.nh-thought-panel span {
  color: var(--nh-purple);
  font-weight: 850;
}

.nh-programme,
.nh-trainer,
.nh-final-cta {
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 51, 141, 0.3), transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(138, 3, 115, 0.26), transparent 32%),
    #101010;
}

.nh-programme-emphasis,
.nh-transformation-emphasis {
  margin: 12px 0 0;
  color: #44cef6;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.nh-programme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nh-learning-card {
  min-height: 285px;
  padding: 30px;
}

.nh-learning-card h3 {
  margin-top: 54px;
}

.nh-transformation-grid,
.nh-trainer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.8fr);
  align-items: center;
  gap: 80px;
}

.nh-transformation-emphasis {
  color: var(--nh-purple);
}

.nh-outcome-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.nh-outcome-list p {
  position: relative;
  margin: 0;
  padding: 15px 18px 15px 46px;
  border: 1px solid #e1e2e9;
  border-radius: 15px;
  background: #ffffff;
  color: #505361;
  box-shadow: 0 12px 35px rgba(25, 29, 56, 0.05);
}

.nh-outcome-list p::before {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--nh-gradient);
  color: #ffffff;
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.nh-transformation-copy blockquote {
  margin: 28px 0 0;
  padding: 20px 23px;
  border-left: 4px solid var(--nh-purple);
  border-radius: 0 16px 16px 0;
  background: rgba(138, 3, 115, 0.07);
  color: var(--nh-ink);
  font-weight: 750;
}

.nh-transformation-visual,
.nh-trainer-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 9px;
  border-radius: 30px;
  box-shadow: 0 35px 85px rgba(24, 28, 55, 0.16);
}

.nh-transformation-visual {
  border: 1px solid #dedfe7;
  background: #ffffff;
}

.nh-transformation-visual img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
}

.nh-transformation-visual figcaption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 17px;
  background: rgba(11, 12, 17, 0.76);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.nh-trainer-grid {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.05fr);
}

.nh-trainer-visual {
  overflow: visible;
  max-width: 520px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48);
}

.nh-trainer-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.nh-trainer-glow {
  position: absolute;
  inset: 15% -10% -8% 20%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(8, 183, 238, 0.35), rgba(138, 3, 115, 0.42));
  filter: blur(55px);
}

.nh-trainer-copy .nh-clean-title {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.nh-trainer-role {
  margin: 18px 0 26px;
  color: #4bd2f7;
  font-weight: 850;
}

.nh-trainer-copy > p:not(.nh-eyebrow):not(.nh-trainer-role) {
  color: var(--nh-muted-dark);
}

.nh-credential-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.nh-credential-list > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.nh-credential-list span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--nh-gradient);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.nh-credential-list p {
  margin: 0;
  color: #e5e5ed;
  font-size: 0.86rem;
}

.nh-testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.nh-testimonial-card {
  min-height: 235px;
  padding: 25px;
  border: 1px solid rgba(138, 3, 115, 0.15);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f1eff6);
  box-shadow: 0 22px 55px rgba(24, 28, 54, 0.08);
}

.nh-testimonial-card blockquote {
  margin: 0;
  color: #292b35;
  line-height: 1.7;
}

.nh-testimonial-card footer {
  margin-top: 22px;
  color: var(--nh-purple);
  font-size: 0.8rem;
  font-weight: 850;
}

.nh-final-cta {
  padding-bottom: 115px;
}

.nh-final-card {
  position: relative;
  overflow: hidden;
  max-width: 1050px;
  margin: 0 auto;
  padding: 72px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(8, 183, 238, 0.19), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(219, 45, 138, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.48);
  text-align: center;
  backdrop-filter: blur(18px);
}

.nh-final-card .nh-eyebrow {
  color: #53d6fa;
}

.nh-final-card > p:not(.nh-eyebrow) {
  max-width: 760px;
  margin: 25px auto 0;
  color: var(--nh-muted-dark);
}

.nh-final-line {
  display: block;
  max-width: 780px;
  margin: 28px auto 0;
  color: #ffffff;
  font-size: 1.15rem;
}

.nh-final-card small {
  display: block;
  margin-top: 18px;
  color: #8f92a0;
}

.nh-pearl-cta {
  position: relative;
  display: inline-flex;
  min-width: min(100%, 330px);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 15px 25px;
  border: 0;
  border-radius: 999px;
  background: #080808;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  box-shadow:
    inset 0 0.3rem 0.9rem rgba(255, 255, 255, 0.3),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.5),
    0 1.6rem 2.3rem rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, filter 180ms ease;
}

.nh-pearl-cta::before {
  position: absolute;
  inset: 10% 6% 45%;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent);
  box-shadow: inset 0 10px 8px -10px rgba(255, 255, 255, 0.8);
  content: "";
}

.nh-pearl-cta:hover {
  filter: brightness(1.13);
  transform: translateY(-2px);
}

.nh-pearl-cta span {
  position: relative;
  z-index: 1;
  color: transparent;
  background: linear-gradient(105deg, #ffffff 15%, #c9c9cf 38%, #ffffff 52%, #d7d7dc 72%, #ffffff 88%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: nh-pearl-shimmer 2.7s linear infinite;
}

@keyframes nh-pearl-shimmer {
  to { background-position: -220% 0; }
}

.nh-mobile-sticky {
  position: fixed;
  z-index: 55;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  display: none;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  visibility: hidden;
  background: rgba(12, 12, 16, 0.88);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.44);
  opacity: 0;
  pointer-events: none;
  transform: translateY(25px);
  backdrop-filter: blur(16px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.nh-mobile-sticky.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.nh-mobile-sticky .nh-pearl-cta {
  width: 100%;
  min-height: 52px;
}

.nh-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.nh-reveal.is-visible {
  opacity: 1;
  transform: none;
}

body[data-page="home"] .site-footer {
  border-top-color: rgba(255, 255, 255, 0.09);
  background: #0a0a0d;
  color: #ffffff;
}

body[data-page="home"] .footer-brand p,
body[data-page="home"] .footer-label,
body[data-page="home"] .footer-bottom p,
body[data-page="home"] .footer-bottom a,
body[data-page="home"] .footer-social-link small {
  color: #9698a6;
}

body[data-page="home"] .footer-social-link {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
}

.footer-logo {
  display: inline-grid;
  width: 58px;
  height: 58px;
  overflow: hidden;
  place-items: center;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: #ffffff;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 11px;
}

.footer-social-link {
  width: 49px;
  height: 49px;
  min-width: 49px;
  flex: 0 0 49px;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
}

.footer-social-icon {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  border-radius: 50%;
  background: transparent;
}

.footer-social-icon svg {
  width: 22px;
  height: 22px;
}

body[data-page="home"] .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.09);
}

@media (max-width: 980px) {
  .nh-hero-grid,
  .nh-about-intro,
  .nh-transformation-grid,
  .nh-trainer-grid {
    grid-template-columns: 1fr;
  }

  .nh-hero-grid,
  .nh-transformation-grid,
  .nh-trainer-grid {
    gap: 55px;
  }

  .nh-hero-copy {
    max-width: 820px;
  }

  .nh-hero-visual,
  .nh-trainer-visual {
    width: min(100%, 580px);
  }

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

@media (max-width: 720px) {
  body[data-page="home"] {
    padding-bottom: 82px;
  }

  body[data-page="home"] .site-logo {
    width: 50px;
    height: 50px;
    padding: 4px;
  }

  .footer-logo {
    width: 50px;
    height: 50px;
    padding: 4px;
  }

  .nh-section {
    padding: 75px 0;
  }

  .nh-clean-title {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .nh-brush {
    font-size: 40px;
    line-height: 1.1;
  }

  .nh-hero {
    min-height: auto;
    padding-top: 88px;
  }

  .nh-hero-grid {
    gap: 48px;
  }

  .nh-hero-brush {
    font-size: 40px;
    line-height: 1.2;
  }

  .nh-floating-message {
    right: 17px;
    bottom: 22px;
    left: 17px;
    max-width: none;
  }

  .nh-problem-grid,
  .nh-programme-grid,
  .nh-scenario-grid {
    grid-template-columns: 1fr;
  }

  .nh-glass-card,
  .nh-learning-card {
    min-height: auto;
  }

  .nh-bridge {
    padding: 35px 0 60px;
  }

  .nh-bridge-frame {
    padding: 4px;
    border-radius: 16px;
  }

  .nh-bridge-frame img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
  }

  .nh-about-intro {
    gap: 35px;
  }

  .nh-thought-panel {
    padding: 27px 20px;
  }

  .nh-testimonial-stage {
    position: relative;
    height: 360px;
    max-width: 520px;
    margin: 0 auto;
  }

  .nh-testimonial-track {
    position: absolute;
    inset: 0;
    display: block;
  }

  .nh-testimonial-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 32px);
    min-height: 215px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 92%) scale(0.9);
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 600ms ease, filter 600ms ease;
  }

  .nh-testimonial-card.is-previous {
    opacity: 0.24;
    transform: translate(-50%, -112%) scale(0.9);
    filter: blur(1px);
  }

  .nh-testimonial-card.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    filter: none;
  }

  .nh-testimonial-card.is-next {
    opacity: 0.24;
    transform: translate(-50%, 18%) scale(0.9);
    filter: blur(1px);
  }

  .nh-final-card {
    padding: 48px 22px;
    border-radius: 26px;
  }

  .nh-mobile-sticky {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nexa-home-v2 *,
  .nexa-home-v2 *::before,
  .nexa-home-v2 *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .nh-reveal {
    opacity: 1;
    transform: none;
  }
}
/* NEXA_HOME_V2_END */

/* NEXA_APPLY_EVERGREEN_V1_START */
.nexa-apply-page {
  --na-blue: #00338d;
  --na-purple: #8a0373;
  --na-cyan: #00b9f2;
  --na-ink: #101426;
  --na-muted: #596174;
  color: var(--na-ink);
  background:
    radial-gradient(circle at 14% 16%, rgba(0, 185, 242, .13), transparent 28rem),
    radial-gradient(circle at 90% 22%, rgba(138, 3, 115, .12), transparent 30rem),
    linear-gradient(145deg, #f6f8ff 0%, #ffffff 52%, #f8f4ff 100%);
  font-family: Inter, Arial, sans-serif;
}

.na-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(58px, 8vw, 110px) 0 clamp(70px, 9vw, 120px);
}

.na-hero::before,
.na-hero::after {
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(34px);
  content: "";
  opacity: .28;
}

.na-hero::before {
  top: -170px;
  right: -90px;
  background: #00b9f2;
}

.na-hero::after {
  bottom: -210px;
  left: -110px;
  background: #d32c9f;
}

.na-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.na-eyebrow {
  margin: 0 0 16px;
  color: var(--na-blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.na-copy h1,
.na-success-card h1 {
  margin: 0;
  font-family: Knewave, Inter, sans-serif;
  font-size: clamp(2.65rem, 5.4vw, 5.3rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}

.na-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(96deg, var(--na-blue), var(--na-cyan) 46%, var(--na-purple));
  -webkit-background-clip: text;
  background-clip: text;
}

.na-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #232a3d;
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.65;
}

.na-supporting-copy {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--na-muted);
  font-size: .98rem;
  line-height: 1.75;
}

.na-benefits {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.na-benefits article {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 18px;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 12px 38px rgba(24, 36, 75, .07);
  backdrop-filter: blur(16px);
}

.na-benefits article > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--na-blue), var(--na-purple));
  font-size: .73rem;
  font-weight: 900;
}

.na-benefits strong,
.na-benefits small {
  display: block;
}

.na-benefits strong {
  font-size: .92rem;
}

.na-benefits small {
  margin-top: 3px;
  color: var(--na-muted);
  font-size: .8rem;
}

.na-form-card,
.na-success-card {
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 30px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 30px 90px rgba(31, 45, 91, .15);
  backdrop-filter: blur(24px);
}

.na-form-card {
  padding: clamp(24px, 4vw, 42px);
}

.na-form-heading h2 {
  margin: 0;
  color: var(--na-ink);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.na-form-heading > p:last-child {
  margin: 12px 0 0;
  color: var(--na-muted);
  font-size: .9rem;
  line-height: 1.65;
}

.na-alert {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid #fecaca;
  border-radius: 14px;
  color: #991b1b;
  background: #fff1f2;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.55;
}

.na-alert[data-type="success"] {
  border-color: #86efac;
  color: #166534;
  background: #f0fdf4;
}

.na-form {
  display: grid;
  grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
  gap: 18px;
  margin-top: 26px;
}

.na-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.na-field-full {
  grid-column: 1 / -1;
}

.na-field > span,
.na-consent > span {
  color: #252b3d;
  font-size: .82rem;
  font-weight: 800;
}

.na-field strong,
.na-consent strong {
  color: #c02676;
}

.na-field input,
.na-field select {
  width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  border: 1px solid #dce1ee;
  border-radius: 14px;
  outline: none;
  color: #171b2b;
  background: rgba(255, 255, 255, .92);
  font: inherit;
  font-size: .9rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.na-field input {
  padding: 0 15px;
}

.na-field select {
  padding: 0 42px 0 15px;
}

.na-field input:focus,
.na-field select:focus {
  border-color: rgba(0, 51, 141, .72);
  box-shadow: 0 0 0 4px rgba(0, 51, 141, .1);
}

.na-phone-grid {
  display: grid;
  grid-template-columns: minmax(155px, .58fr) minmax(0, 1.42fr);
  gap: 10px;
}

.na-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  background: rgba(242, 245, 252, .92);
}

.na-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--na-blue);
}

.na-consent span {
  line-height: 1.55;
}

.na-submit {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(100deg, #00338d 0%, #2439a2 42%, #8a0373 100%);
  box-shadow: 0 18px 40px rgba(36, 34, 128, .25);
  font: inherit;
  font-size: .93rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.na-submit:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(36, 34, 128, .32);
}

.na-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.na-submit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.na-submit svg {
  width: 20px;
  height: 20px;
}

.na-form-note {
  margin: -2px 0 0;
  color: #737b8d;
  font-size: .76rem;
  line-height: 1.55;
  text-align: center;
}

.na-success-page {
  min-height: calc(100vh - 90px);
}

.na-success-section {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 70px 0 90px;
}

.na-success-card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px);
  box-sizing: border-box;
  text-align: center;
}

.na-success-card h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.na-success-card > p:not(.na-eyebrow):not(.na-success-help) {
  margin: 18px auto 0;
  max-width: 590px;
  color: var(--na-muted);
  line-height: 1.72;
}

.na-success-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--na-blue), var(--na-cyan), var(--na-purple));
  box-shadow: 0 16px 38px rgba(0, 51, 141, .24);
}

.na-success-icon svg {
  width: 34px;
  height: 34px;
}

.na-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.na-secondary-link {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  box-sizing: border-box;
  border: 1px solid #d8deec;
  border-radius: 999px;
  color: var(--na-ink);
  background: rgba(255, 255, 255, .76);
  font-size: .92rem;
  font-weight: 900;
  text-decoration: none;
}

.na-success-help {
  margin: 28px 0 0;
  color: var(--na-muted);
  font-size: .84rem;
}

.na-success-help a {
  color: var(--na-blue);
  font-weight: 800;
}

@media (max-width: 980px) {
  .na-layout {
    grid-template-columns: 1fr;
  }

  .na-copy {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .na-hero {
    padding: 44px 0 72px;
  }

  .na-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .na-form-card,
  .na-success-card {
    border-radius: 24px;
  }

  .na-form {
    grid-template-columns: 1fr;
  }

  .na-field,
  .na-field-full {
    grid-column: 1;
  }

  .na-phone-grid {
    grid-template-columns: 1fr;
  }

  .na-success-actions {
    display: grid;
  }

  .na-success-actions > * {
    width: 100%;
  }
}
/* NEXA_APPLY_EVERGREEN_V1_END */

/* NEXA_APPLY_DARK_SEPARATE_REFINEMENT_V2_START */
body[data-page="apply"] .site-logo,
body[data-page="apply-success"] .site-logo {
  overflow: hidden;
  border: 1px solid rgba(0, 51, 141, .18);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 20, 38, .1);
}

body[data-page="apply"] .site-logo img,
body[data-page="apply-success"] .site-logo img {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: contain;
}

.nexa-apply-page {
  background: #f7f8fc;
}

.nexa-apply-page .na-hero {
  padding: clamp(74px, 9vw, 128px) 0 clamp(82px, 10vw, 138px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 185, 242, .22), transparent 30rem),
    radial-gradient(circle at 88% 22%, rgba(138, 3, 115, .32), transparent 32rem),
    linear-gradient(145deg, #080a12 0%, #111426 52%, #0c0814 100%);
}

.nexa-apply-page .na-hero::before {
  background: #00b9f2;
  opacity: .2;
}

.nexa-apply-page .na-hero::after {
  background: #d32c9f;
  opacity: .25;
}

.na-hero-inner {
  display: block;
}

.nexa-apply-page .na-copy {
  width: min(100%, 1080px);
}

.nexa-apply-page .na-copy h1,
.nexa-apply-page .na-success-card h1 {
  font-size: 65px;
}

.nexa-apply-page .na-copy h1 {
  max-width: 1050px;
  color: #fff;
}

.nexa-apply-page .na-copy h1 span {
  margin-top: 5px;
}

.nexa-apply-page .na-hero .na-eyebrow {
  color: #5fd9ff;
}

.nexa-apply-page .na-hero .na-lead {
  max-width: 800px;
  color: rgba(255, 255, 255, .92);
}

.nexa-apply-page .na-hero .na-supporting-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, .66);
}

.na-hero-jump {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
  padding: 12px 23px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .2);
  font-size: .9rem;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform .2s ease, background .2s ease;
}

.na-hero-jump:hover {
  color: #fff;
  background: rgba(255, 255, 255, .15);
  transform: translateY(-2px);
}

.na-hero-jump svg {
  width: 19px;
  height: 19px;
}

.nexa-apply-page .na-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin-top: 42px;
}

.nexa-apply-page .na-benefits article {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.nexa-apply-page .na-benefits strong {
  color: #fff;
}

.nexa-apply-page .na-benefits small {
  color: rgba(255, 255, 255, .58);
}

.na-form-section {
  position: relative;
  padding: clamp(70px, 9vw, 116px) 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(138, 3, 115, .08), transparent 25rem),
    radial-gradient(circle at 8% 86%, rgba(0, 185, 242, .09), transparent 27rem),
    #f7f8fc;
}

.na-form-shell {
  width: min(100%, 980px);
}

.nexa-apply-page .na-form-card {
  padding: clamp(28px, 5vw, 54px);
  border-color: rgba(20, 30, 65, .08);
  background: #fff;
  box-shadow: 0 28px 80px rgba(31, 45, 91, .12);
}

@media (max-width: 760px) {
  .nexa-apply-page .na-copy h1,
  .nexa-apply-page .na-success-card h1 {
    font-size: 40px;
  }

  .nexa-apply-page .na-benefits {
    grid-template-columns: 1fr;
  }

  .nexa-apply-page .na-hero {
    padding: 58px 0 76px;
  }

  .na-form-section {
    padding: 58px 0 72px;
  }
}
/* NEXA_APPLY_DARK_SEPARATE_REFINEMENT_V2_END */
