@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
    --landing-ink: #0f172a;
    --landing-muted: #475569;
    --landing-border: #e2e8f0;
    --landing-indigo: #4f46e5;
    --landing-purple: #7c3aed;
    --landing-violet: #8b5cf6;
    --landing-pink: #db2777;
}

.landing-page {
    background: #ffffff;
    color: var(--landing-ink);
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    overflow-x: clip;
}

.landing-shell {
    position: relative;
    z-index: 2;
}

.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 52%, #fdf2f8 100%);
    padding: 5rem 0 4.5rem;
}

.landing-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    filter: blur(56px);
    pointer-events: none;
}

.landing-glow--one {
    top: -50%;
    left: -50%;
    background: linear-gradient(135deg, rgba(199, 210, 254, 0.38), rgba(221, 214, 254, 0.38));
    animation: landingSpinA 20s linear infinite;
}

.landing-glow--two {
    right: -50%;
    bottom: -50%;
    background: linear-gradient(135deg, rgba(233, 213, 255, 0.34), rgba(245, 208, 254, 0.34));
    animation: landingSpinB 25s linear infinite;
}

.landing-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.landing-offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #475569;
    border-radius: 9999px;
    padding: 0.25rem 0.7rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.002em;
    max-width: min(100%, 36rem);
    text-align: center;
}

.landing-title {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.4rem;
    color: #0f172a;
}

.landing-gradient-text {
    background: linear-gradient(90deg, var(--landing-indigo), var(--landing-purple), var(--landing-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-subtitle {
    max-width: 48rem;
    margin: 0 auto 2.8rem;
    color: #475569;
    font-size: 1.22rem;
    line-height: 1.7;
}

.landing-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.landing-button-primary,
.landing-button-secondary,
.landing-cta-button,
.landing-pricing-cta {
    border-radius: 9999px !important;
    padding: 0.8rem 1.55rem !important;
}

.landing-button-primary {
    color: #fff !important;
    border: 0 !important;
    background: linear-gradient(90deg, var(--landing-indigo), var(--landing-purple)) !important;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.34);
}

.landing-button-primary:hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.42);
}

.landing-button-secondary {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 2px solid #cbd5e1 !important;
}

.landing-button-secondary:hover {
    border-color: var(--landing-indigo) !important;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.16);
}

.landing-hero-image-wrap {
    position: relative;
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--landing-border);
    box-shadow: 0 30px 54px rgba(15, 23, 42, 0.16);
}

.landing-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

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

.landing-section {
    padding: 6rem 0;
}

.landing-section-alt {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.landing-product-demo.landing-section-alt {
    background: #ffffff;
}

.landing-section-header {
    margin-bottom: 4rem;
}

.landing-section-header-center {
    text-align: center;
}

.landing-section-title {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 3.05rem);
    margin-bottom: 0.95rem;
    line-height: 1.16;
}

.landing-section-subtitle {
    max-width: 48rem;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.18rem;
    line-height: 1.6;
}

.landing-feature-card {
    position: relative;
    border: 2px solid var(--landing-border);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
    overflow: hidden;
    height: 100%;
}

.landing-feature-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(79, 70, 229, 0.14);
}

.landing-feature-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.08));
    opacity: 0;
    transition: opacity 220ms ease;
}

.landing-feature-card:hover .landing-feature-card-overlay {
    opacity: 1;
}

.landing-feature-content {
    position: relative;
}

.landing-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--landing-indigo), var(--landing-purple));
}

.landing-feature-title {
    font-family: 'Sora', 'Manrope', sans-serif;
    margin-bottom: 0.45rem;
    color: #0f172a;
}

.landing-feature-copy {
    color: #64748b;
    line-height: 1.55;
}

.landing-feature-image {
    width: 100%;
    margin-top: 0.85rem;
    border-radius: 0.7rem;
    border: 1px solid #e2e8f0;
    object-fit: cover;
    aspect-ratio: 7 / 4;
}

.landing-step-grid {
    margin-bottom: 4rem;
}

.landing-step-wrap {
    position: relative;
}

.landing-step-card {
    border: 2px solid #c7d2fe;
    border-radius: 1rem;
    background: linear-gradient(140deg, #eef2ff 0%, #f5f3ff 100%);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.08);
}

.landing-step-card-body {
    text-align: center;
}

.landing-step-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--landing-indigo), var(--landing-purple));
}

.landing-step-number {
    display: block;
    text-align: center;
    background: transparent;
    color: #4f46e5;
    padding: 0;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.landing-step-title {
    font-family: 'Sora', 'Manrope', sans-serif;
    margin-bottom: 0.42rem;
    color: #0f172a;
}

.landing-step-copy {
    color: #64748b;
}

.landing-step-connector {
    display: none;
}

.landing-benefits-block {
    position: relative;
}

.landing-benefits-title {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    margin-bottom: 1.3rem;
}

.landing-benefits-list {
    display: grid;
    gap: 1rem;
}

.landing-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    color: #334155;
}

.landing-benefit-check {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    margin-top: 0.12rem;
    flex-shrink: 0;
}

.landing-product-image-glow {
    display: none;
}

.landing-product-image-wrap {
    position: relative;
    z-index: 1;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--landing-border);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
}

.landing-product-image {
    width: 100%;
    display: block;
    max-height: 24rem;
    object-fit: cover;
}

.landing-recording-card {
    border: 2px solid var(--landing-border);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.landing-recording-card:hover {
    border-color: #6366f1;
    box-shadow: 0 14px 26px rgba(79, 70, 229, 0.14);
}

.landing-recording-head {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.landing-recording-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--landing-indigo), var(--landing-purple));
    flex-shrink: 0;
}

.landing-recording-title {
    margin-bottom: 0.35rem;
    color: #0f172a;
}

.landing-recording-desc {
    color: #64748b;
    line-height: 1.55;
}

.landing-recording-player {
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid var(--landing-border);
}

.landing-recording-audio {
    width: 100%;
    display: block;
    accent-color: #5b50e6;
}

.landing-pricing-wrap {
    max-width: 62rem;
    margin: 0 auto;
}

.landing-pricing-card {
    position: relative;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 30px 56px rgba(79, 70, 229, 0.36);
    color: #ffffff;
    overflow: visible;
}

.landing-pricing-badge {
    position: absolute;
    top: -1.05rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #ffffff;
    color: #4f46e5;
    border-radius: 9999px;
    padding: 0.5rem 1.15rem;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.landing-pricing-top {
    text-align: center;
    margin-top: 1.45rem;
    margin-bottom: 1.35rem;
}

.landing-pricing-inner {
    padding: 2.2rem 2.85rem 1.65rem;
}

.landing-pricing-breakdown {
    max-width: 33rem;
    margin: 0 auto 0.6rem;
    border-radius: 1rem;
    padding: 1.8rem 1.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(6px);
}

.landing-pricing-breakdown-title {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.landing-pricing-breakdown-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.landing-pricing-breakdown-note {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
}

.landing-pricing-info-btn {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.34) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-radius: 0.72rem !important;
    text-transform: none !important;
    font-weight: 700 !important;
    min-width: 168px;
    min-height: 44px;
    padding: 0.45rem 1.1rem !important;
    font-size: 1.03rem !important;
    border-width: 1px !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.landing-pricing-info-btn:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.landing-pricing-cta {
    width: 100%;
    background: #ffffff !important;
    color: #4f46e5 !important;
    border: 0 !important;
    margin-bottom: 1.4rem;
    min-height: 58px;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 1rem !important;
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
}

.landing-pricing-included {
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.landing-pricing-features {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1rem;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.landing-pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    justify-content: center;
    width: fit-content;
}

.landing-pricing-feature-check {
    width: 1.22rem;
    height: 1.22rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    margin-top: 0.12rem;
    flex-shrink: 0;
}

.landing-pricing-feature-copy {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
}

.landing-pricing-footnote-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 1.05rem;
    display: grid;
    gap: 0.28rem;
    justify-items: center;
    color: rgba(255, 255, 255, 0.88);
}

.landing-pricing-footnote {
    color: rgba(255, 255, 255, 0.88);
}

.pricing-info-dialog-content {
    color: #1f2937;
}

.pricing-info-dialog-content .mud-markdown {
    color: #1f2937;
}

.pricing-info-dialog-content .mud-markdown h1,
.pricing-info-dialog-content .mud-markdown h2,
.pricing-info-dialog-content .mud-markdown h3,
.pricing-info-dialog-content .mud-markdown p,
.pricing-info-dialog-content .mud-markdown li {
    color: #1f2937;
}

.landing-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #8b5cf6 100%);
    padding: 6rem 0;
}

.landing-cta-glow {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(46px);
    pointer-events: none;
}

.landing-cta-glow--one {
    top: 0;
    left: 25%;
    animation: landingPulseA 8s ease-in-out infinite;
}

.landing-cta-glow--two {
    bottom: 0;
    right: 25%;
    animation: landingPulseB 8s ease-in-out infinite;
}

.landing-cta-shell {
    position: relative;
    z-index: 2;
    text-align: center;
}

.landing-cta-title {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 4.8vw, 3.7rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.landing-cta-highlight {
    color: #fde047;
}

.landing-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.landing-cta-offer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    width: fit-content;
    margin: 0 auto 2rem;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 1.06rem;
    letter-spacing: 0.005em;
    max-width: min(100%, 34rem);
    text-align: center;
}

.landing-cta-offer-badge .mud-icon-root {
    color: rgba(255, 255, 255, 0.82);
}

.landing-cta-button {
    background: #ffffff !important;
    color: #4f46e5 !important;
    border: 0 !important;
    box-shadow: 0 16px 34px rgba(255, 255, 255, 0.28);
}

.landing-hero-content,
.landing-title,
.landing-subtitle,
.landing-title:focus,
.landing-subtitle:focus {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.landing-footer {
    background: #f8fafc;
    border-top: 1px solid var(--landing-border);
    padding: 3rem 0 1.4rem;
}

.landing-footer-grid {
    margin-bottom: 2rem;
}

.landing-footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.landing-footer-brand-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--landing-indigo), var(--landing-purple));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.landing-footer-brand-text {
    color: #0f172a;
    margin: 0;
}

.landing-footer-brand-copy {
    color: #64748b;
    margin-bottom: 0.85rem;
}

.landing-footer-socials {
    display: flex;
    gap: 0.5rem;
}

.landing-footer-social {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.5rem;
    background: #e2e8f0;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background-color 200ms ease, color 200ms ease;
}

.landing-footer-social:hover {
    background: var(--landing-indigo);
    color: #ffffff;
}

.landing-footer-heading {
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.landing-footer-links,
.landing-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.landing-footer-link {
    color: #64748b;
    text-decoration: none;
    transition: color 180ms ease;
}

.landing-footer-link:hover {
    color: #4f46e5;
}

.landing-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: #64748b;
}

.landing-footer-bottom {
    border-top: 1px solid var(--landing-border);
    padding-top: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #64748b;
}

.landing-footer-bottom-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

@keyframes landingSpinA {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(90deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes landingSpinB {
    0% {
        transform: scale(1.2) rotate(0deg);
    }

    50% {
        transform: scale(1) rotate(-90deg);
    }

    100% {
        transform: scale(1.2) rotate(0deg);
    }
}

@keyframes landingPulseA {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes landingPulseB {
    0% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@media (min-width: 1200px) {
    .landing-step-connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -0.75rem;
        width: 1.5rem;
        height: 2px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6);
        transform: translateY(-50%);
    }
}

@media (max-width: 959px) {
    .landing-hero {
        min-height: auto;
        padding-top: 4.3rem;
    }

    .landing-subtitle {
        font-size: 1.06rem;
    }

    .landing-section {
        padding: 4rem 0;
    }

    .landing-section-header {
        margin-bottom: 2.5rem;
    }

    .landing-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 599px) {
    .landing-title {
        font-size: clamp(2.15rem, 11vw, 2.8rem);
    }

    .landing-hero-actions {
        width: 100%;
    }

    .landing-button-primary,
    .landing-button-secondary,
    .landing-recording-cta .landing-button-primary {
        width: 100%;
    }

    .landing-pricing-inner {
        padding: 2rem 1rem 1.3rem;
    }

    .landing-pricing-breakdown {
        padding: 1.3rem 0.9rem 1rem;
    }

    .landing-pricing-breakdown-title {
        font-size: 2.2rem;
    }

    .landing-pricing-features {
        width: 100%;
        justify-items: stretch;
    }

    .landing-pricing-feature-item {
        width: 100%;
        justify-content: flex-start;
    }

    .landing-cta-title {
        font-size: clamp(1.95rem, 9vw, 2.6rem);
    }

    .landing-cta-subtitle {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-glow,
    .landing-cta-glow,
    .landing-feature-card,
    .landing-step-card,
    .landing-recording-card,
    .landing-recording-progress-fill {
        animation: none !important;
        transition: none !important;
    }
}
