:root {
  --dark: #050816;
  --dark-2: #081126;
  --dark-3: #101935;
  --blue: #005bff;
  --cyan: #00d4ff;
  --magenta: #ee00ff;
  --violet: #7b2cff;
  --white: #ffffff;
  --text: #c1cad8;
  --muted: #8795aa;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(0, 212, 255, 0.34);
  --brand-gradient: linear-gradient(135deg, var(--blue), var(--violet) 54%, var(--magenta));
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

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

#leadForm {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(125deg, rgba(0, 91, 255, 0.2), transparent 42%),
    linear-gradient(235deg, rgba(238, 0, 255, 0.13), transparent 36%),
    var(--dark);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 212, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(0, 91, 255, 0.1), rgba(238, 0, 255, 0.08)),
    rgba(5, 8, 22, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
}

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

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

.brand-logo {
  width: 180px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 44px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 800;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: transparent;
  transition: width 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
  background: rgba(0, 212, 255, 0.08);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  width: 100%;
}

.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--brand-gradient);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 14px 34px rgba(0, 91, 255, 0.28), 0 0 24px rgba(238, 0, 255, 0.16);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 68px 0 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(0, 91, 255, 0.22), transparent 42%),
    linear-gradient(220deg, rgba(238, 0, 255, 0.12), transparent 35%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 46px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-course-name {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 0 12px;
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: 999px;
  color: #eff8ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: 4.08rem;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 22px;
  color: #dce6f1;
  font-size: 1.08rem;
}

.hero-positioning {
  max-width: 660px;
  margin-bottom: 18px;
  color: #f5f9ff;
  font-size: 1rem;
  font-weight: 760;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #e9f4ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.87rem;
  font-weight: 700;
}

.hero-badges i {
  color: var(--cyan);
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  margin-bottom: 22px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.22), rgba(238, 0, 255, 0.12)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.hero-offer span {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-offer strong {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.hero-offer small {
  max-width: 250px;
  color: #dce6f1;
  font-size: 0.8rem;
  line-height: 1.25;
  font-weight: 750;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 640px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.2), rgba(238, 0, 255, 0.1)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
  padding: 16px;
}

.price-card-compact {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: stretch;
  padding: 12px;
}

.price-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.2), rgba(238, 0, 255, 0.12)),
    rgba(5, 8, 22, 0.72);
}

.price-card-main span,
.form-price span {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card-main strong {
  color: var(--white);
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.price-card-content {
  padding: 0;
}

.price-card-compact .price-card-content {
  display: flex;
  align-items: stretch;
}

.price-card-content p {
  margin-bottom: 12px;
  color: #edf6ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.price-card-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card-compact .price-card-content ul {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card-content li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 48px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.045);
}

.price-card-compact .price-card-content li {
  min-height: 42px;
  align-items: center;
  padding: 9px;
}

.price-card-content i {
  margin-top: 4px;
  color: var(--cyan);
}

.price-card-compact .price-card-content i {
  margin-top: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--brand-gradient);
  box-shadow: 0 18px 44px rgba(0, 91, 255, 0.28), 0 0 28px rgba(238, 0, 255, 0.14);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--line-strong);
}

.hero-visual {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 13, 24, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 212, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
}

.hero-visual-image {
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-image::before {
  display: none;
}

.hero-visual-image img {
  width: min(100%, 560px);
  max-height: 640px;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
  filter: drop-shadow(0 30px 82px rgba(0, 0, 0, 0.3));
}

.visual-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 6px rgba(238, 0, 255, 0.14);
}

.pipeline-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px;
  gap: 24px;
  align-items: center;
  min-height: 412px;
  padding: 24px;
}

.pipeline-flow {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
}

.source-stack {
  display: grid;
  gap: 12px;
}

.data-source,
.pipeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 17, 31, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.data-source i,
.pipeline-step > i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--brand-gradient);
}

.data-source strong,
.pipeline-step strong {
  display: block;
  color: #f7fbff;
  line-height: 1.15;
}

.data-source small,
.pipeline-step small {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 0.74rem;
  line-height: 1.25;
}

.pipeline-step {
  min-height: 156px;
  align-items: flex-start;
  flex-direction: column;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 999px;
  color: #f9fbff;
  background: rgba(0, 212, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
}

.ai-badge i {
  color: var(--cyan);
}

.powerbi-step {
  border-color: rgba(238, 0, 255, 0.26);
}

.powerbi-step .ai-badge {
  border-color: rgba(238, 0, 255, 0.28);
  background: rgba(238, 0, 255, 0.09);
}

.powerbi-step .ai-badge i {
  color: var(--magenta);
}

.pipeline-arrow {
  position: relative;
  width: 2px;
  height: 24px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--cyan), var(--magenta));
}

.pipeline-arrow::after {
  content: "";
  position: absolute;
  right: auto;
  left: 50%;
  top: auto;
  bottom: -2px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--magenta);
  border-right: 2px solid var(--magenta);
  transform: translateX(-50%) rotate(135deg);
}

.phone-mockup {
  justify-self: center;
  position: relative;
  width: 166px;
  min-height: 318px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(0, 91, 255, 0.24), rgba(238, 0, 255, 0.14)),
    #070d1d;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.phone-speaker {
  width: 46px;
  height: 5px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-screen {
  min-height: 256px;
  padding: 14px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #091427;
  background-size: 18px 18px;
}

.phone-header,
.phone-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.phone-header {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
}

.phone-kpi {
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.phone-kpi small,
.phone-metrics small {
  display: block;
  color: var(--text);
  font-size: 0.66rem;
}

.phone-kpi strong {
  display: block;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.1;
}

.phone-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 78px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.phone-chart span {
  flex: 1;
  min-height: 16px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.phone-metrics span {
  flex: 1;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.phone-metrics strong {
  display: block;
  color: #f8fbff;
  font-size: 0.82rem;
  line-height: 1.1;
}

.phone-caption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 32px;
  margin-top: 10px;
  color: #f7fbff;
  font-size: 0.74rem;
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.instructor-copy h2,
.registration-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: 3.3rem;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

.section-heading p,
.section-copy p,
.instructor-copy p,
.registration-copy p,
.final-cta p {
  color: var(--text);
  font-size: 1.05rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 36px auto 0;
  text-align: left;
}

.section-cta p {
  max-width: 560px;
  margin: 0;
  color: #dbe9f7;
  font-size: 0.98rem;
  font-weight: 800;
}

.section-cta .btn {
  flex: 0 0 auto;
}

.two-column,
.instructor-grid,
.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 56px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agenda-card,
.authority-panel,
.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.18);
}

.authority {
  background:
    radial-gradient(circle at 15% 40%, rgba(0, 212, 255, 0.09), transparent 32%),
    radial-gradient(circle at 82% 42%, rgba(238, 0, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 212, 255, 0.05));
}

.authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.authority-copy {
  max-width: 620px;
}

.authority-copy h2 {
  max-width: 560px;
}

.authority-copy p {
  max-width: 590px;
}

.authority-highlights {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.authority-highlights span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #edf7ff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.88rem;
  font-weight: 800;
}

.authority-highlights i {
  color: var(--cyan);
}

.authority-stack {
  display: grid;
  gap: 14px;
}

.authority-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 140px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024)),
    rgba(7, 17, 31, 0.86);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.authority-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 212, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}

.authority-card > * {
  position: relative;
  z-index: 1;
}

.authority-card > i {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #031520;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(0, 212, 255, 0.08);
  font-size: 1.2rem;
}

.authority-card span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.authority-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.authority-card p {
  margin: 0;
  color: var(--text);
}

.authority-card-main {
  border-color: rgba(0, 212, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.18), rgba(238, 0, 255, 0.08)),
    rgba(7, 17, 31, 0.92);
  transform: translateX(-24px);
}

.mascot-story {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 212, 255, 0.08), transparent 30%),
    radial-gradient(circle at 82% 44%, rgba(238, 0, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(238, 0, 255, 0.06), rgba(0, 91, 255, 0.06)),
    rgba(2, 8, 16, 0.42);
}

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

.mascot-card {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(7, 17, 31, 0.9);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.mascot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.42;
}

.mascot-card-pro {
  border-color: rgba(0, 212, 255, 0.28);
}

.mascot-card-caution {
  border-color: rgba(238, 0, 255, 0.26);
}

.mascot-avatar,
.mascot-copy {
  position: relative;
  z-index: 1;
}

.mascot-avatar {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  isolation: isolate;
}

.mascot-avatar img {
  width: min(250px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #050816;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
}

.smart-analyst img {
  border-color: rgba(0, 212, 255, 0.32);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34), 0 0 38px rgba(0, 212, 255, 0.14);
}

.manual-analyst img {
  border-color: rgba(238, 0, 255, 0.32);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34), 0 0 38px rgba(238, 0, 255, 0.14);
}

.avatar-head {
  position: relative;
  width: 116px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px 34px 28px 28px;
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.32), rgba(123, 44, 255, 0.34)),
    #0b1730;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.manual-analyst .avatar-head {
  background:
    linear-gradient(145deg, rgba(121, 133, 156, 0.24), rgba(238, 0, 255, 0.22)),
    #0b1223;
}

.avatar-visor {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 29px;
  height: 24px;
  border-radius: 999px;
  background: #07111f;
  border: 1px solid rgba(0, 212, 255, 0.26);
  box-shadow: inset 0 0 18px rgba(0, 212, 255, 0.24), 0 0 20px rgba(0, 212, 255, 0.16);
}

.manual-analyst .avatar-visor {
  border-color: rgba(238, 0, 255, 0.26);
  box-shadow: inset 0 0 18px rgba(238, 0, 255, 0.18), 0 0 18px rgba(238, 0, 255, 0.12);
}

.avatar-visor::before,
.avatar-visor::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.avatar-visor::before {
  left: 17px;
}

.avatar-visor::after {
  right: 17px;
}

.manual-analyst .avatar-visor::before,
.manual-analyst .avatar-visor::after {
  width: 14px;
  height: 2px;
  top: 11px;
  border-radius: 999px;
  background: var(--magenta);
}

.manual-analyst .avatar-visor::before {
  transform: rotate(28deg);
}

.manual-analyst .avatar-visor::after {
  transform: rotate(-28deg);
}

.avatar-smile {
  position: absolute;
  left: 45px;
  bottom: 21px;
  width: 26px;
  height: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 0 0 999px 999px;
}

.manual-analyst .avatar-smile {
  left: 47px;
  bottom: 25px;
  width: 22px;
  height: 2px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
}

.avatar-body {
  position: relative;
  width: 138px;
  height: 92px;
  margin-top: -10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px 36px 14px 14px;
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.86), rgba(238, 0, 255, 0.72)),
    #101935;
}

.manual-analyst .avatar-body {
  background:
    linear-gradient(135deg, rgba(61, 74, 98, 0.86), rgba(123, 44, 255, 0.38)),
    #111827;
}

.avatar-badge {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08);
}

.manual-analyst .avatar-badge {
  background:
    linear-gradient(135deg, #6f7d92, var(--magenta));
}

.avatar-orbit,
.avatar-tool {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #f8fbff;
  background: rgba(5, 13, 24, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.avatar-orbit {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--cyan);
}

.manual-analyst .avatar-orbit {
  color: var(--magenta);
}

.orbit-one {
  left: 6px;
  top: 18px;
}

.orbit-two {
  right: 2px;
  top: 42px;
}

.avatar-tool {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
}

.tool-chatgpt,
.tool-warning {
  left: 0;
  bottom: 50px;
}

.tool-powerbi,
.tool-manual {
  right: 0;
  bottom: 12px;
}

.tool-chatgpt i,
.tool-powerbi i {
  color: var(--cyan);
}

.tool-warning i,
.tool-manual i {
  color: var(--magenta);
}

.mascot-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 10px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mascot-card-caution .mascot-label {
  border-color: rgba(238, 0, 255, 0.24);
  color: #f3a8ff;
  background: rgba(238, 0, 255, 0.08);
}

.mascot-copy h3 {
  margin-bottom: 12px;
  font-size: 1.46rem;
  line-height: 1.18;
}

.mascot-copy p {
  margin-bottom: 16px;
  color: var(--text);
}

.mascot-copy ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mascot-copy li {
  position: relative;
  padding-left: 25px;
  color: #e4edf7;
  font-weight: 700;
}

.mascot-copy li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--cyan);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.mascot-card-caution .mascot-copy li::before {
  content: "\f061";
  color: var(--magenta);
}

.mascot-note {
  max-width: 780px;
  margin: 26px auto 0;
  color: #eef6ff;
  text-align: center;
  font-size: 1.02rem;
  font-weight: 800;
}

.story-divider {
  max-width: 760px;
  margin: 66px auto 28px;
  text-align: center;
}

.story-divider span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-divider p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 750;
}

.journey-board {
  display: grid;
  gap: 20px;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(7, 17, 31, 0.88);
  background-size: 34px 34px;
  box-shadow: 0 18px 62px rgba(0, 0, 0, 0.24);
}

.journey-track-success {
  border-color: rgba(0, 212, 255, 0.28);
}

.journey-track-warning {
  border-color: rgba(238, 0, 255, 0.24);
  background-color: rgba(10, 9, 22, 0.9);
}

.journey-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.journey-avatar img {
  width: 108px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050816;
}

.journey-track-success .journey-avatar img {
  box-shadow: 0 0 34px rgba(0, 212, 255, 0.18);
}

.journey-track-warning .journey-avatar img {
  box-shadow: 0 0 34px rgba(238, 0, 255, 0.14);
}

.journey-avatar span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.journey-track-warning .journey-avatar span {
  color: #f3a8ff;
  background: rgba(238, 0, 255, 0.1);
}

.journey-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.journey-flow::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 35px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.72), transparent);
}

.journey-track-warning .journey-flow::before {
  background: linear-gradient(90deg, transparent, rgba(238, 0, 255, 0.44), rgba(135, 149, 170, 0.3), transparent);
}

.journey-step,
.journey-finish {
  position: relative;
  z-index: 1;
  min-height: 188px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 13, 24, 0.92);
}

.journey-step i,
.journey-finish i {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: #031520;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.08);
}

.journey-step.failed i,
.journey-finish.warning i {
  color: #ffffff;
  background: rgba(238, 0, 255, 0.18);
  border: 1px solid rgba(238, 0, 255, 0.4);
  box-shadow: 0 0 0 6px rgba(238, 0, 255, 0.07);
}

.journey-step strong,
.journey-finish strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.2;
}

.journey-step p,
.journey-finish p {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.45;
}

.journey-step.completed::after,
.journey-step.failed::after {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-size: 0.72rem;
  font-weight: 900;
}

.journey-step.completed::after {
  content: "\f00c";
  color: #031520;
  background: var(--cyan);
}

.journey-step.failed::after {
  content: "\f00d";
  color: #ffffff;
  background: rgba(238, 0, 255, 0.5);
}

.journey-finish.success {
  border-color: rgba(0, 212, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.34), rgba(0, 212, 255, 0.1)),
    rgba(5, 13, 24, 0.95);
}

.journey-finish.warning {
  border-color: rgba(238, 0, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(238, 0, 255, 0.16), rgba(20, 24, 38, 0.86)),
    rgba(5, 13, 24, 0.95);
}

.project {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 212, 255, 0.08), transparent 32%),
    radial-gradient(circle at 82% 36%, rgba(238, 0, 255, 0.08), transparent 30%),
    rgba(2, 8, 16, 0.34);
}

.mission-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 24px;
}

.mission-guide,
.mission-step {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(7, 17, 31, 0.9);
  box-shadow: 0 18px 62px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.mission-guide {
  display: grid;
  align-content: start;
  align-self: start;
  gap: 22px;
  padding: 26px;
  border-color: rgba(0, 212, 255, 0.22);
}

.mission-guide::before,
.mission-step::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 212, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}

.mission-guide-image,
.mission-guide-copy,
.mission-progress,
.mission-step > * {
  position: relative;
  z-index: 1;
}

.mission-guide-image {
  min-height: 230px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mission-guide-image img {
  width: min(250px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 24px;
  background: #050816;
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.34), 0 0 44px rgba(0, 212, 255, 0.14);
}

.mission-label,
.mission-level {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-guide-copy h3 {
  margin: 14px 0 10px;
  font-size: 1.42rem;
  line-height: 1.16;
}

.mission-guide-copy p {
  margin: 0;
  color: var(--text);
}

.mission-progress {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.mission-progress > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.mission-progress strong {
  color: var(--white);
}

.mission-progress-bar {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.mission-progress-bar span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-gradient);
}

.mission-path {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 46px;
}

.mission-path::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.85), rgba(0, 212, 255, 0.44), rgba(238, 0, 255, 0.72));
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.18);
}

.mission-step {
  position: relative;
  display: grid;
  grid-template-columns: 78px 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 136px;
  padding: 20px;
  overflow: visible;
}

.mission-step > i {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #031520;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(0, 212, 255, 0.08);
  font-size: 1.25rem;
}

.mission-step h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.mission-step p {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--text);
}

.mission-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mission-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #e9f4ff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.76rem;
  font-weight: 800;
}

.mission-step-final {
  border-color: rgba(238, 0, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.16), rgba(238, 0, 255, 0.12)),
    rgba(7, 17, 31, 0.92);
}

.mission-step-final > i {
  color: var(--white);
  background: var(--brand-gradient);
}

.agenda {
  background:
    linear-gradient(180deg, rgba(11, 95, 255, 0.1), rgba(0, 0, 0, 0)),
    rgba(2, 8, 16, 0.34);
}

.agenda-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.88fr) minmax(0, 0.95fr);
  align-items: stretch;
  gap: 18px;
}

.agenda-card {
  padding: 28px;
  min-height: 100%;
}

.agenda-card.highlighted {
  border-color: rgba(238, 0, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(238, 0, 255, 0.12), rgba(0, 91, 255, 0.07)),
    rgba(255, 255, 255, 0.04);
}

.agenda-card-header span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #031520;
  background: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.agenda-card.highlighted .agenda-card-header span {
  color: var(--white);
  background: var(--brand-gradient);
}

.agenda-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.agenda-card-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  margin-bottom: 22px;
  padding: 0 11px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 999px;
  color: #eef8ff;
  background: rgba(0, 212, 255, 0.08);
  font-size: 0.86rem;
}

.agenda-card.highlighted .agenda-card-header strong {
  border-color: rgba(238, 0, 255, 0.26);
  background: rgba(238, 0, 255, 0.08);
}

.calendar-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.1), rgba(238, 0, 255, 0.08)),
    rgba(7, 17, 31, 0.9);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.calendar-header span {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 900;
}

.calendar-header strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: #f8fbff;
  background: var(--brand-gradient);
  font-size: 0.84rem;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: #dce8f5;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 800;
}

.calendar-grid .muted {
  color: rgba(193, 202, 216, 0.45);
  background: rgba(255, 255, 255, 0.022);
}

.calendar-grid .event-day {
  position: relative;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--brand-gradient);
  box-shadow: 0 12px 30px rgba(0, 91, 255, 0.24), 0 0 24px rgba(238, 0, 255, 0.14);
  transform: translateY(-2px);
}

.calendar-grid .event-day::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
}

.calendar-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.calendar-legend i {
  color: var(--magenta);
  font-size: 0.58rem;
}

.calendar-legend strong {
  color: var(--white);
  font-size: 0.88rem;
  white-space: nowrap;
}

.check-list,
.audience-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.audience-list li {
  position: relative;
  color: #d7e2ee;
}

.check-list li {
  padding-left: 28px;
}

.check-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--cyan);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.target {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(11, 95, 255, 0.06));
}

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

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 700;
}

.audience-list i {
  margin-top: 4px;
  color: var(--cyan);
}

.graduates {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 212, 255, 0.1), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(238, 0, 255, 0.09), transparent 28%),
    rgba(2, 8, 16, 0.38);
}

.graduates-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.graduate-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.graduate-card-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 578px;
}

.graduate-card-wide {
  grid-column: span 2;
}

.graduate-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.graduate-card:hover img,
.graduate-card:focus-within img {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.045);
}

.graduate-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(3, 8, 18, 0.86)),
    linear-gradient(135deg, rgba(0, 212, 255, 0.16), rgba(238, 0, 255, 0.1));
}

.graduate-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 18px;
}

.graduate-card figcaption span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 8px;
  padding: 0 10px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 14, 28, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.graduate-card figcaption strong {
  display: block;
  max-width: 440px;
  color: var(--white);
  font-size: 1.04rem;
  line-height: 1.22;
}

.graduate-card-feature figcaption {
  padding: 24px;
}

.graduate-card-feature figcaption strong {
  font-size: 1.38rem;
}

.instructor {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(0, 212, 255, 0.09), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(238, 0, 255, 0.09), transparent 30%),
    rgba(2, 8, 16, 0.42);
}

.instructor::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.36;
}

.instructor .container {
  position: relative;
  z-index: 1;
}

.instructor-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.instructor-copy p {
  max-width: 680px;
}

.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.instructor-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 999px;
  color: #e9f6ff;
  background: rgba(0, 212, 255, 0.07);
  font-size: 0.84rem;
  font-weight: 900;
}

.authority-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-color: rgba(0, 212, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(176, 28, 255, 0.1)),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.instructor-card {
  position: relative;
}

.instructor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}

.instructor-card > * {
  position: relative;
  z-index: 1;
}

.instructor-photo-wrap {
  position: relative;
  min-height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #050816;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.instructor-photo {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: 38% center;
  filter: saturate(1.05) contrast(1.03);
}

.instructor-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(3, 8, 18, 0.84)),
    linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(238, 0, 255, 0.1));
}

.instructor-photo-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(5, 12, 24, 0.78);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 900;
}

.instructor-photo-badge i {
  color: var(--cyan);
}

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

.authority-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: #e6f1fb;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.authority-list i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
}

.instructor-credentials span {
  display: grid;
  gap: 3px;
}

.instructor-credentials strong {
  color: var(--white);
  line-height: 1.25;
}

.instructor-credentials small {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 650;
}

.registration {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(0, 212, 255, 0.12), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(238, 0, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(238, 0, 255, 0.08), rgba(0, 91, 255, 0.08)),
    rgba(2, 8, 16, 0.34);
}

.registration::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
}

.registration .container {
  position: relative;
  z-index: 1;
}

.registration-grid {
  align-items: start;
}

.registration-copy {
  position: sticky;
  top: 108px;
}

.registration-copy h2 {
  max-width: 560px;
}

.registration-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.registration-summary div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.12), rgba(238, 0, 255, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.registration-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.registration-summary strong {
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.15;
}

.registration-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.registration-points span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 600px;
  color: #e2ecf5;
  font-weight: 700;
}

.registration-points i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  font-size: 0.82rem;
}

.lead-form {
  position: relative;
  padding: 32px;
  border-color: rgba(0, 212, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(7, 17, 31, 0.94);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 212, 255, 0.04) inset;
  overflow: hidden;
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--brand-gradient);
}

.lead-form > * {
  position: relative;
  z-index: 1;
}

.form-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.2), rgba(238, 0, 255, 0.12)),
    rgba(255, 255, 255, 0.05);
}

.form-price span,
.form-price small {
  display: block;
}

.form-price small {
  margin-top: 5px;
  color: #c7d6e7;
  font-size: 0.82rem;
  font-weight: 750;
}

.form-price strong {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.lead-form-title {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.lead-form-title span {
  display: block;
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 900;
}

.lead-form-title p {
  margin: 7px 0 0;
  color: var(--text);
  font-size: 0.94rem;
}

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

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #ecf5ff;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  outline: 0;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
    linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field select option {
  color: #07111f;
  background: #ffffff;
}

.form-field input::placeholder {
  color: rgba(184, 194, 204, 0.62);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
}

.form-field.has-error input,
.form-field.has-error select {
  border-color: #ff5d73;
  box-shadow: 0 0 0 4px rgba(255, 93, 115, 0.11);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #ff9aaa;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 6px;
}

.submit-error {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  color: #ff9aaa;
  font-size: 0.82rem;
  font-weight: 800;
}

.success-box {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(0, 212, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.14), rgba(238, 0, 255, 0.08)),
    rgba(0, 212, 255, 0.05);
}

.success-box.is-visible {
  display: block;
}

.success-box > i {
  color: var(--cyan);
  font-size: 1.35rem;
}

.success-box p {
  margin: 10px 0 16px;
  color: #eaf6ee;
  font-weight: 700;
}

.btn-payment {
  width: 100%;
  color: var(--white);
  background: var(--brand-gradient);
}

.final-cta {
  padding: 82px 0;
  background:
    linear-gradient(135deg, rgba(0, 91, 255, 0.28), rgba(238, 0, 255, 0.13)),
    var(--dark-2);
}

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

.final-cta h2 {
  max-width: 740px;
  margin-bottom: 12px;
}

.final-cta p {
  max-width: 700px;
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  padding: 52px 0 48px;
  border-top: 1px solid rgba(0, 212, 255, 0.18);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 212, 255, 0.12), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(238, 0, 255, 0.14), transparent 28%),
    #050c16;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.36;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.62fr) minmax(170px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 214px;
  margin-bottom: 18px;
}

.footer-title {
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 900;
}

.footer-copy {
  max-width: 430px;
  margin: 0;
  color: #c7d5e4;
  font-size: 0.98rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #e9f5ff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-meta i {
  color: var(--cyan);
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-nav h3,
.footer-contact h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-nav a {
  color: #c7d5e4;
  font-size: 0.95rem;
  font-weight: 750;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--cyan);
  transform: translateX(3px);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  width: fit-content;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  border-color: var(--line-strong);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9fb0c3;
  font-size: 0.84rem;
}

.footer-bottom p {
  max-width: 720px;
  margin: 0;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--brand-gradient);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

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

@media (max-width: 1100px) {
  .brand-logo {
    width: 164px;
  }

  .header-shell {
    gap: 16px;
  }

  .primary-nav {
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 3.72rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 30px;
  }

  .pipeline-board {
    grid-template-columns: minmax(0, 1fr) 148px;
    gap: 18px;
    padding: 18px;
  }

  .pipeline-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pipeline-arrow {
    width: 2px;
    height: 24px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--cyan), var(--magenta));
  }

  .pipeline-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(-50%) rotate(135deg);
  }

  .phone-mockup {
    width: 148px;
    min-height: 296px;
  }

  .two-column,
  .instructor-grid,
  .registration-grid {
    grid-template-columns: 1fr;
  }

  .registration-copy {
    position: static;
  }

  .registration-summary {
    max-width: 760px;
  }

  .journey-track {
    grid-template-columns: 128px minmax(0, 1fr);
    padding: 18px;
  }

  .journey-flow {
    gap: 10px;
  }

  .journey-step,
  .journey-finish {
    min-height: 204px;
    padding: 16px;
  }

  .journey-step strong,
  .journey-finish strong {
    font-size: 0.92rem;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
  }
}

@media (max-width: 920px) {
  .header-shell {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 17, 31, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

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

  .hero-visual {
    max-width: 760px;
    width: 100%;
  }

  .authority-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .authority-copy {
    max-width: 760px;
  }

  .authority-stack {
    max-width: 760px;
  }

  .authority-card-main {
    transform: none;
  }

  .section-heading h2,
  .section-copy h2,
  .instructor-copy h2,
  .registration-copy h2,
  .final-cta h2 {
    font-size: 2.7rem;
  }

  .card-grid.three,
  .mascot-grid,
  .mascot-grid {
    grid-template-columns: 1fr;
  }

  .agenda-showcase,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

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

  .graduate-card-feature,
  .graduate-card-wide {
    grid-column: span 2;
  }

  .graduate-card-feature {
    min-height: 480px;
  }

  .mission-board {
    grid-template-columns: 1fr;
  }

  .mission-guide {
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: center;
  }

  .mission-guide-image {
    min-height: auto;
  }

  .mission-guide-image img {
    width: 150px;
    border-radius: 18px;
  }

  .mission-progress {
    grid-column: 1 / -1;
  }

  .journey-track {
    grid-template-columns: 1fr;
  }

  .journey-avatar {
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
  }

  .journey-avatar img {
    width: 86px;
    border-radius: 14px;
  }

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

  .journey-flow::before {
    display: none;
  }

  .final-cta-inner .btn {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .brand-logo {
    width: 162px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .section-heading h2,
  .section-copy h2,
  .instructor-copy h2,
  .registration-copy h2,
  .final-cta h2 {
    font-size: 2.16rem;
  }

  .hero-subtitle,
  .hero-positioning,
  .section-heading p,
  .section-copy p,
  .instructor-copy p,
  .registration-copy p,
  .final-cta p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .section-actions,
  .section-actions .btn,
  .section-cta,
  .section-cta .btn {
    width: 100%;
  }

  .section-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    text-align: center;
  }

  .hero-offer {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .hero-offer small {
    max-width: 100%;
  }

  .price-card {
    grid-template-columns: 1fr;
    padding: 14px;
  }

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

  .lead-form {
    padding: 24px 18px;
  }

  .form-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .form-price strong {
    font-size: 2.2rem;
  }

  .price-card-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .price-card-content {
    padding: 0;
  }

  .price-card-content ul {
    grid-template-columns: 1fr;
  }

  .price-card-compact .price-card-content ul {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .mascot-grid,
  .agenda-showcase,
  .audience-list,
  .journey-flow,
  .form-row,
  .authority-panel {
    grid-template-columns: 1fr;
  }

  .mascot-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .mascot-avatar {
    min-height: 300px;
  }

  .journey-track {
    gap: 14px;
    padding: 16px;
  }

  .journey-avatar {
    align-items: center;
    padding: 12px;
  }

  .journey-avatar img {
    width: 72px;
  }

  .journey-step,
  .journey-finish {
    min-height: auto;
    padding: 16px;
  }

  .mission-guide {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .mission-guide-image img {
    width: min(190px, 100%);
  }

  .authority-highlights span {
    width: 100%;
  }

  .authority-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .mission-path::before {
    display: none;
  }

  .mission-path {
    padding-left: 0;
  }

  .mission-step {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 18px;
  }

  .mission-level {
    justify-self: start;
  }

  .graduates-showcase {
    grid-template-columns: 1fr;
  }

  .graduate-card,
  .graduate-card-feature,
  .graduate-card-wide {
    grid-column: auto;
    min-height: 310px;
  }

  .graduate-card-feature {
    min-height: 380px;
  }

  .graduate-card figcaption {
    padding: 16px;
  }

  .graduate-card-feature figcaption strong {
    font-size: 1.16rem;
  }

  .pipeline-board {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px;
  }

  .pipeline-step {
    min-height: 132px;
  }

  .phone-mockup {
    width: min(230px, 100%);
    min-height: 318px;
  }

  .authority-panel {
    justify-items: start;
  }

  .instructor-photo-wrap {
    width: 100%;
    min-height: 360px;
  }

  .site-footer {
    padding: 44px 0 92px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-badges span {
    width: 100%;
  }

  .btn {
    min-height: 50px;
    padding-inline: 16px;
    font-size: 0.93rem;
  }
}

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

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

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