:root {
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #F8FAFC;
    color: #012A4A;
}

a {
    color: inherit;
}

.fade-transition {
    opacity: 0;
    animation: fade-in-up 0.8s ease forwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(248, 250, 252, 0.9);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.navbar__content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar__brand {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.navbar__links {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar__link {
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar__link:hover {
    background: rgba(1, 41, 74, 0.08);
    color: #01497C;
}

.hero {
    padding: 8rem 1.5rem 6rem;
    background: radial-gradient(circle at top right, #A9D6E5 0%, transparent 40%),
        radial-gradient(circle at bottom left, #E0F2FE 0%, transparent 40%),
        #F8FAFC;
    border-bottom-left-radius: 64px;
    border-bottom-right-radius: 64px;
    color: #012A4A;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2301497c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}

.hero__title {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #012A4A 0%, #01497C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero__image {
    filter: drop-shadow(0 20px 40px rgba(1, 42, 74, 0.15));
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

.hero__image:hover {
    transform: translateY(-5px);
}

.section {
    padding: 8rem 1.5rem;
}

.section--muted {
    background: #F0F9FF;
    border-radius: 64px;
    margin: 0 1.5rem;
}

.section__title {
    font-weight: 700;
    letter-spacing: -0.01em;
    max-width: 800px;
}

.section__subtitle {
    max-width: 640px;
    color: #64748B;
    font-size: 1.125rem;
}

.card {
    padding: 2.5rem;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(1, 42, 74, 0.12);
    border-color: rgba(1, 73, 124, 0.1);
}

.card__icon {
    color: #01497C;
}

.app-preview {
    border-radius: 32px;
    overflow: hidden;
    background: #012A4A;
}

.app-preview__image {
    width: 100%;
    display: block;
}

.pricing-card {
    border-radius: 30px;
    padding: 0.5rem 0;
    box-shadow: 0 16px 40px rgba(1, 42, 74, 0.1);
}

.pricing-card--highlight {
    background: linear-gradient(135deg, rgba(1, 41, 74, 0.95), rgba(1, 73, 124, 0.95));
    color: #F8FAFC;
}

.pricing-card--highlight .pricing-card__price,
.pricing-card--highlight .pricing-card__caption,
.pricing-card--highlight .mud-list-item {
    color: #F8FAFC;
}

.pricing-card__price {
    margin-top: 0.5rem;
}

.pricing-card__caption {
    color: rgba(1, 73, 124, 0.7);
}

.pricing-card--highlight .pricing-card__caption {
    color: rgba(169, 214, 229, 0.9);
}

.pricing-card__list {
    margin-top: 1.5rem;
    color: rgba(1, 42, 74, 0.8);
}

.pricing-card__chip {
    margin-bottom: 0.75rem;
}

.pricing-note {
    color: rgba(1, 42, 74, 0.6);
}

.contact-card {
    padding: 2.5rem;
    border-radius: 32px;
    backdrop-filter: blur(6px);
}

.turnstile-wrapper {
    display: flex;
    justify-content: center;
}

.turnstile {
    min-height: 80px;
}

.button__spinner {
    margin-right: 0.5rem;
}

.footer {
    margin-top: 6rem;
    background: #012A4A;
    color: #F8FAFC;
    padding: 2rem 1.5rem;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

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

.footer__text {
    opacity: 0.9;
}

.footer__links {
    flex-wrap: wrap;
}

.footer__link {
    color: #F8FAFC;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer__link:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .hero {
        border-radius: 0 0 40px 40px;
    }

    .section--muted {
        margin: 0;
        border-radius: 40px;
    }
}

@media (max-width: 600px) {
    .navbar__links {
        justify-content: center;
    }

    .hero {
        padding-top: 5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .footer__content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.blend-image {
    mix-blend-mode: multiply;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #012A4A;
    border-radius: 48px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(1, 42, 74, 0.25);
    border: 4px solid #01497C;
    position: relative;
}

.phone-mockup__screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #012A4A;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}