:root {
  --bg: #050814;
  --bg-secondary: #070b18;
  --card: rgba(11, 18, 36, 0.72);
  --card-soft: rgba(16, 24, 45, 0.72);
  --text: #f3f6ff;
  --muted: #8e9ab8;
  --accent: #3b6bff;
  --accent-secondary: #5b7cff;
  --violet: #7b61ff;
  --cyan: #6daeff;
  --border: rgba(120, 145, 255, 0.16);
  --border-strong: rgba(137, 163, 255, 0.28);
  --glow: rgba(59, 107, 255, 0.18);
  --font-display: "Bruno Ace SC", "Manrope", "Inter", sans-serif;
  --font-ui: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --section: clamp(72px, 10vw, 132px);
  --container: 1180px;
  --page-gutter: clamp(20px, 3.4vw, 32px);
  color-scheme: dark;
}

@font-face {
  font-family: "Bruno Ace SC";
  src: url("./assets/fonts/BrunoAceSC-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  content: "";
  background:
    radial-gradient(circle at 50% -12%, rgba(79, 117, 255, 0.2), transparent 34%),
    radial-gradient(circle at 12% 22%, rgba(109, 174, 255, 0.09), transparent 26%),
    linear-gradient(180deg, #050814 0%, #060916 48%, #050814 100%);
}

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

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  pointer-events: none;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  min-height: 72px;
  margin: 12px auto 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(120, 145, 255, 0.06);
  border-radius: var(--radius-md);
  background: rgba(5, 8, 20, 0.18);
  box-shadow: none;
  backdrop-filter: blur(8px);
  transition:
    min-height 0.35s ease,
    padding 0.35s ease,
    margin-top 0.35s ease,
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.site-header.scrolled {
  min-height: 58px;
  margin-top: 4px;
  padding: 8px 14px 8px 16px;
  background: rgba(5, 8, 20, 0.92);
  backdrop-filter: blur(36px) saturate(1.6);
  border-color: rgba(120, 145, 255, 0.22);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(109, 174, 255, 0.1) inset,
    0 0 0 1px rgba(109, 174, 255, 0.05) inset;
}

.site-header.header-hidden {
  transform: translateY(calc(-100% - 20px));
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(59, 107, 255, 0.16));
}

.footer-logo {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.main-nav a,
.footer-social a,
.footer-legal a {
  font-family: var(--font-ui);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.main-nav a:hover,
.footer-social a:hover,
.footer-legal a:hover {
  color: var(--text);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(125, 152, 255, 0.28);
  background: rgba(59, 107, 255, 0.12);
  color: var(--text);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    width 180ms ease;
}

.nav-toggle span:first-child,
.nav-toggle span:last-child {
  width: 21px;
}

.nav-toggle span:nth-child(2) {
  width: 14px;
  margin-right: 11px;
}

.nav-open .nav-toggle span:first-child {
  width: 22px;
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:last-child {
  width: 22px;
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-content {
  display: none;
}

.hero-section {
  position: relative;
  display: grid;
  place-items: center;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  padding: clamp(18px, 3.8vw, 46px) 0 clamp(64px, 6.5vw, 86px);
  overflow: hidden;
  scroll-margin-top: 104px;
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  top: 9%;
  z-index: 0;
  width: min(620px, 58vw);
  height: 320px;
  content: "";
  pointer-events: none;
  opacity: 0.48;
  filter: blur(10px);
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, transparent 0%, black 24%, black 72%, transparent 100%);
}

.hero-section::before {
  left: -19%;
  transform: rotate(15deg);
  background: linear-gradient(94deg, transparent 4%, rgba(109, 174, 255, 0.16) 45%, transparent 88%);
  clip-path: polygon(0 38%, 100% 5%, 100% 23%, 0 68%);
}

.hero-section::after {
  right: -21%;
  transform: rotate(-15deg);
  background: linear-gradient(276deg, transparent 4%, rgba(91, 124, 255, 0.14) 48%, transparent 88%);
  clip-path: polygon(0 7%, 100% 38%, 100% 68%, 0 25%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100%, 1120px);
  max-width: 1120px;
  text-align: center;
}

.hero-badge,
.section-kicker,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-ui);
  color: #b7c4ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(120, 145, 255, 0.18);
  border-radius: 999px;
  background: rgba(11, 18, 36, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.hero-badge span,
.benefit-list span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(109, 174, 255, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  font-size: clamp(34px, 4.45vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.gradient-text {
  background: linear-gradient(90deg, #6daeff, #5b7cff 48%, #9a86ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-title-line {
  display: inline;
}

h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  font-size: 18px;
  line-height: 1.24;
}

.hero-copy {
  max-width: 700px;
  margin: 16px auto 0;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.58;
  text-wrap: balance;
}

.hero-tags {
  max-width: 680px;
  margin: 12px auto 0;
  font-family: var(--font-ui);
  color: rgba(178, 188, 220, 0.78);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 238px) minmax(0, 190px);
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  position: relative;
  z-index: 4;
}

.btn {
  min-width: 0;
  width: 100%;
  padding: 0 22px;
  border: 1px solid transparent;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  border-color: rgba(148, 170, 255, 0.32);
  background: linear-gradient(180deg, #5b7cff 0%, #335edf 100%);
  color: #fff;
  box-shadow: 0 18px 54px rgba(59, 107, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 22px 68px rgba(59, 107, 255, 0.38);
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: #d9e0ff;
}

.btn-secondary:hover {
  border-color: rgba(137, 163, 255, 0.34);
  background: rgba(255, 255, 255, 0.055);
}

.hero-light {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(1px);
}

.hero-light-one {
  top: 0;
  left: 50%;
  width: 960px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(109, 174, 255, 0.14), transparent 66%);
  opacity: 0.76;
}

.hero-light-two {
  right: 12%;
  bottom: 2%;
  width: 760px;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(59, 107, 255, 0.18), transparent 70%);
}

.hero-visual {
  display: none;
}

.wave-panel,
.metric-card,
.value-card,
.featured-card,
.step-card,
.ecosystem-panel,
.lead-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 24, 45, 0.74), rgba(8, 13, 28, 0.66));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.wave-panel {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(700px, 72vw);
  height: 170px;
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: var(--radius-lg);
  opacity: 0.76;
}

.wave-panel::before {
  position: absolute;
  inset: -40%;
  content: "";
  background:
    radial-gradient(circle at 50% 54%, rgba(109, 174, 255, 0.2), transparent 34%),
    radial-gradient(circle at 34% 76%, rgba(123, 97, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(16, 24, 45, 0.2), rgba(5, 8, 20, 0.2));
}

.wave-line,
.wave-line-soft,
.wave-line-deep {
  position: absolute;
  right: -8%;
  bottom: 38px;
  left: -8%;
  height: 86px;
  border: 1px solid rgba(109, 174, 255, 0.28);
  border-color: rgba(109, 174, 255, 0.28) transparent transparent;
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.wave-line-soft {
  bottom: 15px;
  border-color: rgba(123, 97, 255, 0.2) transparent transparent;
  transform: rotate(4deg);
}

.wave-line-deep {
  bottom: -14px;
  border-color: rgba(109, 174, 255, 0.12) transparent transparent;
  transform: rotate(1deg);
}

.wave-core {
  position: absolute;
  top: 49%;
  left: 50%;
  width: 116px;
  height: 4px;
  transform: translate(-50%, -50%);
  border-radius: 99px;
  background: rgba(109, 174, 255, 0.72);
  box-shadow: 0 0 42px rgba(109, 174, 255, 0.8);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin: 16px auto 0;
  position: relative;
  z-index: 4;
}

.metric-card {
  min-height: 132px;
  padding: 22px;
  border-radius: var(--radius-md);
}

.metric-card span,
.card-label {
  font-family: var(--font-ui);
  color: #aab8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.24;
}

.section {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin: 0 auto;
  padding: var(--section) 0 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.section-copy {
  display: grid;
  gap: 18px;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-copy p,
.section-heading p,
.featured-card p,
.value-card p,
.step-card p,
.ecosystem-panel p,
.lead-panel p,
.final-cta p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  max-width: 680px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.72;
}

.section-heading.centered p {
  margin-right: auto;
  margin-left: auto;
}

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

.value-card {
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius-md);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.value-card:hover,
.featured-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(137, 163, 255, 0.34);
  background: linear-gradient(180deg, rgba(20, 30, 58, 0.78), rgba(8, 13, 28, 0.7));
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(120, 145, 255, 0.18);
  border-radius: 12px;
  background: rgba(59, 107, 255, 0.1);
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #9ab2ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card p {
  margin-top: 14px;
  line-height: 1.68;
}

.featured-section {
  position: relative;
}

.featured-section::before,
.process-section::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 107, 255, 0.14), transparent 68%);
  filter: blur(4px);
}

.featured-section::before {
  right: -24%;
  top: 20%;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.featured-card {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 24px;
  border-radius: var(--radius-md);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.featured-large {
  grid-row: span 3;
  min-height: 492px;
  padding: 34px;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(16, 24, 45, 0.18), rgba(7, 11, 24, 0.92)),
    radial-gradient(circle at 52% 30%, rgba(109, 174, 255, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(18, 30, 68, 0.88), rgba(5, 8, 20, 0.8));
}

.featured-card h3 {
  margin-top: 10px;
}

.featured-card p {
  font-family: var(--font-body);
  margin-top: 13px;
  line-height: 1.68;
}

.featured-card a {
  width: max-content;
  margin-top: auto;
  padding-top: 22px;
  font-family: var(--font-ui);
  color: #c6d1ff;
  font-size: 14px;
  font-weight: 800;
}

.process-section {
  position: relative;
}

.process-section::before {
  left: -26%;
  top: 30%;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  min-height: 252px;
  padding: 24px;
  border-radius: var(--radius-md);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 44px;
  font-family: var(--font-ui);
  color: rgba(181, 194, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.step-card p {
  margin-top: 13px;
  line-height: 1.66;
}

.ecosystem-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-lg);
}

.ecosystem-panel::after {
  position: absolute;
  top: -45%;
  right: -8%;
  width: 460px;
  height: 460px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(109, 174, 255, 0.16), transparent 67%);
}

.ecosystem-panel h2,
.ecosystem-panel p,
.ecosystem-panel .section-kicker,
.benefit-list {
  position: relative;
  z-index: 1;
}

.ecosystem-panel p {
  max-width: 660px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.benefit-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(120, 145, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: #d8dfff;
}

.benefit-list span {
  flex: 0 0 auto;
  margin-top: 7px;
}

.lead-panel {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(16, 24, 45, 0.78), rgba(7, 11, 24, 0.7)),
    radial-gradient(circle at 82% 22%, rgba(123, 97, 255, 0.12), transparent 34%);
}

.lead-panel p {
  max-width: 640px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  font-family: var(--font-ui);
  color: #dce3ff;
  font-size: 13px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.form-row input {
  min-width: 0;
  height: 48px;
  border: 1px solid rgba(120, 145, 255, 0.18);
  border-radius: var(--radius-sm);
  outline: 0;
  background: rgba(5, 8, 20, 0.62);
  font-family: var(--font-body);
  color: var(--text);
  padding: 0 14px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-row input:focus {
  border-color: rgba(137, 163, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(59, 107, 255, 0.12);
}

.catalog-section,
.criteria-section,
.affiliate-section {
  scroll-margin-top: 110px;
}

.affiliate-section {
  padding-bottom: clamp(42px, 7vw, 84px);
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  gap: 18px;
  align-items: stretch;
}

.course-panel,
.upcoming-panel,
.criterion-card,
.affiliate-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(16, 24, 45, 0.74), rgba(8, 13, 28, 0.66));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.course-panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: clamp(28px, 5vw, 54px);
}

.course-panel::after {
  position: absolute;
  top: -26%;
  right: -12%;
  width: 440px;
  height: 440px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(109, 174, 255, 0.16), transparent 67%);
  pointer-events: none;
}

.course-panel > * {
  position: relative;
  z-index: 1;
}

.course-eyebrow {
  display: inline-flex;
  width: max-content;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(123, 97, 255, 0.12);
  font-family: var(--font-ui);
  color: #c9c0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.course-panel h3 {
  max-width: 680px;
  font-size: clamp(32px, 4.7vw, 58px);
  line-height: 1.02;
}

.course-panel p {
  max-width: 680px;
  margin: 18px 0 0;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.course-list li {
  position: relative;
  padding: 14px 14px 14px 38px;
  border: 1px solid rgba(120, 145, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--font-body);
  color: #d8dfff;
  font-size: 14px;
  line-height: 1.45;
}

.course-list li::before {
  position: absolute;
  top: 16px;
  left: 15px;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(109, 174, 255, 0.66);
}

.course-actions {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 180px);
  gap: 12px;
  margin-top: 30px;
}

.upcoming-panel {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.upcoming-panel h3 {
  margin-bottom: 18px;
}

.mini-category-list {
  display: grid;
  gap: 10px;
}

.mini-category-list div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(120, 145, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.mini-category-list strong {
  font-family: var(--font-ui);
  font-size: 14px;
}

.mini-category-list span,
.lead-form p {
  margin: 0;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.lead-form > p:not(.form-status) {
  margin-top: -4px;
}

.form-status {
  min-height: 18px;
}

.form-status[data-state="success"] {
  color: #9fd5ff;
}

.form-status[data-state="error"] {
  color: #ffb4c1;
}

.upcoming-panel .lead-form {
  margin-top: auto;
  padding-top: 24px;
}

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

.compact-steps {
  grid-template-columns: repeat(3, 1fr);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.criterion-card {
  min-height: 260px;
  padding: 24px;
}

.criterion-card span {
  display: inline-flex;
  margin-bottom: 38px;
  font-family: var(--font-ui);
  color: rgba(181, 194, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.criterion-card p {
  margin: 13px 0 0;
  font-family: var(--font-body);
  color: var(--muted);
  line-height: 1.66;
}

.affiliate-panel {
  padding: clamp(22px, 3.4vw, 38px);
  background:
    linear-gradient(180deg, rgba(16, 24, 45, 0.56), rgba(8, 13, 28, 0.66)),
    radial-gradient(circle at 86% 10%, rgba(109, 174, 255, 0.09), transparent 32%);
}

.affiliate-panel h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.12;
}

.affiliate-panel p {
  max-width: 980px;
  margin: 14px 0 0;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.final-cta {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin: 0 auto;
  padding: var(--section) 0;
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: clamp(36px, 8vw, 72px);
  border: 1px solid rgba(120, 145, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(11, 18, 36, 0.58), rgba(7, 11, 24, 0.8)),
    radial-gradient(circle at 50% 0%, rgba(109, 174, 255, 0.18), transparent 48%);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.final-cta-inner::before {
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(109, 174, 255, 0.62), transparent);
}

.final-cta p {
  max-width: 560px;
  margin: 16px auto 28px;
  font-family: var(--font-body);
  font-size: 17px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(220px, 0.8fr) auto;
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin: 0 auto 28px;
  padding: clamp(24px, 3.4vw, 34px);
  border: 1px solid rgba(120, 145, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(11, 18, 36, 0.48), rgba(7, 11, 24, 0.68)),
    radial-gradient(circle at 8% 0%, rgba(109, 174, 255, 0.08), transparent 30%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-brand,
.footer-links,
.footer-connect {
  display: grid;
  gap: 14px;
}

.footer-logo {
  width: 168px;
  height: auto;
  max-width: 100%;
}

.footer-brand p {
  max-width: 390px;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.footer-title {
  font-family: var(--font-ui);
  color: #aab8ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav,
.footer-legal,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}

.footer-nav {
  display: grid;
  align-items: start;
  gap: 9px;
}

.footer-connect {
  justify-items: end;
}

.footer-social {
  justify-content: flex-end;
}

.footer-nav a,
.footer-legal a,
.footer-social a {
  font-family: var(--font-ui);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: var(--text);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(120, 145, 255, 0.1);
}

.footer-copy {
  margin: 0;
  font-family: var(--font-ui);
  color: rgba(142, 154, 184, 0.78);
  font-size: 12px;
  font-weight: 500;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(120, 145, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--font-ui);
  color: rgba(142, 154, 184, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.footer-credit-led {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(109, 174, 255, 0.72);
  flex-shrink: 0;
}

.footer-credit a {
  color: #c6d1ff;
  transition: color 180ms ease;
}

.footer-credit a:hover {
  color: var(--text);
}

.footer-bottom .footer-legal {
  justify-content: center;
}

.footer-bottom .footer-credit {
  justify-self: end;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(120, 145, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(216, 223, 255, 0.88);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(137, 163, 255, 0.34);
  background: rgba(59, 107, 255, 0.1);
  color: var(--text);
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-icon svg rect,
.social-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-icon svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 2.8vw, 28px);
  bottom: clamp(16px, 2.8vw, 28px);
  z-index: 70;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(137, 163, 255, 0.32);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(16, 24, 45, 0.88), rgba(5, 8, 20, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(109, 174, 255, 0.18), transparent 65%);
  color: #f3f6ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 54px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(59, 107, 255, 0.16);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.94);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  backdrop-filter: blur(18px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(137, 163, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(59, 107, 255, 0.9), rgba(51, 94, 223, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(109, 174, 255, 0.2), transparent 65%);
}

.back-to-top span {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(calc(100% - 36px), 920px);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(120, 145, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(5, 8, 20, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.cookie-banner span {
  font-family: var(--font-ui);
  color: #b7c4ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-banner p {
  max-width: 650px;
  margin: 6px 0 0;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14px;
}

.cookie-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.cookie-links a {
  font-family: var(--font-ui);
  color: #c6d1ff;
  font-size: 13px;
  font-weight: 700;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 188px 188px;
  gap: 10px;
}

.cookie-actions .btn {
  white-space: nowrap;
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 24px;
    --section: clamp(64px, 9vw, 88px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-open .main-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 50%;
    left: auto;
    display: block;
    width: min(calc(100vw - 36px), 390px);
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(11, 18, 36, 0.96), rgba(5, 8, 20, 0.96)),
      radial-gradient(circle at 50% 0%, rgba(109, 174, 255, 0.12), transparent 48%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 28px 90px rgba(0, 0, 0, 0.38);
    transform: translateX(50%);
    backdrop-filter: blur(22px);
  }

  .nav-open .main-nav > a {
    display: none;
  }

  .nav-open .mobile-menu-content {
    display: grid;
  }

  .mobile-menu-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(120, 145, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
  }

  .mobile-menu-feature strong,
  .mobile-menu-link span {
    display: block;
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 800;
  }

  .mobile-menu-feature small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
  }

  .mobile-menu-feature em {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #24d8ff, #5b7cff 52%, #9333ea);
    color: #fff;
    font-style: normal;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(59, 107, 255, 0.32);
  }

  .mobile-menu-group {
    display: grid;
    gap: 18px;
    padding: 24px 22px 22px;
  }

  .mobile-menu-label {
    font-family: var(--font-ui);
    color: #aab8ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .mobile-menu-group a {
    position: relative;
    display: block;
    padding-left: 26px;
    color: #d9e0ff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
  }

  .mobile-menu-group a::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 8px rgba(109, 174, 255, 0.7);
    transform: translateY(-50%);
  }

  .mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-top: 1px solid rgba(120, 145, 255, 0.12);
    border-bottom: 1px solid rgba(120, 145, 255, 0.12);
    background: rgba(255, 255, 255, 0.018);
  }

  .mobile-menu-link em {
    color: #7de8ff;
    font-style: normal;
    font-weight: 900;
  }

  .mobile-menu-social {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    justify-items: center;
    gap: 10px;
    padding: 16px 20px 20px;
  }

  .mobile-menu-social .social-icon {
    display: inline-grid;
  }

  .mobile-menu-social span {
    grid-column: 1 / -1;
    font-family: var(--font-ui);
    color: #aab8ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-menu-social a {
    margin: 0 4px;
  }

  .mobile-menu-social .social-icon {
    width: 40px;
    height: 40px;
  }

  .metric-strip,
  .value-grid,
  .steps-grid,
  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-grid,
  .featured-grid,
  .catalog-layout,
  .lead-panel {
    grid-template-columns: 1fr;
  }

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

  .compact-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-large {
    min-height: 360px;
  }

  h1 {
    font-size: clamp(36px, 5.4vw, 50px);
  }

  h2 {
    font-size: clamp(28px, 4.8vw, 40px);
  }

  .hero-section {
    min-height: calc(100svh - 90px);
    padding-top: clamp(42px, 7vw, 72px);
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    margin-bottom: 28px;
  }

  .hero-copy {
    margin-top: 28px;
  }

  .hero-tags {
    margin-top: 22px;
  }

  .hero-actions {
    margin-top: 40px;
  }

  .wave-panel {
    width: min(680px, 86vw);
  }

  .course-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 18px;
    --section: clamp(52px, 14vw, 72px);
  }

  .site-header {
    min-height: 68px;
    margin-top: 12px;
    padding: 10px 12px;
  }

  .brand-logo {
    width: 132px;
    max-width: 46vw;
  }

  .footer-logo {
    width: 168px;
    max-width: 68vw;
  }

  .hero-section {
    width: 100%;
    min-height: calc(100svh - 92px);
    padding: 30px var(--page-gutter) 34px;
    overflow: visible;
  }

  .hero-section::before,
  .hero-section::after,
  .hero-light {
    display: none;
  }

  h1 {
    font-size: clamp(19px, 5.8vw, 24px);
    line-height: 1.08;
  }

  .mobile-title-line {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.12;
  }

  h3 {
    font-size: 16px;
    line-height: 1.26;
  }

  .hero-badge {
    display: block;
    width: 100%;
    font-size: 10px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 22px;
    padding: 7px 14px;
  }

  .hero-badge > span:first-child {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    margin-bottom: 2px;
  }

  .hero-copy,
  .hero-tags,
  .hero-actions {
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .hero-tags {
    overflow-wrap: anywhere;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-height: calc(100svh - 152px);
    padding-inline: 0;
  }

  .hero-tags {
    margin-top: 26px;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-copy {
    margin-top: 34px;
    font-size: 14px;
    line-height: 1.54;
  }

  .section-copy,
  .section-heading p,
  .lead-panel p,
  .ecosystem-panel p {
    font-size: 15px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 10px;
    margin-top: 38px;
    padding-top: 0;
    padding-bottom: 0;
    transform: none;
  }

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

  .btn,
  .form-row .btn {
    width: 100%;
  }

  .wave-panel {
    bottom: 8px;
    display: block;
    width: calc(100% - 20px);
    height: 64px;
    opacity: 0.36;
  }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .metric-card {
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
  }

  .metric-card span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c6d1ff;
    font-size: 10px;
    letter-spacing: 0.03em;
  }

  .metric-card span::before {
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(109, 174, 255, 0.7);
  }

  .metric-card strong {
    display: none;
  }

  .value-grid,
  .steps-grid,
  .compact-steps,
  .criteria-grid,
  .course-list,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .course-panel {
    min-height: auto;
    padding: 24px 20px;
  }

  .course-panel h3 {
    font-size: clamp(26px, 8.6vw, 36px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .course-panel p,
  .affiliate-panel p {
    font-size: 15px;
  }

  .course-actions,
  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .upcoming-panel,
  .criterion-card,
  .affiliate-panel {
    padding: 20px;
  }

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

  .criterion-card span {
    margin-bottom: 22px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    bottom: max(12px, calc(env(safe-area-inset-bottom) + 12px));
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 80px);
    overflow-y: auto;
  }

  .cookie-links {
    justify-content: center;
    text-align: center;
  }

  .back-to-top {
    right: max(22px, calc(env(safe-area-inset-right) + 22px));
    bottom: max(22px, calc(env(safe-area-inset-bottom) + 22px));
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .metric-card,
  .value-card,
  .step-card {
    min-height: auto;
  }

  .step-card span {
    margin-bottom: 28px;
  }

  .featured-large,
  .featured-card {
    min-height: 280px;
  }

  .lead-panel,
  .ecosystem-panel,
  .final-cta-inner {
    border-radius: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .footer-connect {
    justify-items: start;
  }

  .footer-social,
  .footer-legal,
  .footer-bottom {
    justify-content: flex-start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom .footer-legal {
    justify-content: center;
  }

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

  .footer-credit {
    width: fit-content;
    justify-self: center !important;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
