:root {
  --nds-ease-premium: cubic-bezier(.22, 1, .36, 1);
  --nds-ease-spring: cubic-bezier(.16, 1.35, .3, 1);
}

.nds-aimlp,
.nds-aimlp * {
  box-sizing: border-box;
}

.nds-aimlp {
  --nds-primary: #136B5D;
  --nds-secondary: #0C7467;
  --nds-primary-dark: #0A4B43;
  --nds-interactive: #39C8B1;
  --nds-gold: #D7B568;
  --nds-bg: #061916;
  --nds-bg-alt: #09211D;
  --nds-surface: #0D2924;
  --nds-surface-elevated: #12362F;
  --nds-heading: #FFFFFF;
  --nds-text: #F4F9F7;
  --nds-muted: #B5CBC5;
  --nds-border: #285349;
  --nds-button-bg: #136B5D;
  --nds-button-text: #FFFFFF;
  --nds-button-hover-bg: #0C7467;
  --nds-button-hover-text: #FFFFFF;
  --nds-button-radius: 16px;
  --nds-button-height: 58px;
  --nds-section-space: 112px;
  --nds-card-gap: 22px;
  --nds-radius: 28px;
  --nds-hover-lift: 8px;
  --nds-hover-scale: 1.015;
  --nds-image-hover-scale: 1.025;
  position: relative;
  isolation: isolate;
  overflow: clip;
  width: 100%;
  color: var(--nds-text);
  background:
    radial-gradient(circle at 10% 4%, rgba(57, 200, 177, .09), transparent 31rem),
    radial-gradient(circle at 93% 16%, rgba(19, 107, 93, .16), transparent 37rem),
    var(--nds-bg);
  font-family: "Almarai", "Tahoma", Arial, sans-serif;
  line-height: 1.9;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.nds-aimlp::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .17;
  background-image:
    linear-gradient(rgba(99, 221, 199, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 221, 199, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0, rgba(0,0,0,.65) 55%, transparent 100%);
}

.nds-aimlp img,
.nds-aimlp svg {
  display: block;
  max-width: 100%;
}

.nds-aimlp a {
  color: inherit;
  text-decoration: none;
}

.nds-aimlp button,
.nds-aimlp input,
.nds-aimlp textarea,
.nds-aimlp select {
  font: inherit;
}

.nds-aimlp h1,
.nds-aimlp h2,
.nds-aimlp h3,
.nds-aimlp h4,
.nds-aimlp p {
  margin-top: 0;
}

.nds-aimlp h1,
.nds-aimlp h2,
.nds-aimlp h3,
.nds-aimlp h4 {
  color: var(--nds-heading);
  line-height: 1.42;
  letter-spacing: -.025em;
}

.nds-scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  z-index: 9999;
  pointer-events: none;
  background: rgba(255,255,255,.04);
}

.nds-scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--nds-primary), var(--nds-interactive), var(--nds-gold));
  box-shadow: 0 0 18px rgba(57, 200, 177, .48);
  transition: width .08s linear;
}

.nds-section {
  --section-accent: var(--nds-secondary);
  --section-surface: var(--nds-surface);
  --section-border: var(--nds-border);
  --section-gap: 56px;
  --media-width: 46%;
  --form-width: 42%;
  position: relative;
  padding: var(--nds-section-space) 24px;
  background-color: var(--nds-bg);
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.015), transparent 42%),
    radial-gradient(circle at 80% 25%, color-mix(in srgb, var(--section-accent) 14%, transparent), transparent 24rem);
}

.nds-section:nth-of-type(even) {
  background-color: var(--nds-bg-alt);
}

.nds-section::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  transform: translateX(50%);
  background: linear-gradient(90deg, transparent, rgba(99, 221, 199, .18), transparent);
  pointer-events: none;
}

.nds-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
}

.nds-container--narrow {
  max-width: 920px;
}

.nds-section-header {
  display: grid;
  gap: 16px;
  margin-bottom: 44px;
}

.nds-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: fit-content;
  margin-bottom: 0;
  color: #63DDC7;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.nds-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--section-accent), var(--nds-interactive));
  box-shadow: 0 0 12px rgba(57, 200, 177, .38);
}

.nds-section__title {
  width: 100%;
  max-width: 900px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.nds-richtext,
.nds-section__description,
.nds-card__text,
.nds-cta-note,
.nds-final-note {
  color: var(--nds-muted);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
}

.nds-richtext {
  max-width: 920px;
}

.nds-richtext p {
  margin-bottom: 1.08em;
}

.nds-richtext p:last-child {
  margin-bottom: 0;
}

.nds-richtext strong {
  color: var(--nds-text);
  font-weight: 800;
}

.nds-transition-line {
  position: relative;
  max-width: 900px;
  margin: 42px 0 0;
  padding: 22px 24px;
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 800;
  border: 1px solid color-mix(in srgb, var(--section-accent) 48%, transparent);
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--section-accent) 18%, transparent), rgba(255,255,255,.02));
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}

.nds-transition-line::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 3px;
  height: 60%;
  border-radius: 99px;
  background: var(--nds-interactive);
  box-shadow: 0 0 16px rgba(57,200,177,.55);
}

/* Hero */
.nds-section--hero {
  min-height: min(960px, 100svh);
  display: grid;
  place-items: center;
  padding-top: clamp(78px, 8vw, 130px);
  padding-bottom: clamp(70px, 7vw, 112px);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(6,25,22,.98) 0%, rgba(6,25,22,.89) 54%, rgba(12,116,103,.24) 100%),
    radial-gradient(circle at 12% 40%, rgba(57,200,177,.18), transparent 28rem),
    #061916;
}

.nds-section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(90deg, transparent 0 49.5%, rgba(99,221,199,.055) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(transparent 0 49.5%, rgba(99,221,199,.055) 49.5% 50.5%, transparent 50.5%);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, #000, transparent 74%);
}

.nds-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, calc(100% - var(--media-width) - 58px)) minmax(280px, var(--media-width));
  grid-template-areas:
    "copy media"
    "actions media";
  align-items: center;
  gap: 34px 58px;
}


.nds-section--hero.nds-media-right .nds-hero-layout {
  direction: ltr;
}

.nds-section--hero.nds-media-right .nds-hero-copy,
.nds-section--hero.nds-media-right .nds-hero-actions,
.nds-section--hero.nds-media-right .nds-hero-media {
  direction: rtl;
}

.nds-section--hero.nds-media-full .nds-hero-layout {
  grid-template-columns: 1fr;
  grid-template-areas: "copy" "media" "actions";
}

.nds-hero-copy {
  grid-area: copy;
  min-width: 0;
}

.nds-hero-media {
  grid-area: media;
  position: relative;
}

.nds-hero-actions {
  grid-area: actions;
  display: grid;
  justify-items: start;
  gap: 15px;
  align-self: start;
}

.nds-hero-title {
  max-width: 780px;
  margin: 24px 0 20px;
  color: #fff;
  font-size: clamp(2.45rem, 5.3vw, 5.15rem);
  font-weight: 900;
  line-height: 1.29;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0,0,0,.45);
}

.nds-hero-program {
  width: fit-content;
  max-width: 760px;
  margin-bottom: 22px;
  padding: 11px 15px;
  color: #fff;
  font-size: clamp(1.02rem, 1.65vw, 1.3rem);
  font-weight: 800;
  line-height: 1.65;
  border: 1px solid rgba(99,221,199,.28);
  border-radius: 13px;
  background: rgba(19,107,93,.18);
  backdrop-filter: blur(8px);
}

.nds-hero-description {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
}

.nds-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #F4E5B8;
  font-size: .92rem;
  font-weight: 700;
}

.nds-scarcity span {
  color: var(--nds-gold);
  font-size: .68rem;
  animation: ndsPulseDot 2s infinite;
}

.nds-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.nds-hero-orb--one {
  width: 420px;
  height: 420px;
  left: -160px;
  top: 8%;
  border: 1px solid rgba(99,221,199,.12);
  box-shadow: inset 0 0 100px rgba(57,200,177,.035), 0 0 80px rgba(19,107,93,.07);
}

.nds-hero-orb--two {
  width: 210px;
  height: 210px;
  right: 4%;
  bottom: -80px;
  background: radial-gradient(circle, rgba(57,200,177,.12), transparent 68%);
}

.nds-ambient-motion .nds-hero-orb--one { animation: ndsFloat 12s ease-in-out infinite; }
.nds-ambient-motion .nds-hero-orb--two { animation: ndsFloat 9s ease-in-out -3s infinite reverse; }

/* Buttons */
.nds-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: var(--nds-button-height);
  padding: 15px 24px;
  overflow: hidden;
  color: var(--nds-button-text);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.4;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--nds-button-radius);
  background: linear-gradient(135deg, var(--nds-button-bg), color-mix(in srgb, var(--nds-button-bg) 72%, var(--nds-interactive)));
  box-shadow: 0 14px 34px rgba(19,107,93,.32), inset 0 1px rgba(255,255,255,.16);
  cursor: pointer;
  transition: transform .35s var(--nds-ease-premium), box-shadow .35s ease, color .25s ease, background .35s ease, border-color .25s ease;
}

.nds-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -120%;
  right: -35%;
  width: 28%;
  height: 320%;
  transform: rotate(22deg);
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transition: right .75s var(--nds-ease-premium), opacity .25s ease;
}

.nds-button:hover,
.nds-button:focus-visible {
  color: var(--nds-button-hover-text);
  background: linear-gradient(135deg, var(--nds-button-hover-bg), color-mix(in srgb, var(--nds-button-hover-bg) 68%, var(--nds-interactive)));
  border-color: rgba(99,221,199,.36);
  box-shadow: 0 20px 46px rgba(12,116,103,.4), 0 0 0 5px rgba(57,200,177,.08), inset 0 1px rgba(255,255,255,.18);
  transform: translateY(-3px);
}

.nds-button:hover::before,
.nds-button:focus-visible::before {
  right: 115%;
  opacity: .85;
}

.nds-button:active {
  transform: translateY(0) scale(.985);
}

.nds-button:focus-visible {
  outline: 3px solid rgba(99,221,199,.38);
  outline-offset: 3px;
}

.nds-button__arrow {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  transition: transform .35s var(--nds-ease-spring), background .25s ease;
}

.nds-button:hover .nds-button__arrow { transform: translateX(-5px); background: rgba(255,255,255,.2); }

.nds-cta-note {
  max-width: 650px;
  margin-bottom: 0;
  font-size: .88rem;
}

/* Images */
.nds-media-frame {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(99,221,199,.18);
  border-radius: var(--nds-radius);
  background: linear-gradient(145deg, rgba(19,107,93,.22), rgba(255,255,255,.02));
  box-shadow: 0 28px 78px rgba(0,15,13,.42), inset 0 1px rgba(255,255,255,.08);
  transform-style: preserve-3d;
  transition: transform .6s var(--nds-ease-premium), border-color .35s ease, box-shadow .45s ease;
}

.nds-media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,.08), transparent 27%, transparent 72%, rgba(57,200,177,.05));
}

.nds-media-frame__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: var(--image-fit, cover);
  object-position: var(--image-position, center center);
  transition: transform .8s var(--nds-ease-premium), filter .45s ease;
}

.nds-hover-enabled .nds-media-frame:hover {
  border-color: rgba(99,221,199,.4);
  box-shadow: 0 34px 90px rgba(0,15,13,.5), 0 0 0 1px rgba(57,200,177,.14), inset 0 1px rgba(255,255,255,.08);
}

.nds-hover-enabled .nds-media-frame:hover .nds-media-frame__image {
  transform: scale(var(--nds-image-hover-scale));
  filter: saturate(1.04) contrast(1.02);
}

.nds-media-frame--hero {
  min-height: clamp(390px, 46vw, 620px);
  border-radius: 34px;
}

.nds-media-frame--hero::after {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
  pointer-events: none;
}

.nds-media-frame--wide {
  min-height: auto;
  aspect-ratio: 2 / 1;
}

.nds-media-frame--wide .nds-media-frame__image { min-height: 0; }

.nds-media-with-badge { position: relative; }
.nds-media-badge {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  display: inline-flex;
  padding: 9px 14px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(6,25,22,.76);
  backdrop-filter: blur(12px);
}

/* Split layouts */
.nds-responsive-shell {
  display: grid;
  grid-template-columns: minmax(0, calc(100% - var(--media-width) - var(--section-gap))) minmax(280px, var(--media-width));
  grid-template-areas:
    "header media"
    "body media";
  align-items: center;
  gap: 28px var(--section-gap);
}

.nds-responsive-shell > .nds-section-header { grid-area: header; margin-bottom: 0; }
.nds-responsive-shell > .nds-section__body { grid-area: body; min-width: 0; }
.nds-responsive-shell > .nds-section__media { grid-area: media; min-width: 0; }

.nds-media-left .nds-responsive-shell {
  grid-template-columns: minmax(280px, var(--media-width)) minmax(0, calc(100% - var(--media-width) - var(--section-gap)));
  grid-template-areas:
    "media header"
    "media body";
}

.nds-media-full .nds-responsive-shell {
  grid-template-columns: 1fr;
  grid-template-areas: "header" "media" "body";
}

/* Cards */
.nds-card-grid {
  display: grid;
  grid-template-columns: repeat(var(--card-columns, 4), minmax(0, 1fr));
  gap: var(--nds-card-gap);
  margin-top: 42px;
}

.nds-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--section-border);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 42%),
    var(--section-surface);
  box-shadow: inset 0 1px rgba(255,255,255,.045), 0 18px 50px rgba(0,17,14,.14);
  transform: perspective(1000px) translate3d(0,0,0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .48s var(--nds-ease-premium), border-color .35s ease, box-shadow .45s ease, background .35s ease;
}

.nds-card::after {
  content: "";
  position: absolute;
  inset: auto -50% -70% auto;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--section-accent) 22%, transparent), transparent 67%);
  transition: transform .55s var(--nds-ease-premium), opacity .35s ease;
}

.nds-hover-enabled .nds-hover-lift .nds-card:hover,
.nds-hover-enabled .nds-hover-premium .nds-card:hover {
  transform: perspective(1000px) translateY(calc(var(--nds-hover-lift) * -1)) scale(var(--nds-hover-scale)) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.nds-hover-enabled .nds-hover-glow .nds-card:hover,
.nds-hover-enabled .nds-hover-premium .nds-card:hover,
.nds-hover-enabled .nds-hover-tilt .nds-card:hover {
  border-color: rgba(99,221,199,.42);
  box-shadow: 0 28px 70px rgba(0,20,17,.38), 0 0 0 1px rgba(57,200,177,.12), inset 0 1px rgba(255,255,255,.07);
  background: linear-gradient(145deg, rgba(57,200,177,.055), transparent 46%), var(--section-surface);
}

.nds-hover-enabled .nds-card:hover::after { transform: translate(-35px, -35px) scale(1.35); }

.nds-pointer-glow {
  position: absolute;
  z-index: 0;
  top: var(--pointer-y, 50%);
  left: var(--pointer-x, 50%);
  width: 230px;
  height: 230px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(57,200,177,.15), transparent 67%);
  transition: opacity .3s ease;
}

.nds-card:hover > .nds-pointer-glow,
.nds-media-frame:hover > .nds-pointer-glow,
.nds-form-card:hover > .nds-pointer-glow { opacity: 1; }

.nds-icon {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: var(--nds-primary);
  box-shadow: 0 12px 26px rgba(19,107,93,.28), inset 0 1px rgba(255,255,255,.15);
  transition: transform .45s var(--nds-ease-spring), background .3s ease, box-shadow .35s ease;
}

.nds-icon svg,
.nds-icon i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  fill: currentColor;
}

.nds-icon--small {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 12px;
}

.nds-icon--small svg,
.nds-icon--small i { width: 18px; height: 18px; font-size: 18px; }

.nds-card:hover .nds-icon,
.nds-step:hover .nds-icon {
  transform: translateY(-4px) rotate(-3deg) scale(1.05);
  background: var(--nds-secondary);
  box-shadow: 0 16px 30px rgba(12,116,103,.38), 0 0 0 5px rgba(57,200,177,.06);
}

.nds-card__badge {
  display: inline-flex;
  margin: 0 8px 13px 0;
  padding: 5px 9px;
  color: #F5E5B8;
  font-size: .73rem;
  font-weight: 800;
  border: 1px solid rgba(215,181,104,.28);
  border-radius: 999px;
  background: rgba(215,181,104,.08);
}

.nds-card__title {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  font-weight: 900;
}

.nds-card__text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: .96rem;
  line-height: 1.9;
}

.nds-card__text p { margin-bottom: .8em; }
.nds-card__text p:last-child { margin-bottom: 0; }

.nds-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.nds-card--trust {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 16px;
  min-height: 126px;
  padding: 22px;
}

.nds-card--trust .nds-icon { grid-row: 1 / 3; margin: 0; }
.nds-card--trust .nds-card__title { margin: 0; }
.nds-card--trust .nds-card__text { font-size: .86rem; }

.nds-bridge-text {
  max-width: 820px;
  margin: 38px auto 0;
  text-align: center;
}

.nds-mechanism-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nds-card--mechanism { min-height: 305px; padding: 32px; }
.nds-card--mechanism .nds-icon { width: 66px; height: 66px; border-radius: 20px; }

.nds-curriculum-grid { align-items: stretch; }
.nds-card--curriculum { min-height: 360px; }
.nds-card--curriculum:nth-child(1),
.nds-card--curriculum:nth-child(4),
.nds-card--curriculum:nth-child(7) { background: linear-gradient(145deg, rgba(57,200,177,.06), transparent 42%), var(--section-surface); }

.nds-results-grid { --card-columns: 2; margin-top: 28px; }
.nds-card--result { padding: 22px; min-height: 175px; }
.nds-card--result .nds-icon { width: 46px; height: 46px; margin-bottom: 13px; }

.nds-audience-grid { --card-columns: 2; margin-top: 24px; }
.nds-card--audience { padding: 22px; }
.nds-card--audience .nds-icon { width: 44px; height: 44px; margin-bottom: 14px; }

.nds-early-grid { --card-columns: 2; }
.nds-card--early { text-align: center; }
.nds-card--early .nds-icon { margin-inline: auto; }

/* Lists */
.nds-check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.nds-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--nds-text);
  font-weight: 700;
}

.nds-check-list li > span:first-child {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 5px;
  color: #fff;
  font-size: .72rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nds-primary), var(--nds-secondary));
  box-shadow: 0 8px 18px rgba(19,107,93,.28);
}

.nds-check-list--questions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nds-check-list--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.nds-check-list--compact li {
  padding: 10px 12px;
  border: 1px solid rgba(99,221,199,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}

.nds-check-list--negative li > span:first-child {
  background: linear-gradient(135deg, #795b30, var(--nds-gold));
}

/* Transformation */
.nds-transformation-media { margin-top: 42px; }
.nds-before-after-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 13px;
  color: var(--nds-muted);
  font-size: .85rem;
  font-weight: 800;
  text-align: center;
}

.nds-before-after-labels span:last-child { color: #91E5D5; }

.nds-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.nds-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 15px 18px;
  border: 1px solid rgba(99,221,199,.14);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
}

.nds-comparison__before { color: #93ABA5; }
.nds-comparison__after { color: #fff; }
.nds-comparison__arrow { color: var(--nds-interactive); font-size: 1.35rem; }

/* Summary and stats */
.nds-summary-panel {
  max-width: none;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(99,221,199,.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(19,107,93,.16), rgba(255,255,255,.02));
}

.nds-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-bottom: 27px;
  padding: 14px 18px;
  border: 1px solid rgba(215,181,104,.26);
  border-radius: 18px;
  background: rgba(215,181,104,.07);
}

.nds-stat strong {
  color: var(--nds-gold);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.nds-stat span {
  max-width: 180px;
  color: #F3E8C8;
  font-size: .87rem;
  font-weight: 800;
  line-height: 1.6;
}

.nds-subtitle {
  margin: 44px 0 16px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
}

/* Steps */
.nds-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.nds-steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 52px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nds-primary), var(--nds-interactive), var(--nds-primary), transparent);
  opacity: .38;
}

.nds-step {
  position: relative;
  z-index: 1;
  min-height: 285px;
  padding: 25px;
  border: 1px solid var(--section-border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 50%), var(--section-surface);
  transition: transform .45s var(--nds-ease-premium), border-color .3s ease, box-shadow .4s ease;
}

.nds-step:hover {
  transform: translateY(calc(var(--nds-hover-lift) * -1));
  border-color: rgba(99,221,199,.4);
  box-shadow: 0 28px 70px rgba(0,20,17,.35);
}

.nds-step__number {
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(255,255,255,.16);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.nds-step .nds-icon { margin-bottom: 30px; }
.nds-steps--qualification { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nds-steps--qualification::before { display: none; }
.nds-steps--qualification .nds-step { min-height: 230px; }

/* Accordion */
.nds-accordion {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.nds-accordion__item {
  overflow: hidden;
  border: 1px solid var(--section-border);
  border-radius: 20px;
  background: var(--section-surface);
  transition: border-color .3s ease, box-shadow .35s ease, background .3s ease;
}

.nds-accordion__item.is-open {
  border-color: rgba(99,221,199,.42);
  background: linear-gradient(145deg, rgba(57,200,177,.045), transparent 48%), var(--section-surface);
  box-shadow: 0 20px 52px rgba(0,20,17,.28), inset 0 1px rgba(255,255,255,.04);
}

.nds-accordion__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 78px;
  padding: 17px 21px;
  color: #fff;
  border: 0;
  background: transparent;
  font-weight: 900;
  text-align: right;
  cursor: pointer;
}

.nds-accordion__question:focus-visible {
  outline: 3px solid rgba(99,221,199,.34);
  outline-offset: -3px;
}

.nds-accordion__label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nds-accordion__plus {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(99,221,199,.22);
  border-radius: 50%;
  background: rgba(19,107,93,.18);
  transition: transform .4s var(--nds-ease-premium), background .3s ease;
}

.nds-accordion__plus::before,
.nds-accordion__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.nds-accordion__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.nds-accordion__item.is-open .nds-accordion__plus { transform: rotate(45deg); background: var(--nds-secondary); }

.nds-accordion__panel {
  height: 0;
  overflow: hidden;
  transition: height .45s var(--nds-ease-premium);
}

.nds-accordion__answer {
  padding: 0 22px 23px;
  color: var(--nds-muted);
}

.nds-accordion__answer p { margin-bottom: .9em; }
.nds-accordion__answer p:last-child { margin-bottom: 0; }

/* Early bird */
.nds-deadline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  margin: 28px auto 0;
  padding: 12px 17px;
  color: #F4E7C4;
  border: 1px solid rgba(215,181,104,.28);
  border-radius: 14px;
  background: rgba(215,181,104,.08);
}
.nds-deadline strong { color: #fff; }
.nds-centered-action { display: flex; justify-content: center; margin-top: 32px; }

/* Registration */
.nds-section--registration {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 50%, rgba(57,200,177,.15), transparent 30rem),
    linear-gradient(135deg, #061916, #09251F);
}

.nds-registration-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .09;
  background-position: center;
  background-size: cover;
  filter: saturate(.75) contrast(1.1);
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000 100%);
}

.nds-registration-layout {
  display: grid;
  grid-template-columns: minmax(0, calc(100% - var(--form-width) - 64px)) minmax(340px, var(--form-width));
  align-items: start;
  gap: 64px;
}

.nds-registration-copy .nds-section-header { margin-bottom: 28px; }
.nds-final-note {
  margin-top: 30px;
  padding-top: 22px;
  color: #fff;
  font-weight: 800;
  border-top: 1px solid rgba(99,221,199,.18);
}

.nds-form-card {
  position: relative;
  isolation: isolate;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(99,221,199,.26);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)), rgba(9,33,29,.9);
  box-shadow: 0 34px 90px rgba(0,15,13,.5), inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(15px);
}

.nds-form-card > *:not(.nds-pointer-glow) { position: relative; z-index: 2; }
.nds-form-card > h3 { margin-bottom: 8px; color: #fff; font-size: 1.65rem; font-weight: 900; }
.nds-form-card > p { margin-bottom: 24px; color: var(--nds-muted); }

.nds-form { display: grid; gap: 17px; }
.nds-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nds-field { display: grid; gap: 8px; min-width: 0; }
.nds-field label { color: #fff; font-size: .86rem; font-weight: 800; }
.nds-field__control { position: relative; }
.nds-field__icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 14px;
  color: var(--nds-interactive);
  font-size: .72rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.nds-field input,
.nds-field select,
.nds-field textarea {
  width: 100%;
  color: #fff;
  border: 1px solid rgba(99,221,199,.18);
  border-radius: 14px;
  background: rgba(2,17,14,.62);
  outline: 0;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.nds-field input,
.nds-field select { min-height: 53px; padding: 11px 40px 11px 13px; }
.nds-field textarea { min-height: 115px; padding: 13px 14px; resize: vertical; }
.nds-field select { appearance: none; }
.nds-field option { color: #0b201c; background: #fff; }
.nds-field input::placeholder,
.nds-field textarea::placeholder { color: #829C96; }

.nds-field input:focus,
.nds-field select:focus,
.nds-field textarea:focus {
  border-color: var(--nds-interactive);
  background: rgba(6,31,26,.78);
  box-shadow: 0 0 0 4px rgba(57,200,177,.11), 0 10px 26px rgba(0,18,15,.2);
}

.nds-field.is-invalid input,
.nds-field.is-invalid select,
.nds-field.is-invalid textarea { border-color: #E88D79; box-shadow: 0 0 0 4px rgba(232,141,121,.1); }

.nds-button--submit { width: 100%; margin-top: 4px; border: 0; }
.nds-button--submit.is-loading { pointer-events: none; opacity: .78; }
.nds-button__spinner {
  display: none;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ndsSpin .8s linear infinite;
}
.nds-button--submit.is-loading .nds-button__spinner { display: block; }
.nds-button--submit.is-loading .nds-button__arrow { display: none; }

.nds-form__privacy { margin: 0; color: #8DA7A0; font-size: .76rem; line-height: 1.7; text-align: center; }
.nds-form__message { display: none; padding: 12px 14px; border-radius: 12px; font-size: .85rem; font-weight: 700; }
.nds-form__message.is-success { display: block; color: #D6FFF6; border: 1px solid rgba(57,200,177,.28); background: rgba(57,200,177,.09); }
.nds-form__message.is-error { display: block; color: #FFE6DE; border: 1px solid rgba(232,141,121,.28); background: rgba(232,141,121,.08); }
.nds-form__honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.nds-mobile-sticky-cta { display: none; }

/* Motion */
.js .nds-aimlp[data-reveal="true"] [data-motion-item] {
  opacity: 0;
  transform: translate3d(0, var(--motion-distance, 28px), 0);
  filter: blur(0);
  transition:
    opacity var(--motion-duration, 720ms) var(--motion-ease, var(--nds-ease-premium)),
    transform var(--motion-duration, 720ms) var(--motion-ease, var(--nds-ease-premium)),
    filter var(--motion-duration, 720ms) var(--motion-ease, var(--nds-ease-premium));
  transition-delay: calc(var(--motion-delay, 0ms) + var(--motion-order, 0) * var(--motion-stagger, 90ms));
  will-change: opacity, transform;
}

.js .nds-aimlp[data-reveal="true"] [data-motion-section][data-animation="fade"] [data-motion-item] { transform: none; }
.js .nds-aimlp[data-reveal="true"] [data-motion-section][data-animation="fade-down"] [data-motion-item] { transform: translate3d(0, calc(var(--motion-distance, 28px) * -1), 0); }
.js .nds-aimlp[data-reveal="true"] [data-motion-section][data-animation="slide-right"] [data-motion-item] { transform: translate3d(var(--motion-distance, 28px), 0, 0); }
.js .nds-aimlp[data-reveal="true"] [data-motion-section][data-animation="slide-left"] [data-motion-item] { transform: translate3d(calc(var(--motion-distance, 28px) * -1), 0, 0); }
.js .nds-aimlp[data-reveal="true"] [data-motion-section][data-animation="scale-up"] [data-motion-item] { transform: scale(.94); }
.js .nds-aimlp[data-reveal="true"] [data-motion-section][data-animation="blur-up"] [data-motion-item] { transform: translate3d(0, var(--motion-distance, 28px), 0) scale(.985); filter: blur(10px); }
.js .nds-aimlp[data-reveal="true"] [data-motion-section][data-animation="none"] [data-motion-item] { opacity: 1; transform: none; filter: none; transition: none; }

.js .nds-aimlp[data-reveal="true"] [data-motion-section].is-visible [data-motion-item] {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}

/* Visibility */
@media (min-width: 1025px) { .nds-hide-desktop { display: none !important; } }
@media (min-width: 768px) and (max-width: 1024px) { .nds-hide-tablet { display: none !important; } }
@media (max-width: 767px) { .nds-hide-mobile { display: none !important; } }

/* Tablet */
@media (max-width: 1100px) {
  .nds-section { padding-inline: 28px; }
  .nds-hero-layout { grid-template-columns: minmax(0, calc(100% - var(--media-width) - 38px)) minmax(280px, var(--media-width)); gap: 30px 38px; }
  .nds-hero-title { font-size: clamp(2.2rem, 5.4vw, 4.2rem); }
  .nds-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nds-curriculum-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nds-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nds-steps::before { display: none; }
  .nds-responsive-shell,
  .nds-media-left .nds-responsive-shell {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 43%);
    grid-template-areas: "header media" "body media";
    gap: 26px 36px;
  }
  .nds-registration-layout { grid-template-columns: minmax(0, calc(100% - var(--form-width) - 38px)) minmax(340px, var(--form-width)); gap: 38px; }
}

/* Mobile */
@media (max-width: 767px) {
  .nds-aimlp { line-height: 1.85; }
  .nds-section { padding: 76px 18px; }
  .nds-section::after { width: calc(100% - 36px); }
  .nds-section-header { gap: 12px; margin-bottom: 28px; }
  .nds-section__title { font-size: clamp(1.75rem, 8.1vw, 2.75rem); line-height: 1.45; }
  .nds-eyebrow { font-size: .76rem; line-height: 1.7; }
  .nds-eyebrow::before { width: 26px; }
  .nds-richtext,
  .nds-section__description,
  .nds-card__text { font-size: .96rem; }
  .nds-transition-line { margin-top: 30px; padding: 18px; font-size: 1rem; }

  .nds-section--hero { min-height: auto; padding-top: 72px; padding-bottom: 72px; }
  .nds-hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "media" "actions";
    gap: 28px;
  }
  .nds-hero-title { margin: 18px 0 16px; font-size: clamp(2rem, 10.6vw, 3.15rem); line-height: 1.38; }
  .nds-hero-program { font-size: .94rem; }
  .nds-hero-actions { width: 100%; }
  .nds-hero-actions .nds-button { width: 100%; }
  .nds-media-frame--hero { min-height: 290px; border-radius: 24px; }
  .nds-hero-orb--one { width: 280px; height: 280px; left: -170px; }

  .nds-responsive-shell,
  .nds-media-left .nds-responsive-shell,
  .nds-media-right .nds-responsive-shell,
  .nds-media-full .nds-responsive-shell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
  }
  .nds-responsive-shell > .nds-section-header { order: 1; width: 100%; }
  .nds-responsive-shell > .nds-section__body { order: 3; width: 100%; }
  .nds-responsive-shell > .nds-section__media { order: 2; width: 100%; }
  .nds-mobile-media-after-content .nds-responsive-shell > .nds-section__media { order: 4; }
  .nds-mobile-media-before-content .nds-responsive-shell > .nds-section__media { order: 0; }
  .nds-mobile-media-before-content .nds-responsive-shell > .nds-section-header { order: 1; }

  .nds-media-frame { min-height: 275px; border-radius: 22px; }
  .nds-media-frame--wide { aspect-ratio: 1.45 / 1; }
  .nds-media-badge { top: 12px; right: 12px; }

  .nds-card-grid,
  .nds-trust-grid,
  .nds-mechanism-grid,
  .nds-curriculum-grid,
  .nds-results-grid,
  .nds-audience-grid,
  .nds-early-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 28px; }
  .nds-card { padding: 22px; }
  .nds-card--trust { grid-template-columns: auto 1fr; min-height: 112px; }
  .nds-card--mechanism,
  .nds-card--curriculum { min-height: auto; }

  .nds-check-list--questions,
  .nds-check-list--compact { grid-template-columns: 1fr; }
  .nds-comparison-grid { grid-template-columns: 1fr; }
  .nds-comparison { grid-template-columns: 1fr auto 1fr; padding: 14px; font-size: .87rem; }

  .nds-steps,
  .nds-steps--qualification { grid-template-columns: 1fr; gap: 14px; }
  .nds-step,
  .nds-steps--qualification .nds-step { min-height: auto; padding: 22px; }
  .nds-step .nds-icon { margin-bottom: 20px; }

  .nds-accordion { margin-top: 28px; }
  .nds-accordion__question { min-height: 72px; padding: 15px 16px; font-size: .92rem; }
  .nds-accordion__label { gap: 10px; }
  .nds-accordion__answer { padding: 0 17px 19px; font-size: .9rem; }

  .nds-registration-layout { grid-template-columns: 1fr; gap: 34px; }
  .nds-form-card { padding: 22px 18px; border-radius: 22px; }
  .nds-form__row { grid-template-columns: 1fr; }

  .nds-has-mobile-sticky-cta { padding-bottom: 78px; }
  .nds-mobile-sticky-cta {
    position: fixed;
    z-index: 9997;
    right: 14px;
    bottom: max(13px, env(safe-area-inset-bottom));
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 55px;
    padding: 12px 18px;
    color: #fff;
    font-size: .93rem;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    background: linear-gradient(135deg, var(--nds-primary), var(--nds-secondary));
    box-shadow: 0 18px 42px rgba(0,18,15,.48), inset 0 1px rgba(255,255,255,.15);
    transform: translateY(90px);
    opacity: 0;
    transition: transform .45s var(--nds-ease-premium), opacity .35s ease;
  }
  .nds-mobile-sticky-cta.is-visible { transform: translateY(0); opacity: 1; }

  .nds-hover-enabled .nds-card:hover,
  .nds-hover-enabled .nds-media-frame:hover,
  .nds-hover-enabled .nds-step:hover { transform: none; }
}

@media (max-width: 420px) {
  .nds-section { padding-inline: 15px; }
  .nds-hero-title { font-size: 2.05rem; }
  .nds-button { width: 100%; padding-inline: 16px; font-size: .88rem; }
  .nds-card--trust { grid-template-columns: 1fr; text-align: center; }
  .nds-card--trust .nds-icon { grid-row: auto; margin-inline: auto; }
  .nds-comparison { grid-template-columns: 1fr; text-align: center; }
  .nds-comparison__arrow { transform: rotate(-90deg); }
}

@media (hover: none), (pointer: coarse) {
  .nds-pointer-glow { display: none !important; }
  [data-tilt-card] { --tilt-x: 0deg !important; --tilt-y: 0deg !important; }
}

@media (prefers-reduced-motion: reduce) {
  .nds-aimlp[data-reduced-motion="true"] *,
  .nds-aimlp[data-reduced-motion="true"] *::before,
  .nds-aimlp[data-reduced-motion="true"] *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .nds-aimlp[data-reduced-motion="true"] [data-motion-item] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@keyframes ndsFloat {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,-18px,0) rotate(4deg); }
}

@keyframes ndsPulseDot {
  0%, 100% { opacity: .55; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes ndsSpin { to { transform: rotate(360deg); } }
