:root {
    --edtd-orange: #d17b13;
    --edtd-orange-bright: #f49a2c;
    --edtd-orange-soft: rgba(209, 123, 19, .14);
    --edtd-black: #050506;
    --edtd-panel: #101012;
    --edtd-panel-2: #171719;
    --edtd-line: rgba(255, 255, 255, .1);
    --edtd-muted: rgba(255, 255, 255, .62);
    --edtd-success: #46c789;
}

html {
    scroll-behavior: smooth;
}

body.swr-edtd-page {
    margin: 0;
    color: #fff;
    background: var(--edtd-black);
}

body.swr-edtd-page,
body.swr-edtd-page button,
body.swr-edtd-page input {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.swr-edtd-page * {
    box-sizing: border-box;
}

body.swr-edtd-page a {
    color: inherit;
}

.edtd-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.edtd svg {
    display: block;
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.edtd-wrap,
.edp-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

/* EasyDrive Topbar – identisch zur Lernplattform. */
.edp-topbar,
.edp-topbar * {
    box-sizing: border-box;
}

.edp-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(209, 123, 19, .22);
    background: linear-gradient(180deg, rgba(10, 10, 10, .96), rgba(0, 0, 0, .92));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.admin-bar .edp-topbar {
    top: 32px;
}

.edp-topbar-inner {
    display: flex;
    min-height: 88px;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.edp-brand {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.edp-brand-logo {
    display: block;
    width: auto;
    max-width: 285px;
    height: 62px;
    object-fit: contain;
}

.edp-menu {
    display: flex;
    flex: 1;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.edp-nav {
    display: flex;
    flex: 1;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.edp-nav a {
    display: inline-flex;
    min-height: 44px;
    padding: 0 12px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.015em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.edp-nav a i {
    color: var(--edtd-orange);
    font-size: 16px;
}

.edp-nav a:hover,
.edp-nav a:focus-visible,
.edp-nav a.is-active {
    color: #fff;
    background: rgba(209, 123, 19, .18);
    box-shadow: inset 0 0 0 1px rgba(209, 123, 19, .34);
    transform: translateY(-1px);
}

.edp-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.edp-mini-btn {
    display: inline-flex;
    min-height: 44px;
    padding: 0 17px;
    gap: 9px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(209, 123, 19, .28);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .045);
    font-size: 15.5px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.edp-mini-btn i {
    color: var(--edtd-orange);
}

.edp-mini-btn:hover,
.edp-mini-btn:focus-visible {
    border-color: var(--edtd-orange);
    color: #fff;
    background: rgba(209, 123, 19, .14);
    transform: translateY(-1px);
}

.edp-mini-btn.edp-primary {
    border-color: var(--edtd-orange);
    color: #fff;
    background: var(--edtd-orange);
    box-shadow: 0 14px 34px rgba(209, 123, 19, .28), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.edp-mini-btn.edp-primary i {
    color: #fff;
}

.edp-burger {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(209, 123, 19, .36);
    border-radius: 999px;
    background: rgba(209, 123, 19, .08);
    cursor: pointer;
}

.edp-burger span {
    display: block;
    width: 20px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--edtd-orange);
    transition: transform .25s ease, opacity .2s ease;
}

.edp-topbar.is-open .edp-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.edp-topbar.is-open .edp-burger span:nth-child(2) {
    opacity: 0;
}

.edp-topbar.is-open .edp-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.edtd-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: clamp(280px, 20vw, 350px);
    align-items: center;
    overflow: hidden;
    background-color: #020203;
    background-image: var(--edtd-hero-image);
    background-repeat: no-repeat;
    background-position: left 17%;
    background-size: 106% auto;
}

.edtd-hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .94) 22%, rgba(0, 0, 0, .74) 40%, rgba(0, 0, 0, .2) 60%, rgba(0, 0, 0, .08) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .35));
}

.edtd-hero::after {
    position: absolute;
    z-index: -1;
    inset: auto 0 0;
    height: 68px;
    content: "";
    background: linear-gradient(180deg, transparent, var(--edtd-black));
}

.edtd-hero__overlay {
    position: absolute;
    z-index: -1;
    top: 9%;
    left: -10%;
    width: 52%;
    height: 72%;
    border-radius: 50%;
    background: rgba(209, 123, 19, .08);
    filter: blur(100px);
    pointer-events: none;
}

.edtd-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 760px) 1fr;
    padding: 30px 0 34px;
}

.edtd-hero__content {
    position: relative;
    max-width: 760px;
}

.edtd-eyebrow,
.edtd-kicker {
    margin: 0 0 16px;
    color: var(--edtd-orange-bright);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.edtd-eyebrow {
    display: inline-flex;
    padding: 8px 12px;
    gap: 8px;
    align-items: center;
    border: 1px solid rgba(244, 154, 44, .24);
    border-radius: 999px;
    background: rgba(209, 123, 19, .1);
}

.edtd-eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--edtd-orange-bright);
    box-shadow: 0 0 16px var(--edtd-orange-bright);
}

.edtd-hero h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(2.35rem, 3.8vw, 4.1rem);
    font-weight: 950;
    line-height: .95;
    letter-spacing: -.062em;
    white-space: nowrap;
}

.edtd-hero h1 em {
    color: var(--edtd-orange-bright);
    font-style: normal;
}

.edtd-hero__lead {
    max-width: 590px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.75;
}

.edtd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.edtd-btn {
    display: inline-flex;
    min-height: 52px;
    padding: 0 22px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 15px;
    color: #fff;
    background: rgba(255, 255, 255, .055);
    font-size: .94rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.edtd-btn:hover,
.edtd-btn:focus-visible {
    color: #fff;
    transform: translateY(-2px);
}

.edtd-btn--primary {
    border-color: var(--edtd-orange);
    background: linear-gradient(135deg, var(--edtd-orange), #a95d08);
    box-shadow: 0 18px 40px rgba(209, 123, 19, .25), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.edtd-btn--ghost:hover,
.edtd-btn--ghost:focus-visible {
    border-color: rgba(244, 154, 44, .52);
    background: rgba(209, 123, 19, .11);
}

.edtd-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 36px;
    color: rgba(255, 255, 255, .55);
    font-size: .83rem;
    font-weight: 720;
}

.edtd-hero__facts span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.edtd-hero__facts strong,
.edtd-hero__facts svg {
    color: var(--edtd-orange-bright);
}

/* Module */
.edtd-modules {
    position: relative;
    padding: 100px 0 110px;
    color: #111114;
    background:
        radial-gradient(circle at 10% 8%, rgba(209, 123, 19, .12), transparent 28rem),
        linear-gradient(180deg, #fff 0%, #f7f4ef 100%);
}

.edtd-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 50px;
    align-items: end;
    margin-bottom: 58px;
}

.edtd-section-head h2,
.edtd-progress-panel h3,
.edtd-login-panel h3 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.4rem, 4.6vw, 4.6rem);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.055em;
}

.edtd-section-head h2 {
    color: #111114;
}

.edtd-progress-panel h3,
.edtd-login-panel h3 {
    color: #fff;
}

.edtd-progress-panel h3 {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.edtd-login-panel h3 {
    font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.edtd-section-head > p {
    margin: 0 0 4px;
    color: rgba(17, 17, 20, .62);
    font-size: 1rem;
    line-height: 1.7;
}

.edtd-module-group + .edtd-module-group {
    margin-top: 70px;
}

.edtd-module-group__head {
    display: flex;
    padding-bottom: 18px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(17, 17, 20, .12);
}

.edtd-module-group__head h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.edtd-module-group__head span {
    padding: 7px 11px;
    border: 1px solid rgba(209, 123, 19, .25);
    border-radius: 999px;
    color: var(--edtd-orange-bright);
    background: rgba(209, 123, 19, .08);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.edtd-module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.edtd-module-grid--additional {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.edtd-module-card {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 330px;
    padding: 25px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .095);
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(209, 123, 19, .13), transparent 13rem),
        linear-gradient(145deg, #171719, #0d0d0f);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 18px 50px rgba(0, 0, 0, .2);
    text-decoration: none;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.edtd-module-card::before {
    position: absolute;
    z-index: -1;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    content: "";
    background: rgba(209, 123, 19, .13);
    filter: blur(30px);
    opacity: 0;
    transition: opacity .28s ease;
}

.edtd-module-card:hover,
.edtd-module-card:focus-visible {
    border-color: rgba(244, 154, 44, .58);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 24px 70px rgba(0, 0, 0, .36), 0 0 36px rgba(209, 123, 19, .08);
    transform: translateY(-6px);
}

.edtd-module-card:hover::before,
.edtd-module-card:focus-visible::before {
    opacity: 1;
}

.edtd-module-card__number {
    position: absolute;
    top: 22px;
    right: 23px;
    color: rgba(255, 255, 255, .07);
    font-size: 3.2rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.08em;
}

.edtd-module-card__status {
    position: absolute;
    top: 24px;
    left: 78px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .035);
    font-size: .67rem;
    font-weight: 900;
    text-transform: uppercase;
}

.edtd-module-card.is-started .edtd-module-card__status {
    border-color: rgba(244, 154, 44, .28);
    color: var(--edtd-orange-bright);
    background: rgba(209, 123, 19, .08);
}

.edtd-module-card.is-complete .edtd-module-card__status {
    border-color: rgba(70, 199, 137, .28);
    color: var(--edtd-success);
    background: rgba(70, 199, 137, .08);
}

.edtd-module-card__icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 27px;
    place-items: center;
    border: 1px solid rgba(244, 154, 44, .28);
    border-radius: 13px;
    color: var(--edtd-orange-bright);
    background: rgba(209, 123, 19, .1);
}

.edtd-module-card__icon svg {
    width: 21px;
    height: 21px;
}

.edtd-module-card__type {
    margin-bottom: 8px;
    color: var(--edtd-orange-bright);
    font-size: .71rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.edtd-module-card > strong {
    max-width: 90%;
    margin-bottom: 10px;
    font-size: clamp(1.2rem, 1.7vw, 1.55rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.edtd-module-card__description {
    color: rgba(255, 255, 255, .54);
    font-size: .84rem;
    line-height: 1.6;
}

.edtd-module-card__meta {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 22px;
    color: rgba(255, 255, 255, .48);
    font-size: .76rem;
    font-weight: 800;
}

.edtd-module-card__meta > span {
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.edtd-module-card__bar {
    display: block;
    height: 4px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
}

.edtd-module-card__bar > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--edtd-orange), var(--edtd-orange-bright));
    transition: width .45s ease;
}

.edtd-module-card.is-complete .edtd-module-card__bar > span {
    background: linear-gradient(90deg, #2e9d69, var(--edtd-success));
}

.edtd-module-card__link {
    display: inline-flex;
    margin-top: 17px;
    gap: 7px;
    align-items: center;
    color: rgba(255, 255, 255, .82);
    font-size: .8rem;
    font-weight: 900;
}

.edtd-module-card__link svg {
    color: var(--edtd-orange-bright);
    transition: transform .2s ease;
}

.edtd-module-card:hover .edtd-module-card__link svg {
    transform: translateX(4px);
}

.edtd-module-card--additional {
    min-height: 300px;
    background:
        radial-gradient(circle at 100% 0, rgba(244, 154, 44, .18), transparent 16rem),
        linear-gradient(145deg, #1a1510, #0d0c0b);
}

/* Progress */
.edtd-progress-section {
    padding: 96px 0 118px;
    background: #000;
}

.edtd-welcome-head {
    max-width: 1080px;
    margin-bottom: 48px;
}

.edtd-welcome-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.55rem, 5vw, 5.2rem);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.058em;
}

.edtd-welcome-head h2 em {
    color: var(--edtd-orange-bright);
    font-style: normal;
}

.edtd-progress-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 230px minmax(350px, .85fr);
    min-height: 390px;
    padding: clamp(30px, 4vw, 56px);
    gap: clamp(30px, 4vw, 54px);
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(17, 18, 20, .08);
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 8%, rgba(209, 123, 19, .2), transparent 22rem),
        linear-gradient(145deg, #171719, #080809);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.edtd-progress-actions {
    display: flex;
    margin-top: 34px;
    justify-content: center;
}

.edtd-progress-actions .edtd-btn {
    min-width: 220px;
}

.edtd-progress-panel__intro > p:not(.edtd-kicker) {
    max-width: 590px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .62);
    line-height: 1.72;
}

.edtd-progress-panel__sync {
    display: inline-flex;
    margin-top: 28px;
    gap: 9px;
    align-items: center;
    color: rgba(255, 255, 255, .48);
    font-size: .77rem;
    font-weight: 800;
}

.edtd-progress-panel__sync svg {
    color: var(--edtd-orange-bright);
}

.edtd-progress-ring {
    --edtd-progress: 0;
    position: relative;
    display: grid;
    width: 210px;
    height: 210px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--edtd-orange-bright) calc(var(--edtd-progress) * 1%), rgba(255, 255, 255, .08) 0);
    box-shadow: 0 0 56px rgba(209, 123, 19, .12);
    transition: background .5s ease;
}

.edtd-progress-ring::before {
    position: absolute;
    width: 166px;
    height: 166px;
    border-radius: 50%;
    content: "";
    background: #0d0d0f;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.edtd-progress-ring > div {
    position: relative;
    z-index: 1;
    text-align: center;
}

.edtd-progress-ring strong,
.edtd-progress-ring span {
    display: block;
}

.edtd-progress-ring strong {
    font-size: 2.7rem;
    font-weight: 950;
    letter-spacing: -.06em;
}

.edtd-progress-ring span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .45);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.edtd-progress-stats {
    display: grid;
    gap: 12px;
}

.edtd-progress-stat {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    min-height: 82px;
    padding: 15px;
    gap: 13px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
}

.edtd-progress-stat__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: var(--edtd-orange-bright);
    background: rgba(209, 123, 19, .1);
}

.edtd-progress-stat > div strong,
.edtd-progress-stat > div span {
    display: block;
}

.edtd-progress-stat > div strong {
    font-size: 1.05rem;
    font-weight: 950;
}

.edtd-progress-stat > div span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .45);
    font-size: .72rem;
    font-weight: 760;
}

.edtd-progress-stat__percent {
    color: var(--edtd-orange-bright);
    font-size: .88rem;
    font-weight: 950;
}

.edtd-progress-stat__activity {
    color: rgba(255, 255, 255, .48);
    font-size: .7rem;
    font-weight: 800;
    white-space: nowrap;
}

.edtd-login-panel {
    display: flex;
    min-height: 300px;
    padding: clamp(30px, 5vw, 64px);
    gap: 35px;
    align-items: center;
    justify-content: space-between;
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(209, 123, 19, .25), transparent 20rem),
        linear-gradient(145deg, #171719, #080809);
    box-shadow: 0 32px 90px rgba(35, 25, 14, .18);
}

.edtd-login-panel p:not(.edtd-kicker) {
    max-width: 650px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
}

.edtd-footer {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #050506;
}

.edtd-footer .edtd-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.edtd-footer strong {
    font-size: .82rem;
}

.edtd-footer span {
    color: rgba(255, 255, 255, .4);
    font-size: .75rem;
}

@media (max-width: 1180px) {
    .edp-topbar-inner { gap: 20px; }
    .edp-brand-logo { height: 56px; max-width: 245px; }
    .edp-menu { gap: 18px; }
    .edp-nav { gap: 6px; }
    .edp-nav a { padding: 0 9px; font-size: 14.5px; }
    .edp-mini-btn { padding: 0 14px; font-size: 14.5px; }

    .edtd-module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .edtd-progress-panel { grid-template-columns: minmax(0, 1fr) 200px; }
    .edtd-progress-stats { grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .edtd-progress-ring { width: 190px; height: 190px; }
    .edtd-progress-ring::before { width: 148px; height: 148px; }
}

@media (max-width: 980px) {
    .edtd-wrap,
    .edp-container { width: min(100% - 24px, 1280px); }

    .edp-topbar-inner {
        position: relative;
        display: grid;
        min-height: 76px;
        grid-template-columns: auto 46px;
        padding: 10px 0;
        gap: 14px;
        align-items: center;
    }

    .edp-brand-logo { height: 50px; max-width: 230px; }
    .edp-burger { display: inline-flex; justify-self: end; }
    .edp-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: grid;
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 16px;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 24px;
        background: radial-gradient(circle at top left, rgba(209, 123, 19, .18), transparent 34%), rgba(8, 8, 8, .97);
        box-shadow: 0 24px 70px rgba(0, 0, 0, .46);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    }

    .edp-topbar.is-open .edp-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .edp-nav { display: grid; grid-template-columns: 1fr; gap: 10px; width: 100%; }
    .edp-nav a {
        width: 100%;
        min-height: 48px;
        padding: 0 16px;
        justify-content: flex-start;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 16px;
        background: rgba(255, 255, 255, .045);
        font-size: 15px;
        text-transform: none;
    }

    .edp-actions { display: grid; width: 100%; grid-template-columns: 1fr 1fr; }
    .edp-mini-btn { width: 100%; border-radius: 16px; text-transform: none; }

    .edtd-hero {
        min-height: 380px;
        background-position: left center;
        background-size: 112% auto;
    }

    .edtd-hero::before {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .92) 40%, rgba(0, 0, 0, .38) 72%, rgba(0, 0, 0, .18) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .45));
    }

    .edtd-hero__inner { grid-template-columns: minmax(0, 620px) 1fr; }
    .edtd-section-head { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 760px) {
    .edtd-hero {
        min-height: 360px;
        align-items: flex-end;
        background-position: 72% center;
        background-size: auto 100%;
    }

    .edtd-hero::before {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .52) 36%, rgba(0, 0, 0, .96) 72%, #000 100%),
            linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .1));
    }

    .edtd-hero__inner {
        display: block;
        padding: 195px 0 44px;
    }

    .edtd-hero h1 { font-size: clamp(2.05rem, 9vw, 3.2rem); }
    .edtd-hero__facts { gap: 10px 16px; }
    .edtd-modules { padding: 78px 0 84px; }
    .edtd-module-grid,
    .edtd-module-grid--additional { grid-template-columns: 1fr; }
    .edtd-module-card { min-height: 300px; }
    .edtd-progress-section { padding: 72px 0 88px; }
    .edtd-welcome-head { margin-bottom: 36px; }
    .edtd-progress-panel { grid-template-columns: 1fr; text-align: left; }
    .edtd-progress-ring { justify-self: start; }
    .edtd-progress-stats { grid-column: auto; grid-template-columns: 1fr; width: 100%; }
    .edtd-login-panel { flex-direction: column; align-items: flex-start; }
    .edtd-footer .edtd-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 782px) {
    body.admin-bar .edp-topbar { top: 46px; }
}

@media (max-width: 520px) {
    .edtd-wrap,
    .edp-container { width: min(100% - 20px, 1280px); }
    .edp-brand-logo { height: 46px; max-width: 210px; }
    .edp-actions { grid-template-columns: 1fr; }
    .edtd-hero__actions { display: grid; grid-template-columns: 1fr; }
    .edtd-btn { width: 100%; }
    .edtd-hero__facts { display: grid; }
    .edtd-welcome-head h2 { font-size: clamp(2.35rem, 11vw, 3.7rem); }
    .edtd-module-card { padding: 22px; border-radius: 20px; }
    .edtd-progress-panel { padding: 25px 20px; border-radius: 25px; }
    .edtd-progress-ring { width: 170px; height: 170px; }
    .edtd-progress-ring::before { width: 132px; height: 132px; }
    .edtd-progress-ring strong { font-size: 2.25rem; }
    .edtd-progress-stat { grid-template-columns: 42px minmax(0, 1fr); }
    .edtd-progress-stat__percent,
    .edtd-progress-stat__activity { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .edtd-module-card,
    .edtd-btn,
    .edtd-module-card__link svg,
    .edtd-module-card__bar > span { transition: none; }
}