:root {
  --bg: #08050f;
  --bg-soft: #100a1c;
  --surface: #131020;
  --surface-2: #191326;
  --text: #f7f5fb;
  --muted: #aaa3b9;
  --purple: #8b2cff;
  --purple-bright: #b955ff;
  --pink: #ff3f83;
  --yellow: #ffd600;
  --line: rgba(255, 255, 255, 0.1);
  --max-width: 1180px;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #090510;
  background: var(--yellow);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 70;
  color: #efeaff;
  background: linear-gradient(90deg, #32106b, #6c1cc6 50%, #32106b);
  font-size: 0.82rem;
}

.announcement__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ded4ee;
}

.announcement__meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(8, 5, 15, 0.74);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s, background 0.25s;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 5, 15, 0.94);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand__mark {
  color: var(--yellow);
  font-size: 1.4rem;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #cec8d7;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav__menu > a:not(.button) {
  transition: color 0.2s;
}

.nav__menu > a:not(.button):hover {
  color: #fff;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav__toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.2s, opacity 0.2s;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.button svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  border-color: rgba(180, 83, 255, 0.45);
  background: rgba(139, 44, 255, 0.18);
}

.button--primary {
  border-color: #e8c300;
  color: #120d00;
  background: linear-gradient(135deg, #ffe24a, var(--yellow));
  box-shadow: 0 14px 40px rgba(255, 214, 0, 0.18), inset 0 1px rgba(255, 255, 255, 0.55);
}

.button--primary:hover {
  box-shadow: 0 18px 45px rgba(255, 214, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.55);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eeeaf3;
  font-weight: 700;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 64px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 35%, rgba(99, 24, 185, 0.22), transparent 30%),
    radial-gradient(circle at 10% 0%, rgba(92, 18, 169, 0.2), transparent 32%),
    linear-gradient(180deg, #0b0714 0%, #08050f 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 200px;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, var(--bg));
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.45;
}

.hero__glow--one {
  top: 130px;
  right: 7%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(174, 80, 255, 0.42);
  box-shadow: 0 0 100px rgba(126, 38, 255, 0.2), inset 0 0 100px rgba(126, 38, 255, 0.15);
}

.hero__glow--two {
  top: 220px;
  right: 20%;
  width: 180px;
  height: 180px;
  background: rgba(151, 43, 255, 0.15);
  filter: blur(50px);
}

.hero__grid,
.final-cta__grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(153, 70, 230, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 70, 230, 0.08) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, transparent);
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
}

.hero__copy h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 6vw, 5.7rem);
}

.hero__copy h1 em,
.final-cta h2 em {
  color: var(--yellow);
  font-style: normal;
  text-shadow: 0 0 30px rgba(255, 214, 0, 0.15);
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: #c2bbcd;
  font-size: 1.14rem;
}

.hero__checks {
  display: grid;
  gap: 10px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  color: #e6e1ec;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__checks span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 214, 0, 0.36);
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(255, 214, 0, 0.08);
  font-size: 0.75rem;
  font-weight: 900;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__actions .text-link svg {
  width: 18px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero__proof p {
  margin: 0;
  color: #aaa3b8;
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero__proof strong {
  color: #fff;
  font-size: 0.85rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span,
.avatar-stack img {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-left: -7px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7423d7, #26113e);
  font-size: 0.65rem;
  font-weight: 900;
}

.avatar-stack img {
  object-fit: cover;
}

.avatar-stack__focus-high {
  object-position: center 38%;
}

.avatar-stack span:first-child,
.avatar-stack img:first-child {
  margin-left: 0;
  color: #191113;
  background: var(--yellow);
}

.hero__visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.course-card {
  position: relative;
  z-index: 2;
  width: min(78%, 460px);
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(188, 86, 255, 0.42);
  border-radius: 31px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 80px rgba(113, 22, 218, 0.24);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.course-card::after {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.course-card img {
  width: 100%;
  border-radius: 23px;
}

.course-card__shine {
  position: absolute;
  z-index: 3;
  top: -30%;
  left: -80%;
  width: 55%;
  height: 150%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
  animation: shine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 58% { left: -80%; }
  78%, 100% { left: 140%; }
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  color: #bdb5c7;
  background: rgba(15, 9, 25, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  font-size: 0.74rem;
  line-height: 1.25;
}

.floating-card strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}

.floating-card--modules {
  top: 100px;
  left: -12px;
}

.floating-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  color: var(--yellow);
  background: rgba(255, 214, 0, 0.1);
  font-weight: 900;
}

.floating-card--projects {
  right: -15px;
  bottom: 120px;
}

.floating-card__pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b653ff;
  box-shadow: 0 0 0 7px rgba(182, 83, 255, 0.14), 0 0 20px #a63bff;
}

.tool-orbit {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.tool-orbit span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #8f879b;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.67rem;
  font-weight: 800;
}

.trust-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0713;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
  display: flex;
  min-height: 110px;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.trust-strip__grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip__grid span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
}

.trust-strip__grid p {
  margin: 0;
  color: #8e8799;
  font-size: 0.75rem;
  line-height: 1.4;
}

.trust-strip__grid strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 56px;
}

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

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p,
.section-heading--center > p {
  max-width: 490px;
  color: var(--muted);
}

.section-heading--center {
  max-width: 850px;
  display: block;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p {
  margin-inline: auto;
}

.problem {
  background:
    radial-gradient(circle at 50% 50%, rgba(103, 26, 163, 0.1), transparent 35%),
    var(--bg);
}

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

.problem-card {
  position: relative;
  min-height: 340px;
  padding: 38px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.problem-card::after {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  content: "";
  background: rgba(126, 40, 221, 0.11);
  filter: blur(25px);
}

.problem-card--featured {
  border-color: rgba(162, 63, 255, 0.38);
  background: linear-gradient(145deg, rgba(119, 35, 195, 0.16), rgba(255, 255, 255, 0.02));
  transform: translateY(-16px);
}

.problem-card__number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 3.4rem;
  font-weight: 900;
}

.icon-box {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 44px;
  place-items: center;
  border: 1px solid rgba(183, 78, 255, 0.3);
  border-radius: 15px;
  color: var(--purple-bright);
  background: rgba(153, 54, 229, 0.09);
}

.icon-box svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.outcomes {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c0814;
}

.outcomes__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 84px;
}

.outcomes__visual {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(174, 65, 255, 0.25);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.outcomes__visual::before {
  position: absolute;
  z-index: -1;
  top: -12%;
  left: -12%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  content: "";
  background: rgba(124, 30, 218, 0.2);
  filter: blur(60px);
}

.outcomes__visual img {
  aspect-ratio: 16 / 9;
  border-radius: 17px;
  object-fit: cover;
}

.outcomes__badge {
  position: absolute;
  right: -32px;
  bottom: -34px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(12, 8, 20, 0.95);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.outcomes__badge > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #160d00;
  background: var(--yellow);
  font-weight: 900;
}

.outcomes__badge p {
  margin: 0;
  color: #948c9f;
  font-size: 0.7rem;
  line-height: 1.35;
}

.outcomes__badge strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
}

.outcomes__copy > p {
  max-width: 620px;
  color: var(--muted);
}

.outcome-list {
  display: grid;
  gap: 2px;
  margin-top: 35px;
}

.outcome-list article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.outcome-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.outcome-list article > span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
}

.outcome-list h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.outcome-list p {
  margin: 0;
  color: #91899c;
  font-size: 0.82rem;
}

.curriculum {
  overflow: hidden;
}

.curriculum__glow {
  position: absolute;
  top: 200px;
  left: -250px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(105, 20, 183, 0.1);
  filter: blur(70px);
}

.curriculum__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 54px;
}

.curriculum__cover {
  position: sticky;
  top: 110px;
}

.curriculum__cover > img,
.curriculum__video {
  width: 100%;
  border: 1px solid rgba(171, 69, 255, 0.28);
  border-radius: 19px;
  box-shadow: var(--shadow);
}

.curriculum__video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090510;
}

.curriculum__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.curriculum__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.curriculum__stats div {
  padding: 18px 10px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.curriculum__stats div:last-child {
  border: 0;
}

.curriculum__stats strong,
.curriculum__stats span {
  display: block;
}

.curriculum__stats strong {
  color: var(--yellow);
  font-size: 1.5rem;
}

.curriculum__stats span {
  color: #8f879a;
  font-size: 0.64rem;
}

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

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

.accordion summary {
  display: grid;
  min-height: 92px;
  grid-template-columns: 46px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 16px 4px;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary > span:nth-child(2) {
  font-size: 1.02rem;
  font-weight: 750;
}

.accordion summary small {
  display: block;
  margin-bottom: 4px;
  color: #8d8499;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.module-number {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
}

.accordion__plus,
.faq summary > span {
  position: relative;
  width: 22px;
  height: 22px;
}

.accordion__plus::before,
.accordion__plus::after,
.faq summary > span::before,
.faq summary > span::after {
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 2px;
  content: "";
  background: #81788c;
  transition: transform 0.2s;
}

.accordion__plus::after,
.faq summary > span::after {
  transform: rotate(90deg);
}

.accordion details[open] .accordion__plus::after,
.faq details[open] summary > span::after {
  transform: rotate(0);
}

.accordion details[open] summary {
  color: #fff;
}

.accordion details[open] .module-number,
.accordion details[open] summary small {
  color: var(--yellow);
}

.accordion__content {
  padding: 0 42px 26px 68px;
  color: #9e96aa;
  font-size: 0.86rem;
}

.accordion__content p {
  margin-bottom: 12px;
}

.accordion__content ul {
  margin: 0;
  padding-left: 19px;
}

.accordion__content li::marker {
  color: var(--purple-bright);
}

.projects {
  border-top: 1px solid var(--line);
  background: #0c0814;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.project-card--accent {
  border-color: rgba(162, 61, 255, 0.28);
}

.project-card__visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #08050e;
}

.project-card__visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100px;
  content: "";
  background: linear-gradient(transparent, #12101c);
}

.project-card__visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.project-card__visual--radar {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(116, 30, 194, 0.25), transparent 45%),
    #090610;
}

.radar {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(178, 75, 255, 0.5);
  border-radius: 50%;
  transform: translateX(-50%);
}

.radar::before,
.radar::after {
  position: absolute;
  border: 1px solid rgba(178, 75, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.radar::before {
  inset: 32px;
}

.radar::after {
  inset: 68px;
}

.radar span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 14px var(--yellow);
}

.radar span:nth-child(1) { top: 32px; left: 54px; }
.radar span:nth-child(2) { top: 82px; right: 25px; }
.radar span:nth-child(3) { right: 58px; bottom: 28px; }
.radar span:nth-child(4) { bottom: 55px; left: 31px; }

.radar i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, var(--purple-bright), transparent);
  transform-origin: left center;
  animation: radar 4s linear infinite;
}

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

.radar-flow {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.radar-flow span {
  padding: 8px 13px;
  border: 1px solid rgba(177, 75, 255, 0.4);
  border-radius: 8px;
  background: #110b1d;
  font-size: 0.68rem;
  font-weight: 900;
}

.radar-flow b {
  color: var(--yellow);
}

.project-card__body {
  padding: 36px;
}

.project-card__label {
  margin-bottom: 15px;
  color: var(--yellow);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.project-card h3 {
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.project-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.project-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: #c4bdcc;
  font-size: 0.82rem;
}

.project-card li {
  position: relative;
  padding-left: 22px;
}

.project-card li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--purple-bright);
  box-shadow: 0 0 10px var(--purple);
}

.audience {
  padding-bottom: 70px;
}

.audience__panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: 64px;
  border: 1px solid rgba(167, 60, 255, 0.23);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 100%, rgba(116, 26, 195, 0.17), transparent 35%),
    linear-gradient(145deg, #12101b, #0c0814);
  box-shadow: var(--shadow);
}

.audience__intro p {
  color: var(--muted);
}

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

.audience-list {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.audience-list h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 1rem;
}

.audience-list h3 span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
}

.audience-list--yes h3 span {
  color: var(--yellow);
  background: rgba(255, 214, 0, 0.1);
}

.audience-list--no h3 span {
  color: #b89fc8;
  background: rgba(255, 255, 255, 0.07);
}

.audience-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #a69fac;
  font-size: 0.8rem;
}

.audience-list li {
  position: relative;
  padding-left: 18px;
}

.audience-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: #74578c;
}

.instructor {
  overflow: hidden;
}

.instructor::before {
  position: absolute;
  top: 20%;
  right: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  content: "";
  background: rgba(98, 16, 176, 0.09);
  filter: blur(80px);
}

.instructor__layout {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 76px;
}

.instructor__media {
  position: relative;
  display: grid;
  gap: 18px;
}

.instructor__banner-card {
  position: relative;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(164, 66, 247, 0.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 40%, rgba(142, 42, 255, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.instructor__banner-card::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.instructor__banner {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
}

.instructor__profile-card {
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.instructor__profile-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 214, 0, 0.34);
  border-radius: 18px;
  color: var(--yellow);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 214, 0, 0.24), transparent 36%),
    rgba(255, 214, 0, 0.07);
  box-shadow: 0 12px 34px rgba(255, 214, 0, 0.08);
  font-size: 1.25rem;
  font-weight: 950;
}

.instructor__profile-copy strong,
.instructor__profile-copy span {
  display: block;
}

.instructor__profile-copy strong {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.instructor__profile-copy span {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 800;
}

.instructor__profile-tags {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px;
}

.instructor__profile-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: #b9b0c4;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.66rem;
  font-weight: 800;
}

.instructor__lead {
  color: #f3eff8 !important;
  font-size: 1.15rem;
}

.instructor__copy > p {
  color: var(--muted);
}

.instructor__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.instructor__links a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #dcd6e4;
  font-size: 0.8rem;
  font-weight: 800;
  transition: border-color 0.2s, background 0.2s;
}

.instructor__links a:hover {
  border-color: rgba(181, 72, 255, 0.45);
  background: rgba(139, 44, 255, 0.08);
}

.instructor__links span {
  color: var(--yellow);
}

.enrollment {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0816;
}

.enrollment__glow {
  position: absolute;
  top: -250px;
  left: 50%;
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: rgba(112, 24, 196, 0.16);
  filter: blur(90px);
  transform: translateX(-50%);
}

.enrollment__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 110px;
}

.enrollment__copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.03rem;
}

.enrollment__copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 28px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  color: #d4cedb;
  font-size: 0.86rem;
}

.enrollment__copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.enrollment__copy li span {
  color: var(--yellow);
}

.price-card {
  overflow: hidden;
  border: 1px solid rgba(179, 77, 255, 0.43);
  border-radius: 25px;
  background: #100b1a;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.46), 0 0 60px rgba(107, 25, 190, 0.12);
}

.price-card__top {
  padding: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 90% 0, rgba(155, 51, 255, 0.34), transparent 45%),
    linear-gradient(135deg, #1b0c30, #0d0915);
}

.price-card__top > span {
  display: block;
  margin-bottom: 13px;
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.price-card__top strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2.4rem;
  letter-spacing: -0.05em;
}

.price-card__top p {
  margin: 0;
  color: #a89eb4;
  font-size: 0.84rem;
}

.price-card__content {
  padding: 32px;
}

.price-card__caption {
  margin-bottom: 22px;
  color: #aaa2b6;
  font-size: 0.82rem;
  text-align: center;
}

.price-card__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 15px 0 26px;
  color: #7f778b;
  font-size: 0.65rem;
}

.price-card__secure svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.guarantee__seal {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-content: center;
  border: 1px solid rgba(255, 214, 0, 0.38);
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(255, 214, 0, 0.05);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 0.8;
  text-align: center;
}

.guarantee__seal small {
  display: block;
  margin-top: 6px;
  font-size: 0.42rem;
  letter-spacing: 0.1em;
}

.guarantee p {
  margin: 0;
  color: #8f8799;
  font-size: 0.67rem;
  line-height: 1.45;
}

.guarantee strong {
  display: block;
  color: #e8e3ed;
  font-size: 0.78rem;
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 90px;
}

.faq__intro {
  position: sticky;
  top: 120px;
}

.faq__intro p {
  color: var(--muted);
}

.faq__intro .text-link {
  margin-top: 18px;
  color: var(--yellow);
  font-size: 0.82rem;
}

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

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

.faq summary {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 750;
}

.faq details > p {
  max-width: 680px;
  margin-bottom: 26px;
  padding-right: 40px;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  border-top: 1px solid rgba(171, 68, 255, 0.25);
  background:
    radial-gradient(circle at 50% 120%, rgba(147, 38, 249, 0.4), transparent 38%),
    linear-gradient(180deg, #12091e, #09050f);
}

.final-cta__content {
  position: relative;
  text-align: center;
}

.final-cta__tag {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(177, 74, 255, 0.34);
  border-radius: 999px;
  color: #d6c7e5;
  background: rgba(139, 44, 255, 0.08);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.final-cta h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: #aaa1b6;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #06040b;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #716a7b;
  font-size: 0.72rem;
}

.footer__inner p {
  margin: 0;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__links a:hover {
  color: #fff;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.22s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .nav__menu {
    gap: 16px;
  }

  .nav__menu > a:not(.button) {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .hero__layout {
    gap: 30px;
  }

  .hero__copy h1 {
    font-size: clamp(3rem, 7vw, 4.8rem);
  }

  .floating-card--modules {
    left: -5px;
  }

  .floating-card--projects {
    right: -5px;
  }

  .trust-strip__grid > div {
    padding-inline: 16px;
  }

  .outcomes__layout,
  .instructor__layout {
    gap: 48px;
  }

  .audience__panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .enrollment__layout {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 88px 0;
  }

  .announcement__meta {
    display: none;
  }

  .announcement__inner {
    justify-content: center;
    text-align: center;
  }

  .nav__toggle {
    display: block;
  }

  .nav__toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav__menu {
    position: fixed;
    top: 112px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(8, 5, 15, 0.98);
    transition: max-height 0.3s, padding 0.3s, border-color 0.3s;
  }

  .nav__menu.open {
    max-height: 440px;
    padding-block: 18px 26px;
    border-color: var(--line);
  }

  .nav__menu > a:not(.button) {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav__menu .button {
    margin-top: 15px;
  }

  .hero {
    min-height: 0;
  }

  .hero__layout,
  .outcomes__layout,
  .curriculum__layout,
  .instructor__layout,
  .enrollment__layout,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy .eyebrow,
  .hero__actions,
  .hero__proof {
    justify-content: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__checks {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .hero__visual {
    min-height: 610px;
  }

  .course-card {
    width: min(68%, 420px);
    transform: none;
  }

  .floating-card--modules {
    left: 7%;
  }

  .floating-card--projects {
    right: 7%;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .trust-strip__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 16px;
  }

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

  .problem-card {
    min-height: 285px;
  }

  .problem-card--featured {
    transform: none;
  }

  .outcomes__layout {
    gap: 70px;
  }

  .curriculum__cover,
  .faq__intro {
    position: static;
  }

  .curriculum__layout {
    gap: 50px;
  }

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

  .instructor__layout {
    gap: 45px;
  }

  .enrollment__copy {
    text-align: center;
  }

  .enrollment__copy .eyebrow {
    justify-content: center;
  }

  .enrollment__copy > p {
    margin-inline: auto;
  }

  .enrollment__copy ul {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .price-card {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .faq__layout {
    gap: 45px;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section {
    padding: 76px 0;
  }

  h2 {
    font-size: 2.45rem;
  }

  .announcement {
    font-size: 0.7rem;
  }

  .nav {
    min-height: 66px;
  }

  .nav__menu {
    top: 102px;
  }

  .hero {
    padding: 55px 0 70px;
  }

  .hero__copy h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 480px;
  }

  .course-card {
    width: 76%;
  }

  .floating-card {
    padding: 10px 12px;
    font-size: 0.63rem;
  }

  .floating-card strong {
    font-size: 0.76rem;
  }

  .floating-card--modules {
    top: 55px;
    left: 0;
  }

  .floating-card--projects {
    right: 0;
    bottom: 85px;
  }

  .floating-card__icon {
    width: 34px;
    height: 34px;
  }

  .tool-orbit {
    flex-wrap: wrap;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div {
    min-height: 85px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .problem-card {
    padding: 30px 27px;
  }

  .icon-box {
    margin-bottom: 34px;
  }

  .outcomes__badge {
    right: 10px;
    bottom: -46px;
  }

  .outcome-list article {
    grid-template-columns: 34px 1fr;
  }

  .curriculum__stats span {
    font-size: 0.55rem;
  }

  .accordion summary {
    grid-template-columns: 34px 1fr 22px;
    gap: 10px;
  }

  .accordion summary > span:nth-child(2) {
    font-size: 0.9rem;
  }

  .accordion__content {
    padding-left: 44px;
  }

  .project-card__visual,
  .project-card__visual img {
    min-height: 230px;
  }

  .project-card__body {
    padding: 28px 25px;
  }

  .radar {
    top: 20px;
    transform: translateX(-50%) scale(0.8);
  }

  .audience__panel {
    padding: 38px 22px;
  }

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

  .instructor__banner-card {
    padding: 7px;
    border-radius: 18px;
  }

  .instructor__banner-card::after {
    inset: 7px;
    border-radius: 13px;
  }

  .instructor__banner {
    border-radius: 13px;
  }

  .instructor__profile-card {
    width: 100%;
    padding: 12px;
    grid-template-columns: auto 1fr;
  }

  .instructor__profile-mark {
    width: 56px;
    height: 56px;
    border-radius: 15px;
  }

  .instructor__profile-tags span {
    font-size: 0.6rem;
  }

  .enrollment__copy ul {
    grid-template-columns: 1fr;
  }

  .price-card__top,
  .price-card__content {
    padding: 28px 23px;
  }

  .faq summary {
    min-height: 75px;
    font-size: 0.92rem;
  }

  .final-cta {
    padding: 85px 0;
  }

  .final-cta h2 {
    font-size: 2.85rem;
  }

  .footer__inner,
  .footer__links {
    flex-direction: column;
  }

  .footer__inner {
    text-align: center;
  }

  .footer__links {
    gap: 9px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 80;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #ffe24a;
    border-radius: 12px;
    color: #130e00;
    background: var(--yellow);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 0.2s, transform 0.2s;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
