body {
    background: #f8fafc;
}

body > header {
    position: sticky;
    top: 0;
    z-index: 40;
    min-height: 72px;
    border-bottom: 1px solid #eef2f7;
}

body > header nav {
    gap: 1.5rem;
}

@media (min-width: 768px) {
    body > header {
        position: sticky;
    }

    body > header nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

main > section:first-child {
    position: relative;
    overflow: hidden;
    background-color: #111827 !important;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0) !important;
    background-size: 2rem 2rem !important;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

main > section:first-child::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(99, 102, 241, 0.28), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(34, 211, 238, 0.16), transparent 26%);
    pointer-events: none;
}

main > section:first-child > .container {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

main > section:first-child h1 {
    color: #ffffff;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

main > section:first-child p {
    color: #d1d5db;
    line-height: 1.65;
}

main > section:first-child a {
    border-radius: 9999px;
    box-shadow: 0 14px 28px -18px rgba(255, 255, 255, 0.35);
}

main > section:not(:first-child) {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

main > section.container,
main > section > .container {
    max-width: 72rem;
}

main > section.container.max-w-3xl,
main > section.container.max-w-4xl,
main > section.container.max-w-5xl {
    max-width: 48rem;
}

main h2 {
    color: #111827;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.16;
}

main h3 {
    color: #111827;
    font-weight: 700;
    letter-spacing: 0;
}

main p,
main li {
    line-height: 1.75;
}

main a.bg-white,
main .bg-white.rounded-xl,
main .bg-white.rounded-2xl,
main .bg-gray-100.rounded-xl {
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

main a.bg-white:hover,
main .bg-white.rounded-xl:hover,
main .bg-white.rounded-2xl:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -24px rgba(15, 23, 42, 0.42);
}

main a.bg-white,
main .bg-white.rounded-xl,
main .bg-white.rounded-2xl {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

main .bg-indigo-50 {
    background: #eef2ff !important;
}

main .bg-indigo-600,
main .bg-indigo-700 {
    background: #4f46e5 !important;
}

main a.bg-indigo-600,
main a.bg-indigo-700 {
    border-radius: 9999px;
    box-shadow: 0 12px 24px -16px rgba(79, 70, 229, 0.8);
}

main a.bg-indigo-600:hover,
main a.bg-indigo-700:hover {
    background: #4338ca !important;
}

main .text-indigo-600 {
    color: #4f46e5 !important;
}

main .text-indigo-700 {
    color: #4338ca !important;
}

footer .flex {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

@media (max-width: 767px) {
    body > header {
        min-height: 64px;
    }

    main > section:first-child {
        padding-top: 4.75rem !important;
        padding-bottom: 4.75rem !important;
    }

    main > section:not(:first-child) {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    main > section:first-child h1 {
        font-size: 2.5rem;
    }
}
