:root {
    --color-primary: #4f5ebd;
    --color-primary-light: #6c7ae0;
    --color-background: #f7f8fc;
    --color-text-dark: #1f2539;
    --color-text-muted: #5c6380;
    --color-surface: #ffffff;
    --color-accent: #e9ecff;
    --shadow-lg: 0 30px 60px rgba(43, 54, 116, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(79, 94, 189, 0.6) transparent;
}

html::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(79, 94, 189, 0.85), rgba(111, 200, 235, 0.95));
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(79, 94, 189, 1), rgba(111, 200, 235, 1));
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--color-background);
    color: var(--color-text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.landing-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.landing-hero {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(79, 94, 189, 0.35), transparent), linear-gradient(120deg, rgba(76, 93, 189, 0.92) 0%, rgba(111, 200, 235, 0.65) 100%);
    color: #fff;
    padding: 5rem 0 4.5rem;
    overflow: hidden;
}

.landing-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(13, 28, 88, 0.32), rgba(20, 24, 47, 0.65));
    mix-blend-mode: multiply;
}

.landing-hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.landing-title {
    margin: 0;
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    max-width: 680px;
    font-weight: 700;
}

.landing-title__accent {
    color: #8ACF48;
}

.landing-title__subtitle {
    display: block;
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    font-weight: 500;
    margin-top: 0.35rem;
    opacity: 0.9;
}

.landing-subtitle {
    margin: 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.06rem;
}

.landing-cta {
    display: flex;
    gap: 1.1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 18px 36px rgba(20, 30, 80, 0.2);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.28);
}

.landing-stats {
    display: flex;
    gap: 1.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.landing-stats li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.landing-stats .value {
    font-size: 1.6rem;
    font-weight: 700;
}

.landing-stats .label {
    font-size: 0.88rem;
    opacity: 0.85;
}

main {
    margin-top: -2.5rem;
}

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

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

.section-title {
    text-align: center;
    font-size: 1.85rem;
    margin: 0 0 2.2rem;
    color: var(--color-text-dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
}

.feature-card {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 1.8rem 1.6rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
}

.feature-card i {
    font-size: 1.7rem;
    color: var(--color-primary);
}

.feature-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0;
    color: var(--color-text-muted);
}

.journey {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.4rem;
    align-items: center;
}

.journey-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.journey-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.journey-steps li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.journey-steps span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--color-primary-light);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.journey-illustration {
    display: flex;
    justify-content: center;
}

.journey-card {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 1.4rem;
    width: min(320px, 100%);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.journey-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-text-muted);
}

.journey-card__slots {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.journey-card__slots li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.4rem;
}

.journey-card__slots strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.journey-card__slots span {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.pill {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--color-accent);
    color: var(--color-primary);
}

.pill--confirmed {
    background: rgba(83, 196, 159, 0.18);
    color: #2b8f6a;
}

.pill--pending {
    background: rgba(255, 189, 105, 0.18);
    color: #a8661f;
}

.cta-banner {
    background: linear-gradient(130deg, rgba(79, 94, 189, 0.92) 0%, rgba(111, 200, 235, 0.75) 100%);
    border-radius: 24px;
    padding: 2.4rem 2.6rem;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
    margin: 0;
    font-size: 1.75rem;
}

.cta-banner p {
    margin: 0.35rem 0 0;
    max-width: 520px;
}

.landing-footer {
    background: #10142a;
    color: rgba(255, 255, 255, 0.85);
    padding: 1.6rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links {
    display: inline-flex;
    gap: 1.1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 4.5rem 0 4rem;
    }

    .landing-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }

    .landing-stats {
        gap: 1.2rem;
    }

    .cta-banner {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    main {
        margin-top: -2rem;
    }

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

    .feature-card {
        padding: 1.6rem 1.4rem;
    }

    .journey-card {
        width: 100%;
    }
}
