:root {
  --bg: #f8fbff;
  --text: #07142f;
  --text-2: #50607f;
  --blue: #2468f2;
  --cyan: #28c9d2;
  --border: rgba(71, 105, 160, .16);
  --shadow-xs: 0 5px 18px rgba(21, 58, 122, .05);
  --shadow-sm: 0 12px 34px rgba(20, 56, 120, .08);
  --max: 1424px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100svh;
  display: block;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(850px 520px at 72% 19%, rgba(68, 135, 255, .13), transparent 65%),
    radial-gradient(620px 460px at 35% 34%, rgba(46, 201, 210, .055), transparent 72%),
    linear-gradient(180deg, #fff 0%, #f7fbff 49%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
:focus-visible { outline: 3px solid rgba(47, 164, 255, .44); outline-offset: 4px; border-radius: 12px; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--text);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(59, 93, 151, .12);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(22px) saturate(140%);
}
.header-inner {
  width: min(var(--max), calc(100% - 96px));
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 398px;
  align-items: center;
  gap: 24px;
}
.brand { width: 196px; display: inline-flex; align-items: center; transition: transform .22s var(--ease), opacity .22s var(--ease); }
.brand:hover { transform: translateY(-1px); opacity: .96; }
.brand img { width: 196px; height: auto; display: block; }
.nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 38px);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.012em;
}
.nav a, .header-login { position: relative; color: #0c1731; white-space: nowrap; transition: color .18s var(--ease); }
.nav a::after, .header-login::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s var(--ease);
}
.header-login::after { bottom: 2px; }
.nav a:hover, .header-login:hover { color: var(--blue); }
.nav a:hover::after, .header-login:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; font-size: 16px; font-weight: 650; }
.header-login { min-height: 44px; display: inline-flex; align-items: center; }

.btn {
  min-height: 58px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -.015em;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arrow { font-size: 20px; line-height: 1; transform: translateY(-1px); transition: transform .24s var(--ease); }
.btn:hover .arrow { transform: translate(4px, -1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1f5ff2 0%, #237ff6 48%, #1f9df2 100%);
  box-shadow: 0 14px 32px rgba(35, 109, 242, .24), inset 0 1px 0 rgba(255, 255, 255, .32);
}
.btn-primary:hover { box-shadow: 0 20px 42px rgba(35, 109, 242, .31), inset 0 1px 0 rgba(255, 255, 255, .34); }
.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(64, 97, 156, .18);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .96);
}
.btn-secondary:hover { border-color: rgba(36, 104, 242, .28); box-shadow: var(--shadow-sm); }
.header-start { width: 138px; min-width: 138px; min-height: 52px; padding: 0 18px; font-size: 16px; gap: 12px; }

.mobile-menu { display: none; position: relative; z-index: 80; }
.menu-button {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  border: 1px solid rgba(64, 97, 156, .16);
  border-radius: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .95);
  cursor: pointer;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease), color .22s var(--ease);
}
.menu-button::-webkit-details-marker, .more-modules summary::-webkit-details-marker { display: none; }
.menu-button:hover { transform: translateY(-1px); border-color: rgba(36, 104, 242, .26); color: var(--blue); box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, .96); }
.burger-lines { width: 18px; height: 14px; display: flex; flex-direction: column; justify-content: space-between; }
.burger-lines span { height: 2px; display: block; border-radius: 99px; background: currentColor; transition: transform .22s var(--ease), opacity .22s var(--ease); }
.mobile-menu[open] .burger-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu[open] .burger-lines span:nth-child(2) { opacity: 0; }
.mobile-menu[open] .burger-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(286px, calc(100vw - 28px));
  padding: 9px;
  border: 1px solid rgba(63, 98, 156, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 70px rgba(20, 56, 120, .16), inset 0 1px 0 rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px) saturate(140%);
}
.mobile-nav a { min-height: 46px; padding: 0 13px; display: flex; align-items: center; border-radius: 13px; font-size: 15px; font-weight: 720; letter-spacing: -.015em; transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease); }
.mobile-nav a:hover { color: var(--blue); background: rgba(36, 104, 242, .07); transform: translateX(2px); }

.level-page { position: relative; }
.level-hero, .level-content-section, .level-process, .level-final { width: min(var(--max), calc(100% - 96px)); margin: 0 auto; }
.level-hero {
  padding: 48px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .62fr);
  align-items: center;
  gap: clamp(40px, 5vw, 78px);
}
.level-hero-copy { min-width: 0; max-width: 850px; }
.level-hero-chips { margin-bottom: 34px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.level-hero-chip {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(36, 104, 242, .20);
  border-radius: 13px;
  color: var(--blue);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 24px rgba(38, 100, 219, .055), inset 0 1px 0 rgba(255, 255, 255, .9);
  white-space: nowrap;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -.01em;
}
.level-hero-chip--highlight { color: #168a45; border-color: rgba(15, 159, 69, .16); background: rgba(240, 252, 245, .82); }
.level-title { margin: 0; max-width: 900px; color: var(--text); font-size: clamp(52px, 5vw, 78px); line-height: .985; letter-spacing: -.062em; font-weight: 830; }
.level-note { margin: 26px 0 0; max-width: 620px; color: var(--text-2); font-size: 20px; line-height: 1.52; letter-spacing: -.018em; font-weight: 500; }
.level-cta-row { margin-top: 30px; display: flex; align-items: center; gap: 22px; }
.level-cta-row .btn { min-width: 212px; }
.btn-icon { width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.btn-icon svg { width: 20px; height: 20px; display: block; }

.level-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  min-height: 150px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(63, 98, 156, .15);
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .92);
}
.stat-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(180px 120px at 86% 0%, rgba(36, 104, 242, .08), transparent 72%); pointer-events: none; }
.stat-card span, .stat-card strong { position: relative; z-index: 1; }
.stat-card span { color: #2457e6; font-size: 42px; line-height: 1; font-weight: 850; letter-spacing: -.055em; }
.stat-card strong { display: block; color: var(--text); font-size: 17px; line-height: 1.25; letter-spacing: -.025em; font-weight: 820; }

.level-content-section { padding: 30px 0 50px; }
.level-section-head { margin-bottom: 24px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.level-section-head.centered { max-width: 850px; margin-right: auto; margin-left: auto; display: block; text-align: center; }
.level-section-head h2 { margin: 0; color: var(--text); font-size: clamp(32px, 2.7vw, 46px); line-height: 1.05; letter-spacing: -.045em; font-weight: 830; }
.level-section-head p { margin: 0; max-width: 620px; color: var(--text-2); text-align: right; font-size: 16px; line-height: 1.5; font-weight: 580; }
.modules-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.module-card {
  min-height: 190px;
  padding: 22px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  border: 1px solid rgba(63, 98, 156, .15);
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .92);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}
.module-card:hover { transform: translateY(-3px); border-color: rgba(36, 104, 242, .25); background: rgba(255, 255, 255, .92); box-shadow: 0 18px 42px rgba(20, 56, 120, .10), inset 0 1px 0 rgba(255, 255, 255, .95); }
.module-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36, 104, 242, .16);
  border-radius: 20px;
  color: #1f5ff2;
  background: linear-gradient(180deg, #edf5ff, #e4efff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92), 0 10px 28px rgba(30, 88, 184, .07);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -.035em;
}
.module-number.violet { color: #7754f3; background: linear-gradient(180deg, #f2eaff, #ece2ff); border-color: rgba(119, 84, 243, .18); }
.module-number.green { color: #15934c; background: linear-gradient(180deg, #e7fbef, #def6e7); border-color: rgba(15, 159, 69, .16); }
.module-card h3 { margin: 1px 0 10px; color: var(--text); font-size: 22px; line-height: 1.12; letter-spacing: -.04em; font-weight: 830; }
.module-card p { margin: 0; color: var(--text-2); font-size: 15px; line-height: 1.48; font-weight: 560; }
.module-meta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.module-meta span { min-height: 29px; padding: 0 10px; display: inline-flex; align-items: center; border: 1px solid rgba(63, 98, 156, .10); border-radius: 99px; color: var(--text-2); background: rgba(245, 248, 255, .82); white-space: nowrap; font-size: 12px; font-weight: 720; }

.more-modules { margin-top: 18px; }
.more-modules summary {
  width: fit-content;
  min-height: 44px;
  margin: 0 auto 18px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  border: 1px solid rgba(36, 104, 242, .16);
  border-radius: 14px;
  color: var(--blue);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .96);
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}
.more-modules summary:hover { transform: translateY(-1px); border-color: rgba(36, 104, 242, .28); background: rgba(255, 255, 255, .94); }
.more-modules .hide-label { display: none; }
.more-modules[open] .show-label { display: none; }
.more-modules[open] .hide-label { display: inline; }

.level-process { padding: 0 0 52px; }
.process-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.process-step {
  min-height: 130px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(63, 98, 156, .15);
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .92);
}
.process-step span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(36, 104, 242, .16); border-radius: 14px; color: #1f5ff2; background: linear-gradient(180deg, #edf5ff, #e4efff); font-size: 15px; font-weight: 850; }
.process-step strong { display: block; color: var(--text); font-size: 17px; line-height: 1.2; letter-spacing: -.025em; font-weight: 820; }

.level-final {
  margin-bottom: 54px;
  padding: clamp(30px, 3.3vw, 44px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(246, 250, 255, .84));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, .96);
}
.level-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 220px at 88% 20%, rgba(36, 104, 242, .09), transparent 70%); pointer-events: none; }
.level-final > * { position: relative; z-index: 1; }
.level-final h2 { margin: 0 0 14px; color: var(--text); font-size: clamp(30px, 2.65vw, 44px); line-height: 1.05; letter-spacing: -.045em; font-weight: 830; }
.level-final p { margin: 0; max-width: 760px; color: var(--text-2); font-size: 18px; line-height: 1.55; font-weight: 560; }
.level-final-actions { display: flex; align-items: center; gap: 14px; }
.level-final-actions .btn { min-width: 184px; }

.site-footer { margin-top: 0; background: rgba(255, 255, 255, .52); }
.footer-inner { width: min(var(--max), calc(100% - 96px)); margin: 0 auto; padding: 18px 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.footer-note { min-width: 250px; display: flex; align-items: baseline; gap: 13px; color: var(--text-2); }
.copyright, .footer-note p { margin: 0; color: #6f7f9b; white-space: nowrap; font-size: 13px; line-height: 1; font-weight: 700; }
.footer-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 22px; }
.footer-links a { color: var(--text-2); font-size: 13px; font-weight: 650; transition: color .2s var(--ease), transform .2s var(--ease); }
.footer-links a:hover { color: var(--blue); transform: translateY(-1px); }
.socials { margin: 0; display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.social-icon { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(63, 98, 156, .12); border-radius: 12px; color: #31415f; background: rgba(255, 255, 255, .62); transition: transform .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease); }
.social-icon:hover { transform: translateY(-2px); color: var(--blue); border-color: rgba(36, 104, 242, .24); background: rgba(255, 255, 255, .86); }
.footer-mobile { display: none; }

@media (max-width: 1360px) {
  .level-hero, .level-content-section, .level-process, .level-final { width: min(100% - 48px, var(--max)); }
  .level-hero { grid-template-columns: minmax(0, 1fr) 360px; gap: 38px; }
  .level-title { font-size: clamp(48px, 4.8vw, 64px); }
  .stat-card { min-height: 134px; }
}

@media (max-width: 1260px) {
  .header-inner { width: min(100% - 40px, var(--max)); height: 72px; grid-template-columns: auto minmax(0, 1fr) auto; gap: 16px; }
  .brand, .brand img { width: 164px; }
  .nav, .header-start { display: none; }
  .header-actions { justify-self: end; gap: 12px; font-size: 15px; }
  .header-login { min-height: 44px; font-size: 15px; }
  .mobile-menu { display: block; }
}

@media (max-width: 1080px) {
  .level-hero { max-width: 920px; grid-template-columns: 1fr; }
  .level-hero-copy { max-width: 780px; margin-inline: auto; text-align: center; }
  .level-note { margin-inline: auto; }
  .level-cta-row, .level-hero-chips { justify-content: center; }
  .level-stats { width: 100%; max-width: 760px; margin-inline: auto; }
  .level-section-head { display: block; text-align: center; }
  .level-section-head p { margin: 12px auto 0; text-align: center; }
  .modules-grid { max-width: 820px; margin-inline: auto; grid-template-columns: 1fr; }
  .process-grid { max-width: 820px; margin-inline: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .level-final { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .level-final p { margin-inline: auto; }
}

@media (max-width: 900px) {
  .btn { min-height: 54px; padding-right: 22px; padding-left: 22px; font-size: 16px; }
  .level-hero, .level-content-section, .level-process, .level-final { width: min(100% - 28px, 760px); }
  .level-hero { padding: 30px 0 34px; gap: 28px; }
  .level-title { font-size: clamp(42px, 8.4vw, 60px); }
  .level-note { font-size: 18px; }
  .level-hero-chips { margin-bottom: 24px; }
  .level-hero-chip { min-height: 34px; padding: 0 12px; font-size: 13.5px; }
  .module-card { padding: 22px; border-radius: 24px; }
  .level-final { margin-bottom: 34px; }

  .footer-desktop { display: none; }
  .footer-mobile { width: min(100% - 28px, 720px); padding: 22px 0 26px; display: flex; align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer-mobile .footer-note { min-width: 0; flex-direction: column; align-items: flex-start; gap: 5px; }
  .footer-mobile .footer-note p { white-space: normal; line-height: 1; }
  .footer-mobile .footer-links { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .mobile-menu { position: static; }
  .site-header:has(.mobile-menu[open]) { padding-bottom: 322px; }
  .mobile-nav { position: absolute; top: 82px; right: 14px; left: 14px; z-index: 70; width: auto; padding: 0; display: none; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
  .mobile-menu[open] .mobile-nav { display: grid; gap: 10px; }
  .mobile-nav a { min-height: 50px; padding: 0 18px; border: 1px solid rgba(63, 98, 156, .16); border-radius: 18px; color: var(--text-2); background: rgba(255, 255, 255, .96); box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, .96); font-size: 17px; font-weight: 760; }
  .mobile-nav a:hover { transform: none; color: var(--blue); background: rgba(248, 251, 255, .98); }
}

@media (max-width: 760px) {
  .level-hero { padding-top: 28px; }
}

@media (max-width: 640px) {
  .level-title { font-size: clamp(38px, 11.4vw, 50px); line-height: 1.02; }
  .level-note { font-size: 17px; line-height: 1.54; }
  .level-cta-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .level-cta-row .btn { width: 100%; min-width: 0; }
  .level-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { min-height: 116px; padding: 18px; border-radius: 22px; }
  .stat-card span { font-size: 34px; }
  .stat-card strong { font-size: 15px; }
  .level-content-section { padding-bottom: 38px; }
  .module-card { min-height: 0; padding: 18px; grid-template-columns: 56px 1fr; gap: 14px; }
  .module-number { width: 50px; height: 50px; border-radius: 17px; font-size: 20px; }
  .module-card h3 { font-size: 20px; }
  .module-card p { font-size: 14.5px; }
  .module-meta span { font-size: 11.5px; }
  .level-section-head h2 { font-size: 29px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 82px; display: grid; grid-template-columns: 38px minmax(0, 1fr); align-items: center; justify-content: start; column-gap: 14px; text-align: left; }
  .level-final { padding: 24px 18px; border-radius: 26px; }
  .level-final h2 { font-size: 28px; }
  .level-final p { font-size: 16px; }
  .level-final-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .level-final-actions .btn { width: 100%; min-width: 0; }
}

@media (max-width: 560px) {
  body { background: linear-gradient(180deg, #fff 0%, #f7fbff 56%, #fff 100%); }
  .header-inner { width: calc(100% - 20px); height: 64px; gap: 8px; }
  .brand, .brand img { width: 132px; }
  .header-actions { gap: 6px; }
  .header-login { min-height: 36px; font-size: 13.5px; line-height: 1; }
  .mobile-menu { margin-right: -4px; }
  .menu-button { width: 38px; min-width: 38px; height: 38px; min-height: 38px; border-radius: 12px; }
  .burger-lines { width: 17px; height: 13px; }
  .mobile-nav { top: 72px; }
  .site-header:has(.mobile-menu[open]) { padding-bottom: 304px; }
  .footer-links { gap: 9px 16px; }
}

@media (max-width: 380px) {
  .header-inner { width: calc(100% - 18px); height: 62px; gap: 6px; }
  .brand, .brand img { width: 118px; }
  .header-actions { gap: 5px; }
  .header-login { min-height: 34px; font-size: 13px; }
  .menu-button { width: 36px; min-width: 36px; height: 36px; min-height: 36px; border-radius: 11px; }
  .mobile-menu { margin-right: -5px; }
  .mobile-nav { top: 68px; right: 10px; left: 10px; }
  .site-header:has(.mobile-menu[open]) { padding-bottom: 294px; }
}

@media (max-width: 360px) {
  .level-title { font-size: 35px; }
  .level-hero-chips { gap: 8px; }
  .level-hero-chip { font-size: 13px; }
  .level-stats { grid-template-columns: 1fr; }
  .module-card { grid-template-columns: 1fr; text-align: center; }
  .module-number { margin-inline: auto; }
  .module-meta { justify-content: center; }
}
