body.landing-page {
    --brand-500: #14b8a6;
    --brand-600: #0d9488;
    --brand-accent: #10b981;
    --ink-900: #0f1419;
    --ink-700: #1f2937;
    --surface-0: #ffffff;
    --surface-50: #f9fafb;
    --surface-100: #f3f4f6;
    --text-strong: #0f1419;
    --text-body: #4b5563;
    --text-inverse: #f9fafb;
    --text-muted: #9ca3af;
    --gradient-brand: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
    background: var(--surface-0);
    color: var(--text-body);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    padding: 0;
}

.landing-page .navbar,
.landing-page footer,
.landing-page .btn,
.landing-page .form-control,
.landing-page h1,
.landing-page h2,
.landing-page p,
.landing-page li,
.landing-page a {
    font-family: inherit;
}

.landing-page .navbar {
    background: var(--ink-900) !important;
}

.landing-page .navbar .nav-link {
    font-weight: 500;
}

.landing-page .navbar .nav-link:hover,
.landing-page .navbar .nav-link:focus {
    color: rgba(249, 250, 251, 0.88);
}

.landing-page .navbar .nav-link.active {
    color: var(--text-inverse);
}

.landing-hero {
    background: var(--surface-0);
    padding: 0 0 3rem;
}

.landing-hero-panel {
    width: 100%;
    background:
        radial-gradient(circle at top left, rgba(52, 96, 255, 0.26), transparent 28rem),
        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.18), transparent 24rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
        var(--ink-900);
    box-shadow: 0 22px 50px rgba(15, 20, 25, 0.14);
    padding: 3.5rem 1.5rem 3rem;
}

.landing-hero-inner {
    max-width: 46rem;
    margin: 0 auto;
    text-align: center;
}

.landing-hero-title {
    max-width: 11ch;
    margin: 0 auto;
    color: var(--text-inverse);
    font-size: clamp(2.75rem, 8vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.landing-hero-subhead {
    max-width: 32ch;
    margin: 1rem auto 2rem;
    color: #d1d5db;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

.landing-search-container {
    max-width: 42rem;
}

.landing-search-input-wrap {
    position: relative;
}

.landing-page #searchbox {
    min-height: 4rem;
    padding: 18px 20px;
    border: 1px solid rgba(229, 231, 235, 0.7);
    border-radius: 12px;
    background: var(--surface-0);
    color: var(--text-strong);
    font-size: 1.05rem;
    box-shadow: 0 16px 40px rgba(15, 20, 25, 0.18);
    transition: border-color 0.16s ease, box-shadow 0.16s ease,
        transform 0.16s ease;
}

.landing-page #searchbox::placeholder {
    color: var(--text-muted);
}

.landing-page #searchbox:focus {
    border-color: var(--brand-500);
    box-shadow:
        0 0 0 4px rgba(20, 184, 166, 0.16),
        0 16px 40px rgba(15, 20, 25, 0.2);
}

.landing-search-shortcut {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    padding: 4px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: rgba(249, 250, 251, 0.94);
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.01em;
    pointer-events: none;
}

.landing-page #results {
    margin-top: 0.65rem;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 40px rgba(15, 20, 25, 0.18);
}

.landing-page .result {
    color: var(--text-strong);
    font-weight: 600;
    text-align: left;
}

.landing-page .result:hover {
    background: #f0fdfa;
    color: var(--brand-600);
}

.landing-hero-meta {
    margin-top: 1.5rem;
}

.landing-browse-link {
    color: var(--text-inverse);
    font-weight: 600;
    text-decoration-color: var(--brand-500);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.landing-browse-link:hover,
.landing-browse-link:focus {
    color: var(--text-inverse);
    text-decoration-color: var(--brand-accent);
}

.landing-credibility-line {
    max-width: 52ch;
    margin: 1.5rem auto 0;
    color: var(--text-muted);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.landing-features {
    background: var(--surface-0);
    padding: 3rem 0 1.5rem;
}

.landing-section-shell {
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 24px;
}

.landing-feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.landing-feature-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    align-items: flex-start;
}

.landing-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 1.75rem;
}

.landing-feature-icon--search {
    background: #e0f2fe;
    color: #0284c7;
}

.landing-feature-icon--similar {
    background: #ecfdf5;
    color: #10b981;
}

.landing-feature-icon--shortlist {
    background: #fef3c7;
    color: #d97706;
}

.landing-feature-copy h2 {
    margin: 0;
    color: var(--text-strong);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.25;
}

.landing-feature-copy p {
    margin: 8px 0 0;
    color: var(--text-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.landing-video-shell {
    margin-top: 3rem;
    padding-bottom: 5rem;
}

.landing-video-player {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: var(--ink-900);
    box-shadow: 0 8px 24px rgba(15, 20, 25, 0.08);
}

.landing-video-player.is-loaded {
    background: #000;
}

.landing-video-poster,
.landing-video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.landing-video-poster {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.landing-video-poster-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.landing-video-poster-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 20, 25, 0.06), rgba(15, 20, 25, 0.66)),
        linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(16, 185, 129, 0.22));
}

.landing-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.25rem;
    color: var(--text-inverse);
    text-align: left;
}

.landing-video-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(249, 250, 251, 0.14);
    color: var(--text-inverse);
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 24px rgba(15, 20, 25, 0.24);
}

.landing-video-play-text {
    max-width: 14ch;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.landing-video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.landing-video-caption {
    margin: 12px 0 0;
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
}

.landing-page #features {
    background: var(--surface-0) !important;
    padding-bottom: 4.5rem !important;
}

.landing-pricing-title {
    margin: 0;
    color: var(--text-strong);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.landing-page #features .card {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 20, 25, 0.06);
    overflow: hidden;
}

.landing-page .landing-pricing-card-premium {
    border-color: rgba(20, 184, 166, 0.28);
    box-shadow: 0 22px 44px rgba(13, 148, 136, 0.12);
}

.landing-page #features .card-body {
    padding: 1.75rem !important;
}

.landing-page #features .small.text-uppercase {
    color: #6b7280 !important;
    letter-spacing: 0.08em;
}

.landing-page #features .text-primary {
    color: var(--brand-600) !important;
}

.landing-page #features .btn {
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-weight: 600;
}

.landing-page .btn-primary {
    background: var(--gradient-brand);
    border-color: transparent;
    box-shadow: 0 16px 28px rgba(16, 185, 129, 0.18);
}

.landing-page .btn-primary:hover,
.landing-page .btn-primary:focus,
.landing-page .btn-primary:active {
    border-color: transparent;
    background: linear-gradient(135deg, #10b7a5 0%, #0fb47a 100%);
}

.landing-page .btn-outline-primary {
    color: var(--brand-600);
    border-color: rgba(20, 184, 166, 0.38);
    background: var(--surface-0);
}

.landing-page .btn-outline-primary:hover,
.landing-page .btn-outline-primary:focus,
.landing-page .btn-outline-primary:active {
    color: var(--brand-600);
    border-color: rgba(20, 184, 166, 0.5);
    background: #f0fdfa;
}

.landing-page footer {
    margin-top: 0;
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 24px));
}

@media (min-width: 768px) {
    .landing-hero {
        padding: 1.5rem 1.5rem 3rem;
    }

    .landing-hero-panel {
        max-width: 74rem;
        margin: 0 auto;
        border-radius: 24px;
        padding: 4.25rem 2.75rem 3.5rem;
    }

    .landing-hero-title {
        max-width: 13ch;
        font-size: clamp(3.4rem, 7vw, 4.5rem);
    }

    .landing-page #searchbox {
        padding-right: 5.75rem;
    }

    .landing-video-play {
        padding: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .landing-search-shortcut {
        display: none;
    }

    .landing-page #features .pricing-mobile-grid {
        row-gap: 1rem;
    }

    .landing-page #features .pricing-mobile-grid > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 430px) {
    .landing-hero-panel {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .landing-hero-title {
        font-size: clamp(2.65rem, 11vw, 3rem);
    }

    .landing-feature-row {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 16px;
    }

    .landing-feature-icon {
        width: 52px;
        height: 52px;
        font-size: 1.55rem;
    }

    .landing-video-play-icon {
        width: 58px;
        height: 58px;
        font-size: 1.6rem;
    }
}
