:root {
    --etxm-ink: #101426;
    --etxm-navy: #06091b;
    --etxm-navy-soft: #0c1030;
    --etxm-purple: #7c3aed;
    --etxm-purple-bright: #a855f7;
    --etxm-violet: #5b21b6;
    --etxm-lilac: #f3edff;
    --etxm-line: #e7e8ef;
    --etxm-muted: #6e7280;
    --etxm-white: #fff;
    --etxm-shadow: 0 16px 48px rgba(20, 14, 54, .12);
    --etxm-radius: 18px;
    --etxm-container: 1400px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.etxm-page {
    margin: 0;
    color: var(--etxm-ink);
    background: #f9f9fc;
    font-family: Arial, "Heebo", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

.etxm-page a {
    color: inherit;
    text-decoration: none;
}

.etxm-page button,
.etxm-page input {
    font: inherit;
}

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

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

.etxm-skip {
    position: fixed;
    z-index: 1000;
    inset-block-start: 10px;
    inset-inline-start: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    background: #fff;
    color: #15112b;
    transform: translateY(-160%);
}

.etxm-skip:focus {
    transform: none;
}

.etxm-hero-shell {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 18% 34%, rgba(99, 45, 208, .42), transparent 34%),
        radial-gradient(circle at 67% -15%, rgba(96, 45, 202, .25), transparent 32%),
        linear-gradient(118deg, #080a23 0%, #050817 46%, #030512 100%);
}

.etxm-hero-shell::before,
.etxm-hero-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(147, 92, 255, .34);
    border-radius: 50%;
    transform: rotate(-9deg);
}

.etxm-hero-shell::before {
    width: 920px;
    height: 290px;
    inset-inline-start: -250px;
    inset-block-start: 85px;
    box-shadow: 0 0 45px rgba(125, 65, 242, .16);
}

.etxm-hero-shell::after {
    width: 720px;
    height: 230px;
    inset-inline-start: -60px;
    inset-block-start: 210px;
}

.etxm-header {
    position: relative;
    z-index: 20;
    height: 84px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    background: rgba(3, 5, 18, .58);
    backdrop-filter: blur(14px);
}

.etxm-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 68px);
}

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

.etxm-brand img {
    width: 104px;
    height: auto;
}

.etxm-brand span {
    padding-inline-start: 10px;
    border-inline-start: 1px solid rgba(255, 255, 255, .26);
    font-size: 14px;
    font-weight: 700;
}

.etxm-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 36px);
    flex: 1;
}

.etxm-nav a {
    position: relative;
    color: rgba(255, 255, 255, .84);
    font-size: 15px;
    font-weight: 600;
    transition: color .2s ease;
}

.etxm-nav a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-end: -12px;
    height: 2px;
    border-radius: 9px;
    background: linear-gradient(90deg, var(--etxm-purple), var(--etxm-purple-bright));
    transform: scaleX(0);
    transition: transform .2s ease;
}

.etxm-nav a:hover,
.etxm-nav a:focus-visible,
.etxm-nav a[aria-current="page"] {
    color: #fff;
}

.etxm-nav a:hover::after,
.etxm-nav a:focus-visible::after,
.etxm-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.etxm-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.etxm-icon-link,
.etxm-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 13px;
}

.etxm-icon-link {
    width: 44px;
}

.etxm-login {
    gap: 8px;
    min-width: 120px;
    padding-inline: 17px;
    font-weight: 700;
}

.etxm-icon-link svg,
.etxm-login svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.etxm-icon-link:hover,
.etxm-login:hover {
    border-color: #9e67ff;
    background: rgba(125, 66, 235, .18);
}

.etxm-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
}

.etxm-hero {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(460px, .94fr) minmax(520px, 1.06fr);
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
    min-height: 596px;
    padding-block: 56px 90px;
}

.etxm-hero__copy {
    order: 1;
    max-width: 680px;
}

.etxm-eyebrow {
    margin: 0 0 16px;
    color: #bca1ff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .06em;
}

.etxm-hero h1 {
    margin: 0;
    font-size: clamp(43px, 5vw, 74px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.etxm-hero h1 strong {
    color: #a855f7;
    background: linear-gradient(115deg, #7c3aed 20%, #c084fc 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.etxm-hero__lead {
    max-width: 600px;
    margin: 18px 0 32px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.65;
}

.etxm-search {
    display: flex;
    direction: rtl;
    max-width: 660px;
    height: 68px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(0, 0, 0, .28), 0 0 24px rgba(111, 57, 220, .15);
}

.etxm-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding-inline: 21px;
    color: #161827;
    background: transparent;
    font-size: 17px;
}

.etxm-search input::placeholder {
    color: #9b9da8;
}

.etxm-search button {
    width: 58px;
    flex: 0 0 58px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, #8b41ec, #6625d4);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.etxm-search button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(105, 38, 211, .4);
}

.etxm-search button svg {
    width: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.etxm-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 680px;
    margin-top: 30px;
}

.etxm-trust > div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding-inline: 16px;
    border-inline-start: 1px solid rgba(255, 255, 255, .16);
}

.etxm-trust > div:first-child {
    padding-inline-start: 0;
    border-inline-start: 0;
}

.etxm-trust__icon {
    display: grid;
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    place-items: center;
}

.etxm-trust svg {
    width: 30px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.etxm-trust p {
    min-width: 0;
    margin: 0;
}

.etxm-trust strong,
.etxm-trust small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.etxm-trust strong {
    font-size: 13px;
}

.etxm-trust small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
}

.etxm-hero-art {
    position: relative;
    order: 2;
    align-self: stretch;
    min-height: 470px;
    perspective: 1100px;
}

.etxm-hero-art__backdrop {
    position: absolute;
    z-index: 3;
    inset: -30px -25px -20px;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    object-fit: contain;
    filter: saturate(1.06) contrast(1.02);
}

.etxm-hero-art:not(.has-image-error) .etxm-orbit,
.etxm-hero-art:not(.has-image-error) .etxm-cover-fan,
.etxm-hero-art:not(.has-image-error) .etxm-stage {
    display: none;
}

.etxm-hero-art:not(.has-image-error) .etxm-stage-logo {
    inset-inline-start: auto;
    right: auto;
    left: 40%;
    inset-block-start: 66px;
    width: 255px;
    height: 170px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateX(-50%) rotate(-3deg);
}

.etxm-hero-art:not(.has-image-error) .etxm-stage-logo::before {
    display: none;
}

.etxm-hero-art:not(.has-image-error) .etxm-stage-logo img {
    width: 180px;
}

.etxm-hero-art.has-image-error .etxm-hero-art__backdrop {
    display: none;
}

.etxm-stage-logo {
    position: absolute;
    z-index: 5;
    inset-inline-start: 50%;
    inset-block-start: 56px;
    width: 330px;
    height: 228px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(170, 114, 255, .42);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(32, 24, 83, .72), rgba(12, 13, 39, .42));
    box-shadow: inset 0 0 45px rgba(129, 70, 238, .12), 0 0 50px rgba(113, 59, 218, .13);
    transform: translateX(-50%) rotateY(-8deg);
}

.etxm-stage-logo::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(134, 63, 255, .2), transparent 65%);
}

.etxm-stage-logo img {
    position: relative;
    width: 206px;
    filter: hue-rotate(230deg) saturate(2.8) drop-shadow(0 0 14px rgba(179, 94, 255, .75));
}

.etxm-orbit {
    position: absolute;
    border: 1px solid rgba(141, 80, 244, .36);
    border-radius: 50%;
}

.etxm-orbit--one {
    width: 590px;
    height: 260px;
    inset-inline-start: calc(50% - 295px);
    inset-block-start: 130px;
    transform: rotate(-5deg);
}

.etxm-orbit--two {
    width: 480px;
    height: 190px;
    inset-inline-start: calc(50% - 240px);
    inset-block-start: 175px;
    transform: rotate(10deg);
}

.etxm-cover-fan {
    position: absolute;
    z-index: 8;
    inset-inline-start: 50%;
    inset-block-start: 216px;
    width: 550px;
    height: 175px;
    transform: translateX(-50%);
}

.etxm-cover-fan__card {
    --offset: calc((var(--card-index) - 2) * 100px);
    position: absolute;
    inset-inline-start: calc(50% + var(--offset));
    width: 128px;
    height: 168px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 10px;
    background: linear-gradient(145deg, #1c1c3b, #3a176b);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .55), 0 0 20px rgba(117, 53, 230, .18);
    transform: translateX(-50%) rotateY(calc((2 - var(--card-index)) * 11deg)) rotateZ(calc((var(--card-index) - 2) * 2deg));
}

.etxm-cover-fan__card:nth-child(3) {
    z-index: 3;
    transform: translateX(-50%) translateY(-16px) scale(1.08);
}

.etxm-cover-fan__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.etxm-cover-fan__card > span {
    display: grid;
    height: 100%;
    padding: 15px;
    place-items: end center;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.etxm-stage {
    position: absolute;
    z-index: 4;
    inset-inline-start: 50%;
    inset-block-end: 18px;
    width: 570px;
    height: 112px;
    border: 2px solid #9046f1;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #211042 0%, #0c0920 52%, #050514 73%);
    box-shadow: 0 0 13px #8b3fee, 0 0 34px rgba(136, 56, 238, .9), inset 0 0 28px rgba(154, 72, 255, .65);
    transform: translateX(-50%);
}

.etxm-stage span {
    position: absolute;
    inset: 12px 24px;
    border: 1px solid #b679ff;
    border-radius: 50%;
    box-shadow: 0 0 13px #8f40f5;
}

main {
    display: block;
}

.etxm-featured {
    position: relative;
    z-index: 5;
    margin-top: -53px;
}

.etxm-featured__inner {
    min-height: 286px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 21px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 35%, rgba(128, 55, 239, .62), transparent 33%),
        linear-gradient(115deg, #32106d 0%, #111235 56%, #080a1d 100%);
    box-shadow: var(--etxm-shadow), 0 0 0 1px rgba(48, 24, 87, .15);
}

.etxm-featured__content {
    padding: 37px 56px;
}

.etxm-pill {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(151, 84, 255, .7);
    font-size: 13px;
    font-weight: 700;
}

.etxm-featured h2 {
    margin: 17px 0 8px;
    font-size: clamp(30px, 3vw, 45px);
    line-height: 1.18;
}

.etxm-featured p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
    line-height: 1.6;
}

.etxm-featured__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.etxm-featured__meta span + span::before {
    content: "•";
    margin-inline-end: 19px;
    color: #a65cff;
}

.etxm-featured__cta {
    display: inline-flex;
    margin-top: 24px;
    padding: 14px 27px;
    border-radius: 9px;
    background: linear-gradient(135deg, #8b3ee9, #5c1bc9);
    font-weight: 800;
}

.etxm-featured__visual {
    position: relative;
    min-height: 286px;
    overflow: hidden;
}

.etxm-featured__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 35%, #141238 100%);
    pointer-events: none;
}

.etxm-featured__visual > img,
.etxm-featured__visual > .etxm-course-placeholder {
    width: 100%;
    height: 100%;
    min-height: 286px;
    object-fit: cover;
}

.etxm-featured__price {
    position: absolute;
    z-index: 2;
    inset-inline-end: 24px;
    inset-block-end: 22px;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(8, 8, 28, .86);
    backdrop-filter: blur(8px);
}

.etxm-section {
    padding-block: 70px 8px;
}

.etxm-section + .etxm-section {
    padding-top: 64px;
}

.etxm-section__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.etxm-section__kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--etxm-purple);
    font-size: 13px;
    font-weight: 800;
}

.etxm-section__heading h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 39px);
    letter-spacing: -.025em;
}

.etxm-section__heading > a {
    color: #6924d1;
    font-size: 14px;
    font-weight: 800;
}

.etxm-section__heading > a::before {
    content: "‹";
    margin-inline-end: 7px;
    font-size: 21px;
    vertical-align: -1px;
}

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

.etxm-category {
    min-height: 154px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 22px 12px;
    border: 1px solid #e8e7ee;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 17, 53, .05);
    text-align: center;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.etxm-category:hover {
    transform: translateY(-5px);
    border-color: #cdb8f4;
    box-shadow: 0 16px 36px rgba(73, 34, 139, .12);
}

.etxm-category__icon {
    width: 51px;
    height: 51px;
    display: grid;
    margin-bottom: 12px;
    place-items: center;
    border-radius: 14px;
    color: #792ee0;
    background: #f5efff;
    font-size: 26px;
}

.etxm-category__icon::before { content: "▤"; }
.etxm-category__icon[data-icon="megaphone"]::before { content: "◁"; }
.etxm-category__icon[data-icon="code"]::before { content: "</>"; font-size: 17px; font-weight: 900; }
.etxm-category__icon[data-icon="pen"]::before { content: "✎"; }
.etxm-category__icon[data-icon="briefcase"]::before { content: "▣"; }
.etxm-category__icon[data-icon="camera"]::before { content: "◉"; }
.etxm-category__icon[data-icon="chart"]::before { content: "↗"; }
.etxm-category__icon[data-icon="person"]::before { content: "♙"; }

.etxm-category strong {
    font-size: 15px;
    line-height: 1.3;
}

.etxm-category small {
    margin-top: 8px;
    color: #90929d;
    font-size: 12px;
}

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

.etxm-course-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e4e5eb;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 7px 21px rgba(22, 19, 45, .055);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.etxm-course-card:hover {
    transform: translateY(-6px);
    border-color: #c9b2ed;
    box-shadow: 0 18px 38px rgba(43, 24, 82, .14);
}

.etxm-course-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.etxm-course-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.55 / 1;
    background: #0d1023;
}

.etxm-course-card__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.etxm-course-card:hover .etxm-course-card__media > img {
    transform: scale(1.045);
}

.etxm-course-card__badge {
    position: absolute;
    z-index: 2;
    inset-block-start: 11px;
    inset-inline-end: 11px;
    padding: 6px 10px;
    border-radius: 7px;
    color: #fff;
    background: #6f24d7;
    box-shadow: 0 5px 14px rgba(42, 17, 81, .25);
    font-size: 11px;
    font-weight: 800;
}

.etxm-course-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 30% 10%, rgba(180, 88, 255, .42), transparent 38%),
        linear-gradient(145deg, #171232, #080a1d);
    text-align: center;
}

.etxm-course-placeholder > span {
    color: #b876ff;
    font-size: 33px;
    font-weight: 900;
    letter-spacing: -.06em;
    text-shadow: 0 0 16px rgba(174, 94, 255, .52);
}

.etxm-course-placeholder > small {
    color: rgba(255, 255, 255, .8);
    line-height: 1.45;
}

.etxm-course-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 15px 16px 16px;
}

.etxm-course-card__category {
    overflow: hidden;
    color: #772cdb;
    font-size: 11px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.etxm-course-card h3 {
    display: -webkit-box;
    min-height: 45px;
    overflow: hidden;
    margin: 7px 0 4px;
    font-size: 16px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.etxm-course-card__creator {
    overflow: hidden;
    margin: 0;
    color: #858793;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.etxm-course-card__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;
    min-height: 29px;
    margin-top: 13px;
    color: #777a87;
    font-size: 11px;
}

.etxm-course-card__facts span + span::before {
    content: "•";
    margin-inline-end: 10px;
    color: #c6b0e8;
}

.etxm-course-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 13px;
    border-top: 1px solid #eeeef3;
}

.etxm-course-card__footer strong {
    color: #6d22d3;
    font-size: 17px;
}

.etxm-course-card__footer span {
    color: #767986;
    font-size: 11px;
}

.etxm-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.etxm-pagination a {
    padding: 10px 19px;
    border: 1px solid #d9cef0;
    border-radius: 8px;
    color: #6c24ce;
    background: #fff;
    font-weight: 700;
}

.etxm-pagination span {
    color: #767985;
    font-size: 13px;
}

.etxm-empty {
    padding: 54px 24px;
    border: 1px solid #e6e1ee;
    border-radius: 17px;
    background: #fff;
    text-align: center;
}

.etxm-empty > span {
    color: #782bdf;
    font-size: 45px;
}

.etxm-empty h2,
.etxm-empty h3 {
    margin: 10px 0 6px;
}

.etxm-empty p {
    margin: 0 0 20px;
    color: var(--etxm-muted);
}

.etxm-empty a {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 9px;
    color: #fff;
    background: #6e24d4;
    font-weight: 800;
}

.etxm-empty--large {
    padding-block: 80px;
}

.etxm-creator-cta {
    position: relative;
    min-height: 245px;
    display: grid;
    grid-template-columns: 1fr 440px;
    align-items: center;
    overflow: hidden;
    margin-block: 84px 58px;
    padding: 42px 70px;
    border-radius: 17px;
    color: #fff;
    background:
        radial-gradient(circle at 15% 38%, rgba(176, 79, 255, .55), transparent 30%),
        linear-gradient(105deg, #4b168f, #25116f 50%, #101036);
    box-shadow: 0 18px 50px rgba(52, 26, 107, .18);
}

.etxm-creator-cta > div:first-child {
    position: relative;
    z-index: 2;
}

.etxm-creator-cta > div > span:first-child {
    color: #cfb7ff;
    font-size: 14px;
    font-weight: 800;
}

.etxm-creator-cta h2 {
    margin: 8px 0;
    font-size: clamp(29px, 3vw, 43px);
}

.etxm-creator-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
}

.etxm-creator-cta a {
    display: inline-flex;
    margin-top: 23px;
    padding: 14px 24px;
    border-radius: 9px;
    color: #5417b5;
    background: #fff;
    font-weight: 800;
}

.etxm-creator-cta__art {
    position: absolute;
    inset-inline-start: 0;
    inset-block: 0;
    width: 45%;
}

.etxm-book {
    position: absolute;
    display: block;
    width: 235px;
    height: 37px;
    border: 2px solid #ae72ff;
    border-radius: 7px;
    background: linear-gradient(180deg, #f3e9ff, #8260be);
    box-shadow: 0 0 22px rgba(164, 76, 255, .55);
    transform: skewX(-11deg);
}

.etxm-book--one {
    inset-inline-start: 100px;
    inset-block-end: 43px;
}

.etxm-book--two {
    inset-inline-start: 135px;
    inset-block-end: 82px;
    width: 205px;
    background: linear-gradient(180deg, #9f53ef, #402179);
}

.etxm-cap {
    position: absolute;
    inset-inline-start: 155px;
    inset-block-end: 125px;
    width: 150px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, #120b2c, #6b24ba);
    box-shadow: 0 0 35px rgba(169, 79, 255, .56);
    transform: skewX(-16deg) rotate(-7deg);
}

.etxm-benefits {
    border-top: 1px solid #ebe9f0;
    background: #fff;
}

.etxm-benefits .etxm-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-block: 28px;
}

.etxm-benefits .etxm-container > div {
    padding-inline: 35px;
    border-inline-start: 1px solid #e8e6ed;
    text-align: center;
}

.etxm-benefits .etxm-container > div:first-child {
    border-inline-start: 0;
}

.etxm-benefits strong,
.etxm-benefits span {
    display: block;
}

.etxm-benefits strong {
    font-size: 14px;
}

.etxm-benefits span {
    margin-top: 5px;
    color: #898b95;
    font-size: 12px;
}

.etxm-footer {
    color: #fff;
    background: #070a1b;
}

.etxm-footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 75px;
    padding-block: 55px 42px;
}

.etxm-footer__brand img {
    width: 96px;
}

.etxm-footer h2 {
    margin: 15px 0 10px;
    font-size: 21px;
}

.etxm-footer p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    line-height: 1.8;
}

.etxm-footer h3 {
    margin: 0 0 15px;
    font-size: 15px;
}

.etxm-footer__grid > div:not(:first-child) a {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.etxm-footer__grid a:hover {
    color: #bc8aff;
}

.etxm-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-block: 19px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

@media (max-width: 1220px) {
    .etxm-header__inner {
        gap: 24px;
    }

    .etxm-nav {
        gap: 17px;
    }

    .etxm-nav a {
        font-size: 13px;
    }

    .etxm-hero {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .etxm-hero-art {
        transform: scale(.88);
    }

    .etxm-trust > div {
        padding-inline: 9px;
    }

    .etxm-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .etxm-course-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 980px) {
    .etxm-container {
        width: min(calc(100% - 38px), var(--etxm-container));
    }

    .etxm-header__inner {
        justify-content: space-between;
    }

    .etxm-menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .etxm-menu-toggle > span:not(.sr-only) {
        width: 23px;
        height: 2px;
        border-radius: 3px;
        background: currentColor;
    }

    .etxm-nav {
        position: absolute;
        inset-inline: 19px;
        inset-block-start: 72px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 14px;
        background: rgba(7, 8, 27, .98);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
    }

    .etxm-nav.is-open {
        display: flex;
    }

    .etxm-nav a {
        padding: 13px 10px;
    }

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

    .etxm-header__actions {
        margin-inline-start: auto;
    }

    .etxm-hero-shell {
        min-height: 950px;
    }

    .etxm-hero {
        display: flex;
        min-height: auto;
        align-items: center;
        flex-direction: column;
        padding-block: 58px 120px;
        text-align: center;
    }

    .etxm-hero__copy {
        order: 1;
    }

    .etxm-hero__lead,
    .etxm-search,
    .etxm-trust {
        margin-inline: auto;
    }

    .etxm-hero-art {
        order: 2;
        width: 650px;
        height: 450px;
        flex: 0 0 450px;
        margin-top: 8px;
        transform: scale(.88);
        transform-origin: center top;
    }

    .etxm-featured__inner {
        grid-template-columns: 1fr 350px;
    }

    .etxm-featured__content {
        padding: 34px;
    }

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

    .etxm-creator-cta {
        grid-template-columns: 1fr;
        padding-inline: 45px;
    }

    .etxm-creator-cta > div:first-child {
        max-width: 60%;
    }

    .etxm-creator-cta__art {
        width: 48%;
    }
}

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

    .etxm-header {
        height: 72px;
    }

    .etxm-brand img {
        width: 78px;
    }

    .etxm-brand span,
    .etxm-icon-link {
        display: none;
    }

    .etxm-login {
        min-width: auto;
        height: 39px;
        padding-inline: 12px;
        font-size: 13px;
    }

    .etxm-menu-toggle {
        order: 3;
    }

    .etxm-hero-shell {
        min-height: 875px;
    }

    .etxm-hero {
        padding-block-start: 44px;
    }

    .etxm-hero h1 {
        font-size: 41px;
    }

    .etxm-hero__lead {
        margin-block-end: 24px;
        font-size: 17px;
    }

    .etxm-search {
        height: 58px;
        border-radius: 13px;
    }

    .etxm-search input {
        padding-inline: 13px;
        font-size: 14px;
    }

    .etxm-search button {
        width: 48px;
        flex-basis: 48px;
    }

    .etxm-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 17px 0;
        margin-top: 25px;
        text-align: start;
    }

    .etxm-trust > div,
    .etxm-trust > div:first-child {
        padding-inline: 10px;
        border-inline-start: 0;
    }

    .etxm-hero-art {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 3 / 2;
        flex: 0 0 auto;
        margin-top: 22px;
        transform: none;
    }

    .etxm-hero-art__backdrop {
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .etxm-hero-art:not(.has-image-error) .etxm-stage-logo {
        inset-block-start: 10%;
        left: 40%;
        width: 45%;
        height: 38%;
    }

    .etxm-hero-art:not(.has-image-error) .etxm-stage-logo img {
        width: 70%;
    }

    .etxm-featured {
        margin-top: -38px;
    }

    .etxm-featured__inner {
        display: flex;
        flex-direction: column-reverse;
    }

    .etxm-featured__content {
        padding: 26px 23px 29px;
    }

    .etxm-featured__visual,
    .etxm-featured__visual > img,
    .etxm-featured__visual > .etxm-course-placeholder {
        min-height: 210px;
        max-height: 210px;
    }

    .etxm-featured h2 {
        font-size: 28px;
    }

    .etxm-featured__meta {
        gap: 8px 12px;
    }

    .etxm-featured__meta span + span::before {
        margin-inline-end: 10px;
    }

    .etxm-section {
        padding-top: 54px;
    }

    .etxm-section__heading {
        align-items: start;
    }

    .etxm-section__heading h2 {
        font-size: 27px;
    }

    .etxm-category-grid {
        display: flex;
        overflow-x: auto;
        gap: 11px;
        padding-block-end: 10px;
        scroll-snap-type: x mandatory;
    }

    .etxm-category {
        min-width: 145px;
        min-height: 140px;
        scroll-snap-align: start;
    }

    .etxm-course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
    }

    .etxm-course-card__body {
        padding: 12px;
    }

    .etxm-course-card h3 {
        min-height: 41px;
        font-size: 14px;
    }

    .etxm-course-card__facts {
        display: none;
    }

    .etxm-course-card__footer {
        margin-top: 12px;
    }

    .etxm-course-card__footer strong {
        font-size: 15px;
    }

    .etxm-course-card__footer span {
        display: none;
    }

    .etxm-creator-cta {
        min-height: 450px;
        margin-block: 60px 40px;
        padding: 36px 27px 210px;
        text-align: center;
    }

    .etxm-creator-cta > div:first-child {
        max-width: none;
    }

    .etxm-creator-cta__art {
        inset-inline: 50% auto;
        inset-block: auto 0;
        width: 360px;
        height: 200px;
        transform: translateX(50%);
    }

    .etxm-book--one {
        inset-inline-start: 55px;
    }

    .etxm-book--two {
        inset-inline-start: 90px;
    }

    .etxm-cap {
        inset-inline-start: 110px;
    }

    .etxm-benefits .etxm-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

    .etxm-benefits .etxm-container > div:nth-child(3) {
        border-inline-start: 0;
    }

    .etxm-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
    }

    .etxm-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 430px) {
    .etxm-header__actions span {
        display: none;
    }

    .etxm-login {
        width: 39px;
        padding: 0;
    }

    .etxm-hero h1 {
        font-size: 35px;
    }

    .etxm-hero-art {
        transform: none;
    }

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

    .etxm-course-card__media {
        aspect-ratio: 1.72 / 1;
    }

    .etxm-course-card__facts {
        display: flex;
    }

    .etxm-section__heading > a {
        display: none;
    }

    .etxm-pagination {
        gap: 9px;
    }

    .etxm-pagination a {
        padding-inline: 13px;
    }

    .etxm-footer__bottom {
        flex-direction: column;
        gap: 7px;
    }
}

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

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

.etxm-page.etxm-access-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 15%, rgba(124, 49, 220, .28), transparent 34%),
        radial-gradient(circle at 82% 90%, rgba(70, 32, 162, .25), transparent 38%),
        #050617;
}

.etxm-access-shell {
    display: grid;
    width: min(calc(100% - 32px), 760px);
    min-height: 100vh;
    margin-inline: auto;
    padding-block: 38px 70px;
    align-content: start;
    gap: 34px;
}

.etxm-access-brand {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 800;
}

.etxm-access-brand img {
    width: 98px;
    height: auto;
}

.etxm-access-card {
    padding: clamp(28px, 6vw, 58px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 26px;
    background: rgba(12, 13, 39, .9);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .42);
    color: #fff;
}

.etxm-access-kicker {
    color: #b68aff;
    font-size: 14px;
    font-weight: 800;
}

.etxm-access-card h1 {
    margin: 10px 0 12px;
    font-size: clamp(30px, 6vw, 48px);
    line-height: 1.13;
}

.etxm-access-card > p {
    max-width: 610px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

.etxm-access-search input {
    width: 100%;
    height: 56px;
    padding-inline: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    outline: 0;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font: inherit;
}

.etxm-access-search input:focus {
    border-color: #9d54ff;
    box-shadow: 0 0 0 3px rgba(157, 84, 255, .17);
}

.etxm-access-list {
    display: grid;
    gap: 10px;
    max-height: 430px;
    margin-top: 16px;
    overflow: auto;
}

.etxm-access-list a {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    color: #fff;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.etxm-access-list a:hover,
.etxm-access-list a:focus-visible {
    border-color: rgba(169, 98, 255, .7);
    background: rgba(142, 70, 242, .14);
    transform: translateY(-1px);
}

.etxm-access-list small {
    color: #b98aff;
    font-size: 12px;
}

.etxm-access-avatar {
    display: grid;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    place-items: center;
    background: linear-gradient(145deg, #9344f5, #5222b5);
    font-size: 21px;
    font-weight: 900;
}

.etxm-access-empty,
.etxm-access-no-results {
    padding: 22px;
    border: 1px dashed rgba(255, 255, 255, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .7);
}

.etxm-access-empty {
    display: grid;
    gap: 7px;
}

.etxm-access-empty strong {
    color: #fff;
}

.etxm-access-help {
    margin-top: 26px;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

.etxm-access-help a {
    color: #c79fff;
    text-decoration: underline;
}

@media (max-width: 560px) {
    .etxm-access-shell {
        padding-block: 24px 40px;
        gap: 22px;
    }

    .etxm-access-card {
        border-radius: 20px;
    }

    .etxm-access-list a {
        grid-template-columns: 42px 1fr;
    }

    .etxm-access-list small {
        grid-column: 2;
    }
}
