:root {
    --bg: #07111f;
    --bg-alt: #10213a;
    --panel: rgba(7, 17, 31, 0.72);
    --panel-border: rgba(180, 228, 255, 0.14);
    --text: #edf6ff;
    --muted: #a9bfd1;
    --accent: #7df9d0;
    --accent-warm: #ff7a00;
    --accent-warm-soft: rgba(255, 122, 0, 0.18);
    --line: rgba(125, 249, 208, 0.28);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --progress: 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 28%),
        linear-gradient(180deg, #08111f 0%, #040b16 35%, #020617 100%);
}

body.landing-page--edit {
    padding-top: 84px;
}

body.landing-page--modal-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 0%, rgba(20, 184, 166, 0.12), transparent 23%),
        radial-gradient(circle at 82% 8%, rgba(34, 211, 238, 0.08), transparent 20%);
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
    opacity: 0.35;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

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

img {
    max-width: 100%;
}

.landing-admin-bar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(180, 228, 255, 0.12);
    background: rgba(5, 11, 20, 0.92);
    backdrop-filter: blur(20px);
}

.landing-admin-bar__meta {
    display: grid;
    gap: 2px;
}

.landing-admin-bar__eyebrow {
    color: var(--accent-warm);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    font-weight: 700;
}

.landing-admin-bar__actions,
.landing-edit-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-admin-bar__actions {
    align-items: center;
    gap: 18px;
}

.landing-admin-bar__link {
    color: rgba(237, 246, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 160ms ease, opacity 160ms ease;
}

.landing-admin-bar__link:hover,
.landing-admin-bar__link:focus-visible {
    color: var(--accent-warm);
}

.landing-edit-controls--inline {
    margin-bottom: 18px;
}

.landing-edit-controls--section {
    justify-content: flex-end;
    margin-bottom: -12svh;
    position: relative;
    z-index: 1;
}

.landing-edit-controls--card {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
}

.landing-edit-controls--cta {
    justify-content: flex-end;
}

.landing-edit-region {
    position: relative;
}

.landing-edit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(125, 249, 208, 0.28);
    border-radius: 999px;
    background: rgba(8, 24, 39, 0.86);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.landing-edit-button:hover,
.landing-edit-button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(125, 249, 208, 0.44);
    background: rgba(12, 33, 52, 0.96);
}

.landing-edit-button--ghost {
    border-color: rgba(255, 255, 255, 0.12);
}

.landing-edit-button--small {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.7rem;
}

.landing-prototype {
    position: relative;
    overflow: visible;
}

.hero,
.featured-courses,
.testimonials,
.cta-band {
    width: min(1180px, calc(100vw - 48px));
    margin: 0 auto;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(640px, 82svh, 820px);
    display: block;
    padding: 48px 0 40px;
}

.hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(260px, 0.34fr);
    align-items: end;
    gap: clamp(28px, 4vw, 72px);
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__canvas {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.72;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 22%, black 46%, black 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 22%, black 46%, black 100%);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-warm);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    max-width: 16ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 2.6vw, 2.85rem);
    line-height: 1.02;
}

.hero__copy {
    position: relative;
    max-width: 58rem;
}

.hero__brand {
    margin-bottom: 28px;
}

.hero__brand-logo {
    display: block;
    width: min(100%, 564px);
    height: auto;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.24));
}

.hero__lede {
    max-width: 38rem;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
    padding-bottom: 18px;
}

.hero__stats {
    justify-self: end;
    width: min(100%, 320px);
    display: grid;
    gap: 18px;
    padding-bottom: 22px;
}

.hero-stat {
    border: 1px solid rgba(180, 228, 255, 0.14);
    border-radius: 22px;
    padding: 22px 24px 20px;
    background:
        linear-gradient(180deg, rgba(9, 20, 36, 0.9) 0%, rgba(5, 11, 20, 0.86) 100%);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.hero-stat__value {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.hero-stat__label {
    margin: 10px 0 0;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.button--primary {
    color: #08201d;
    border-color: rgba(255, 122, 0, 0.24);
    background: linear-gradient(135deg, #b8ffe8 0%, var(--accent) 48%, #ffb366 100%);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.button--ghost {
    border-color: rgba(255, 122, 0, 0.34);
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    color: #fff4ea;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    border-color: rgba(255, 122, 0, 0.54);
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.note-card,
.story-step,
.scene-shell__status,
.testimonial-card,
.cta-band__card {
    border: 1px solid var(--panel-border);
    background: var(--panel);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.note-card,
.testimonial-card {
    border-radius: 24px;
    padding: 24px;
}

.note-card p:last-child,
.testimonial-card p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.scroll-sequence {
    position: relative;
    width: 100%;
    margin: 0;
    display: grid;
    align-items: start;
    grid-template-columns: 1fr;
    min-height: 420svh;
    padding: 0 16px 10svh;
}

.scroll-sequence__sticky {
    position: sticky;
    top: 16px;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    display: block;
    z-index: 1;
}

.scene-stack {
    position: relative;
    width: 100%;
    min-height: calc(100svh - 32px);
}

body.landing-page--edit .scroll-sequence__sticky {
    top: 100px;
}

.scene-shell {
    position: relative;
    width: 100%;
    min-height: calc(100svh - 32px);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(170, 219, 255, 0.14);
    background:
        radial-gradient(circle at top, rgba(103, 165, 255, 0.2), transparent 30%),
        linear-gradient(180deg, rgba(13, 26, 47, 0.96) 0%, rgba(5, 11, 20, 0.98) 100%);
    box-shadow: var(--shadow);
}

.scene-shell__canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.scene-shell__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding: 24px clamp(20px, 3vw, 40px);
    pointer-events: none;
}

.progress-rail {
    align-self: center;
    display: grid;
    justify-items: center;
    gap: 18px;
    pointer-events: auto;
}

.progress-rail__line {
    position: relative;
    width: 2px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-rail__fill {
    position: absolute;
    inset: auto 0 0;
    height: calc(var(--progress) * 100%);
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-warm) 100%);
    box-shadow: 0 0 18px rgba(125, 249, 208, 0.6);
}

.progress-rail__dot {
    width: 16px;
    height: 16px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 0 rgba(125, 249, 208, 0.4);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.progress-rail__dot.is-active,
.progress-rail__dot:hover,
.progress-rail__dot:focus-visible {
    transform: scale(1.12);
    background: var(--accent-warm);
    box-shadow: 0 0 0 8px var(--accent-warm-soft);
}

.scroll-sequence__steps {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: min(100%, 1380px);
    margin: 0 auto;
    display: grid;
    min-width: 0;
    align-content: start;
    justify-items: end;
    gap: 34svh;
    padding: 14svh clamp(20px, 4vw, 56px) 22svh;
    z-index: 2;
}

.featured-courses {
    padding: 4svh 0 6svh;
}

.featured-courses__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.featured-courses__intro h2 {
    margin: 0;
    max-width: 14ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
}

.landing-edit-controls--featured-courses {
    width: auto;
    margin-bottom: 0;
}

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

.landing-course-card {
    position: relative;
    min-width: 0;
    border: 1px solid rgba(180, 228, 255, 0.14);
    border-radius: 26px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(13, 26, 47, 0.96) 0%, rgba(5, 11, 20, 0.98) 100%);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-course-card:hover,
.landing-course-card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(125, 249, 208, 0.28);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.landing-course-card__link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.landing-course-card__link--button {
    appearance: none;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.landing-course-card__image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(10, 19, 34, 0.8);
}

.landing-course-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.landing-course-card__image--placeholder {
    background:
        radial-gradient(circle at 30% 24%, rgba(125, 249, 208, 0.18), transparent 22%),
        linear-gradient(180deg, rgba(18, 34, 56, 0.98) 0%, rgba(10, 19, 34, 0.98) 100%);
}

.landing-course-card:hover .landing-course-card__image,
.landing-course-card:focus-within .landing-course-card__image {
    transform: scale(1.02);
}

.landing-course-card__play-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 16px 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(6, 14, 26, 0.78);
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
}

.landing-course-card__play-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8ffe8 0%, var(--accent) 42%, #ffb366 100%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
    position: relative;
    flex: 0 0 auto;
}

.landing-course-card__play-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #07111f;
    transform: translate(-35%, -50%);
}

.landing-course-card__body {
    padding: 20px 22px 12px;
}

.landing-course-card__title {
    margin: 0;
    min-height: 3.4em;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.18;
}

.landing-course-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 0.92rem;
}

.landing-course-card__credits,
.landing-course-card__rating {
    position: relative;
    z-index: 3;
}

.landing-course-card__credits span,
.landing-course-card__rating strong,
.landing-course-card__rating small {
    color: var(--text);
}

.landing-course-card__credits {
    font-weight: 700;
}

.landing-course-card__divider {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.25);
}

.landing-course-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.landing-course-card__rating span[aria-hidden="true"] {
    color: var(--accent-warm);
}

.landing-video-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 32px;
}

.landing-video-modal[hidden] {
    display: none;
}

.landing-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 5, 11, 0.72);
    backdrop-filter: blur(10px);
}

.landing-video-modal__dialog {
    position: relative;
    width: min(1080px, calc(100vw - 64px));
    max-height: calc(100svh - 64px);
    overflow: auto;
    border: 1px solid rgba(180, 228, 255, 0.14);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(9, 20, 36, 0.96) 0%, rgba(5, 11, 20, 0.94) 100%);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.5);
}

.landing-video-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(8, 24, 39, 0.86);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.landing-video-modal__close:hover,
.landing-video-modal__close:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 122, 0, 0.34);
    background: rgba(12, 33, 52, 0.96);
}

.landing-video-modal__header {
    padding: 28px 32px 12px;
}

.landing-video-modal__header h2 {
    margin: 0;
    max-width: calc(100% - 72px);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.05;
}

.landing-video-modal__body {
    padding: 0 32px 32px;
}

.landing-video-modal__body .asset-embed,
.landing-video-modal__body .asset-embed-inner,
.landing-video-modal__body .video-embed,
.landing-video-modal__body .video-embed-inner {
    width: 100%;
}

.landing-video-modal__body iframe,
.landing-video-modal__body video,
.landing-video-modal__body embed,
.landing-video-modal__body object {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: min(62vw, 620px);
    border: 0;
    border-radius: 18px;
    background: #050b14;
}

.story-step {
    width: min(100%, 750px);
    border-radius: 24px;
    padding: 28px;
    opacity: 0.42;
    transform: translateY(24px) scale(0.98);
    transition: opacity 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.story-step.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-color: rgba(125, 249, 208, 0.35);
}

.story-step__index {
    margin: 0 0 10px;
    color: var(--accent-warm);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
}

.story-step h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.story-step p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.story-step__media {
    margin-top: 18px;
    width: 100%;
    min-height: 180px;
    border: 1px solid rgba(180, 228, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(10, 25, 42, 0.96) 0%, rgba(7, 17, 31, 0.98) 100%),
        radial-gradient(circle at top, rgba(125, 249, 208, 0.14), transparent 52%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-edit-controls--section {
    width: min(100%, 750px);
    margin-left: auto;
}

.story-step__media--embed {
    padding: 0;
    aspect-ratio: 16 / 9;
}

.story-step__media--embed iframe,
.story-step__media--embed video,
.story-step__media--embed embed,
.story-step__media--embed object {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.story-step__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    padding: 8svh 0 2svh;
}

.testimonials__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 24px;
    margin-bottom: 24px;
}

.testimonials__intro-copy {
    max-width: 52rem;
}

.testimonials__tools {
    display: grid;
    justify-items: end;
    align-content: start;
    gap: 14px;
}

.testimonials__intro h2,
.cta-band__card h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.06;
}

.landing-edit-controls--testimonials {
    justify-content: flex-end;
    align-self: start;
    margin-bottom: 0;
}

.testimonials__nav {
    display: flex;
    gap: 10px;
}

.testimonials__nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(125, 249, 208, 0.28);
    border-radius: 999px;
    background: rgba(8, 24, 39, 0.86);
    color: var(--text);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.testimonials__nav-button:hover,
.testimonials__nav-button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 122, 0, 0.52);
    background: rgba(10, 30, 47, 0.94);
    color: var(--accent-warm);
}

.testimonials__nav-button[disabled] {
    opacity: 0.38;
    cursor: default;
    transform: none;
}

.testimonials__rail {
    position: relative;
}

.testimonials__rail.is-scrollable {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 14px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(125, 249, 208, 0.4) rgba(255, 255, 255, 0.06);
}

.testimonials__rail.is-scrollable::-webkit-scrollbar {
    height: 10px;
}

.testimonials__rail.is-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

.testimonials__rail.is-scrollable::-webkit-scrollbar-thumb {
    background: rgba(125, 249, 208, 0.34);
    border-radius: 999px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
}

.testimonials__grid--carousel {
    grid-auto-columns: 360px;
    grid-auto-flow: column;
    grid-template-columns: none;
    min-width: max-content;
    padding-right: 8px;
}

.testimonial-card {
    min-height: 248px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
}

.testimonial-card__quote {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.75;
}

.testimonial-card__attribution {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
}

.cta-band {
    padding: 2svh 0 10svh;
}

.cta-band__card {
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    padding: 34px 36px 36px;
    display: block;
    background:
        radial-gradient(circle at 85% 22%, rgba(125, 249, 208, 0.16), transparent 22%),
        radial-gradient(circle at 92% 78%, rgba(247, 172, 103, 0.11), transparent 20%),
        linear-gradient(180deg, rgba(8, 16, 30, 0.98) 0%, rgba(6, 12, 23, 0.98) 100%);
}

.cta-band__content {
    position: relative;
    z-index: 1;
    max-width: 54rem;
}

.cta-band__card h2 {
    max-width: 20ch;
    font-size: clamp(2.45rem, 4.8vw, 4.4rem);
    line-height: 1;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.cta-band__body {
    max-width: 44rem;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

@media (max-width: 860px) {
    .hero {
        min-height: auto;
        padding-top: 48px;
    }

    .hero__layout {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }

    .hero__stats {
        justify-self: stretch;
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-bottom: 0;
    }

    .scene-stack {
        width: 100%;
        min-height: auto;
    }

    .scene-shell {
        min-height: 60svh;
        aspect-ratio: auto;
    }

    .scroll-sequence {
        min-height: auto;
        padding-bottom: 8svh;
    }

    .testimonials__grid,
    .cta-band__card {
        grid-template-columns: 1fr;
        display: grid;
    }

    .cta-band__card {
        padding: 28px 24px;
    }

    .cta-band__card h2 {
        max-width: none;
        font-size: clamp(2rem, 9vw, 3.2rem);
    }

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

    .featured-courses__intro {
        grid-template-columns: 1fr;
    }

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

    .testimonials__tools {
        justify-items: start;
    }

    .landing-edit-controls--testimonials {
        justify-content: flex-start;
    }

    .testimonials__grid--carousel {
        grid-auto-columns: minmax(280px, 80vw);
    }

    .scroll-sequence__steps {
        grid-row: auto;
        width: 100%;
        justify-items: stretch;
        gap: 20svh;
        padding-top: 8svh;
    }

    .story-step,
    .landing-edit-controls--section {
        width: 100%;
    }

    .progress-rail {
        position: absolute;
        right: 24px;
        top: 24px;
    }

}

@media (max-width: 640px) {
    .hero,
    .featured-courses,
    .testimonials,
    .cta-band {
        width: min(100vw - 24px, 1180px);
    }

    .scroll-sequence {
        width: min(100vw - 16px, 1280px);
        gap: 16px;
    }

    .scene-shell__overlay {
        padding: 16px;
        align-items: stretch;
    }

    .landing-admin-bar {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 16px;
    }

    body.landing-page--edit {
        padding-top: 126px;
    }

    .story-step,
    .note-card,
    .testimonial-card,
    .cta-band__card,
    .landing-course-card {
        border-radius: 20px;
        padding: 22px;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2.8rem, 12vw, 4.2rem);
    }

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

    .hero-stat {
        padding: 20px;
    }

    .featured-courses__grid {
        grid-template-columns: 1fr;
    }

    .landing-course-card {
        padding: 0;
    }

    .landing-edit-controls--card {
        position: static;
        margin-bottom: 16px;
    }

    .landing-edit-controls--section {
        justify-content: flex-start;
        margin-bottom: -8svh;
    }
}

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

    .button,
    .progress-rail__dot,
    .story-step {
        transition: none;
    }
}
