.mlc-product,
.mlc-page .lightbox,
.mlc-page .back-to-top {
    --bg-body: #f8f9fb;
    --bg-surface: #ffffff;
    --bg-surface-hover: #f1f5fb;
    --primary: #9a5b20;
    --primary-hover: #7d4817;
    --accent: #3D8585;
    --text-main: #1c2333;
    --text-muted: #4a5568;
    --border: #e2e8f0;
    --gradient-hero: linear-gradient(135deg, rgba(154, 91, 32, 0.12) 0%, rgba(248, 249, 251, 0.65) 100%);
    --hero-grid-line: rgba(28, 35, 51, 0.06);
    --problem-bg: #f0f4f9;
    --btn-glow: rgba(154, 91, 32, 0.3);
    --feature-icon-bg: rgba(154, 91, 32, 0.1);
    --color-danger: #c44848;
    --color-success: #3a8a5c;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.mlc-product {
    background-color: var(--bg-body);
    color: var(--text-main);
}

.mlc-product > #faq,
.mlc-product > .final-cta {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.mlc-product {
    margin: 0;
    padding: 0;
}

.mlc-product :where(h1, h2, h3, h4, p, ul, ol, figure) {
    margin: 0;
    padding: 0;
}

.mlc-product .container {
    margin-inline: auto;
}

.mlc-product a { text-decoration: none; color: inherit; transition: var(--transition); }
.mlc-product ul { list-style: none; }
.mlc-product img,
.mlc-page .lightbox img { border-radius: var(--radius-md); }

.mlc-product [id] {
    scroll-margin-top: 80px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

.mlc-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.mlc-product .mlc-button--primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px var(--btn-glow);
}

.mlc-button--primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--btn-glow);
}

.mlc-button--outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.mlc-button--outline:hover {
    border-color: var(--text-main);
    background-color: var(--bg-surface-hover);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.hero {
    padding: 5.75rem 0 1.25rem 0;
    background:
        linear-gradient(110deg, rgba(212,133,59,0.14) 0%, rgba(15,17,21,0) 34%),
        var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(var(--hero-grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--hero-grid-line) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    animation: heroGridDrift 22s linear infinite;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 36%;
    background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--problem-bg) 92%, transparent) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero > .container {
    position: relative;
    z-index: 70;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 7fr);
    gap: clamp(2rem, 4vw, 3.6rem);
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.35rem, 4.8vw, 4.05rem);
    line-height: 1.02;
    margin-bottom: 1.25rem;
    letter-spacing: 0;
    max-width: 720px;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 1.55rem;
    max-width: 540px;
}

.hero-text .product-definition {
    color: var(--text-main);
    font-weight: 650;
    margin-bottom: 0.75rem;
}

.hero-text .hero-subtitle {
    font-size: 1rem;
}

.trial-details {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

.trial-details--center {
    text-align: center;
}

.product-nav {
    background: var(--bg-surface);
    border-block: 1px solid var(--border);
}

.product-nav__links {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    overflow-x: auto;
    padding-block: 0.5rem;
    scrollbar-width: thin;
}

.product-nav__links a {
    align-items: center;
    border-radius: var(--radius-md);
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 650;
    min-height: 44px;
    padding: 0.5rem 0.85rem;
}

.product-nav__links a:hover {
    background: var(--bg-surface-hover);
    color: var(--primary);
}

.release-summary {
    background: var(--problem-bg);
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.release-summary__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.release-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.25rem);
}

.release-card--current {
    border-color: color-mix(in srgb, var(--primary) 60%, var(--border));
}

.release-card__eyebrow {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.release-card h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.release-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.release-card p:last-child {
    color: var(--text-muted);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badges {
    margin-top: 1.35rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.trust-chip {
    border: 1px solid var(--accent);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
}

.hero-proof-strip {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 680px;
}

.hero-proof-card {
    min-height: 74px;
    padding: 0.72rem;
    border: 1px solid color-mix(in srgb, var(--border) 82%, var(--accent));
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--bg-surface) 86%, transparent);
    box-shadow: 0 14px 35px rgba(0,0,0,0.22);
    transition: var(--transition);
}

.hero-proof-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.hero-proof-card strong,
.hero-proof-card span {
    display: block;
}

.hero-proof-card strong {
    margin-bottom: 0.35rem;
    color: var(--text-main);
    font-size: 0.88rem;
}

.hero-proof-card span {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.problem-section {
    padding: 6rem 0;
    background: var(--problem-bg);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.problem-title {
    margin-bottom: 1rem;
}

.problem-list li {
    margin-bottom: 0.9rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.problem-list-danger li::before,
.problem-list-success li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.problem-list-danger li::before {
    content: "x";
    color: var(--color-danger);
}

.problem-list-success li::before {
    content: "+";
    color: var(--color-success);
    font-size: 0.8rem;
}

.deep-dive-grid {
    display: grid;
    gap: 2rem;
}

.deep-dive-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    overflow: hidden;
}

.deep-dive-row.reverse .deep-dive-media {
    order: 2;
}

.deep-dive-text h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.deep-dive-text p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.pricing-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
}

.slideshow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: min(100%, 560px);
    margin: 0 auto;
}

.slideshow img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--feature-icon-bg);
    color: #7d4817;
    border: 1px solid var(--primary);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.faq-section {
    max-width: 900px;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--primary);
    font-size: 1.25rem;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.46s ease;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-item p {
    color: var(--text-muted);
    margin: 0;
    padding: 0 1.25rem 1.15rem 1.25rem;
}

.final-cta .section-subtitle {
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-visual-glow {
    position: absolute;
    inset: -5% -4% 26% 4%;
    background:
        linear-gradient(135deg, rgba(212,133,59,0.26), transparent 42%),
        linear-gradient(315deg, rgba(91,164,164,0.26), transparent 45%);
    filter: blur(34px);
    opacity: 0.86;
    transform: skewY(-7deg);
    pointer-events: none;
}

.hero-screen {
    position: relative;
    z-index: 2;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--border) 70%, var(--accent));
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    box-shadow: 0 32px 70px rgba(0,0,0,0.46);
    transform: none;
    transform-origin: center;
    animation: none;
    pointer-events: none;
}

.hero-window-bar {
    display: flex;
    align-items: center;
    gap: 0.46rem;
    min-height: 34px;
    padding: 0 0.9rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.78rem;
    background: color-mix(in srgb, var(--bg-surface) 78%, #000);
}

.hero-window-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border);
}

.hero-window-bar span:nth-child(1) { background: #e06060; }
.hero-window-bar span:nth-child(2) { background: #d8a64d; }
.hero-window-bar span:nth-child(3) { background: #5bb88a; }

.hero-window-bar strong {
    margin-left: 0.35rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-screen img,
.hero-floating-card img {
    width: 100%;
    display: block;
}

.hero-screen img {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    appearance: none;
    position: relative;
    z-index: 6;
    width: auto;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    padding: 0.72rem;
    border: 1px solid color-mix(in srgb, var(--border) 70%, var(--accent));
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--bg-surface) 92%, transparent);
    box-shadow: 0 22px 42px rgba(0,0,0,0.42);
    backdrop-filter: blur(12px);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
    will-change: transform;
}

.hero-floating-card:hover,
.hero-floating-card:focus-visible {
    border-color: var(--accent);
    box-shadow: 0 28px 54px rgba(0,0,0,0.5);
    filter: saturate(1.08);
}

.hero-floating-card:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--accent) 78%, white);
    outline-offset: 4px;
}

.hero-floating-card:disabled {
    color: inherit;
}

.hero-screen.is-swap-hidden,
.hero-floating-card.is-swap-hidden {
    opacity: 0;
}

.hero-floating-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.hero-floating-card picture {
    display: block;
}

.hero-floating-card strong,
.hero-floating-card span {
    display: block;
}

.hero-floating-card strong {
    color: var(--text-main);
    font-size: 0.88rem;
    line-height: 1.25;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hero-floating-card span {
    color: var(--text-muted);
    font-size: 0.76rem;
    line-height: 1.35;
    margin-top: 0.18rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hero-floating-card--dialog {
    animation: none;
}

.hero-floating-card--schedule {
    animation: none;
}

.hero-floating-card--dialog,
.hero-floating-card--schedule {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
}

.hero-morph-layer {
    position: fixed;
    inset: 0;
    z-index: 60;
    pointer-events: none;
}

.hero-morph-shell,
.hero-morph-image,
.hero-morph-title,
.hero-morph-summary {
    position: absolute;
    box-sizing: border-box;
    will-change: top, left, width, height, opacity, border-radius, filter;
}

.hero-morph-shell {
    border: 1px solid color-mix(in srgb, var(--border) 70%, var(--accent));
    background: color-mix(in srgb, var(--bg-surface) 94%, transparent);
    box-shadow: 0 28px 62px rgba(0,0,0,0.48);
    backdrop-filter: blur(12px);
}

.hero-morph-shell--outgoing {
    z-index: 1;
}

.hero-morph-shell--incoming {
    z-index: 4;
}

.hero-morph-image {
    z-index: 5;
    display: block;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

.hero-morph-image--outgoing {
    z-index: 2;
}

.hero-morph-title {
    z-index: 6;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.hero-morph-title--outgoing {
    z-index: 3;
}

.hero-morph-summary {
    z-index: 6;
    color: var(--text-muted);
    line-height: 1.35;
    overflow: hidden;
}

.hero-badge {
    position: absolute;
    right: clamp(1rem, 2.4vw, 2rem);
    top: clamp(7.25rem, 10vw, 9.5rem);
    z-index: 90;
    background: var(--bg-surface);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes heroScreenFloat {
    0%, 100% { transform: rotateX(5deg) rotateY(-8deg) rotateZ(1deg) translateY(0); }
    50% { transform: rotateX(4deg) rotateY(-5deg) rotateZ(0.5deg) translateY(-10px); }
}

@keyframes floatCardA {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(8px, -13px, 0); }
}

@keyframes floatCardB {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-10px, 12px, 0); }
}

@keyframes heroGridDrift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 80px 80px, 80px 80px; }
}

.badge-icon {
    width: 40px; height: 40px;
    background: var(--feature-icon-bg);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-title {
    font-weight: 700;
    color: var(--text-main);
}

.badge-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-actions--center {
    justify-content: center;
}

.video-showcase {
    margin-top: 4rem;
}

.video-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-surface);
}

.video-wrapper img {
    border-radius: 0;
}

.video-section {
    position: relative;
    background:
        linear-gradient(180deg, var(--bg-body) 0%, var(--problem-bg) 100%);
    overflow: hidden;
}

.video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(91,164,164,0.1) 48%, transparent 100%),
        linear-gradient(var(--hero-grid-line) 1px, transparent 1px);
    background-size: 100% 100%, 100% 52px;
    pointer-events: none;
}

.video-section .container {
    position: relative;
    z-index: 1;
}

.video-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.video-section-header .section-subtitle {
    margin: 0;
}

.video-channel-link {
    flex: 0 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 1.4rem;
    align-items: stretch;
}

.featured-video,
.video-card {
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg-surface) 92%, transparent);
    box-shadow: 0 20px 46px rgba(0,0,0,0.22);
}

.featured-video {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #05070a;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-screen picture {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
}

.video-facade {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 0;
    border: 0;
    background: #05070a;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
}

.video-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.video-facade span {
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 72px;
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    transform: translate(-50%, -50%);
}

.featured-video-copy {
    padding: 1.4rem;
}

.featured-video-copy h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    line-height: 1.15;
    margin: 0.3rem 0 0.65rem;
}

.featured-video-copy p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.video-date {
    display: inline-block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.video-card-list {
    display: grid;
    gap: 0.9rem;
}

.video-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 0.7rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 16 / 10;
    background: #05070a;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212,133,59,0.92);
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.play-icon::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid #fff;
}

.video-card h3 {
    font-size: 1rem;
    line-height: 1.2;
    margin: 0.18rem 0 0.32rem;
}

.video-card p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.4;
}

.features { padding: 6rem 0; background-color: var(--bg-body); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-surface-hover);
    border-color: var(--primary);
}

.feature-icon {
    width: 50px; height: 50px;
    background: var(--feature-icon-bg);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

.workflow { padding: 6rem 0; background-color: var(--bg-surface); }

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    position: relative;
    padding-top: 1rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: #7a8798;
    position: absolute;
    top: -2rem;
    left: 0;
    z-index: 0;
    line-height: 1;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 { margin-bottom: 0.75rem; color: var(--primary); }
.step-content p { color: var(--text-muted); }

.showcase { padding: 6rem 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    width: 100%;
    padding: 0;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: inherit;
    font: inherit;
    text-align: left;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 100%; }
.gallery-item:nth-child(2) { grid-column: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay { opacity: 1; }

@media (hover: none) {
    .gallery-overlay {
        opacity: 1;
    }
}

.gallery-title {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-description {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
}

.lightbox.is-open {
    visibility: visible;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    z-index: 1;
}

.lightbox.is-open .lightbox-backdrop {
    background: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.is-open .lightbox-content {
    opacity: 1;
}

.lightbox-image {
    max-width: 90vw;
    max-height: calc(88vh - 3rem);
    object-fit: contain;
    border-radius: var(--radius-md);
    display: block;
    opacity: 1;
    transition: opacity 0.18s ease;
}

.lightbox-caption {
    margin: 0.75rem 0 0;
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    text-align: center;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    opacity: 0;
}

.lightbox.is-open .lightbox-close {
    opacity: 1;
    transition: opacity 0.3s ease 0.3s, background 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    opacity: 0;
}

.lightbox.is-open .lightbox-nav {
    opacity: 1;
    transition: opacity 0.3s ease 0.3s, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.lightbox-prev {
    left: 1.25rem;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) translateX(-2px);
}

.lightbox-next {
    right: 1.25rem;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) translateX(2px);
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
    opacity: 0;
}

.lightbox.is-open .lightbox-counter {
    opacity: 1;
    transition: opacity 0.3s ease 0.3s;
}

@media (max-width: 768px) {
    .lightbox-prev { left: 0.75rem; }
    .lightbox-next { right: 0.75rem; }
}

@media (max-width: 480px) {
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}

.pricing { padding: 6rem 0; background-color: var(--bg-surface); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--btn-glow);
    z-index: 2;
}

.price-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.price { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.price-card__microcopy {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 0.75rem;
    text-align: center;
}

.price-features { margin-bottom: 2rem; flex-grow: 1; }
.price-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.check-icon { color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; }

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top:not([hidden]) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--bg-surface-hover);
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-image { min-height: 0; max-width: 860px; margin: 0 auto; }
    .hero-text p { margin: 0 auto 2rem auto; }
    .hero-proof-strip { margin-left: auto; margin-right: auto; }
    .hero-badge { right: 1rem; top: 1rem; width: max-content; animation: none; }
    .hero-floating-card--dialog,
    .hero-floating-card--schedule { left: auto; right: auto; top: auto; bottom: auto; }
    .trust-badges { justify-content: center; }
    .problem-grid { grid-template-columns: 1fr; }
    .deep-dive-row { grid-template-columns: 1fr; }
    .deep-dive-row.reverse .deep-dive-media { order: 0; }
    .video-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-column: span 2; height: 300px; }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .price-card.featured { transform: none; }
}

@media (max-width: 768px) {
    .release-summary__grid { grid-template-columns: 1fr; }
    .hero-proof-strip { display: none; }
    .hero-screen { transform: none; animation: none; }
    .hero-image {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-floating-card {
        position: relative;
        width: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        animation: none;
    }
    .hero-badge {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        justify-content: center;
        margin: 0.8rem auto 0;
    }
    .video-section-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .video-channel-link {
        width: 100%;
        text-align: center;
    }
    .video-card {
        grid-template-columns: 120px minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .hero { padding: 5.25rem 0 2rem 0; min-height: auto; }
    .section-title { font-size: 1.75rem; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-container { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .deep-dive-row { padding: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .mlc-button { text-align: center; }
    .trust-badges { gap: 0.4rem; }
    .trust-chip { font-size: 0.75rem; padding: 0.25rem 0.5rem; }
    .hero-floating-card { grid-template-columns: 74px minmax(0, 1fr); padding: 0.6rem; }
    .hero-floating-card strong { font-size: 0.8rem; }
    .hero-floating-card span { font-size: 0.72rem; }
    .hero-badge { padding: 0.85rem 1rem; }
    .video-card { grid-template-columns: 1fr; }
    .video-thumb { aspect-ratio: 16 / 9; }
}

@media (min-width: 992px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero-screen,
    .hero-floating-card,
    .hero-badge {
        animation: none !important;
    }

    .gallery-item img,
    .gallery-overlay,
    .lightbox-backdrop,
    .lightbox-content,
    .lightbox-image,
    .lightbox-close,
    .lightbox-nav,
    .lightbox-counter {
        transition: none !important;
    }

}

.gsap-hidden {
    opacity: 1;
}

.motion-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.motion-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

html[data-theme="dark"] .mlc-product,
html[data-theme="dark"] .mlc-page .lightbox,
html[data-theme="dark"] .mlc-page .back-to-top {
    --bg-body: #10171f;
    --bg-surface: #18222c;
    --bg-surface-hover: #22303d;
    --primary: #d19155;
    --primary-hover: #e1a56d;
    --accent: #69b6b4;
    --text-main: #edf2f7;
    --text-muted: #b4c0cc;
    --border: #43515f;
    --gradient-hero: linear-gradient(135deg, rgba(209, 145, 85, .16) 0%, rgba(16, 23, 31, .72) 100%);
    --hero-grid-line: rgba(237, 242, 247, .07);
    --problem-bg: #141e28;
    --btn-glow: rgba(209, 145, 85, .25);
    --feature-icon-bg: rgba(209, 145, 85, .14);
}

html[data-theme="dark"] .popular-badge {
    color: #f0c49d;
}

html[data-theme="dark"] .mlc-product .mlc-button--primary {
    background-color: #9a571e;
}

html[data-theme="dark"] .mlc-product .mlc-button--primary:hover {
    background-color: #8a4c18;
}

@media (prefers-reduced-motion: reduce) {
    .motion-reveal,
    .motion-reveal.is-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
