:root {
    --landing-bg: #ffffff;
    --landing-surface: #fff7f8;
    --landing-surface-strong: #fdecef;
    --landing-text: #3a0610;
    --landing-muted: #6f6265;
    --landing-accent: #c42b3e;
    --landing-accent-dark: #941e2e;
    --landing-border: rgba(196, 43, 62, 0.16);
    --landing-border-neutral: #e9e3e5;
    --landing-shadow-sm: 0 0.75rem 2rem rgba(58, 6, 16, 0.08);
    --landing-shadow-lg: 0 1.75rem 4.5rem rgba(58, 6, 16, 0.14);
    --landing-font: 'Outfit', sans-serif;
    --landing-radius-sm: 0.5rem;
    --landing-radius-md: 0.9rem;
    --landing-radius-lg: 1.4rem;
    --landing-shell: 74rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--landing-bg);
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.landing-page {
    min-width: 0;
    background: var(--landing-bg);
    color: var(--landing-text);
    font-family: var(--landing-font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.landing-page p,
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page ul,
.landing-page ol,
.landing-page figure {
    margin-top: 0;
}

.landing-shell {
    width: min(100% - 3rem, var(--landing-shell));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    border-radius: var(--landing-radius-sm);
    background: var(--landing-text);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.landing-header {
    position: sticky;
    z-index: 20;
    top: 0;
    border-bottom: 1px solid rgba(196, 43, 62, 0.11);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 0.35rem 1.5rem rgba(58, 6, 16, 0.04);
    backdrop-filter: blur(16px);
}

.landing-header-inner {
    display: grid;
    min-height: 4.75rem;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.landing-brand,
.footer-brand {
    color: var(--landing-accent);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.landing-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.landing-nav a {
    color: var(--landing-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.landing-nav a:hover {
    color: var(--landing-accent);
}

.button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.45rem;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-small {
    min-height: 2.75rem;
    padding: 0.6rem 1.1rem;
    background: var(--landing-accent);
    color: #ffffff;
    font-size: 0.9rem;
}

.button-small:hover,
.button-primary:hover {
    background: var(--landing-accent-dark);
    box-shadow: 0 0.8rem 2rem rgba(196, 43, 62, 0.24);
}

.button-primary {
    background: var(--landing-accent);
    box-shadow: 0 0.8rem 2rem rgba(196, 43, 62, 0.2);
    color: #ffffff;
}

.button-light {
    background: #ffffff;
    color: var(--landing-accent-dark);
}

.button-light:hover {
    background: #fff4f6;
    box-shadow: 0 0.8rem 2rem rgba(58, 6, 16, 0.18);
}

.button-full {
    width: 100%;
}

.skip-link:focus-visible,
.landing-page a:focus-visible,
.landing-page summary:focus-visible {
    outline: 3px solid #0077ff;
    outline-offset: 4px;
}

.hero-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(196, 43, 62, 0.12), transparent 28rem),
        radial-gradient(circle at 90% 24%, rgba(0, 207, 232, 0.12), transparent 24rem),
        linear-gradient(180deg, #ffffff 0%, #fff9fa 100%);
}

.hero-grid {
    display: grid;
    min-height: min(50rem, calc(100svh - 4.75rem));
    grid-template-columns: minmax(0, 0.92fr) minmax(31rem, 1.08fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.hero-copy,
.product-collage {
    min-width: 0;
}

.eyebrow {
    margin-bottom: 0.85rem;
    color: var(--landing-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin-bottom: 1.35rem;
    color: var(--landing-text);
    font-size: clamp(2.7rem, 5.4vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.052em;
    line-height: 0.99;
    overflow-wrap: anywhere;
}

.hero-description {
    max-width: 39rem;
    margin-bottom: 1.75rem;
    color: var(--landing-muted);
    font-size: clamp(1.05rem, 1.6vw, 1.24rem);
    line-height: 1.68;
}

.hero-button {
    min-width: min(100%, 17rem);
}

.cta-microcopy {
    margin: 0.8rem 0 0;
    color: var(--landing-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-support {
    margin: 1.4rem 0 0;
    color: var(--landing-accent-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.product-collage {
    position: relative;
    min-height: 33rem;
}

.product-collage::before {
    position: absolute;
    inset: 5% 5% 3% 9%;
    border: 1px solid rgba(43, 62, 196, 0.15);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(43, 62, 196, 0.13), rgba(0, 207, 232, 0.08));
    content: '';
    filter: blur(1px);
}

.product-shot {
    position: absolute;
    margin: 0;
    border: 1px solid rgba(58, 6, 16, 0.14);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: var(--landing-shadow-lg);
}

.product-shot::before {
    display: block;
    height: 1.5rem;
    border-bottom: 1px solid var(--landing-border-neutral);
    border-radius: 1rem 1rem 0 0;
    background:
        radial-gradient(circle at 0.75rem 50%, #e66f7f 0 0.18rem, transparent 0.2rem),
        radial-gradient(circle at 1.35rem 50%, #efbd4d 0 0.18rem, transparent 0.2rem),
        radial-gradient(circle at 1.95rem 50%, #5fc983 0 0.18rem, transparent 0.2rem),
        #faf7f8;
    content: '';
}

.product-shot img {
    width: 100%;
    height: auto;
    border-radius: 0 0 1rem 1rem;
}

.product-shot-main {
    z-index: 2;
    top: 1%;
    right: 2%;
    width: 84%;
}

.product-shot-session {
    z-index: 3;
    bottom: 2%;
    left: -2%;
    width: 59%;
}

.product-shot-calendar {
    z-index: 4;
    right: -2%;
    bottom: -5%;
    width: 48%;
}

.trust-strip {
    border-block: 1px solid var(--landing-border);
    background: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid p {
    margin: 0;
    padding: 1.25rem 1rem;
    color: var(--landing-text);
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
}

.trust-grid p + p {
    border-left: 1px solid var(--landing-border);
}

.trust-grid p::before {
    margin-right: 0.45rem;
    color: var(--landing-accent);
    content: '✓';
}

.landing-section {
    padding-block: clamp(5rem, 9vw, 8rem);
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 2.75rem;
}

.section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.price-card h2,
.final-cta-card h2 {
    margin-bottom: 1rem;
    color: var(--landing-text);
    font-size: clamp(2.15rem, 4.6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.06;
    overflow-wrap: anywhere;
}

.section-heading p:last-child,
.final-cta-copy p {
    color: var(--landing-muted);
    font-size: 1.08rem;
}

.value-section {
    background: var(--landing-surface);
}

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

.comparison-card,
.price-card {
    min-width: 0;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--landing-border-neutral);
    border-radius: var(--landing-radius-lg);
    background: #ffffff;
}

.comparison-tritour {
    border-color: rgba(196, 43, 62, 0.28);
    box-shadow: var(--landing-shadow-sm);
}

.card-kicker {
    margin-bottom: 0.55rem;
    color: var(--landing-accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.comparison-card h3,
.steps-grid h3,
.preview-card h3,
.guarantee-banner h3 {
    margin-bottom: 0.85rem;
    color: var(--landing-text);
    font-size: 1.35rem;
    line-height: 1.25;
}

.feature-list {
    display: grid;
    gap: 0.72rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--landing-muted);
}

.feature-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--landing-accent);
    content: '✓';
    font-weight: 700;
}

.feature-list-muted li::before {
    color: #a9a1a4;
    content: '—';
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    counter-reset: steps;
    list-style: none;
}

.steps-grid li {
    position: relative;
    min-width: 0;
    padding: 2rem;
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-lg);
    background: #ffffff;
    box-shadow: var(--landing-shadow-sm);
}

.step-number {
    display: inline-grid;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.35rem;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-dark));
    color: #ffffff;
    font-weight: 700;
}

.steps-grid p,
.preview-card p {
    margin-bottom: 0;
    color: var(--landing-muted);
}

.section-action {
    margin-top: 2rem;
    text-align: center;
}

.preview-section {
    padding-bottom: clamp(3.5rem, 6vw, 5rem);
    background: var(--landing-surface);
}

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

.preview-card {
    min-width: 0;
    margin: 0;
    border: 1px solid var(--landing-border-neutral);
    border-radius: var(--landing-radius-lg);
    background: #ffffff;
    box-shadow: var(--landing-shadow-sm);
}

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

.preview-image {
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--landing-border-neutral);
    border-radius: var(--landing-radius-lg) var(--landing-radius-lg) 0 0;
    background: #f8f5f6;
}

.preview-image img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    object-position: center top;
}

.preview-card figcaption {
    padding: 1.35rem 1.5rem 1.5rem;
}

.pricing-section {
    padding: 0 0 clamp(3.5rem, 6vw, 5.5rem);
    background: #fffafb;
}

.pricing-shell {
    display: block;
}

.price-card {
    border-color: rgba(196, 43, 62, 0.3);
    box-shadow: var(--landing-shadow-lg);
}

.price-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    margin-bottom: 2rem;
}

.price-intro {
    min-width: 0;
}

.price-card h2 {
    font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.price-subtitle {
    margin-bottom: 1.5rem;
    color: var(--landing-muted);
    font-size: 1.18rem;
    font-weight: 600;
}

.guarantee-banner {
    display: flex;
    margin-top: 1.25rem;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(196, 43, 62, 0.3);
    border-radius: var(--landing-radius-md);
    background: var(--landing-surface);
}

.guarantee-mark {
    display: inline-grid;
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(196, 43, 62, 0.1);
    color: var(--landing-accent);
    font-size: 1.05rem;
    font-weight: 700;
}

.guarantee-banner h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.guarantee-banner p {
    margin-bottom: 0;
    color: var(--landing-muted);
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(15rem, 0.68fr) minmax(0, 1.32fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 6rem);
}

.faq-shell .section-heading {
    position: sticky;
    top: 7rem;
    margin-bottom: 0;
}

.faq-list {
    border-top: 1px solid var(--landing-border-neutral);
}

.faq-list details {
    border-bottom: 1px solid var(--landing-border-neutral);
}

.faq-list summary {
    position: relative;
    min-height: 3.5rem;
    padding: 1.3rem 3rem 1.3rem 0;
    color: var(--landing-text);
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 1.15rem;
    right: 0.2rem;
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border-radius: 50%;
    background: var(--landing-surface-strong);
    color: var(--landing-accent);
    content: '+';
    font-size: 1.25rem;
}

.faq-list details[open] summary::after {
    content: '−';
}

.faq-list details p {
    max-width: 45rem;
    margin-bottom: 1.25rem;
    padding-right: 2rem;
    color: var(--landing-muted);
}

.final-cta-section {
    padding: 0 0 clamp(3.5rem, 6vw, 5rem);
}

.final-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: var(--landing-radius-lg);
    background:
        radial-gradient(circle at 88% 12%, rgba(0, 207, 232, 0.2), transparent 18rem),
        linear-gradient(135deg, var(--landing-accent-dark), var(--landing-text));
    box-shadow: var(--landing-shadow-lg);
    color: #ffffff;
}

.final-cta-card h2 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.final-cta-copy p {
    max-width: 42rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

.final-cta-action {
    min-width: 17rem;
    text-align: center;
}

.cta-microcopy-light {
    color: rgba(255, 255, 255, 0.78) !important;
}

.landing-footer {
    padding-block: 3rem 6rem;
    border-top: 1px solid var(--landing-border-neutral);
    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem 4rem;
}

.footer-grid > div p {
    margin: 0.5rem 0 0;
    color: var(--landing-muted);
}

.footer-grid nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem 1.5rem;
}

.footer-grid nav a {
    color: var(--landing-muted);
    font-weight: 600;
    text-underline-offset: 0.2em;
}

.footer-disclaimer {
    grid-column: 1 / -1;
    max-width: 54rem;
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.88rem;
}

.mobile-cta {
    display: none;
}

@media (max-width: 1080px) {
    .landing-nav {
        display: none;
    }

    .landing-header-inner {
        grid-template-columns: 1fr auto;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-copy {
        max-width: 47rem;
    }

    .product-collage {
        width: min(100%, 48rem);
        min-height: 34rem;
        margin-inline: auto;
    }

}

@media (max-width: 760px) {
    .landing-shell {
        width: min(100% - 2rem, var(--landing-shell));
    }

    .landing-header-inner {
        min-height: 4.25rem;
        gap: 1rem;
    }

    .landing-brand {
        font-size: 0.92rem;
    }

    .button-small {
        min-height: 2.75rem;
        padding-inline: 0.9rem;
        font-size: 0.83rem;
    }

    .hero-grid {
        padding-block: 3.75rem 4.5rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.55rem, 11vw, 4.15rem);
    }

    .hero-button {
        width: 100%;
    }

    .product-collage {
        min-height: 28rem;
    }

    .product-shot-main {
        right: 0;
        width: 92%;
    }

    .product-shot-session {
        left: 0;
        width: 64%;
    }

    .product-shot-calendar {
        right: 0;
        width: 55%;
    }

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

    .trust-grid p:nth-child(3) {
        border-left: 0;
    }

    .trust-grid p:nth-child(n + 3) {
        border-top: 1px solid var(--landing-border);
    }

    .comparison-grid,
    .preview-grid,
    .faq-shell,
    .price-layout {
        grid-template-columns: 1fr;
    }

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

    .preview-card-wide {
        grid-column: auto;
    }

    .final-cta-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .final-cta-action {
        min-width: 0;
        text-align: left;
    }

    .final-cta-action .button {
        width: 100%;
    }

    .faq-shell .section-heading {
        position: static;
    }

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

    .footer-grid nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-disclaimer {
        grid-column: auto;
    }

    .landing-footer {
        padding-bottom: calc(7rem + env(safe-area-inset-bottom));
    }

    .mobile-cta {
        position: fixed;
        z-index: 30;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
        border-top: 1px solid var(--landing-border);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 -0.6rem 1.8rem rgba(58, 6, 16, 0.09);
        backdrop-filter: blur(14px);
    }

    .mobile-cta .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-copy h1,
    .section-heading h2,
    .price-card h2,
    .final-cta-card h2 {
        overflow-wrap: anywhere;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 12.4vw, 3.3rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .product-collage {
        min-height: 22rem;
    }

    .product-shot::before {
        height: 1rem;
    }

    .product-shot-main {
        width: 96%;
    }

    .product-shot-session {
        width: 69%;
    }

    .product-shot-calendar {
        width: 58%;
    }

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

    .trust-grid p + p {
        border-top: 1px solid var(--landing-border);
        border-left: 0;
    }

    .landing-section {
        padding-block: 4.25rem;
    }

    .preview-section {
        padding-bottom: 3.5rem;
    }

    .pricing-section {
        padding-top: 0;
    }

    .comparison-card,
    .price-card,
    .steps-grid li {
        padding: 1.35rem;
    }

    .guarantee-banner {
        align-items: flex-start;
        flex-direction: column;
        padding: 1.1rem;
    }

    .preview-card figcaption {
        padding-inline: 1.2rem;
    }

    .final-cta-card {
        padding: 1.5rem 1.35rem;
    }
}

@media (max-width: 760px) and (max-height: 500px) {
    .landing-footer {
        padding-bottom: calc(4rem + env(safe-area-inset-bottom));
    }

    .mobile-cta {
        display: none;
    }
}

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

    .button,
    .skip-link {
        transition: none;
    }
}

@media print {
    .landing-header,
    .mobile-cta {
        display: none !important;
    }
}
