:root {
    --ly40-ink: #17221c;
    --ly40-muted: #59655e;
    --ly40-forest: #234c3b;
    --ly40-forest-deep: #15382b;
    --ly40-sage: #c9d7c9;
    --ly40-cream: #f5f0e7;
    --ly40-paper: #fffdf8;
    --ly40-coral: #da765c;
    --ly40-line: rgba(23, 34, 28, .14);
    --ly40-shadow: 0 28px 80px rgba(23, 56, 43, .13);
}

.tenant-theme--love40s {
    background: var(--ly40-paper);
    color: var(--ly40-ink);
}

.tenant-theme--love40s .site-header {
    background: rgba(255, 253, 248, .9);
    border-bottom: 1px solid var(--ly40-line);
    backdrop-filter: blur(18px);
}

.tenant-theme--love40s .site-nav a {
    color: var(--ly40-ink);
}

.tenant-theme--love40s .site-nav a:hover,
.tenant-theme--love40s .site-nav a:focus-visible {
    color: var(--ly40-coral);
}

.tenant-theme--love40s .site-nav .love40s-nav-cta {
    min-height: 40px;
    padding: 0 1rem;
    border-radius: 999px;
    background: var(--ly40-forest);
    color: #fffdf8;
}

.tenant-theme--love40s .site-nav .love40s-nav-cta:hover,
.tenant-theme--love40s .site-nav .love40s-nav-cta:focus-visible {
    background: var(--ly40-coral);
    color: #fff;
}

.ly40 {
    overflow: hidden;
    background:
        radial-gradient(circle at 0 2%, rgba(201, 215, 201, .42), transparent 30rem),
        var(--ly40-paper);
    color: var(--ly40-ink);
}

.ly40 h1,
.ly40 h2,
.ly40 h3,
.ly40 p {
    margin-top: 0;
}

.ly40 h1,
.ly40 h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.ly40 h1 {
    max-width: 13ch;
    margin-bottom: 1.4rem;
    font-size: clamp(3rem, 6.7vw, 6.8rem);
    line-height: .96;
}

.ly40 h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.25rem, 4.5vw, 4.6rem);
    line-height: 1.02;
}

.ly40 p {
    color: var(--ly40-muted);
    line-height: 1.7;
}

.ly40-kicker {
    margin-bottom: 1rem;
    color: var(--ly40-coral) !important;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.ly40-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(24rem, .95fr);
    min-height: min(820px, calc(100vh - 76px));
}

.ly40-hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 7rem);
}

.ly40-hero__lead {
    max-width: 42rem;
    margin-bottom: 2rem;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.ly40-hero__media {
    position: relative;
    min-height: 38rem;
    overflow: hidden;
}

.ly40-hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--ly40-paper) 0, transparent 22%);
    content: "";
}

.ly40-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
}

.ly40-hero-message {
    position: absolute;
    z-index: 2;
    right: clamp(1rem, 4vw, 4rem);
    bottom: clamp(1rem, 4vw, 4rem);
    display: grid;
    max-width: 20rem;
    gap: .35rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 1.15rem;
    background: rgba(255, 253, 248, .9);
    box-shadow: 0 22px 56px rgba(12, 35, 26, .2);
    backdrop-filter: blur(16px);
}

.ly40-hero-message strong {
    color: var(--ly40-coral);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ly40-hero-message span {
    color: var(--ly40-ink);
    font-size: .95rem;
    line-height: 1.45;
}

.ly40-hero__glow {
    position: absolute;
    bottom: -7rem;
    left: 40%;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: rgba(218, 118, 92, .14);
    filter: blur(20px);
}

.ly40-locale {
    position: absolute;
    top: 1.5rem;
    left: clamp(1.5rem, 6vw, 7rem);
    display: flex;
    gap: .45rem;
}

.ly40-locale a {
    padding: .35rem .55rem;
    border-radius: 999px;
    color: var(--ly40-muted);
    font-size: .75rem;
    font-weight: 800;
    text-decoration: none;
}

.ly40-locale a[aria-current="page"] {
    background: var(--ly40-forest);
    color: #fff;
}

.ly40-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.ly40-button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ly40-button:hover,
.ly40-button:focus-visible {
    transform: translateY(-2px);
}

.ly40-button--primary {
    background: var(--ly40-forest);
    box-shadow: 0 14px 32px rgba(35, 76, 59, .2);
    color: #fff;
}

.ly40-button--primary:hover,
.ly40-button--primary:focus-visible {
    background: var(--ly40-forest-deep);
}

.ly40-button--quiet {
    border-color: var(--ly40-line);
    background: rgba(255, 255, 255, .54);
    color: var(--ly40-ink);
}

.ly40-button--light {
    background: #fff;
    color: var(--ly40-forest-deep);
}

.ly40-hero__note {
    margin: 1rem 0 0;
    font-size: .9rem;
}

.ly40-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--ly40-line);
    border-bottom: 1px solid var(--ly40-line);
}

.ly40-trust article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem clamp(1.5rem, 3vw, 3.5rem);
    border-right: 1px solid var(--ly40-line);
}

.ly40-trust article:last-child {
    border-right: 0;
}

.ly40-trust strong {
    color: var(--ly40-forest);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.ly40-trust span {
    color: var(--ly40-muted);
    font-size: .9rem;
    line-height: 1.45;
}

.ly40-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 6rem);
}

.ly40-section__intro {
    max-width: 58rem;
    margin-bottom: 3rem;
}

.ly40-section__intro > p:last-child {
    max-width: 48rem;
    font-size: 1.08rem;
}

.ly40-truths {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
}

.ly40-truth-rotator {
    min-height: 15rem;
}

.ly40-truth {
    margin: 0;
    animation: ly40-quote-in .45s ease both;
}

.ly40-truth[hidden] {
    display: none;
}

.ly40-truth strong {
    display: block;
    margin-bottom: 1rem;
    color: var(--ly40-forest-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5.5vw, 5.6rem);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: .96;
}

.ly40-truth span {
    display: block;
    max-width: 38rem;
    color: var(--ly40-muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.ly40-truth-dots {
    display: flex;
    gap: .55rem;
    margin-top: 1.5rem;
}

.ly40-truth-dots button {
    position: relative;
    width: .75rem;
    height: .75rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--ly40-sage);
    cursor: pointer;
}

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

.ly40-truth-dots button:focus-visible {
    outline: 3px solid rgba(238, 111, 83, .35);
    outline-offset: .3rem;
}

.ly40-truth-dots button[aria-current="true"] {
    width: 2.25rem;
    border-radius: 999px;
    background: var(--ly40-coral);
}

.ly40-truths__media {
    min-height: 36rem;
    margin: 0;
    overflow: hidden;
    border-radius: 42% 42% 1.5rem 1.5rem;
    box-shadow: var(--ly40-shadow);
}

.ly40-truths__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 38%;
}

@keyframes ly40-quote-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ly40-card-grid,
.ly40-feature-grid,
.ly40-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ly40-card,
.ly40-feature-grid article,
.ly40-price-grid article {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--ly40-line);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, .64);
}

.ly40-card h3,
.ly40-feature-grid h3,
.ly40-price-grid h3 {
    font-size: 1.25rem;
}

.ly40-how,
.ly40-features {
    max-width: none;
    background: var(--ly40-forest-deep);
    color: #fff;
}

.ly40-how .ly40-section__intro,
.ly40-features .ly40-section__intro,
.ly40-how .ly40-steps,
.ly40-features .ly40-feature-grid {
    max-width: 1260px;
    margin-right: auto;
    margin-left: auto;
}

.ly40-how p,
.ly40-features p {
    color: rgba(255, 255, 255, .7);
}

.ly40-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3rem;
    padding: 0;
    list-style: none;
}

.ly40-steps li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.ly40-steps li > span {
    color: var(--ly40-coral);
    font-weight: 900;
}

.ly40-steps h3 {
    margin-bottom: .55rem;
}

.ly40-feature-grid article {
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .06);
}

.ly40-mila,
.ly40-preview {
    display: grid;
    grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
}

.ly40-mila__media,
.ly40-preview__copy img {
    overflow: hidden;
    border-radius: 46% 46% 1.5rem 1.5rem;
    box-shadow: var(--ly40-shadow);
}

.ly40-mila__media img,
.ly40-preview__copy img {
    display: block;
    width: 100%;
    height: auto;
}

.ly40-mila__copy blockquote {
    margin: 2rem 0;
    padding-left: 1.25rem;
    border-left: 3px solid var(--ly40-coral);
    color: var(--ly40-forest);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 2.6vw, 2.3rem);
    line-height: 1.3;
}

.ly40-ai-label {
    padding: 1rem 1.15rem;
    border-radius: .9rem;
    background: var(--ly40-cream);
    font-size: .88rem;
}

.ly40-preview {
    max-width: none;
    background: var(--ly40-cream);
}

.ly40-preview__copy img {
    width: min(25rem, 100%);
    margin-top: 2rem;
    border-radius: 1.5rem;
}

.ly40-plan-card {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    border-radius: 1.5rem;
    background: var(--ly40-paper);
    box-shadow: var(--ly40-shadow);
}

.ly40-plan-card div {
    display: grid;
    gap: .35rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--ly40-line);
}

.ly40-plan-card div:last-child {
    border-bottom: 0;
}

.ly40-plan-card span {
    color: var(--ly40-coral);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ly40-plan-card strong {
    font-size: 1.12rem;
}

.ly40-support {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
    max-width: none;
    background: var(--ly40-forest-deep);
    color: #fff;
}

.ly40-support__copy {
    max-width: 45rem;
}

.ly40-support__copy h2 {
    color: #fff;
}

.ly40-support__copy > p:not(.ly40-kicker) {
    max-width: 40rem;
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
}

.ly40-support__copy blockquote {
    max-width: 39rem;
    margin: 2rem 0 0;
    padding-left: 1.35rem;
    border-left: 3px solid var(--ly40-coral);
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.8vw, 2.35rem);
    line-height: 1.25;
}

.ly40-support__media {
    position: relative;
    min-height: 36rem;
    margin: 0;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 32px 80px rgba(4, 18, 13, .34);
}

.ly40-support__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
}

.ly40-support__media figcaption {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: .75rem 1rem;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    background: rgba(255, 253, 248, .9);
    color: var(--ly40-forest-deep);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.ly40-pricing {
    text-align: center;
}

.ly40-pricing .ly40-section__intro {
    margin-right: auto;
    margin-left: auto;
}

.ly40-price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 2rem;
    text-align: left;
}

.ly40-price-grid article {
    display: flex;
    flex-direction: column;
}

.ly40-price-grid article.is-featured {
    border-color: var(--ly40-forest);
    background: var(--ly40-forest);
    box-shadow: var(--ly40-shadow);
    color: #fff;
    transform: translateY(-.75rem);
}

.ly40-price-grid article.is-featured p {
    color: rgba(255, 255, 255, .7);
}

.ly40-price-grid article > strong {
    margin-bottom: 1rem;
    color: var(--ly40-coral);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
}

.ly40-plan-badge {
    align-self: flex-start;
    margin-bottom: 1.25rem;
    padding: .38rem .65rem;
    border-radius: 999px;
    background: var(--ly40-cream);
    color: var(--ly40-forest);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.ly40-price-grid .is-featured .ly40-plan-badge {
    background: var(--ly40-coral);
    color: #fff;
}

.ly40-plan-price {
    display: flex;
    gap: .55rem;
    align-items: baseline;
    margin-bottom: 1rem;
}

.ly40-plan-price strong {
    color: var(--ly40-coral);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 500;
}

.ly40-plan-price span {
    color: var(--ly40-muted);
    font-size: .8rem;
}

.ly40-price-grid .is-featured .ly40-plan-price span {
    color: rgba(255, 255, 255, .72);
}

.ly40-price-grid ul {
    display: grid;
    flex: 1;
    gap: .65rem;
    padding-left: 1.15rem;
    list-style: disc;
}

.ly40-price-grid li::marker {
    color: var(--ly40-coral);
}

.ly40-price-grid .ly40-button {
    width: 100%;
    margin-top: auto;
}

.ly40-pricing__disclaimer {
    max-width: 66rem;
    margin: 0 auto;
    padding: 1rem 1.2rem;
    border: 1px solid var(--ly40-line);
    border-radius: 1rem;
    background: var(--ly40-cream);
    font-size: .88rem;
    text-align: left;
}

.ly40-faq__items {
    max-width: 880px;
}

.ly40-faq details {
    padding: 1.3rem 0;
    border-top: 1px solid var(--ly40-line);
}

.ly40-faq summary {
    cursor: pointer;
    font-size: 1.08rem;
    font-weight: 800;
}

.ly40-faq details p {
    max-width: 48rem;
    margin: 1rem 0 0;
}

.ly40-faq-more {
    gap: .55rem;
}

.ly40-faq-more span {
    transition: transform .2s ease;
}

.ly40-faq-more:hover span,
.ly40-faq-more:focus-visible span {
    transform: translateX(.2rem);
}

.ly40-final {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 8vw, 9rem);
    background: var(--ly40-forest);
    color: #fff;
}

.ly40-final h2 {
    max-width: 17ch;
    margin-bottom: 1rem;
}

.ly40-final p,
.ly40-final small {
    color: rgba(255, 255, 255, .72);
}

.ly40-final small {
    grid-column: 1 / -1;
}

.ly40-section-link {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.ly40-section-link--left {
    justify-content: flex-start;
}

.ly40-inner {
    background:
        radial-gradient(circle at 90% 8%, rgba(218, 118, 92, .1), transparent 28rem),
        radial-gradient(circle at 0 36%, rgba(201, 215, 201, .32), transparent 34rem),
        var(--ly40-paper);
}

.ly40-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(24rem, .94fr);
    min-height: min(760px, calc(100vh - 76px));
    border-bottom: 1px solid var(--ly40-line);
}

.ly40-page-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4.5rem, 8vw, 8rem) clamp(1.5rem, 6vw, 7rem);
}

.ly40-page-hero h1 {
    max-width: 15ch;
    font-size: clamp(3.15rem, 5.25vw, 5.6rem);
}

.ly40-page-hero__lead {
    max-width: 42rem;
    margin-bottom: 1.5rem;
    font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.ly40-page-hero__note {
    max-width: 38rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--ly40-coral);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
}

.ly40-page-hero__copy > .ly40-button {
    align-self: flex-start;
}

.ly40-page-hero__media {
    min-height: 40rem;
    margin: 0;
    overflow: hidden;
}

.ly40-page-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
}

.ly40-page-hero__media--portrait img {
    object-position: 50% 38%;
}

.ly40-page-hero--how .ly40-page-hero__media img {
    object-position: 52% 72%;
}

.ly40-page-hero--faq .ly40-page-hero__media img {
    object-position: 48% 42%;
}

.ly40-page-hero--pricing .ly40-page-hero__media img {
    object-position: 50% 42%;
}

.ly40-motion-enhanced .ly40-card,
.ly40-motion-enhanced .ly40-process__list li,
.ly40-motion-enhanced .ly40-week__days article,
.ly40-motion-enhanced .ly40-mode-grid article,
.ly40-motion-enhanced .ly40-preview__row,
.ly40-motion-enhanced .ly40-feature-grid article {
    will-change: opacity, transform;
}

.ly40-motion-enhanced .ly40-page-hero__media,
.ly40-motion-enhanced .ly40-hero__media {
    will-change: opacity, transform;
}

.ly40-card,
.ly40-week__days article,
.ly40-mode-grid article,
.ly40-feature-grid article {
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.ly40-card:hover,
.ly40-week__days article:hover,
.ly40-mode-grid article:hover,
.ly40-feature-grid article:hover {
    border-color: rgba(218, 118, 92, .42);
    box-shadow: 0 20px 44px rgba(23, 56, 43, .1);
}

.love40s-page.ly40-is-navigating {
    cursor: progress;
}

.love40s-page.ly40-is-navigating a {
    pointer-events: none;
}

::view-transition-old(root) {
    animation: .24s ease both ly40-page-out;
}

::view-transition-new(root) {
    animation: .42s cubic-bezier(.22, 1, .36, 1) both ly40-page-in;
}

@keyframes ly40-page-out {
    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}

@keyframes ly40-page-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
}

.ly40-locale--inline {
    position: static;
    margin-bottom: 2.5rem;
}

.ly40-page-badge {
    align-self: flex-start;
    padding: .55rem .8rem;
    border: 1px solid var(--ly40-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .64);
    color: var(--ly40-forest);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ly40-editorial-split {
    display: grid;
    grid-template-columns: minmax(20rem, .9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
}

.ly40-editorial-split--reverse {
    grid-template-columns: minmax(20rem, .86fr) minmax(0, 1.14fr);
}

.ly40-editorial-split--dark {
    max-width: none;
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, .92fr);
    background: var(--ly40-forest-deep);
    color: #fff;
}

.ly40-editorial-split--dark p {
    color: rgba(255, 255, 255, .74);
}

.ly40-editorial-split__copy > p:not(.ly40-kicker) {
    max-width: 45rem;
    font-size: 1.05rem;
}

.ly40-editorial-split__copy blockquote,
.ly40-week > blockquote,
.ly40-reset blockquote {
    margin: 2rem 0 0;
    padding-left: 1.25rem;
    border-left: 3px solid var(--ly40-coral);
    color: var(--ly40-forest);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.6vw, 2.25rem);
    line-height: 1.3;
}

.ly40-editorial-split--dark blockquote {
    color: #fff;
}

.ly40-editorial-split__media {
    min-height: 38rem;
    margin: 0;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: var(--ly40-shadow);
}

.ly40-editorial-split__media--soft {
    border-radius: 46% 46% 1.75rem 1.75rem;
}

.ly40-editorial-split__media--landscape {
    min-height: 34rem;
}

.ly40-editorial-split__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
}

.ly40-editorial-split__media--landscape img {
    object-position: 50% 50%;
}

.ly40-card-grid--six {
    grid-template-columns: repeat(3, 1fr);
}

.ly40-about-scope,
.ly40-outcomes {
    max-width: 1260px;
}

.ly40-doctor-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
    border-top: 1px solid var(--ly40-line);
    border-bottom: 1px solid var(--ly40-line);
}

.ly40-doctor-note > div:last-child > p:not(.ly40-ai-label) {
    font-size: 1.06rem;
}

.ly40-modes {
    max-width: none;
    background: var(--ly40-cream);
}

.ly40-modes .ly40-section__intro,
.ly40-modes .ly40-mode-grid {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.ly40-mode-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ly40-mode-grid article {
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid var(--ly40-line);
    border-radius: 1.5rem;
    background: var(--ly40-paper);
}

.ly40-mode-grid article.is-human {
    background: var(--ly40-forest);
    color: #fff;
}

.ly40-mode-grid article > span {
    display: inline-flex;
    margin-bottom: 1.25rem;
    padding: .42rem .68rem;
    border-radius: 999px;
    background: var(--ly40-cream);
    color: var(--ly40-forest);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ly40-mode-grid h3 {
    margin-bottom: 1.25rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
}

.ly40-mode-grid ul {
    display: grid;
    gap: .75rem;
    margin: 0;
    padding-left: 1.2rem;
}

.ly40-mode-grid li {
    color: var(--ly40-muted);
    line-height: 1.55;
}

.ly40-mode-grid .is-human li {
    color: rgba(255, 255, 255, .78);
}

.ly40-process {
    display: grid;
    grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr);
    gap: clamp(2.5rem, 7vw, 7rem);
}

.ly40-process__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ly40-process__list li {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--ly40-line);
}

.ly40-process__list li > span {
    color: var(--ly40-coral);
    font-weight: 900;
}

.ly40-process__list h3 {
    margin-bottom: .55rem;
    font-size: 1.25rem;
}

.ly40-week {
    max-width: none;
    background: var(--ly40-forest-deep);
    color: #fff;
}

.ly40-week__header {
    display: grid;
    max-width: 1260px;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
    margin: 0 auto 3rem;
}

.ly40-week__header figure {
    height: 28rem;
    margin: 0;
    overflow: hidden;
    border-radius: 48% 48% 1.5rem 1.5rem;
}

.ly40-week__header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 46%;
}

.ly40-week__days {
    display: grid;
    max-width: 1260px;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 0 auto;
}

.ly40-week__days article {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, .06);
}

.ly40-week__days span {
    color: var(--ly40-coral);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ly40-week__days h3 {
    margin: .75rem 0 .55rem;
}

.ly40-week__days p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
}

.ly40-week > blockquote {
    max-width: 1000px;
    margin: 3rem auto 0;
    color: #fff;
}

.ly40-modes--compact .ly40-section__intro > p:last-child {
    max-width: 52rem;
}

.ly40-reset {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, .92fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
}

.ly40-reset figure {
    min-height: 36rem;
    margin: 0;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: var(--ly40-shadow);
}

.ly40-reset figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% 42%;
}

.ly40-reset__copy > p:not(.ly40-kicker) {
    max-width: 43rem;
    font-size: 1.06rem;
}

.ly40-faq-page {
    max-width: 1180px;
}

.ly40-faq-group {
    display: grid;
    grid-template-columns: minmax(15rem, .68fr) minmax(0, 1.32fr);
    gap: clamp(2rem, 6vw, 6rem);
    padding: 3rem 0;
    border-top: 1px solid var(--ly40-line);
}

.ly40-faq-group:first-child {
    border-top: 0;
}

.ly40-faq-group__heading {
    position: sticky;
    top: 6.5rem;
    align-self: start;
}

.ly40-faq-group__heading span {
    display: block;
    margin-bottom: .75rem;
    color: var(--ly40-coral);
    font-size: .78rem;
    font-weight: 900;
}

.ly40-faq-group__heading h2 {
    font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.ly40-faq-page .ly40-faq__items {
    max-width: none;
}

.ly40-faq-page .ly40-faq__items details {
    padding: 1.45rem 0;
    border-top: 1px solid var(--ly40-line);
}

.ly40-faq-page .ly40-faq__items details:first-child {
    border-top: 0;
}

.ly40-faq-page summary {
    cursor: pointer;
    font-size: 1.08rem;
    font-weight: 800;
}

.ly40-faq-page details p {
    max-width: 52rem;
    margin: 1rem 0 0;
}

.ly40-pricing--page {
    max-width: none;
}

.ly40-pricing--page .ly40-price-grid,
.ly40-pricing--page .ly40-pricing__disclaimer {
    max-width: 1380px;
    margin-right: auto;
    margin-left: auto;
}

.ly40-pricing--page .ly40-pricing__disclaimer {
    margin-top: 2rem;
}

.ly40-expectations .ly40-card-grid {
    grid-template-columns: repeat(4, 1fr);
}

.ly40-final--inner {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

@media (min-width: 961px) {
    .ly40-page-hero--how {
        height: clamp(600px, calc(100svh - 120px), 720px);
        min-height: 0;
        grid-template-columns: minmax(0, 1.14fr) minmax(21rem, .86fr);
        align-items: stretch;
    }

    .ly40-page-hero--how .ly40-page-hero__copy {
        padding-top: clamp(2.5rem, 4vw, 4rem);
        padding-bottom: clamp(2.5rem, 4vw, 4rem);
    }

    .ly40-page-hero--how .ly40-locale--inline {
        margin-bottom: 1.5rem;
    }

    .ly40-page-hero--how h1 {
        max-width: 13.5ch;
        margin-bottom: 1rem;
        font-size: clamp(3rem, 4.6vw, 4.8rem);
        line-height: .96;
    }

    .ly40-page-hero--how .ly40-page-hero__lead {
        margin-bottom: 1rem;
        font-size: clamp(1.03rem, 1.35vw, 1.2rem);
        line-height: 1.58;
    }

    .ly40-page-hero--how .ly40-page-hero__note {
        margin-bottom: 1.15rem;
        font-size: 1rem;
        line-height: 1.5;
    }

    .ly40-page-hero--how .ly40-page-hero__media {
        position: relative;
        height: calc(100% - 3rem);
        min-height: 0;
        margin: 1.5rem clamp(1.5rem, 3vw, 3rem) 1.5rem 0;
        border-radius: 2rem;
        box-shadow: var(--ly40-shadow);
    }

    .ly40-page-hero--how .ly40-page-hero__media img {
        position: absolute;
        inset: 0;
    }
}

@media (min-width: 961px) {
    .ly40-hero {
        height: clamp(600px, calc(100svh - 170px), 820px);
        min-height: 0;
    }

    .ly40-hero__copy {
        padding-top: clamp(3rem, 5vw, 5rem);
        padding-bottom: clamp(3rem, 5vw, 5rem);
    }

    .ly40-hero h1 {
        max-width: 12.5ch;
        margin-bottom: 1rem;
        font-size: clamp(3rem, 5vw, 5.25rem);
        line-height: .95;
    }

    .ly40-hero__lead {
        margin-bottom: 1.35rem;
        font-size: clamp(1.05rem, 1.45vw, 1.25rem);
        line-height: 1.55;
    }

    .ly40-hero__note {
        margin-top: .75rem;
    }

    .ly40-hero__media {
        min-height: 0;
    }

    .ly40-hero__media img {
        position: absolute;
        inset: 0;
    }

    .ly40-trust article {
        padding-top: 1.05rem;
        padding-bottom: 1.05rem;
    }
}

@media (min-width: 961px) and (max-height: 820px) {
    .ly40-locale {
        top: .5rem;
    }

    .ly40-hero__copy {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .ly40-hero h1 {
        font-size: clamp(2.8rem, 4.8vw, 4.75rem);
    }

    .ly40-hero__lead {
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .ly40-trust article {
        padding-top: .85rem;
        padding-bottom: .85rem;
    }

    .ly40-trust strong {
        font-size: 1.75rem;
    }

    .ly40-trust span {
        font-size: .82rem;
    }
}

@media (max-width: 960px) {
    .ly40-hero {
        grid-template-columns: 1fr;
    }

    .ly40-hero__copy {
        min-height: 650px;
        padding-bottom: 3rem;
    }

    .ly40-hero__media {
        min-height: 32rem;
    }

    .ly40-hero__media::after {
        background: linear-gradient(180deg, var(--ly40-paper), transparent 18%);
    }

    .ly40-card-grid,
    .ly40-feature-grid,
    .ly40-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ly40-mila,
    .ly40-preview,
    .ly40-truths,
    .ly40-support {
        grid-template-columns: 1fr 1fr;
    }

    .ly40-page-hero,
    .ly40-editorial-split,
    .ly40-editorial-split--reverse,
    .ly40-editorial-split--dark,
    .ly40-process,
    .ly40-reset {
        grid-template-columns: 1fr 1fr;
    }

    .ly40-week__days,
    .ly40-card-grid--six {
        grid-template-columns: repeat(2, 1fr);
    }

    .ly40-expectations .ly40-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ly40-page-hero--how .ly40-page-hero__copy {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .ly40-page-hero--how h1 {
        font-size: clamp(2.85rem, 6.8vw, 4rem);
    }

    .ly40-page-hero--how .ly40-locale--inline {
        margin-bottom: 1.5rem;
    }

    .ly40-page-hero--how .ly40-page-hero__media {
        min-height: 32rem;
        margin: 1.25rem 1.25rem 1.25rem 0;
        border-radius: 1.5rem;
        box-shadow: var(--ly40-shadow);
    }
}

@media (max-width: 720px) {
    .tenant-theme--love40s .site-header__inner {
        gap: .6rem;
        padding: .65rem .9rem;
    }

    .tenant-theme--love40s .brand-logo img {
        width: 116px;
        height: auto;
    }

    .tenant-theme--love40s .site-nav {
        gap: .35rem;
    }

    .tenant-theme--love40s .site-nav .love40s-nav-link {
        display: none;
    }

    .tenant-theme--love40s .site-nav .love40s-nav-signin {
        padding: .45rem;
        font-size: .78rem;
        white-space: nowrap;
    }

    .tenant-theme--love40s .site-nav .love40s-nav-cta {
        min-height: 36px;
        padding: 0 .75rem;
        font-size: .76rem;
        white-space: nowrap;
    }

    .ly40 h1 {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .ly40-hero__copy {
        min-height: auto;
        padding-top: 6rem;
    }

    .ly40-hero__media {
        min-height: 31rem;
    }

    .ly40-trust,
    .ly40-card-grid,
    .ly40-feature-grid,
    .ly40-price-grid,
    .ly40-steps,
    .ly40-mila,
    .ly40-preview,
    .ly40-truths,
    .ly40-support,
    .ly40-final,
    .ly40-page-hero,
    .ly40-editorial-split,
    .ly40-editorial-split--reverse,
    .ly40-editorial-split--dark,
    .ly40-doctor-note,
    .ly40-mode-grid,
    .ly40-process,
    .ly40-week__header,
    .ly40-week__days,
    .ly40-reset,
    .ly40-faq-group,
    .ly40-expectations .ly40-card-grid {
        grid-template-columns: 1fr;
    }

    .ly40-page-hero__copy {
        padding-top: 4rem;
    }

    .ly40-page-hero__media {
        min-height: 33rem;
    }

    .ly40-page-hero--how .ly40-page-hero__copy {
        padding: 1.6rem 1.25rem 1rem;
    }

    .ly40-page-hero--how .ly40-locale--inline {
        margin-bottom: 1rem;
    }

    .ly40-page-hero--how h1 {
        max-width: 13ch;
        margin-bottom: .8rem;
        font-size: clamp(2.35rem, 11vw, 3.1rem);
        line-height: .98;
    }

    .ly40-page-hero--how .ly40-page-hero__lead {
        margin-bottom: .8rem;
        font-size: .96rem;
        line-height: 1.48;
    }

    .ly40-page-hero--how .ly40-page-hero__note {
        margin-bottom: 1rem;
        font-size: .92rem;
        line-height: 1.45;
    }

    .ly40-page-hero--how .ly40-page-hero__media {
        height: 11rem;
        min-height: 11rem;
        margin: 0 1rem 1rem;
        border-radius: 1.35rem;
    }

    .ly40-page-hero--how .ly40-page-hero__media img {
        object-position: 52% 58%;
    }

    .ly40-editorial-split__media,
    .ly40-reset figure {
        min-height: 30rem;
    }

    .ly40-editorial-split--dark .ly40-editorial-split__copy {
        order: 1;
    }

    .ly40-editorial-split--dark .ly40-editorial-split__media {
        order: 2;
    }

    .ly40-card-grid--six {
        grid-template-columns: 1fr;
    }

    .ly40-faq-group__heading {
        position: static;
    }

    .ly40-trust article {
        border-right: 0;
        border-bottom: 1px solid var(--ly40-line);
    }

    .ly40-price-grid article.is-featured {
        transform: none;
    }

    .ly40-mila__media {
        max-width: 28rem;
    }

    .ly40-truth-rotator {
        min-height: 18rem;
    }

    .ly40-truths__media {
        min-height: 34rem;
    }

    .ly40-support__media {
        min-height: 30rem;
    }

    .ly40-final small {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ly40-button {
        transition: none;
    }

    .ly40-truth {
        animation: none;
    }

    .ly40-card,
    .ly40-week__days article,
    .ly40-mode-grid article,
    .ly40-feature-grid article {
        transition: none;
    }

    .ly40-motion-enhanced .ly40-card,
    .ly40-motion-enhanced .ly40-process__list li,
    .ly40-motion-enhanced .ly40-week__days article,
    .ly40-motion-enhanced .ly40-mode-grid article,
    .ly40-motion-enhanced .ly40-preview__row,
    .ly40-motion-enhanced .ly40-feature-grid article,
    .ly40-motion-enhanced .ly40-page-hero__media,
    .ly40-motion-enhanced .ly40-hero__media {
        will-change: auto;
    }

    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation: none;
    }
}

.love40s-quiz-page .test-panel,
.love40s-quiz-page .test-sidebar,
.love40s-results-page .results-main,
.love40s-results-page .lead-card {
    border-color: rgba(37, 67, 54, 0.14);
    box-shadow: 0 24px 70px rgba(29, 50, 40, 0.08);
}

.love40s-profile-card {
    margin: 1.75rem 0;
    padding: clamp(1.4rem, 4vw, 2.25rem);
    border: 1px solid rgba(37, 67, 54, 0.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0, rgba(222, 122, 90, 0.14), transparent 38%),
        linear-gradient(145deg, #fffdf8 0%, #f0eee5 100%);
}

.love40s-profile-card h2 {
    margin: 0.35rem 0 0.75rem;
    color: #1f3c31;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.love40s-profile-card h3 {
    margin: 1.35rem 0 0.6rem;
    color: #1f3c31;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.love40s-profile-card ul {
    display: grid;
    gap: 0.5rem;
    margin: 0 0 1.1rem;
    padding-left: 1.2rem;
}

.love40s-profile-card small {
    display: block;
    color: #56675f;
    line-height: 1.55;
}
