/* PlanTaskIt landing — playful palette aligned with logo */

.landing-page {
    --landing-teal: #28535d;
    --landing-teal-dark: #1e3f47;
    --landing-coral: #ff7051;
    --landing-coral-dark: #e85a3c;
    --landing-gold: #ffc13b;
    --landing-gold-dark: #e6a800;
    --landing-sky: #5d9cec;
    --landing-mint: #3db8ad;
    --landing-cream: #fff8f0;
    --landing-warm-gray: #5c6b73;
    --landing-navy: #1a2f44;
    --landing-content-max: 1680px;
    --landing-content-pad: clamp(1rem, 3vw, 2.5rem);

    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.landing-page__inner {
    width: 100%;
    max-width: var(--landing-content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--landing-content-pad);
    padding-right: var(--landing-content-pad);
}

/* —— Hero —— */

.landing-hero {
    background: linear-gradient(145deg, var(--landing-teal) 0%, #2d6368 45%, var(--landing-teal-dark) 100%);
    color: #fff;
    padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(3.5rem, 6vw, 4.5rem);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.landing-hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.landing-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

.landing-hero__blob--coral {
    width: 280px;
    height: 280px;
    background: var(--landing-coral);
    top: -60px;
    right: 20%;
}

.landing-hero__blob--gold {
    width: 220px;
    height: 220px;
    background: var(--landing-gold);
    bottom: 10%;
    left: 15%;
}

.landing-hero__blob--blue {
    width: 180px;
    height: 180px;
    background: var(--landing-sky);
    top: 40%;
    right: -30px;
    opacity: 0.25;
}

.landing-hero__shell {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 2.5vw, 2rem);
    position: relative;
    z-index: 1;
}

.landing-hero__main {
    width: 100%;
}

.landing-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    min-width: 0;
}

.landing-hero__title-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.35rem, 1.5vw, 0.85rem);
    max-width: 100%;
    margin-bottom: 0.65rem;
}

.landing-hero__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
}

@media (min-width: 640px) {
    .landing-hero__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 992px) {
    .landing-hero__cards {
        gap: 1.25rem;
    }

    .landing-mock-card--coral {
        transform: translateY(-6px);
    }
}

.landing-hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3.5rem;
    background: var(--landing-cream);
    clip-path: ellipse(58% 100% at 50% 100%);
}

.landing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.landing-hero__title {
    font-size: clamp(1.85rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    white-space: nowrap;
    text-align: left;
}

@media (max-width: 767.98px) {
    .landing-hero__title-row {
        align-items: flex-start;
    }

    .landing-hero__title {
        white-space: normal;
        text-align: left;
        font-size: clamp(1.45rem, 6.5vw, 2.35rem);
    }

    .landing-hero__mascot {
        width: clamp(2.25rem, 11vw, 3.25rem);
        margin-top: 0.15em;
    }
}

@media (max-width: 399.98px) {
    .landing-hero__title-row {
        gap: 0.35rem;
    }

    .landing-hero__title {
        font-size: clamp(1.25rem, 7.5vw, 1.65rem);
        line-height: 1.2;
    }

    .landing-hero__mascot {
        width: 2rem;
        margin-top: 0.1em;
    }
}

.landing-hero__title-accent {
    display: inline;
    background: linear-gradient(90deg, var(--landing-gold) 0%, #ffe082 50%, var(--landing-coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-hero__tagline {
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 600;
    color: var(--landing-gold);
    margin-bottom: 0.75rem;
    width: 100%;
}

.landing-hero__subtitle {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.65;
    opacity: 0.92;
    width: 100%;
    max-width: none;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    text-wrap: balance;
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    justify-content: center;
}

.landing-hero__trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    font-size: 0.88rem;
    opacity: 0.9;
    justify-content: center;
}

.landing-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.landing-hero__trust i {
    color: var(--landing-gold);
}

.landing-hero__mascot {
    width: clamp(2.75rem, 5.5vw, 4.25rem);
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2));
    animation: landing-mascot-float 4s ease-in-out infinite;
}

@keyframes landing-mascot-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.landing-mock-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-radius: 1rem;
    background: #fff;
    padding: 1rem 1.1rem;
    box-shadow: 0 0.5rem 1.25rem rgba(26, 47, 68, 0.18);
    border: 3px solid var(--landing-navy);
    color: var(--landing-navy);
    min-width: 0;
}

.landing-mock-card__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
}

.landing-mock-card--teal .landing-mock-card__icon { background: var(--landing-mint); }
.landing-mock-card--coral .landing-mock-card__icon { background: var(--landing-coral); }
.landing-mock-card--gold .landing-mock-card__icon { background: var(--landing-gold); color: var(--landing-navy); }

.landing-mock-card__header {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.landing-mock-card__body {
    font-size: 0.8rem;
    color: var(--landing-warm-gray);
}

.landing-mock-card__body strong {
    color: var(--landing-teal);
}

/* —— Buttons —— */

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 3px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.landing-btn--warm {
    background: var(--landing-coral);
    color: #fff;
    border-color: var(--landing-navy);
    box-shadow: 0 4px 0 var(--landing-navy);
}

.landing-btn--warm:hover {
    background: var(--landing-coral-dark);
    color: #fff;
    box-shadow: 0 6px 0 var(--landing-navy), 0 8px 20px rgba(255, 112, 81, 0.35);
}

.landing-btn--teal {
    background: var(--landing-teal);
    color: #fff;
    border-color: var(--landing-teal-dark);
    box-shadow: 0 3px 0 var(--landing-teal-dark);
}

.landing-btn--teal:hover {
    background: var(--landing-teal-dark);
    color: #fff;
}

.landing-btn--primary {
    background: #fff;
    color: var(--landing-teal);
    border: 2px solid #fff;
    border-radius: 999px;
}

.landing-btn--primary:hover {
    background: var(--landing-cream);
    color: var(--landing-teal-dark);
}

.landing-btn--outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    box-shadow: none;
}

.landing-btn--outline:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: #fff;
    box-shadow: none;
}

/* —— Sections —— */

.landing-section {
    padding: 3.5rem 0;
    width: 100%;
    background: #fff;
}

.landing-section--warm {
    background: var(--landing-cream);
}

.landing-section--after-hero {
    padding-top: 2.5rem;
    margin-top: -0.5rem;
}

.landing-section--muted {
    background: linear-gradient(180deg, #f0f9f7 0%, #e8f4f2 100%);
}

.landing-section__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.landing-section__mascot {
    filter: drop-shadow(0 4px 8px rgba(40, 83, 93, 0.15));
}

.landing-section__title {
    color: var(--landing-teal);
    font-weight: 800;
    font-size: clamp(1.6rem, 3.5vw, 2.15rem);
    margin-bottom: 0.5rem;
    text-align: center;
}

.landing-section__lead {
    text-align: center;
    color: var(--landing-warm-gray);
    max-width: 38rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-size: 1.02rem;
}

/* —— Steps —— */

.landing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.landing-step {
    position: relative;
    text-align: center;
    padding: 2rem 1.35rem 1.5rem;
    border: 3px solid var(--landing-navy);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 6px 0 rgba(26, 47, 68, 0.12);
    transition: transform 0.2s ease;
}

.landing-step:hover {
    transform: translateY(-4px);
}

.landing-step__number {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--landing-navy);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-step--assign { border-top: 5px solid var(--landing-coral); }
.landing-step--earn { border-top: 5px solid var(--landing-gold); }
.landing-step--redeem { border-top: 5px solid var(--landing-sky); }

.landing-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    border: 2px solid var(--landing-navy);
}

.landing-step__icon--assign {
    background: #ffe8e2;
    color: var(--landing-coral);
}

.landing-step__icon--earn {
    background: #fff4d6;
    color: var(--landing-gold-dark);
}

.landing-step__icon--redeem {
    background: #e8f3ff;
    color: var(--landing-sky);
}

.landing-step__title {
    font-weight: 800;
    color: var(--landing-teal);
    margin-bottom: 0.45rem;
    font-size: 1.1rem;
}

.landing-step__text {
    font-size: 0.92rem;
    color: var(--landing-warm-gray);
    margin: 0;
    line-height: 1.55;
}

/* —— Features —— */

.landing-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .landing-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .landing-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.landing-feature {
    display: flex;
    gap: 0.9rem;
    padding: 1.15rem 1.2rem;
    border: 2px solid rgba(40, 83, 93, 0.12);
    border-radius: 1rem;
    background: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem rgba(40, 83, 93, 0.1);
}

.landing-feature__icon-wrap {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-feature--teal .landing-feature__icon-wrap { background: #e0f2f1; color: var(--landing-teal); }
.landing-feature--blue .landing-feature__icon-wrap { background: #e3f2fd; color: var(--landing-sky); }
.landing-feature--coral .landing-feature__icon-wrap { background: #ffebe6; color: var(--landing-coral); }
.landing-feature--gold .landing-feature__icon-wrap { background: #fff8e1; color: var(--landing-gold-dark); }

.landing-feature__icon {
    font-size: 1.2rem;
}

.landing-feature__title {
    font-weight: 700;
    color: var(--landing-teal);
    font-size: 0.98rem;
    margin-bottom: 0.25rem;
}

.landing-feature__text {
    font-size: 0.86rem;
    color: var(--landing-warm-gray);
    margin: 0;
    line-height: 1.45;
}

/* —— Pricing —— */

.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.landing-pricing-card {
    margin: 0;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 3px solid var(--landing-navy);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 6px 0 rgba(26, 47, 68, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.landing-pricing-card:hover {
    transform: translateY(-3px);
}

.landing-pricing-card--featured {
    box-shadow: 0 8px 0 rgba(255, 112, 81, 0.25), 0 12px 28px rgba(40, 83, 93, 0.12);
    border-color: var(--landing-coral);
}

.landing-pricing-card__badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: var(--landing-gold);
    color: var(--landing-navy);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 2px solid var(--landing-navy);
    z-index: 1;
}

.landing-pricing-card__header {
    color: #fff;
    padding: 1.35rem 1.5rem;
    text-align: center;
}

.landing-pricing-card__header--teal {
    background: linear-gradient(135deg, var(--landing-teal) 0%, var(--landing-teal-dark) 100%);
}

.landing-pricing-card__header--coral {
    background: linear-gradient(135deg, var(--landing-coral) 0%, var(--landing-coral-dark) 100%);
}

.landing-pricing-card__header--gold {
    background: linear-gradient(135deg, var(--landing-gold) 0%, var(--landing-gold-dark) 100%);
    color: var(--landing-navy);
}

.landing-pricing-card__name {
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.landing-pricing-card__price {
    font-size: 2.1rem;
    font-weight: 800;
}

.landing-pricing-card__price small {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

.landing-pricing-card__trial {
    font-size: 0.88rem;
    opacity: 0.92;
    margin-top: 0.35rem;
}

.landing-pricing-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.landing-pricing-card__body .landing-btn {
    margin-top: auto;
}

.landing-pricing-footnote {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--landing-warm-gray);
}

.landing-pricing-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.landing-pricing-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.92rem;
    color: #343a40;
}

.landing-pricing-card__list li i {
    color: var(--landing-mint);
    margin-top: 0.15rem;
}

/* —— CTA band —— */

.landing-cta-band {
    background: linear-gradient(135deg, var(--landing-teal) 0%, #2f6860 50%, var(--landing-teal-dark) 100%);
    color: #fff;
    padding: 3rem 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.landing-cta-band::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--landing-gold);
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.2;
    top: -40px;
    right: 15%;
}

.landing-cta-band__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .landing-cta-band__inner {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
    }
}

.landing-cta-band__mascot {
    flex-shrink: 0;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.2));
    animation: landing-mascot-float 4s ease-in-out infinite;
}

.landing-cta-band__title {
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    margin-bottom: 0.5rem;
}

.landing-cta-band__text {
    opacity: 0.92;
    margin-bottom: 1.25rem;
    max-width: none;
    line-height: 1.55;
}

/* —— Responsive —— */

@media (max-width: 575.98px) {
    .landing-hero {
        padding-bottom: 3.5rem;
    }

    .landing-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .landing-hero__actions .landing-btn {
        width: 100%;
    }

    .landing-hero__trust {
        flex-direction: column;
        gap: 0.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero__mascot,
    .landing-cta-band__mascot {
        animation: none;
    }
}
