:root {
  --accent: #4557d8;
  --accent-dark: #3544bd;
  --accent-deep: #252c77;
  --accent-soft: #eef0ff;
  --accent-line: #d9ddff;
  --ink: #17191f;
  --ink-soft: #262933;
  --muted: #626775;
  --faint: #9297a4;
  --line: #e6e8ed;
  --line-soft: #eef0f3;
  --canvas: #f7f8fa;
  --warm: #f5f2ec;
  --white: #fff;
  --success: #21895a;
  --success-soft: #e8f6ef;
  --orange: #f08c46;
  --max-width: 1180px;
  --shadow: 0 24px 60px rgb(24 28 45 / 10%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Golos Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(69 87 216 / 30%);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  box-shadow: 0 8px 30px rgb(25 30 50 / 5%);
}

.site-header__inner {
  position: relative;
  display: flex;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 74px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.mini-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.brand__mark,
.mini-brand b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
}

.brand__name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .035em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #505563;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.text-action,
.site-footer a {
  transition: color .16s ease;
}

.desktop-nav a:hover,
.text-action:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.text-action {
  font-size: 14px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

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

.button--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 9px 24px rgb(69 87 216 / 24%);
}

.button--primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  box-shadow: 0 12px 28px rgb(69 87 216 / 30%);
}

.button--large {
  min-height: 54px;
  padding: 15px 25px;
  border-radius: 13px;
  font-size: 15px;
}

.button--quiet {
  border-color: var(--line);
  background: rgb(255 255 255 / 72%);
  color: var(--ink);
}

.button--quiet:hover {
  border-color: #ccd0d9;
  background: var(--white);
}

.button--white {
  background: var(--white);
  color: var(--accent-dark);
  box-shadow: 0 10px 28px rgb(19 24 67 / 20%);
}

.button--white:hover {
  background: #f4f5ff;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 760px;
  margin: 0 auto;
  padding: 148px 0 92px;
  align-items: center;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 62px;
}

.hero__glow {
  position: absolute;
  top: 100px;
  right: -40px;
  z-index: -1;
  width: 650px;
  height: 610px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(221 224 255 / 76%) 0, rgb(242 243 255 / 24%) 53%, transparent 72%);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .095em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px var(--success-soft);
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 74px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98;
  text-wrap: balance;
}

.hero h1 em {
  position: relative;
  color: var(--accent);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-line);
  clip-path: polygon(0 43%, 100% 0, 96% 55%, 3% 100%);
  content: "";
}

.hero__lead {
  max-width: 550px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  margin-top: 35px;
  gap: 12px;
}

.hero__notes {
  display: flex;
  margin: 27px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--muted);
  font-size: 12.5px;
  list-style: none;
}

.hero__notes li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__notes span {
  color: var(--success);
  font-weight: 800;
}

.hero-product {
  position: relative;
  width: 760px;
  max-width: 100%;
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
  transform-origin: left center;
}

.hero-product::before {
  position: absolute;
  inset: 45px -22px -24px 30px;
  z-index: -1;
  border-radius: 32px;
  background: rgb(69 87 216 / 12%);
  filter: blur(30px);
  content: "";
}

.hero-product__chrome {
  display: flex;
  height: 37px;
  padding: 0 13px;
  align-items: center;
  gap: 5px;
  border: 1px solid #dfe2e9;
  border-bottom: 0;
  border-radius: 17px 17px 0 0;
  background: #f2f3f6;
}

.hero-product__chrome > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7cad2;
}

.hero-product__address {
  width: 190px;
  margin: 0 auto;
  padding: 4px 20px;
  border: 1px solid #e2e4e9;
  border-radius: 6px;
  background: var(--white);
  color: #9a9da6;
  font-size: 7px;
  text-align: center;
}

.app-preview {
  overflow: hidden;
  border: 1px solid #dfe2e9;
  border-radius: 0 0 17px 17px;
  background: #f7f8fa;
  box-shadow: 0 36px 70px rgb(25 29 53 / 16%);
}

.app-preview__header {
  display: flex;
  min-height: 52px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #e6e8ec;
  background: var(--white);
}

.mini-brand {
  gap: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
}

.mini-brand b {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  font-size: 9px;
}

.app-preview__header nav {
  display: flex;
  gap: 16px;
  color: #858a96;
  font-size: 7.5px;
}

.app-preview__header nav strong {
  color: var(--accent);
}

.app-preview__stats {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #707480;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}

.app-preview__stats > span {
  padding: 5px 7px;
  border: 1px solid #eceef2;
  border-radius: 6px;
}

.app-preview__stats .xp-pill {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.app-preview__stats i {
  width: 21px;
  height: 21px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd2ab, #9e704c);
  box-shadow: 0 0 0 1px #e0e3e9;
}

.app-preview__body {
  display: grid;
  min-height: 410px;
  padding: 24px;
  grid-template-columns: minmax(0, 1.65fr) minmax(150px, .72fr);
  gap: 14px;
}

.preview-main,
.preview-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-welcome,
.preview-task,
.streak-card,
.repeat-card {
  border: 1px solid #e5e7ec;
  border-radius: 11px;
  background: var(--white);
}

.preview-welcome {
  position: relative;
  display: grid;
  padding: 16px 18px 18px;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.preview-welcome small,
.streak-card small,
.repeat-card > small {
  color: var(--accent);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .09em;
}

.preview-welcome h2 {
  margin: 5px 0 3px;
  font-size: 15px;
  letter-spacing: -.02em;
}

.preview-welcome p {
  margin: 0;
  color: #848895;
  font-size: 7px;
}

.preview-welcome > span {
  align-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 6px;
  font-weight: 700;
}

.preview-progress {
  height: 5px;
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: 5px;
  background: #edf0f3;
}

.preview-progress i {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.preview-heading {
  display: flex;
  padding: 4px 2px 1px;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
}

.preview-heading span {
  color: #9599a4;
  font-size: 6.5px;
}

.preview-task {
  display: grid;
  min-height: 60px;
  padding: 10px 11px;
  align-items: center;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
}

.preview-task > b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 9px;
}

.preview-task div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.preview-task div strong {
  font-size: 8px;
}

.preview-task div span {
  overflow: hidden;
  color: #8c909b;
  font-size: 6.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-task button,
.preview-task em {
  padding: 5px 8px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: 6.5px;
  font-style: normal;
  font-weight: 700;
}

.preview-task--done {
  border-color: #dcefe4;
}

.preview-task--done > b {
  background: var(--success-soft);
  color: var(--success);
}

.preview-task--done em {
  background: var(--success-soft);
  color: var(--success);
}

.preview-task--accent {
  background: #282d65;
  color: var(--white);
}

.preview-task--accent > b {
  background: rgb(255 255 255 / 12%);
  color: var(--white);
}

.preview-task--accent div span {
  color: #b7bcde;
}

.preview-task--accent button {
  background: var(--white);
  color: var(--accent-deep);
}

.streak-card {
  display: flex;
  padding: 15px;
  gap: 10px;
  background: #fffaf5;
}

.streak-card > span {
  font-size: 23px;
}

.streak-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.streak-card small {
  color: #c96824;
}

.streak-card strong {
  font-size: 13px;
}

.streak-card p {
  margin: 2px 0 0;
  color: #888078;
  font-size: 6.5px;
  line-height: 1.5;
}

.repeat-card {
  display: flex;
  padding: 16px;
  flex-direction: column;
  gap: 7px;
}

.repeat-card > strong {
  max-width: 100px;
  font-size: 11px;
  line-height: 1.3;
}

.repeat-card > div {
  display: flex;
  margin: 6px 0 2px;
}

.repeat-card i {
  width: 22px;
  height: 22px;
  margin-left: -4px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-line), var(--accent));
}

.repeat-card i:first-child {
  margin-left: 0;
}

.repeat-card i:nth-child(2) { background: linear-gradient(145deg, #d6f1e3, #3b9b6e); }
.repeat-card i:nth-child(3) { background: linear-gradient(145deg, #ffe2c8, #e98b48); }
.repeat-card i:nth-child(4) { background: linear-gradient(145deg, #f3d5ec, #9f5f94); }

.repeat-card > span {
  color: #8c909a;
  font-size: 6.5px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  min-width: 176px;
  padding: 11px 13px;
  align-items: center;
  gap: 10px;
  border: 1px solid #e3e5eb;
  border-radius: 12px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 14px 40px rgb(26 30 56 / 15%);
  transform: rotate(3deg);
}

.floating-card > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.floating-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.floating-card strong { font-size: 9px; }
.floating-card small { color: #8b8f9b; font-size: 6.5px; }
.floating-card--xp { right: -24px; bottom: 49px; }
.floating-card--level { top: 92px; left: -31px; transform: rotate(-4deg); }
.floating-card--level > span { background: var(--success-soft); color: var(--success); }

.fact-strip {
  display: grid;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 29px 0 31px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip > div {
  display: flex;
  padding: 0 28px;
  align-items: baseline;
  gap: 11px;
  border-left: 1px solid var(--line);
}

.fact-strip > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.fact-strip strong {
  flex: 0 0 auto;
  font-size: 28px;
  letter-spacing: -.03em;
}

.fact-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: 112px max(24px, calc((100vw - var(--max-width)) / 2));
}

.section--tint {
  background: var(--canvas);
}

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

.section-heading--left {
  max-width: 720px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading .section-kicker {
  margin-bottom: 16px;
}

.section-heading h2,
.courses__intro h2,
.progress__copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: -.038em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-heading > p:last-child,
.courses__intro > p,
.progress__copy > p,
.final-cta > div > p:not(.section-kicker) {
  margin: 21px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}

.section-heading--left > p:last-child {
  margin-left: 0;
}

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

.feature-card {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  padding: 27px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.feature-card:hover {
  border-color: var(--accent-line);
  box-shadow: 0 18px 50px rgb(25 28 50 / 8%);
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
}

.feature-label,
.course-type {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 9px 0 10px;
  font-size: 21px;
  letter-spacing: -.02em;
}

.feature-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.mini-plan {
  display: grid;
  margin-top: auto;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.mini-plan span {
  position: relative;
  height: 50px;
  border-radius: 8px;
  background: #f0f1f4;
}

.mini-plan span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  color: #abb0ba;
  content: "·";
  font-size: 20px;
  font-weight: 800;
  transform: translateX(-50%);
}

.mini-plan .done { background: var(--success-soft); }
.mini-plan .done::before { color: var(--success); content: "✓"; font-size: 12px; }
.mini-plan .current { background: var(--accent); box-shadow: 0 7px 14px rgb(69 87 216 / 20%); }
.mini-plan .current::before { color: var(--white); content: "4"; font-size: 11px; }

.level-line {
  display: flex;
  margin-top: auto;
  align-items: center;
}

.level-line b {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 8px;
}

.level-line span {
  width: 100%;
  height: 1px;
  background: var(--accent-line);
}

.skill-tags {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 7px;
}

.skill-tags span,
.trainer-cloud span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
  color: #555a67;
  font-size: 9px;
  font-weight: 600;
}

.word-stack {
  position: relative;
  height: 74px;
  margin-top: auto;
}

.word-stack > span {
  position: absolute;
  display: flex;
  width: 82%;
  padding: 10px 13px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 7px 20px rgb(28 31 46 / 5%);
  font-size: 9px;
}

.word-stack > span:nth-child(1) { top: 0; left: 0; transform: rotate(-2deg); }
.word-stack > span:nth-child(2) { top: 22px; right: 0; transform: rotate(1deg); }
.word-stack > span:nth-child(3) { bottom: 0; left: 5%; transform: rotate(-.5deg); }
.word-stack i { color: var(--muted); font-style: normal; }

.skill-bars {
  display: flex;
  margin-top: auto;
  align-items: flex-end;
  gap: 12px;
}

.skill-bars span {
  position: relative;
  width: 25px;
  height: 65px;
  overflow: hidden;
  border-radius: 7px;
  background: #eef0f3;
}

.skill-bars i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--value);
  border-radius: inherit;
  background: var(--accent);
}

.skill-bars span:nth-child(2) i { background: #7380e4; }
.skill-bars span:nth-child(3) i { background: #a1a9eb; }

.podium {
  display: flex;
  height: 70px;
  margin-top: auto;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.podium span {
  display: flex;
  width: 55px;
  height: 45px;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  background: #dde1ff;
}

.podium span:nth-child(2) { height: 65px; background: var(--accent); }
.podium span:nth-child(3) { height: 35px; background: #eceeff; }
.podium i {
  display: grid;
  width: 25px;
  height: 25px;
  margin-top: -12px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.courses__intro {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto 57px;
  align-items: end;
  grid-template-columns: 1.25fr .75fr;
  gap: 90px;
}

.courses__intro .section-kicker {
  margin-bottom: 16px;
}

.courses__intro h2 {
  font-size: clamp(36px, 4vw, 51px);
}

.courses__intro > p {
  margin: 0;
  font-size: 14.5px;
}

.course-layout {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: .96fr 1.04fr;
  gap: 17px;
}

.level-course {
  padding: 37px;
  border-radius: 24px;
  background: var(--ink-soft);
  color: var(--white);
}

.level-course .course-type {
  color: #aeb6ff;
}

.level-course > h3 {
  margin: 12px 0 12px;
  font-size: 30px;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.level-course > p {
  margin: 0;
  color: #adb1be;
  font-size: 13px;
}

.course-road {
  position: relative;
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  flex-direction: column;
  list-style: none;
}

.course-road::before {
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 21px;
  width: 1px;
  background: #454955;
  content: "";
}

.course-road li {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 63px;
  padding: 8px 0;
  align-items: center;
  grid-template-columns: 44px 1fr auto;
  gap: 13px;
}

.course-road li > b {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #4c505e;
  border-radius: 50%;
  background: var(--ink-soft);
  color: #aaafbb;
  font-size: 10px;
}

.course-road li > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.course-road strong { font-size: 12px; }
.course-road small { color: #858a98; font-size: 8px; }
.course-road i { color: #858a98; font-size: 8px; font-style: normal; font-weight: 700; }
.course-road .is-complete > b { border-color: var(--success); background: var(--success); color: var(--white); }
.course-road .is-complete > i { color: #7bcca6; }
.course-road .is-current { margin: 2px 0; padding: 10px 13px 10px 8px; border: 1px solid #5a67c8; border-radius: 12px; background: #313976; }
.course-road .is-current > b { border-color: #7581e3; background: var(--accent); color: var(--white); }
.course-road .is-current small { color: #b7bee8; }
.course-road .is-current i { color: #c7ccff; }

.special-courses {
  display: grid;
  gap: 13px;
}

.special-course {
  position: relative;
  display: grid;
  min-height: 142px;
  overflow: hidden;
  padding: 24px 25px;
  align-items: start;
  grid-template-columns: 38px 1fr auto;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
}

.special-course::after {
  position: absolute;
  right: -30px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  border: 30px solid rgb(69 87 216 / 7%);
  border-radius: 50%;
  content: "";
}

.course-number {
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
}

.special-course small {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.special-course h3 {
  margin: 7px 0 6px;
  font-size: 19px;
  letter-spacing: -.02em;
}

.special-course p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.course-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: 12px;
}

.special-course--it { background: #f3f4ff; border-color: #e0e3ff; }
.special-course--travel { background: #fffaf4; border-color: #f2e7d8; }
.special-course--travel small { color: #b3652c; }
.special-course--travel::after { border-color: rgb(232 139 71 / 9%); }

.more-courses {
  display: flex;
  padding: 15px 5px 0;
  align-items: flex-start;
  gap: 25px;
}

.more-courses strong {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 14px;
}

.more-courses p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.trainer-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 18px;
}

.trainer-demo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 70px rgb(29 33 59 / 8%);
}

.trainer-demo__top,
.trainer-demo__bottom {
  display: flex;
  padding: 17px 22px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.trainer-demo__top strong {
  color: var(--ink);
  font-size: 10px;
}

.trainer-demo__progress {
  height: 4px;
  background: #eef0f4;
}

.trainer-demo__progress i {
  display: block;
  width: 10%;
  height: 100%;
  background: var(--accent);
  transition: width .25s ease;
}

.trainer-demo__content {
  min-height: 350px;
  padding: 50px 62px 42px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.trainer-demo__content.is-changing {
  animation: panel-in .28s ease;
}

@keyframes panel-in {
  from { opacity: .2; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.trainer-demo__type {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.trainer-demo__content h3 {
  margin: 18px 0 29px;
  font-size: 21px;
}

.trainer-demo__sentence {
  margin: 0;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.3;
}

.trainer-demo__sentence mark {
  padding: 0 5px;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent);
}

.trainer-demo__translation {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.trainer-options {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.trainer-options button {
  min-height: 43px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  cursor: default;
  font-size: 12px;
  font-weight: 700;
}

.trainer-options button.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.trainer-demo__bottom > span {
  color: var(--faint);
  font-size: 9px;
}

.trainer-demo__bottom > button {
  padding: 9px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.trainer-switcher {
  display: flex;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--canvas);
}

.trainer-switcher > button {
  display: grid;
  min-height: 92px;
  padding: 16px;
  align-items: center;
  grid-template-columns: 31px 1fr;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.trainer-switcher > button:hover {
  color: var(--ink);
}

.trainer-switcher > button.is-active {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 7px 22px rgb(29 33 51 / 6%);
}

.trainer-switcher > button > span {
  color: var(--faint);
  font-size: 9px;
  font-weight: 800;
}

.trainer-switcher > button.is-active > span {
  color: var(--accent);
}

.trainer-switcher div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trainer-switcher strong { font-size: 13px; }
.trainer-switcher small { color: var(--faint); font-size: 9px; }

.trainer-cloud {
  display: flex;
  max-width: 1000px;
  margin: 35px auto 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.trainer-cloud span {
  padding: 9px 13px;
  background: var(--white);
  font-size: 10px;
}

.section--dark {
  display: grid;
  max-width: none;
  padding-top: 105px;
  padding-bottom: 105px;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
  gap: 100px;
  background: var(--ink-soft);
  color: var(--white);
}

.section--dark .section-kicker {
  color: #aeb6ff;
}

.progress__copy {
  width: 100%;
  max-width: 540px;
  justify-self: end;
}

.progress__copy > p {
  color: #adb1be;
}

.progress__copy ul {
  display: flex;
  margin: 40px 0 0;
  padding: 0;
  flex-direction: column;
  list-style: none;
}

.progress__copy li {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  border-top: 1px solid #3d414d;
}

.progress__copy li > span {
  color: #858a99;
  font-size: 10px;
  font-weight: 800;
}

.progress__copy li div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.progress__copy li strong { font-size: 14px; }
.progress__copy li p { margin: 0; color: #8f94a2; font-size: 11.5px; line-height: 1.5; }

.progress-visual {
  display: grid;
  width: min(100%, 520px);
  min-height: 520px;
  padding: 37px;
  align-content: start;
  border: 1px solid #444958;
  border-radius: 25px;
  background: #2d313b;
  box-shadow: 0 30px 80px rgb(8 10 20 / 22%);
}

.progress-ring {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring circle {
  fill: none;
  stroke: #424755;
  stroke-width: 8;
}

.progress-ring .progress-ring__value {
  stroke: #7683ef;
  stroke-dasharray: 364.5;
  stroke-dashoffset: 116.6;
  stroke-linecap: round;
}

.progress-ring > div {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.progress-ring strong {
  font-size: 36px;
  letter-spacing: -.04em;
}

.progress-ring span {
  color: #969ba9;
  font-size: 9px;
}

.progress-skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.progress-skills > div {
  display: grid;
  padding: 14px;
  grid-template-columns: 1fr auto;
  gap: 7px;
  border: 1px solid #414652;
  border-radius: 11px;
  background: #292d36;
}

.progress-skills span { color: #9da2af; font-size: 8px; }
.progress-skills strong { font-size: 9px; }
.progress-skills i { height: 4px; grid-column: 1 / -1; overflow: hidden; border-radius: 5px; background: #424753; }
.progress-skills b { display: block; width: var(--value); height: 100%; border-radius: inherit; background: #7783eb; }

.achievement-row {
  display: grid;
  margin-top: 17px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.achievement-row > span {
  display: flex;
  padding: 11px 8px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 9px;
  background: #373c48;
  font-size: 16px;
}

.achievement-row small { color: #c0c4cf; font-size: 8px; font-weight: 700; }

.how .section-heading {
  margin-bottom: 47px;
}

.how-list {
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.how-list li {
  position: relative;
  min-height: 220px;
  padding: 26px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.how-list li:last-child {
  border-right: 1px solid var(--line);
}

.how-list > li > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.how-list li div {
  position: absolute;
  right: 27px;
  bottom: 27px;
  left: 27px;
}

.how-list h3 {
  margin: 0 0 9px;
  font-size: 15px;
}

.how-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.55;
}

.faq {
  padding: 0 max(24px, calc((100vw - 850px) / 2)) 112px;
}

.faq .section-heading {
  margin-bottom: 41px;
}

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

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

.faq summary {
  position: relative;
  padding: 23px 48px 23px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

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

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 13px;
  height: 1px;
  background: var(--accent);
  content: "";
  transition: transform .18s ease;
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0);
}

.faq details p {
  max-width: 720px;
  margin: -3px 0 24px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 510px;
  overflow: hidden;
  margin: 0 auto 24px;
  padding: 85px 50px;
  border-radius: 28px;
  background: var(--accent);
  color: var(--white);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: "";
}

.final-cta::before { top: -390px; left: 50%; width: 850px; height: 850px; transform: translateX(-50%); }
.final-cta::after { top: -250px; left: 50%; width: 580px; height: 580px; transform: translateX(-50%); }

.final-cta__glow {
  position: absolute;
  top: -280px;
  left: 50%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(128 143 255 / 55%), transparent 67%);
  transform: translateX(-50%);
}

.final-cta > div:not(.final-cta__glow) {
  position: relative;
  z-index: 2;
}

.final-cta__mark {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 14px;
  background: rgb(255 255 255 / 12%);
  font-size: 23px;
  font-weight: 800;
}

.final-cta .section-kicker {
  margin-bottom: 13px;
  color: #dce0ff;
}

.final-cta h2 {
  font-size: clamp(36px, 4.3vw, 54px);
}

.final-cta > div > p:not(.section-kicker) {
  margin-top: 16px;
  color: #dce0ff;
  font-size: 14px;
}

.final-cta .button {
  margin-top: 30px;
}

.site-footer {
  padding: 50px max(24px, calc((100vw - var(--max-width)) / 2)) 28px;
  background: var(--ink-soft);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  padding-bottom: 44px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 45px;
  border-bottom: 1px solid #3b3f4a;
}

.brand--light .brand__mark {
  background: var(--white);
  color: var(--accent);
}

.site-footer__top > p {
  margin: 0;
  color: #969ba8;
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 25px;
  color: #b7bbc5;
  font-size: 11px;
}

.site-footer nav a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  color: #777c89;
  font-size: 10px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: .92fr 1.08fr;
    gap: 35px;
  }

  .hero-product {
    width: 700px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .section--dark {
    gap: 60px;
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    display: flex;
    padding-top: 135px;
    flex-direction: column;
    text-align: center;
  }

  .hero__copy {
    display: flex;
    max-width: 760px;
    align-items: center;
    flex-direction: column;
  }

  .hero h1 {
    max-width: 730px;
  }

  .hero__lead {
    max-width: 650px;
  }

  .hero-product {
    width: min(850px, 94vw);
    margin-top: 30px;
    transform: none;
  }

  .floating-card--level { left: -12px; }
  .floating-card--xp { right: -12px; }

  .fact-strip {
    margin-top: 20px;
  }

  .fact-strip > div {
    padding: 0 17px;
    flex-direction: column;
    gap: 3px;
  }

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

  .course-layout {
    grid-template-columns: 1fr;
  }

  .level-course {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    column-gap: 40px;
  }

  .level-course > .course-type,
  .level-course > h3,
  .level-course > p {
    grid-column: 1;
  }

  .course-road {
    margin-top: 0;
    grid-column: 2;
    grid-row: 1 / span 4;
  }

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

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

  .trainer-switcher > button {
    min-height: 112px;
    grid-template-columns: 1fr;
  }

  .section--dark {
    grid-template-columns: 1fr;
  }

  .progress__copy {
    max-width: 730px;
    justify-self: center;
  }

  .progress-visual {
    width: min(100%, 690px);
    justify-self: center;
  }

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

  .how-list li:nth-child(2) { border-right: 1px solid var(--line); }
  .how-list li:nth-child(n+3) { border-top: 0; }
}

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

  .site-header__inner {
    width: calc(100% - 32px);
    min-height: 66px;
  }

  .text-action,
  .button--header {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 11px;
    width: 17px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .18s ease, opacity .18s ease, top .18s ease;
  }

  .menu-toggle span:nth-child(1) { top: 13px; }
  .menu-toggle span:nth-child(2) { top: 19px; }
  .menu-toggle span:nth-child(3) { top: 25px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

  .mobile-menu {
    position: absolute;
    top: 66px;
    right: -16px;
    left: -16px;
    display: flex;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    padding: 10px 16px 20px;
    flex-direction: column;
    border-top: 1px solid var(--line-soft);
    background: var(--white);
    box-shadow: 0 20px 35px rgb(25 28 47 / 8%);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 14px 5px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-menu a:last-child {
    margin-top: 11px;
    border: 0;
    border-radius: 9px;
    background: var(--accent);
    color: var(--white);
    text-align: center;
  }

  .hero {
    width: calc(100% - 32px);
    min-height: 0;
    overflow: hidden;
    padding: 112px 0 65px;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(41px, 12vw, 58px);
    line-height: 1.01;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__glow {
    right: 0;
    width: 100%;
  }

  .hero__notes {
    justify-content: center;
    gap: 8px 13px;
  }

  .hero-product {
    width: 820px;
    max-width: none;
    margin-top: 6px;
    transform: scale(.41);
    transform-origin: top center;
    margin-bottom: -275px;
  }

  .floating-card--level { left: 0; }
  .floating-card--xp { right: 0; }

  .fact-strip {
    width: calc(100% - 32px);
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-strip > div {
    padding: 18px;
    border-left: 1px solid var(--line);
  }

  .fact-strip > div:first-child,
  .fact-strip > div:nth-child(3) {
    padding-left: 5px;
    border-left: 0;
  }

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

  .fact-strip strong {
    font-size: 24px;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .courses__intro h2,
  .progress__copy h2,
  .final-cta h2 {
    font-size: 35px;
    line-height: 1.12;
  }

  .section-heading h2 br {
    display: none;
  }

  .section-heading > p:last-child,
  .courses__intro > p,
  .progress__copy > p {
    font-size: 14px;
  }

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

  .feature-card {
    min-height: 325px;
  }

  .courses__intro {
    margin-bottom: 38px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .level-course {
    display: block;
    padding: 28px 22px;
  }

  .course-road {
    margin-top: 27px;
  }

  .special-course {
    min-height: 155px;
    padding: 21px 18px;
    grid-template-columns: 27px 1fr auto;
    gap: 10px;
  }

  .more-courses {
    flex-direction: column;
    gap: 8px;
  }

  .trainer-demo__content {
    min-height: 355px;
    padding: 38px 22px 34px;
  }

  .trainer-demo__sentence {
    font-size: 26px;
  }

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

  .trainer-demo__bottom > span {
    display: none;
  }

  .trainer-demo__bottom {
    justify-content: flex-end;
  }

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

  .trainer-switcher > button {
    min-height: 105px;
  }

  .section--dark {
    gap: 45px;
  }

  .progress-visual {
    min-height: 0;
    padding: 25px 18px;
  }

  .progress-ring {
    width: 155px;
    height: 155px;
  }

  .progress-skills {
    grid-template-columns: 1fr;
  }

  .how-list {
    grid-template-columns: 1fr;
  }

  .how-list li,
  .how-list li:nth-child(n+3) {
    min-height: 175px;
    border-top: 0;
    border-right: 1px solid var(--line);
  }

  .how-list li:first-child {
    border-top: 1px solid var(--line);
  }

  .faq {
    padding-bottom: 82px;
  }

  .final-cta {
    width: calc(100% - 24px);
    min-height: 490px;
    padding: 65px 20px;
    border-radius: 22px;
  }

  .final-cta__glow {
    left: 0;
    width: 100%;
    transform: none;
  }

  .final-cta h2 br {
    display: none;
  }

  .site-footer__top {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 15px 20px;
  }
}

@media (max-width: 430px) {
  .hero-product {
    transform: scale(.39);
    margin-bottom: -285px;
  }

  .hero__notes {
    font-size: 11px;
  }

  .fact-strip span {
    font-size: 10px;
  }

  .trainer-switcher {
    grid-template-columns: 1fr;
  }

  .trainer-switcher > button {
    min-height: 78px;
    grid-template-columns: 28px 1fr;
  }

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

  .achievement-row > span {
    justify-content: flex-start;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

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