body {
    min-width: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ANIMATIONS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes floatNote {
    from {
        transform: translateY(108vh) rotate(0deg);
        opacity: 0;
    }

    8% {
        opacity: 0.07;
    }

    92% {
        opacity: 0.04;
    }

    to {
        transform: translateY(-8vh) rotate(400deg);
        opacity: 0;
    }
}

@keyframes floatY {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.fade-up {
    opacity: 1;
    transform: none;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.animations-ready .fade-up:not(.visible) {
    opacity: 0;
    transform: translateY(28px);
}

.animations-ready .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       HERO
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
    position: relative;
    display: flex;
    min-height: 760px;
    height: min(920px, 100svh);
    overflow: hidden;
    background: var(--bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 38%, rgba(124, 58, 237, 0.16), transparent 34%),
        radial-gradient(circle at 16% 82%, rgba(232, 184, 75, 0.08), transparent 28%),
        var(--bg);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 108px 36px 40px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(42px, 6vw, 96px);
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 610px;
    animation: heroCopyIn 700ms ease-out both;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.eyebrow-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    margin-bottom: 26px;
    font-family: var(--font-display);
}

.hero-name,
.hero-promise {
    display: block;
}

.hero-name {
    max-width: 590px;
    color: var(--white);
    font-size: clamp(3.2rem, 5.25vw, 4.9rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-promise {
    margin-top: 18px;
    color: #b7bfce;
    font-size: clamp(2rem, 3.15vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-promise em {
    color: var(--gold);
    font-weight: 700;
}

.hero-subtitle {
    max-width: 540px;
    margin-bottom: 32px;
    color: #a7b0c0;
    font-size: clamp(1rem, 1.4vw, 1.08rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-actions .btn {
    min-height: 50px;
    border-radius: 4px;
}

.hero-secondary,
.mm-text-link {
    position: relative;
    padding: 10px 0 7px;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-secondary::after,
.mm-text-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--gold);
    transform-origin: left;
    transition: transform var(--t);
}

.hero-secondary:hover::after,
.mm-text-link:hover::after {
    transform: scaleX(0.42);
}

.hero-authority {
    max-width: 530px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(232, 184, 75, 0.22);
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.6;
}

.hero-authority strong {
    color: var(--white);
    font-weight: 600;
}

.hero-portrait {
    position: relative;
    align-self: end;
    height: calc(100% - 102px);
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    animation: portraitIn 900ms 120ms ease-out both;
}

.hero-portrait::before {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg) 0%, transparent 18%),
        linear-gradient(0deg, var(--bg) 0%, transparent 24%);
    pointer-events: none;
}

.hero-portrait::after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 9%;
    right: 0;
    width: 1px;
    height: 38%;
    background: var(--gold);
    opacity: 0.65;
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    filter: saturate(0.82) contrast(1.04);
}

.hero-portrait figcaption {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 28px;
    color: var(--white);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.hero-portrait figcaption span {
    color: var(--muted);
    font-weight: 400;
}

@keyframes heroCopyIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes portraitIn {
    from { opacity: 0; transform: translateX(28px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION: MUSICALMENTE
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#musicalmente {
    position: relative;
    overflow: hidden;
    background: #0d1220;
}

#musicalmente::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 184, 75, 0.5), transparent);
}

.mm-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 74px;
    align-items: start;
}

.mm-intro {
    grid-column: 1 / span 6;
    max-width: 560px;
}

.mm-intro .heading {
    margin-bottom: 24px;
}

.mm-intro .heading em {
    color: var(--gold);
    font-weight: 700;
}

.mm-intro .subtext {
    margin-bottom: 34px;
}

.mm-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.mm-actions .btn {
    border-radius: 4px;
}

.mm-offer {
    grid-column: 8 / -1;
    padding-top: 35px;
    border-top: 1px solid rgba(232, 184, 75, 0.34);
}

.mm-price-label,
.mm-proof-label {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mm-price {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1;
}

.mm-price span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5vw, 4.6rem);
    font-weight: 900;
    letter-spacing: -0.045em;
}

.mm-price small {
    font-size: 0.78rem;
}

.mm-payment {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.78rem;
}

.mm-benefits {
    margin-top: 36px;
    border-top: 1px solid var(--border-soft);
}

.mm-benefits li {
    display: grid;
    grid-template-columns: minmax(120px, 0.72fr) 1.28fr;
    gap: 22px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-soft);
}

.mm-benefits strong {
    color: var(--white);
    font-size: 0.82rem;
}

.mm-benefits span {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.mm-proof {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 2fr 8fr;
    gap: 32px;
    padding-top: 30px;
    border-top: 1px solid var(--border-soft);
}

.mm-catalog {
    max-width: 840px;
    color: #a7b0c0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    line-height: 1.55;
}

.mm-catalog span {
    margin: 0 5px;
    color: var(--gold);
    opacity: 0.75;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       EDITORIAL HOME SECTIONS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-intro--split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: end;
    margin-bottom: 64px;
}

.section-intro--split .heading,
.section-intro--split .subtext {
    margin-bottom: 0;
}

.section-intro-copy .text-arrow {
    margin-top: 22px;
}

.text-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 5px 0 6px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
}

.text-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    transform-origin: left;
    transition: transform var(--t);
}

.text-arrow:hover::after,
.text-arrow:focus-visible::after {
    transform: scaleX(0.38);
}

/* Products */
.products-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(54px, 6vw, 76px);
}

.product-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    min-width: 0;
    background: rgba(14, 20, 36, 0.72);
    border-top: 1px solid rgba(232, 184, 75, 0.35);
    border-bottom: 1px solid var(--border-soft);
}

.course-media,
.journal-media {
    position: relative;
    overflow: hidden;
}

.course-media::after,
.journal-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.course-media img,
.journal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms ease, filter 300ms ease;
}

.course-media:hover img,
.course-media:focus-visible img,
.journal-feature:hover .journal-media img,
.journal-feature:focus-visible .journal-media img {
    transform: scale(1.025);
    filter: brightness(1.05);
}

.product-feature-media,
.product-secondary-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    background: #111728;
}

.product-feature-media::after,
.product-secondary-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.product-feature-media {
    aspect-ratio: 1 / 1;
}

.product-secondary-media {
    aspect-ratio: 16 / 10;
}

.product-feature-media img,
.product-secondary-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 250ms ease;
}

.product-feature-media:hover img,
.product-feature-media:focus-visible img,
.product-secondary-media:hover img,
.product-secondary-media:focus-visible img {
    filter: brightness(1.06);
}

.product-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(36px, 4.5vw, 64px);
    background: linear-gradient(135deg, rgba(17, 24, 45, 0.76), rgba(10, 14, 24, 0.2));
}

.product-kicker,
.product-format,
.course-step,
.journal-category {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.product-feature h3,
.course-copy h3,
.journal-copy h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.product-feature-copy > p,
.course-copy > p,
.journal-copy > p {
    margin-top: 20px;
    color: var(--muted);
    line-height: 1.75;
}

.product-buyline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.product-buyline > div {
    min-width: 0;
}

.product-buyline .btn {
    flex: 0 0 auto;
}

.product-buyline .price-now {
    font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.product-secondary-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.product-secondary {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    min-width: 0;
    background: rgba(14, 20, 36, 0.58);
    border: 1px solid var(--border-soft);
}

.product-secondary-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(24px, 3vw, 34px);
}

.product-secondary-copy h3 {
    margin-top: 12px;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.25;
}

.product-secondary-copy p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.79rem;
    line-height: 1.6;
}

.product-secondary-copy > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
}

.product-secondary-copy .price-now {
    font-size: 1.35rem;
}

.product-catalog {
    display: block;
    min-width: 0;
    padding-top: 34px;
    border-top: 1px solid rgba(232, 184, 75, 0.35);
}

.product-catalog-heading h3 {
    max-width: 560px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.6vw, 2.35rem);
    line-height: 1.15;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 clamp(28px, 4vw, 56px);
    min-width: 0;
    margin-top: 32px;
}

.product-list a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    min-height: 154px;
    padding: 24px 4px;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    color: var(--white);
    transition: color var(--t), border-color var(--t), background-color var(--t);
}

.product-list a:hover,
.product-list a:focus-visible {
    color: var(--gold);
    border-color: rgba(232, 184, 75, 0.5);
    background: rgba(232, 184, 75, 0.035);
}

.product-list strong,
.product-list small {
    display: block;
}

.product-list strong {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.35;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.product-list small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.72rem;
}

.product-list > a > span:last-child {
    margin-top: auto;
    padding-top: 22px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
}

/* Courses */
#cursos {
    position: relative;
    overflow: hidden;
}

#cursos::before {
    content: '';
    position: absolute;
    top: 0;
    right: 5%;
    width: 34%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--violet));
}

.course-intro {
    align-items: start;
}

.learning-path {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.78fr);
    column-gap: 54px;
    row-gap: 46px;
}

.course-feature {
    grid-row: span 2;
    border-top: 1px solid rgba(167, 139, 250, 0.5);
}

.course-feature .course-media {
    display: block;
    aspect-ratio: 16 / 9;
}

.course-feature .course-copy {
    padding: 34px 0 0;
}

.course-companion {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 28px;
    align-self: start;
    padding: 24px 0 34px;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.course-companion .course-media {
    aspect-ratio: 3 / 4;
}

.course-companion .course-copy h3 {
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: 1.65rem;
}

.course-companion .course-copy > p {
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.62;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 24px 0 28px;
    color: #c5cad5;
    font-size: 0.72rem;
}

.course-meta li::before {
    content: '·';
    margin-right: 7px;
    color: var(--violet-light);
}

.course-companion .course-meta {
    margin: 18px 0;
}

.course-upcoming {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding-top: 28px;
    border-top: 1px dashed rgba(167, 139, 250, 0.3);
}

.course-upcoming-index {
    color: rgba(167, 139, 250, 0.6);
    font-family: var(--font-display);
    font-size: 1rem;
}

.course-upcoming h3 {
    color: var(--white);
    font-size: 1rem;
}

.course-upcoming p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.6;
}

.course-upcoming .text-arrow {
    grid-column: 2;
    justify-self: start;
    color: var(--violet-light);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION: BIO
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.bio-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(64px, 9vw, 140px);
    align-items: start;
}

.bio-img-wrap {
    position: relative;
    margin-top: 74px;
}

.bio-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border: 1px solid rgba(232, 184, 75, 0.28);
    display: block;
    filter: saturate(0.74) contrast(1.04);
}

.bio-img-frame {
    position: absolute;
    inset: -18px 18px 18px -18px;
    border-top: 1px solid rgba(232, 184, 75, 0.32);
    border-left: 1px solid rgba(232, 184, 75, 0.32);
    z-index: -1;
}

.bio-caption {
    margin-top: 13px;
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.bio-story .heading {
    max-width: 730px;
}

.bio-lead {
    max-width: 650px;
    margin: 28px 0 30px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.35;
}

.bio-p {
    max-width: 760px;
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.86;
    margin-bottom: 18px;
}

.bio-highlight {
    color: var(--white);
    font-weight: 600;
}

.credentials {
    margin: 38px 0 34px;
    border-top: 1px solid var(--border-soft);
}

.credential-list > dl {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
    gap: 30px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-soft);
}

.credential-list dt {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
}

.credential-list dd {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.bio-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Journal */
.blog-header {
    align-items: end;
    margin-bottom: 54px;
}

.journal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
    gap: clamp(48px, 7vw, 96px);
}

.journal-feature {
    display: block;
    color: inherit;
}

.journal-feature .journal-media {
    aspect-ratio: 16 / 9;
}

.journal-media::before {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 11, 20, 0.3), transparent 45%);
    pointer-events: none;
}

.journal-copy {
    max-width: 620px;
    padding-top: 28px;
}

.journal-copy h3 {
    margin-top: 13px;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.journal-copy .text-arrow {
    margin-top: 22px;
}

.journal-list {
    border-top: 1px solid rgba(232, 184, 75, 0.35);
}

.journal-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 20px;
    min-height: 205px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-soft);
    color: inherit;
    transition: padding var(--t);
}

.journal-item:hover,
.journal-item:focus-visible {
    padding-right: 8px;
    padding-left: 8px;
}

.journal-index {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.75rem;
}

.journal-item strong,
.journal-item small {
    display: block;
}

.journal-item strong {
    margin-top: 12px;
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.4;
}

.journal-item small {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.6;
}

.journal-arrow {
    color: var(--gold);
    font-size: 1.1rem;
    transition: transform var(--t);
}

.journal-item:hover .journal-arrow,
.journal-item:focus-visible .journal-arrow {
    transform: translate(3px, -3px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       RESPONSIVE
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
    .hero {
        height: min(920px, 100svh);
    }

    .hero-inner {
        display: block;
        padding: 116px 36px 36px;
    }

    .hero-copy {
        max-width: 58%;
    }

    .hero-name {
        font-size: clamp(3.1rem, 7vw, 4.2rem);
    }

    .hero-promise {
        font-size: clamp(2rem, 4.3vw, 2.65rem);
    }

    .hero-portrait {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50%;
        height: 72%;
        min-height: 0;
    }

    .hero-portrait::before {
        background:
            linear-gradient(90deg, var(--bg) 0%, transparent 27%),
            linear-gradient(0deg, var(--bg) 0%, transparent 22%);
    }

    .mm-intro {
        grid-column: 1 / span 6;
    }

    .mm-offer {
        grid-column: 7 / -1;
    }

    .product-feature {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    }

    .product-secondary-row {
        gap: 28px;
    }

    .product-secondary {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-secondary-copy {
        padding: 26px;
    }

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

    .learning-path {
        grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
        gap: 38px;
    }

    .course-companion {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 22px;
    }

    .bio-grid {
        grid-template-columns: minmax(240px, 0.64fr) minmax(0, 1.36fr);
        gap: 54px;
    }

    .bio-img-wrap {
        margin-top: 68px;
    }

    .journal-layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        gap: 44px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .hero-copy {
        max-width: 62%;
    }

    .hero-authority {
        max-width: 84%;
    }

    .hero-portrait {
        width: 49%;
        height: 67%;
    }

    .mm-grid {
        grid-template-columns: 1fr;
        row-gap: 54px;
    }

    .mm-intro,
    .mm-offer,
    .mm-proof {
        grid-column: 1;
    }

    .mm-offer {
        padding-top: 28px;
    }

    .mm-proof {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .section-intro--split,
    .product-catalog {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-intro--split {
        margin-bottom: 46px;
    }

    .product-feature {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .product-feature-media {
        aspect-ratio: 16 / 11;
    }

    .product-feature-copy {
        padding: 42px;
    }

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

    .product-secondary {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-catalog {
        padding-top: 30px;
    }

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

    .learning-path,
    .journal-layout,
    .bio-grid {
        grid-template-columns: 1fr;
    }

    .course-feature {
        grid-row: auto;
    }

    .course-companion {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .bio-img-wrap {
        width: min(72%, 420px);
        margin: 0;
    }

    .blog-header {
        gap: 24px;
    }

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

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

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

@media (max-width: 640px) {
    .product-secondary-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 540px) {
    .hero {
        min-height: 780px;
        height: 100svh;
    }

    .hero-inner {
        padding: 96px 24px 18px;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-eyebrow {
        gap: 9px;
        margin-bottom: 14px;
    }

    .eyebrow-line {
        width: 22px;
    }

    .eyebrow-text {
        font-size: 0.6rem;
        letter-spacing: 0.14em;
    }

    .hero-title {
        margin-bottom: 16px;
    }

    .hero-name {
        font-size: clamp(2.5rem, 11vw, 2.85rem);
        letter-spacing: -0.055em;
    }

    .hero-promise {
        margin-top: 11px;
        font-size: clamp(1.78rem, 8.2vw, 2.08rem);
    }

    .hero-subtitle {
        max-width: 325px;
        margin-bottom: 18px;
        font-size: 0.93rem;
        line-height: 1.52;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 18px;
    }

    .hero-actions .btn {
        width: auto;
        min-height: 46px;
        padding: 11px 18px;
        justify-content: center;
    }

    .hero-secondary {
        font-size: 0.8rem;
    }

    .hero-authority {
        max-width: 52%;
        margin-top: 20px;
        padding-top: 14px;
        font-size: 0.67rem;
        line-height: 1.45;
    }

    .hero-portrait {
        right: -22px;
        width: 62%;
        height: 315px;
    }

    .hero-portrait::before {
        background:
            linear-gradient(90deg, var(--bg) 0%, transparent 32%),
            linear-gradient(0deg, var(--bg) 0%, transparent 19%);
    }

    .hero-portrait::after,
    .hero-portrait figcaption {
        display: none;
    }

    .heading {
        font-size: 1.75rem;
    }

    .products-editorial {
        gap: 48px;
    }

    .product-feature-media {
        aspect-ratio: 1 / 1;
    }

    .product-feature-copy {
        padding: 30px 24px 34px;
    }

    .product-buyline {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 30px;
    }

    .product-buyline .btn {
        width: 100%;
        justify-content: center;
    }

    .product-secondary {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .product-secondary-copy {
        padding: 24px;
    }

    .product-secondary-copy h3 {
        font-size: 1.12rem;
    }

    .product-secondary-copy p {
        font-size: 0.78rem;
    }

    .product-secondary-copy > a {
        align-items: center;
    }

    .product-list {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .product-list a {
        min-height: 124px;
        padding: 20px 4px;
    }

    .product-list strong {
        font-size: 0.94rem;
    }

    .course-intro .heading br {
        display: none;
    }

    .course-feature .course-copy {
        padding-top: 28px;
    }

    .course-copy h3,
    .journal-copy h3 {
        font-size: 1.8rem;
    }

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

    .course-companion .course-media {
        aspect-ratio: 16 / 9;
    }

    .course-upcoming {
        grid-template-columns: 28px minmax(0, 1fr);
    }

    .bio-img-wrap {
        width: calc(100% - 18px);
    }

    .bio-story .heading br {
        display: none;
    }

    .bio-lead {
        margin-top: 22px;
    }

    .credential-list > dl {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .blog-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .journal-item {
        grid-template-columns: 26px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .mm-price span {
        font-size: 2.9rem;
    }

    .mm-benefits li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .bio-actions {
        flex-direction: column;
    }
}
