/* 90-day Love Forecast — landing + report */

.lf-page {
    font-family: 'Montserrat', sans-serif;
    background-color: #fffef7;
    color: #2d2d2d;
    line-height: 1.55;
}

.lf-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 24px 20px 64px;
    box-sizing: border-box;
}

.lf-serif {
    font-family: 'Playfair Display', serif;
}

.lf-hero {
    text-align: center;
    margin-bottom: 40px;
}

.lf-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 12px;
    letter-spacing: 0.3px;
}

.lf-hero .lf-lead {
    font-size: 16px;
    color: #444;
    max-width: 560px;
    margin: 0 auto 20px;
}

.lf-price {
    font-size: 22px;
    font-weight: 500;
    margin: 8px 0 20px;
}

.lf-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #7aacd4;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

.lf-btn:hover {
    background: #6a9bc3;
}

.lf-btn--secondary {
    background: #fff;
    color: #2d2d2d;
    border: 1px solid #d0ccc4;
}

.lf-section {
    margin-bottom: 48px;
}

.lf-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0 0 16px;
    text-align: center;
}

.lf-grid-demo {
    border: 1px solid #e8e4dc;
    background: #fff;
    padding: 20px;
    border-radius: 2px;
}

.lf-month-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.lf-cal {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}

.lf-cal-head {
    font-size: 10px;
    text-align: center;
    color: #888;
    padding: 4px 0;
}

.lf-cal-cell {
    aspect-ratio: 1;
    min-height: 28px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: none;
    padding: 0;
    font-family: inherit;
}

.lf-cal-cell--pad,
.lf-cal-cell--out {
    background: transparent;
    color: #ccc;
}

.lf-tier--background { background: #ebe8e0; color: #888; }
.lf-tier--moderate { background: #c5d4de; color: #2d3d48; }
.lf-tier--high { background: #7a9aad; color: #fff; }
.lf-tier--peak { background: #3d5a6e; color: #fff; }

.lf-cal-cell--expandable {
    position: relative;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    overflow: visible;
    z-index: 0;
}

.lf-cal-cell--has-flag {
    position: relative;
}

.lf-cal-flag-star {
    position: absolute;
    top: 1px;
    right: 2px;
    font-size: 7px;
    line-height: 1;
    color: #8b6914;
    pointer-events: none;
    z-index: 2;
}

.lf-legend-flag .lf-cal-flag-star {
    position: static;
    font-size: 10px;
    margin-right: 2px;
}

.lf-venus-rx-banner {
    max-width: 520px;
    margin: 0 auto 24px;
    padding: 14px 16px;
    background: #fff8f0;
    border: 1px solid #ecd9c4;
    border-radius: 4px;
    text-align: left;
    color: #6b5340;
}

.lf-venus-rx-banner-title {
    margin: 0 0 6px;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: #5a3f2a;
}

.lf-venus-rx-banner p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.55;
}

.lf-venus-rx-banner-dates {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #5a3f2a;
}

.lf-cal-cell--venus-rx {
    box-shadow: inset 0 0 0 2px rgba(180, 120, 60, 0.55);
}

.lf-cal-cell--venus-rx .lf-cal-venus-rx-mark {
    position: absolute;
    bottom: 1px;
    left: 2px;
    font-size: 7px;
    line-height: 1;
    color: #9a5b28;
    font-weight: 700;
    pointer-events: none;
    z-index: 2;
}

.lf-legend-venus-rx-mark {
    font-size: 11px;
    font-weight: 700;
    color: #9a5b28;
    margin-right: 3px;
}

.lf-cal-cell--expandable:hover {
    filter: brightness(1.05);
}

.lf-cal-day-num {
    position: relative;
    z-index: 1;
    line-height: 1;
}

.lf-cal-cell--expandable.is-selected {
    outline: none;
    box-shadow: none;
    z-index: 2;
}

.lf-cal-cell--expandable.is-selected .lf-cal-day-num {
    font-weight: 700;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
}

.lf-cal-cell--expandable.is-selected::after {
    content: '♥';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
    font-size: 18px;
    line-height: 1;
    color: #c73636;
    pointer-events: none;
    z-index: 0;
}

.lf-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    font-size: 12px;
    margin-top: 12px;
}

.lf-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lf-legend i {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    display: inline-block;
}

.lf-sample-day {
    background: #fff;
    border: 1px solid #e8e4dc;
    padding: 20px;
    border-radius: 2px;
    max-width: 520px;
    margin: 0 auto;
}

.lf-sample-day h3 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 8px;
    font-size: 18px;
}

.lf-flags {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.lf-flags li {
    font-size: 14px;
    color: #444;
    padding: 4px 0;
    padding-left: 1em;
    text-indent: -1em;
}

.lf-flags li::before {
    content: '· ';
}

.lf-faq details {
    border-bottom: 1px solid #ece8e0;
    padding: 12px 0;
}

.lf-faq summary {
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
}

.lf-faq p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #555;
}

/* Landing page */
.lf-landing-page {
    background: linear-gradient(180deg, #faf8f0 0%, #fffef7 280px, #fffef7 100%);
}

.lf-landing-page .lf-landing-wrap {
    max-width: 1040px;
    position: relative;
    z-index: 1;
    padding-top: 0;
}

.lf-hero-banner {
    position: relative;
    width: 100%;
    max-height: 380px;
    overflow: hidden;
    margin-top: -120px;
    margin-bottom: -72px;
}

.lf-hero-banner-img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 22%;
}

.lf-hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 254, 247, 0.15) 0%,
        rgba(255, 254, 247, 0.72) 55%,
        #fffef7 100%
    );
}

.lf-landing-header {
    text-align: center;
    padding: 14px 0 4px;
}

.lf-brand {
    font-size: 22px;
    margin: 0;
    color: #2d4a5e;
    letter-spacing: 0.3px;
}

.lf-brand-tag {
    font-size: 13px;
    letter-spacing: 0.02em;
    color: #444;
    margin: 6px 0 8px;
    font-weight: 400;
}

.lf-brand-stars {
    font-size: 17px;
    letter-spacing: 0.06em;
    color: #2d2d2d;
    margin: 2px 0 24px;
}

@media (max-width: 768px) {
    .lf-landing-page .lf-landing-header {
        margin-top: -120px;
        padding-top: 0;
        position: relative;
        z-index: 2;
    }

    /* Warm funnel: start logo + hero lower so checkbox/CTA are not cut at fold */
    .lf-landing-page--warm .lf-landing-header {
        margin-top: 30px;
    }

    .lf-landing-page .lf-brand-tag {
        margin-bottom: 4px;
    }

    .lf-landing-page .lf-brand-stars {
        margin-bottom: 8px;
    }
}

.lf-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(180px, 60%);
    margin: 0 auto;
}

.lf-ornament--section {
    margin-top: 18px;
    margin-bottom: 22px;
}

.lf-title-ornament {
    text-align: center;
    margin: 0 auto 28px;
    max-width: 100%;
}

.lf-title-ornament-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.lf-title-ornament-row .lf-section-title {
    flex: 0 1 auto;
    margin: 0;
    max-width: min(100%, 560px);
}

.lf-title-ornament-row .lf-ornament-line {
    flex: 1 1 24px;
    max-width: 70px;
    min-width: 14px;
}

.lf-title-ornament-heart {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1;
}

.lf-ornament--sm {
    width: min(140px, 50%);
    margin-bottom: 16px;
}

.lf-ornament-line {
    flex: 1 1 40px;
    height: 0;
    border-top: 1px solid #2d2d2d;
    opacity: 0.35;
}

.lf-ornament-heart {
    font-size: 12px;
    line-height: 1;
    color: #c73636;
}

.lf-hero-panel {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 10px;
    padding: 22px 20px 20px;
    margin-bottom: 28px;
    box-shadow: 0 12px 40px rgba(45, 74, 94, 0.1);
}

.lf-not-horoscope {
    text-align: center;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 28px 22px 26px;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(122, 172, 212, 0.12);
}

.lf-not-horoscope-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 600;
    color: #2d4a5e;
    margin: 0 0 14px;
    line-height: 1.25;
}

.lf-not-horoscope-lead {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    max-width: 640px;
    margin: 0 auto 14px;
}

.lf-not-horoscope-tag {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.45;
    color: #2d4a5e;
    max-width: 520px;
    margin: 0 auto;
}

.lf-hero-panel-inner,
.lf-hero-panel-grid {
    display: grid;
    gap: 20px;
    align-items: start;
}

.lf-hero-intro,
.lf-hero-cta {
    text-align: center;
}

.lf-hero-intro .lf-lead {
    margin-bottom: 0;
}

@media (max-width: 859px) {
    .lf-hero-panel-grid:not(.lf-hero-panel-grid--personalized) .lf-hero-intro {
        order: 1;
    }

    .lf-hero-panel-grid:not(.lf-hero-panel-grid--personalized) .lf-product-showcase {
        order: 2;
    }

    .lf-hero-panel-grid:not(.lf-hero-panel-grid--personalized) .lf-hero-cta {
        order: 3;
    }

    .lf-hero-panel-grid--personalized .lf-results-zone {
        order: 1;
    }

    .lf-hero-panel-grid--personalized .lf-hero-cta {
        order: 2;
    }

    .lf-hero-panel-grid--personalized .lf-hero-intro {
        order: 3;
    }

    .lf-hero-panel-grid--personalized .lf-product-showcase {
        order: 4;
    }
}

.lf-results-zone[hidden] {
    display: none !important;
}

.lf-results-grid {
    display: grid;
    gap: 16px;
    align-items: start;
}

@media (min-width: 720px) {
    .lf-results-grid {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
        gap: 20px;
    }
}

@media (min-width: 860px) {
    .lf-hero-panel {
        padding: 28px 32px 26px;
    }

    .lf-hero-panel-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        grid-template-areas:
            "intro calendar"
            "cta calendar";
        column-gap: 28px;
        row-gap: 12px;
    }

    .lf-hero-panel-grid:not(.lf-hero-panel-grid--personalized) > .lf-product-showcase {
        grid-row: 1 / -1;
    }

    .lf-hero-panel-grid--personalized {
        grid-template-areas:
            "results results"
            "cta cta"
            "intro calendar";
    }

    .lf-results-zone {
        grid-area: results;
    }

    .lf-hero-cta {
        grid-area: cta;
        text-align: left;
    }

    .lf-hero-intro {
        grid-area: intro;
        text-align: left;
    }

    .lf-hero-panel-grid > .lf-product-showcase {
        grid-area: calendar;
        margin: 0;
        max-width: none;
        align-self: start;
    }
}

.lf-hero-panel h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4.8vw, 42px);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 10px;
    color: #2d2d2d;
}

.lf-hero-subhead {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    line-height: 1.3;
    color: #2d4a5e;
    margin: 0 0 14px;
}

.lf-hero-panel .lf-lead {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 12px;
    max-width: none;
}

.lf-hero-kicker {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: #2d4a5e;
    margin: 0 0 22px;
    letter-spacing: 0.02em;
}

.lf-price-block {
    margin-bottom: 16px;
}

.lf-personal-strip {
    background: #fff;
    border: 1px solid #e8e2d6;
    border-radius: 10px;
    padding: 18px;
    margin: 0;
    text-align: left;
    box-shadow: 0 2px 12px rgba(45, 45, 45, 0.04);
}

.lf-results-zone .lf-personal-strip {
    height: 100%;
    box-sizing: border-box;
}

.lf-personal-timing {
    min-width: 0;
}

.lf-personal-kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 8px;
}

.lf-personal-week {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #5a7a8f;
}

.lf-personal-unlock {
    font-size: 13px;
    line-height: 1.45;
    color: #666;
    margin: 14px 0 0;
}

.lf-personal-headline {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
    color: #2d4a58;
    margin: 0 0 8px;
}

.lf-personal-strip--peak .lf-personal-headline {
    color: #3d5a6e;
}

.lf-personal-strip--high .lf-personal-headline {
    color: #2d4a58;
}

.lf-personal-message {
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin: 0 0 8px;
}

.lf-personal-meta,
.lf-personal-note {
    font-size: 13px;
    line-height: 1.45;
    color: #666;
    margin: 0;
}

.lf-personal-meta strong,
.lf-personal-note {
    margin-top: 8px;
}

.lf-personal-note {
    font-style: italic;
}

.lf-birth-card-mini {
    background: #faf9f5;
    border: 1px solid #e0e8ef;
    border-radius: 10px;
    padding: 14px 14px 12px;
    width: 100%;
    box-sizing: border-box;
}

.lf-results-grid .lf-birth-card-mini {
    margin: 0;
}

.lf-birth-card-mini[hidden] {
    display: none !important;
}

.lf-birth-card-mini__head {
    text-align: center;
    margin-bottom: 8px;
}

.lf-birth-card-mini__ornament {
    display: block;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 4px;
    color: #2d2d2d;
}

.lf-birth-card-mini__title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #2d2d2d;
    margin: 0;
}

.lf-birth-card-mini__birth,
.lf-birth-card-mini__place {
    text-align: center;
    font-size: 13px;
    line-height: 1.45;
    color: #444;
    margin: 0 0 4px;
    font-weight: 500;
}

.lf-birth-card-mini__place {
    margin-bottom: 10px;
}

.lf-birth-card-mini__rows {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lf-birth-card-mini__retro {
    color: #888;
    font-weight: 500;
}

.lf-birth-card-mini__row {
    display: grid;
    grid-template-columns: 22px 4.5em 1fr auto;
    align-items: center;
    gap: 4px 6px;
    padding: 5px 8px;
    border-radius: 6px;
    background: #fff;
}

.lf-birth-card-mini__sym {
    font-size: 15px;
    line-height: 1;
    text-align: center;
    color: #2d2d2d;
}

.lf-birth-card-mini__label {
    font-size: 12px;
    font-weight: 500;
    color: #777;
}

.lf-birth-card-mini__sign {
    font-size: 12px;
    color: #444;
}

.lf-birth-card-mini__deg {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .lf-birth-card-mini {
        max-width: none;
    }
}

.lf-birth-modal[hidden] {
    display: none !important;
}

body.lf-modal-open {
    overflow: hidden;
}

.lf-birth-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lf-birth-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 45, 0.45);
}

.lf-birth-modal-panel {
    position: relative;
    width: min(100%, 560px);
    max-height: min(92vh, 820px);
    overflow: auto;
    background: #fffef7;
    border-radius: 10px;
    padding: 24px 22px 22px;
    box-shadow: 0 16px 48px rgba(45, 74, 94, 0.2);
}

.lf-birth-modal-panel--wide {
    width: min(100%, 640px);
}

.lf-modal-step[hidden] {
    display: none !important;
}

.lf-modal-step--results {
    display: flex;
    flex-direction: column;
    max-height: min(88vh, 780px);
    margin: -4px -2px 0;
    position: relative;
    text-align: center;
}

.lf-modal-step--results.lf-modal-step--checkout-only .lf-modal-preview-scroll {
    display: none !important;
}

.lf-modal-step--results.lf-modal-step--checkout-only .lf-modal-back {
    display: none !important;
}

.lf-modal-step--results.lf-modal-step--checkout-only .lf-modal-purchase {
    margin-top: 0;
}

.lf-modal-preview-scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    padding-right: 4px;
    margin-bottom: 12px;
}

.lf-preview-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #dde5ea;
}

.lf-preview-header--center {
    text-align: center;
}

.lf-preview-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 8px;
    color: #2d4a5e;
    padding-right: 0;
    font-weight: 600;
}

.lf-preview-week {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #5a7a8f;
}

.lf-ornament-heart.lf-preview-title-heart {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #c73636;
}

.lf-preview-forecast-card {
    position: relative;
    margin: 0 auto 20px;
    padding: 20px 16px 18px;
    border: 1px solid #d4dfe8;
    border-radius: 10px;
    background: linear-gradient(180deg, #fafcfe 0%, #f4f8fb 100%);
    text-align: center;
    box-shadow: 0 1px 0 rgba(45, 74, 94, 0.04);
}

.lf-preview-reading {
    padding-bottom: 0;
}

.lf-preview-tier-panel {
    margin: 10px auto 0;
    max-width: 440px;
    padding: 16px 14px 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8eef3;
    text-align: center;
}

.lf-preview-tier-panel--peak,
.lf-preview-reading.lf-personal-strip--peak .lf-preview-tier-panel {
    background: linear-gradient(180deg, #e4ecf1 0%, #d4dfe8 100%);
    border-color: #7a9aad;
}

.lf-preview-tier-panel--high,
.lf-preview-reading.lf-personal-strip--high .lf-preview-tier-panel {
    background: linear-gradient(180deg, #eef3f7 0%, #dfe9f0 100%);
    border-color: #9eb4c3;
}

.lf-preview-tier-panel--moderate,
.lf-preview-reading.lf-personal-strip--moderate .lf-preview-tier-panel {
    background: linear-gradient(180deg, #f2f6f9 0%, #e6eef3 100%);
    border-color: #c5d4de;
}

.lf-preview-tier-panel--background,
.lf-preview-reading.lf-personal-strip--background .lf-preview-tier-panel {
    background: linear-gradient(180deg, #f7f6f3 0%, #ebe8e0 100%);
    border-color: #d8d4cb;
}

.lf-preview-tier-panel .lf-preview-tier {
    margin-bottom: 8px;
}

.lf-preview-tier-panel .lf-preview-message {
    margin-bottom: 10px;
}

.lf-preview-tier-panel .lf-preview-meta {
    margin-bottom: 6px;
}

.lf-preview-tier-panel .lf-preview-meta:last-child {
    margin-bottom: 0;
}

.lf-preview-reduced {
    margin: 0 auto 12px;
    max-width: 400px;
    padding: 8px 10px;
    background: #fff8e8;
    border-radius: 6px;
    font-size: 12px;
    color: #6b5a2e;
    text-align: center;
}

.lf-preview-tier {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    line-height: 1.25;
    margin: 0 0 10px;
    color: #2d4a5e;
    text-align: center;
}

.lf-preview-reading.lf-personal-strip--peak .lf-preview-tier { color: #3d5a6e; }
.lf-preview-reading.lf-personal-strip--high .lf-preview-tier { color: #2d4a58; }

.lf-preview-message {
    margin: 0 auto 12px;
    max-width: 420px;
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    text-align: center;
}

.lf-preview-meta {
    margin: 0 auto 6px;
    max-width: 420px;
    font-size: 13px;
    color: #555;
    text-align: center;
}

.lf-preview-transits {
    margin: 0 auto 16px;
    max-width: 460px;
    padding-top: 4px;
    text-align: center;
}

.lf-preview-transits-title {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #5a7a8f;
}

.lf-preview-transits-scroll {
    max-height: 180px;
    overflow-y: auto;
    padding: 0 4px;
    text-align: center;
}

.lf-preview-transits-day {
    margin-bottom: 10px;
}

.lf-preview-transits-day-label {
    font-size: 12px;
    font-weight: 600;
    color: #2d4a5e;
    margin-bottom: 4px;
}

.lf-preview-transits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #444;
}

.lf-preview-transits-list li {
    margin-bottom: 3px;
}

.lf-preview-transits-empty {
    margin: 0 auto;
    max-width: 400px;
    font-size: 13px;
    line-height: 1.55;
    color: #555;
    text-align: center;
}

.lf-modal-upsell-bridge {
    margin-bottom: 14px;
}

.lf-modal-bridge-ornament {
    margin-bottom: 8px;
}

.lf-modal-bridge-ornament .lf-title-ornament-row {
    max-width: 100%;
    gap: 10px;
}

.lf-modal-bridge-ornament .lf-title-ornament-row .lf-ornament-line {
    flex: 0 1 36px;
    max-width: 36px;
    min-width: 20px;
}

.lf-modal-bridge-ornament .lf-title-ornament-heart {
    color: #2d2d2d;
}

.lf-modal-bridge-ornament .lf-modal-upsell-bridge-title {
    flex: 0 1 auto;
    margin: 0;
    max-width: min(100%, 280px);
}

.lf-modal-upsell-bridge-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: #2d4a5e;
}

.lf-modal-upsell-bridge-lead {
    margin: 0 auto;
    max-width: 380px;
    font-size: 14px;
    line-height: 1.45;
    color: #5a7a8f;
}

.lf-preview-birth-data {
    margin: 0 auto 8px;
    text-align: center;
    max-width: 480px;
}

.lf-preview-birth-data[hidden] {
    display: none !important;
}

.lf-preview-birth-label {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a9aaa;
}

.lf-preview-birth-data-summary:empty {
    display: none;
}

.lf-preview-birth-data-summary {
    margin: 0 0 8px;
    font-size: 14px;
    color: #333;
    line-height: 1.45;
}

.lf-preview-planets-text:empty {
    display: none;
}

.lf-preview-planets-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

.lf-modal-purchase {
    flex: 0 0 auto;
    text-align: center;
    padding: 20px 4px 4px;
    margin-top: 12px;
    border-top: 1px solid #e8e2d4;
}

.lf-modal-upsell-kicker {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8a9aaa;
}

.lf-modal-upsell-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 10px;
    color: #2d4a5e;
}

.lf-modal-upsell-lead {
    margin: 0 auto 12px;
    max-width: 440px;
    font-size: 14px;
    line-height: 1.55;
    color: #444;
}

.lf-modal-upsell-close {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #2d4a5e;
}

.lf-modal-upsell-tag {
    margin: 0 auto 18px;
    max-width: 400px;
    font-size: 14px;
    font-style: normal;
    line-height: 1.5;
    color: #555;
    text-align: center;
}

.lf-modal-purchase .lf-price-block--compact,
.lf-modal-purchase .lf-price-block--modal {
    margin-bottom: 14px;
    text-align: center;
}

.lf-modal-purchase .lf-price-block--modal .lf-price {
    justify-content: center;
}

.lf-modal-purchase .lf-price-meta {
    text-align: center;
}

.lf-modal-purchase-btn {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 10px;
}

.lf-warm-storage-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 12px;
    font-size: 14px;
    line-height: 1.45;
    color: #555;
    cursor: pointer;
    text-align: left;
}

.lf-warm-storage-consent input[type="checkbox"] {
    margin: 2px 0 0;
    flex-shrink: 0;
}

.lf-warm-storage-consent a {
    color: #2d4a5e;
    text-decoration: underline;
}

.lf-warm-storage-consent a:hover {
    color: #1d3a4e;
}

.lf-warm-storage-consent-error {
    max-width: 340px;
    margin: -6px auto 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #a33;
    text-align: left;
}

.lf-landing-warm-storage-consent {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 14px;
    text-align: left;
}

.lf-hero-cta .lf-landing-warm-storage-consent {
    max-width: none;
    margin: 0 0 14px;
}

.lf-hero-cta .lf-landing-warm-storage-consent .lf-warm-storage-consent {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.lf-landing-warm-storage-consent--closing {
    margin-bottom: 12px;
}

.lf-landing-warm-storage-consent .lf-warm-storage-consent-error {
    max-width: none;
    margin: 6px 0 0;
}

.lf-modal-back {
    border: none;
    background: transparent;
    color: #5a7a8f;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 0 0;
}

.lf-modal-back:hover {
    color: #2d4a5e;
    text-decoration: underline;
}

.lf-birth-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    z-index: 1;
}

.lf-birth-modal-header {
    text-align: center;
    margin-bottom: 18px;
    padding-top: 2px;
}

.lf-birth-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0 0 8px;
    color: #2d4a5e;
    padding: 0 28px;
}

.lf-birth-modal-lead {
    font-size: 14px;
    line-height: 1.55;
    color: #666;
    margin: 0;
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
}

.lf-birth-age-notice {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.45;
    color: #666;
    text-align: center;
}

.lf-birth-modal label.lf-birth-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 22px 0 0;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.45;
    color: #555;
    cursor: pointer;
}

.lf-birth-modal label.lf-birth-consent input[type="checkbox"] {
    margin: 2px 0 0;
    flex-shrink: 0;
}

.lf-birth-modal label.lf-birth-consent a {
    color: #2d4a5e;
    text-decoration: underline;
}

.lf-birth-modal label.lf-birth-consent a:hover {
    color: #1d3a4e;
}

.lf-birth-error {
    font-size: 13px;
    color: #a33;
    margin: 0 0 10px;
    text-align: center;
}

.lf-birth-submit {
    display: block;
    width: auto;
    min-width: 260px;
    max-width: 100%;
    margin: 14px auto 0;
}

#lfModalFormStep {
    padding-bottom: 18px;
}

#lfModalFormStep .lf-birth-modal-header {
    margin-bottom: 20px;
    padding-top: 6px;
}

#lfModalFormStep .lf-birth-submit {
    margin-top: 16px;
    margin-bottom: 14px;
}

.lf-birth-modal .natal-form-card.person-section {
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.lf-birth-modal .form-group {
    margin-bottom: 15px;
}

.lf-birth-modal .form-group.name-field input {
    max-width: 200px;
}

.lf-birth-modal label {
    display: block;
    margin-bottom: 6px;
    color: #4a4a4a;
    font-weight: 400;
    font-size: 14px;
}

.lf-birth-modal input:not([type="checkbox"]),
.lf-birth-modal select {
    width: 100%;
    padding: 10px;
    border: 1px solid #8a8a8a;
    border-radius: 2px;
    box-sizing: border-box;
    font-size: 14px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

.lf-birth-modal input[type="checkbox"] {
    width: auto;
    padding: 0;
    min-height: 0;
    flex: 0 0 auto;
}

.lf-birth-modal input:focus,
.lf-birth-modal select:focus {
    outline: none;
    border-color: #9ec3e2;
}

.lf-birth-modal .form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    align-items: end;
}

.lf-birth-modal .form-row .form-group {
    margin-bottom: 0;
}

.lf-birth-modal .btn-secondary {
    width: 100%;
    padding: 12px;
    background-color: #f0ebe0;
    color: #2d2d2d;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

.lf-birth-modal .btn-secondary:hover {
    background-color: #e8e0d0;
}

.lf-birth-modal #lfCoordStatus {
    margin-top: 8px;
    font-size: 13px;
}

.lf-birth-modal #lfCoordStatus .error {
    color: #a33;
}

.lf-birth-modal #lfCoordStatus .success {
    color: #2d4a5e;
}

.lf-birth-modal #lfLocationResults,
.lf-birth-modal .lf-location-results {
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    background: #fff;
}

.lf-birth-modal .lf-location-results.hidden,
.lf-birth-modal .lf-location-results[hidden] {
    display: none;
}

.lf-birth-modal .location-option {
    display: block;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    background: transparent;
    font-size: 13px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.lf-birth-modal .location-option:hover {
    background-color: #f5f5f5;
}

.lf-birth-modal .location-option:last-child {
    border-bottom: none;
}

.lf-birth-modal .hidden {
    display: none !important;
}

.lf-birth-modal small {
    display: block;
    margin-top: 4px;
    color: #999;
    font-size: 12px;
}

.lf-birth-modal .form-row.form-row-location {
    margin-bottom: 6px;
}

.lf-birth-modal .lf-birth-location-hint {
    margin: 0;
    padding-top: 2px;
    font-size: 13px;
    color: #888;
    text-align: left;
}

.lf-birth-modal .lf-name-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lf-birth-modal .lf-name-input-row input {
    flex: 1;
    min-width: 0;
}

.lf-birth-modal .lf-birth-check--gift {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    font-size: 12px;
    color: #555;
    line-height: 1.25;
    margin: 0;
    cursor: pointer;
    white-space: nowrap;
}

.lf-birth-modal .lf-birth-location-status {
    margin: 8px 0 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    min-height: 0;
    text-align: center;
}

.lf-birth-modal .lf-birth-location-status[hidden] {
    display: none;
}

.lf-birth-modal .lf-birth-location-status--success {
    color: #2d6a4f;
}

.lf-birth-modal .lf-birth-location-status--error {
    color: #b42318;
}

.lf-birth-modal .lf-birth-find {
    margin-top: 4px;
}

.lf-birth-modal .lf-birth-check--gift input {
    margin: 0;
    flex-shrink: 0;
}

.lf-birth-modal .form-row-time .form-group-time {
    min-width: 0;
}

.lf-birth-modal .lf-birth-time-spacer {
    visibility: hidden;
    pointer-events: none;
}

.lf-birth-modal .lf-birth-time-spacer-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
    white-space: normal;
    margin-bottom: 0;
}

.lf-birth-modal .lf-birth-time-spacer-box {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .lf-birth-modal .form-row {
        grid-template-columns: 1fr;
    }

    .lf-birth-modal .form-row-date {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
        margin-bottom: 12px;
    }

    .lf-birth-modal .form-row-time {
        grid-template-columns: 1fr auto;
        gap: 8px;
        align-items: end;
        margin-bottom: 12px;
    }

    .lf-birth-modal .lf-name-input-row {
        flex-wrap: wrap;
        gap: 6px 8px;
    }

    .lf-birth-modal .lf-birth-check--gift {
        white-space: normal;
    }

    .lf-birth-modal .form-row-location {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .lf-birth-modal .form-row-date label,
    .lf-birth-modal .form-row-time label {
        font-size: 15px;
    }

    .lf-birth-modal label.lf-birth-consent {
        font-size: 15px;
    }

    .lf-birth-modal .form-row-date input,
    .lf-birth-modal .form-row-time input {
        font-size: 17px !important;
        padding: 12px 8px !important;
        min-height: 48px;
    }
}

.lf-price {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

@media (min-width: 860px) {
    .lf-price {
        justify-content: flex-start;
    }
}

.lf-price-was {
    text-decoration: line-through;
    color: #aaa;
    font-size: 17px;
}

.lf-price-now {
    font-size: 28px;
    font-weight: 600;
    color: #2d4a5e;
    line-height: 1;
}

.lf-price-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2d4a5e;
    background: #f7fbfe;
    border: 1px solid #2d4a5e;
    padding: 3px 8px;
    border-radius: 3px;
}

.lf-price-meta {
    margin: 8px 0 0;
    font-size: 13px;
    color: #777;
}

.lf-btn--hero {
    width: 100%;
    max-width: 340px;
    padding: 11px 22px;
    font-size: 15px;
    line-height: 1.25;
    box-shadow: 0 4px 14px rgba(122, 172, 212, 0.35);
}

.lf-btn--closing {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    max-width: 380px;
}

@media (min-width: 860px) {
    .lf-btn--hero {
        width: auto;
        min-width: 260px;
    }
}

.lf-checkout-soon {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.lf-product-showcase {
    max-width: 440px;
    margin: 0 auto;
}

.lf-product-showcase--hero {
    max-width: none;
    width: 100%;
    margin: 0;
}

.lf-product-showcase--hero .lf-product-frame {
    transform: none;
    padding: 14px;
}

.lf-product-showcase--hero .lf-product-shot {
    width: 100%;
    height: auto;
    display: block;
}

.lf-product-frame {
    background: #fffef7;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 8px 28px rgba(45, 74, 94, 0.12);
}

.lf-product-shot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.lf-tier-chips {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    font-size: 11px;
    color: #666;
}

.lf-tier-chips li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lf-tier-chip {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
}

.lf-tier-chip--peak { background: #3d5a6e; }
.lf-tier-chip--high { background: #7a9aad; }
.lf-tier-chip--moderate { background: #c5d4de; }
.lf-tier-chip--quiet { background: #ebe8e0; }

.lf-product-summary {
    max-width: 640px;
    margin: 0 auto 28px;
    padding: 18px 20px;
    background: #faf8f4;
    border: 1px solid #e8e2d8;
    border-radius: 6px;
    text-align: center;
}

.lf-product-summary p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #4a4a4a;
}

.lf-tiers-section {
    margin-bottom: 48px;
}

.lf-tiers-card {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.lf-tiers-card .lf-tiers-body {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    max-width: 640px;
    margin: 0 auto 14px;
}

.lf-tiers-card .lf-tiers-list {
    text-align: left;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.lf-tiers-card .lf-tiers-disclaimer {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    max-width: 640px;
    margin: 18px auto 0 !important;
}

.lf-tiers-card--report {
    margin-top: 12px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

.lf-tiers-card--report .lf-tiers-disclaimer {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.45;
    color: #2d4a5e;
}

.lf-tiers-list {
    list-style: none;
    margin: 18px 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.lf-tiers-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.lf-tiers-item .lf-tier-chip {
    flex-shrink: 0;
    margin-top: 5px;
}

.lf-tiers-text {
    flex: 1;
}

.lf-tiers-disclaimer {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 0 !important;
}

.lf-tiers-list--compact {
    margin: 0;
    gap: 8px;
}

.lf-tiers-list--compact .lf-tiers-item {
    font-size: 13px;
    line-height: 1.5;
}

.lf-tiers-list--compact .lf-tiers-item .lf-tier-chip {
    width: 10px;
    height: 10px;
    margin-top: 4px;
}

.lf-tier-guide-details {
    margin-top: 14px;
    padding: 12px 14px;
    border: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(45, 74, 94, 0.06);
}

.lf-tier-guide-details summary {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #2d4a5e;
}

.lf-modal-tier-guide {
    margin: 16px 0 4px;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(45, 74, 94, 0.06);
    text-align: left;
}

.lf-section {
    margin-bottom: 56px;
}

.lf-section-head {
    text-align: center;
    margin-bottom: 0;
}

.lf-section-head .lf-section-title {
    margin-bottom: 0;
}

.lf-landing-page .lf-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 600;
    margin: 0;
    color: #2d2d2d;
    line-height: 1.25;
}

.lf-landing-page .lf-closing-card .lf-section-title {
    font-size: clamp(20px, 3.2vw, 26px);
    line-height: 1.35;
}

.lf-feature-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

@media (min-width: 700px) {
    .lf-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lf-feature-card--wide {
        grid-column: 1 / -1;
    }
}

.lf-feature-card {
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 20px 18px;
    box-shadow: 0 2px 10px rgba(45, 74, 94, 0.04);
}

.lf-feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    margin: 0 0 8px;
    color: #2d4a5e;
}

.lf-feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.lf-step-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

@media (min-width: 860px) {
    .lf-step-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

.lf-step-card {
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 20px 18px 18px 14px;
    position: relative;
    box-shadow: 0 2px 10px rgba(45, 74, 94, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lf-step-num {
    flex: 0 0 auto;
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 52px);
    font-weight: 600;
    line-height: 1;
    color: #2d4a5e;
    opacity: 0.72;
    margin: 2px 0 0;
    min-width: 0.65em;
    text-align: center;
}

.lf-step-card p {
    flex: 1 1 auto;
    margin: 0;
    padding-top: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.lf-why-card {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 28px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    box-shadow: 0 4px 20px rgba(45, 74, 94, 0.06);
}

.lf-why-card p {
    margin: 0 0 14px;
}

.lf-why-card p:last-child {
    margin-bottom: 0;
}

.lf-pull-quote {
    margin: 20px 0;
    padding: 16px 18px;
    border-left: 3px solid #7aacd4;
    background: #f7fbfe;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.45;
    color: #2d4a5e;
}

.lf-why-kicker {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2d4a5e !important;
}

.lf-callout {
    background: linear-gradient(135deg, #f8fcff 0%, #fff 55%);
    border: none;
    border-radius: 10px;
    padding: 26px 22px;
    font-size: 15px;
    color: #444;
    line-height: 1.65;
    box-shadow: 0 4px 20px rgba(122, 172, 212, 0.1);
}

.lf-callout-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #2d4a5e;
}

.lf-callout-list {
    margin: 0 0 16px;
    padding-left: 1.2em;
}

.lf-callout-list li {
    margin-bottom: 8px;
}

.lf-callout p {
    margin: 0 0 12px;
}

.lf-callout-math {
    margin-top: 16px !important;
    padding-top: 14px;
    border-top: 1px solid #e0edf5;
}

.lf-faq-section .lf-faq {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(45, 74, 94, 0.04);
}

.lf-faq-section .lf-faq details:first-child {
    border-top: none;
}

.lf-faq-section .lf-faq details {
    border-bottom: 1px solid #ece8e0;
    padding: 14px 0;
}

.lf-faq-section .lf-faq details:last-child {
    border-bottom: none;
}

.lf-free-link {
    text-align: center;
    margin: 0 0 44px;
    font-size: 13px;
}

.lf-free-link a {
    color: #666;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lf-free-link a:hover {
    color: #2d4a5e;
}

.lf-free-link--in-closing {
    margin: 16px 0 0;
}

.lf-closing-card {
    text-align: center;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 32px 22px 36px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(45, 74, 94, 0.08);
}

.lf-closing-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3.5vw, 26px);
    font-weight: 600;
    line-height: 1.35;
    color: #2d4a5e;
    margin: 0 auto 12px;
    max-width: 640px;
}

.lf-closing-lead {
    font-size: 15px;
    color: #555;
    max-width: 480px;
    margin: 0 auto 22px;
    line-height: 1.6;
}

.lf-launch-end {
    font-size: 13px;
    color: #888;
    margin: 14px 0 0;
}

.lf-closing-cta {
    margin: 24px auto 0;
    max-width: 360px;
}

.lf-closing-cta .lf-btn--hero {
    width: 100%;
    max-width: 320px;
}

.lf-landing-footer {
    text-align: center;
    font-size: 13px;
    padding: 40px 20px 48px;
    margin-top: 8px;
    border-top: 1px solid #e8e4dc;
}

.lf-footer-brand {
    margin: 0 0 18px;
    font-size: 20px;
    letter-spacing: 0.3px;
}

.lf-footer-brand a {
    color: #2d2d2d;
    text-decoration: none;
}

.lf-footer-brand a:hover {
    color: #2d4a5e;
}

.lf-footer-links {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.7;
}

.lf-footer-sep {
    color: #999;
    margin: 0 6px;
}

.lf-footer-disclaimer {
    margin: 0 0 8px;
    font-size: 12px;
    color: #888;
}

.lf-footer-copy {
    margin: 0;
    font-size: 12px;
    color: #999;
}

.lf-landing-footer a {
    color: #666;
    text-decoration: none;
}

.lf-landing-footer a:hover {
    color: #2d4a5e;
    text-decoration: underline;
}

.lf-footer-dot {
    color: #ccc;
    margin: 0 6px;
}

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

/* Report page */
.lf-report-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e4dc;
}

.lf-report-meta {
    font-size: 14px;
    color: #555;
    margin: 8px 0;
}

.lf-report-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.lf-ics-help {
    max-width: 560px;
    margin: 20px auto 0;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 2px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

.lf-ics-help ul {
    margin: 8px 0;
    padding-left: 1.2em;
}

.lf-ics-help-name {
    margin: 6px 0 10px;
}

.lf-ics-help-note {
    margin: 10px 0 0;
    font-size: 12px;
    color: #777;
}

.lf-day-detail h3 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 8px;
    font-size: 18px;
}

.lf-transits {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    font-size: 13px;
    color: #444;
}

.lf-transits li {
    padding: 3px 0;
}

.lf-ended {
    text-align: center;
    background: #f5f2ea;
    border: 1px solid #e0dcd4;
    padding: 32px 24px;
    margin-top: 40px;
    border-radius: 2px;
}

.lf-ended h2 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 12px;
}

@media (max-width: 600px) {
    .lf-hero h1 { font-size: 26px; }
    .lf-cal-cell { min-height: 22px; font-size: 10px; }
}

/* ——— Report: gift presentation ——— */
.lf-report-page {
    background: linear-gradient(165deg, #fffef7 0%, #f8f2e8 45%, #fffef9 100%);
    min-height: 100vh;
}

.lf-report-wrap {
    max-width: 680px;
    padding-top: 40px;
    padding-bottom: 56px;
}

.lf-gift {
    background: linear-gradient(180deg, #fffffe 0%, #fffbf5 100%);
    border: none;
    box-shadow: 0 12px 40px rgba(45, 45, 45, 0.06);
    padding: 48px 32px 52px;
    position: relative;
}

.lf-corner-heart {
    position: absolute;
    font-size: 11px;
    line-height: 1;
    color: #2d2d2d;
    pointer-events: none;
    user-select: none;
}

.lf-corner-heart--tl { top: 14px; left: 14px; }
.lf-corner-heart--tr { top: 14px; right: 14px; }
.lf-corner-heart--bl { bottom: 14px; left: 14px; }
.lf-corner-heart--br { bottom: 14px; right: 14px; }

.lf-gift-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 20px;
}

.lf-gift-brand {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #2d2d2d;
    margin: 0 0 8px;
}

.lf-gift-brand-tag {
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #444;
    margin: 0 0 32px;
    font-weight: 400;
}

.lf-ornament--top {
    margin-bottom: 20px;
}

.lf-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(160px, 60%);
    margin: 0 auto 10px;
}

.lf-ornament--below {
    margin-top: 20px;
    margin-bottom: 0;
}

.lf-ornament-line {
    flex: 1 1 48px;
    max-width: 64px;
    height: 0;
    border-top: 1px solid #2d2d2d;
}

.lf-ornament-heart {
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1;
    color: #2d2d2d;
}

.lf-gift-header .lf-ornament-heart {
    color: #c73636;
}

.lf-gift-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto;
    max-width: 560px;
}

.lf-gift-title-row .lf-section-wave {
    font-size: 24px;
}

.lf-gift-title {
    flex: 0 1 auto;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.25;
    margin: 0;
    color: #2d2d2d;
    text-align: center;
}

.lf-gift-birth {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin: 10px auto 0;
    max-width: 520px;
    line-height: 1.55;
    text-align: center;
}

.lf-gift-period {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #444;
    margin: 8px auto 0;
    max-width: 520px;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: center;
}

.lf-gift-period strong {
    font-weight: 600;
    color: #2d2d2d;
}

.lf-gift-personal {
    font-size: 14px;
    color: #666;
    margin: 14px auto 0;
    max-width: 520px;
    line-height: 1.55;
    font-weight: 400;
}

.lf-gift-birth {
    margin: 10px auto 0;
    max-width: 520px;
}

.lf-gift-birth-line {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.55;
}

.lf-gift-birth-line--place {
    font-size: 14px;
    color: #666;
    margin-top: 2px;
}

.lf-gift-note {
    font-size: 12px;
    margin: 10px auto 0;
    max-width: 420px;
}

.lf-gift-note--warn {
    color: #8a5a20;
}

.lf-summary-panel {
    padding: 8px 16px 28px;
    margin-bottom: 44px;
}

.lf-section-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 24px;
    max-width: 520px;
}

.lf-section-title {
    flex: 0 1 auto;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: #2d2d2d;
    text-align: center;
    line-height: 1.3;
}

.lf-section-wave {
    flex: 0 0 auto;
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
    line-height: 1;
    padding: 0 6px;
    letter-spacing: 0.02em;
}

.lf-summary-counts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 18px;
    margin: 0 auto 22px;
    max-width: 440px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ece6dc;
}

.lf-summary-item {
    margin: 0;
    text-align: center;
}

.lf-summary-item dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    margin: 0 0 6px;
    font-weight: 500;
}

.lf-summary-item dd {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
    line-height: 1.35;
}

.lf-summary-item--peak dd { color: #3d5a6e; }
.lf-summary-item--high dd { color: #5a7a8e; }
.lf-summary-item--moderate dd { color: #6a8494; }
.lf-summary-item--quiet dd { color: #888; }

.lf-summary-copy {
    margin: 0 auto 20px;
    max-width: 440px;
    text-align: center;
}

.lf-summary-copy-line {
    font-size: 13px;
    line-height: 1.55;
    color: #444;
    margin: 0 0 8px;
}

.lf-summary-copy-line:last-child {
    margin-bottom: 0;
}

.lf-summary-copy-line--muted {
    font-size: 12px;
    color: #666;
}

.lf-summary-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px auto 0;
    max-width: 440px;
}

.lf-summary-details--centered {
    text-align: center;
}

.lf-summary-details--centered .lf-summary-detail dt,
.lf-summary-details--centered .lf-summary-detail dd {
    text-align: center;
}

.lf-summary-detail {
    margin: 0;
}

.lf-summary-detail dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    margin: 0 0 5px;
    font-weight: 500;
}

.lf-summary-detail dd {
    font-size: 13px;
    font-weight: 400;
    color: #2d2d2d;
    margin: 0;
    line-height: 1.5;
}

.lf-legend--calendar {
    margin: 20px auto 24px;
    padding-top: 0;
    border-top: none;
    font-size: 12px;
    gap: 12px;
    justify-content: center;
}

.lf-legend--calendar i {
    width: 12px;
    height: 12px;
}

.lf-section-label {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 14px;
    color: #2d2d2d;
}

.lf-calendar-section {
    margin-bottom: 44px;
}

.lf-calendar-hint {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin: 0 0 28px;
    line-height: 1.55;
}

.lf-day-detail-slot {
    margin-top: 28px;
    min-height: 0;
}

.lf-day-detail {
    display: none;
    background: #fff;
    border: 1px solid #dcd6cb;
    border-radius: 4px;
    padding: 18px 20px;
    margin: 0 auto;
    max-width: 520px;
    box-shadow: 0 2px 12px rgba(45, 45, 45, 0.05);
}

.lf-day-detail.is-open {
    display: block;
}

.lf-day-detail.is-open .lf-day-tier-line,
.lf-day-detail.is-open .lf-day-tier-detail {
    display: block;
}

.lf-cal-months {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
    gap: 14px 18px;
    max-width: 560px;
    margin: 0 auto;
}

.lf-cal-month {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #ece6dc;
    border-radius: 4px;
    padding: 10px 8px;
}

.lf-cal--compact {
    gap: 2px;
    margin-bottom: 0;
}

.lf-cal--compact .lf-cal-head {
    font-size: 8px;
    padding: 2px 0;
}

.lf-cal--compact .lf-cal-cell {
    aspect-ratio: 1;
    min-height: 0;
    max-height: 22px;
    font-size: 9px;
    border-radius: 1px;
}

.lf-cal-actions {
    margin-top: 20px;
    padding-top: 16px;
    text-align: center;
}

.lf-cal-simple-note {
    font-size: 13px;
    color: #666;
    max-width: 460px;
    margin: 20px auto 0;
    line-height: 1.55;
}

.lf-cal-actions .lf-cal-simple-note {
    margin: 10px auto 16px;
}

.lf-toast {
    font-size: 12px;
    color: #3d5a6e;
    margin: 10px 0 0;
}

.lf-report-footer-cta {
    margin-top: 10px;
}

.lf-report-footer-cta a {
    color: #3d5a6e;
    text-decoration: none;
    font-weight: 500;
}

.lf-report-footer-cta a:hover {
    text-decoration: underline;
}

.lf-cal-actions-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 12px;
}

.lf-btn--pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(45, 45, 45, 0.08);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.lf-btn-icon {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.lf-btn--calendar {
    background: #9ec3e2;
    color: #2d4a5e;
    border: 1px solid #8ab5d6;
}

.lf-btn--calendar:hover {
    background: #8ab5d6;
    color: #1e3a4d;
    border-color: #7aa8cc;
}

.lf-btn--share {
    background: #fff;
    color: #2d4a5e;
    border: 1px solid #9ec3e2;
}

.lf-btn--share:hover {
    background: #f0f7fc;
    border-color: #7fb0d4;
    color: #1e3a4d;
}

.lf-btn--print {
    background: #fffef9;
    color: #555;
    border: 1px solid #d9d0c4;
    box-shadow: none;
    font-weight: 500;
}

.lf-btn--print:hover {
    background: #fff;
    border-color: #bfb5a8;
    color: #2d2d2d;
}

.lf-btn--compact {
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 999px;
}

.lf-btn--dark {
    background: #2d2d2d;
    color: #fff;
}

.lf-btn--dark:hover {
    background: #1a1a1a;
}

.lf-btn--outline {
    background: #fff;
    color: #2d2d2d;
    border: 1px solid #ccc5b8;
}

.lf-btn--outline:hover {
    border-color: #2d2d2d;
}

.lf-btn--ghost {
    background: transparent;
    color: #666;
    border: 1px solid transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lf-btn--ghost:hover {
    color: #2d2d2d;
}

.lf-day-tier-line {
    display: block;
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.lf-day-tier-detail {
    display: block;
    margin: 14px 0 0;
    padding: 14px 16px;
    background: #faf6ee;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.lf-flags--day {
    margin-top: 10px;
}

.lf-flags--day li {
    font-size: 14px;
    color: #3d5a6e;
}

.lf-flags--primary {
    margin-top: 12px;
    padding: 14px 16px 14px 2.1em;
    background: #faf6ee;
    border-radius: 6px;
}

.lf-flags--primary li {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    padding: 0 0 8px;
    text-indent: 0;
}

.lf-flags--primary li:last-child {
    padding-bottom: 0;
}

.lf-flags--primary li::before {
    content: '★ ';
    color: #c9a227;
    margin-left: -1.35em;
    margin-right: 0.35em;
}

.lf-day-technical {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #ece6dc;
}

.lf-day-technical-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 6px;
}

.lf-day-technical .lf-transits {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: #666;
}

.lf-empty-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin: 16px 0 0;
}

.lf-quiet-window {
    max-width: 520px;
    margin: 24px auto 0;
    padding: 28px 28px 32px;
    background: #f8f5ef;
    border: 1px solid #e8e0d4;
    border-radius: 4px;
    text-align: center;
}

.lf-quiet-window-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    margin: 0 0 16px;
    color: #2d2d2d;
}

.lf-quiet-window p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.lf-quiet-window p + p {
    margin-top: 14px;
}

.lf-summary-glance {
    text-align: center;
    font-size: 14px;
    color: #444;
    margin: 16px auto 0;
    max-width: 480px;
    line-height: 1.55;
}

.lf-summary-detail-note {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.55;
    color: #666;
    font-weight: 400;
}

.lf-cal-no-ics-note {
    flex: 1 1 100%;
    text-align: center;
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin: 0;
    max-width: 420px;
}

.lf-report-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.lf-report-footer-meta {
    margin-top: 6px;
    font-size: 11px;
}

.lf-print-only {
    display: none;
}

.lf-print-footer-url {
    margin-top: 10px;
    font-size: 11px;
    color: #555;
}

@media (max-width: 600px) {
    .lf-gift {
        padding: 28px 16px 32px;
    }
    .lf-gift-brand {
        font-size: 21px;
    }
    .lf-gift-title {
        font-size: 23px;
    }
    .lf-gift-personal {
        font-size: 14px;
    }
    .lf-summary-counts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 20px;
        max-width: 100%;
    }
    .lf-cal-months {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media print {
    @page {
        size: A4 portrait;
        margin: 12mm;
    }

    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .lf-no-print {
        display: none !important;
    }

    .lf-report-page,
    body.lf-page {
        background: #fff !important;
    }

    .lf-gift {
        box-shadow: none;
        background: #fff !important;
    }

    .lf-cal-cell--expandable {
        cursor: default;
        pointer-events: none;
    }

    .lf-cal-cell--expandable.is-selected::after {
        display: none;
    }

    .lf-cal-month {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .lf-report-footer-cta {
        display: none !important;
    }

    .lf-print-only {
        display: block !important;
    }
}
