@import url("style.css");

:root {
    --lp-border: rgba(99, 102, 241, 0.1);
    --lp-border-strong: rgba(79, 70, 229, 0.2);
    --lp-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
    --lp-shadow-strong: 0 28px 72px rgba(79, 70, 229, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 6% 4%, rgba(99, 102, 241, 0.42), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(236, 72, 153, 0.24), transparent 23%),
        radial-gradient(circle at 52% 24%, rgba(56, 189, 248, 0.16), transparent 26%),
        linear-gradient(180deg, #dfe7ff 0%, #eef3ff 34%, #edf5ff 68%, #f9fbff 100%);
}

.site-body {
    background-color: rgb(224, 231, 255);
    color: rgb(31, 41, 55);
    font-family: Inter, sans-serif;
    letter-spacing: -0.025em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

@supports (overflow: clip) {
    .site-shell {
        overflow: clip;
    }
}

.site-ambient-shapes,
.site-grid-lines {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: -10;
    width: 1102px;
    pointer-events: none;
    transform: translateX(-50%);
}

.site-ambient-shapes {
    filter: blur(64px);
}

.site-header {
    position: absolute;
    top: 1rem;
    z-index: 30;
    width: 100%;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, rgb(165 180 252 / 0.4), transparent) 1;
    box-shadow: 0 1px 0 0 rgb(255 255 255 / 0.2);
    padding-bottom: 1rem;
}

.site-header-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    height: 3rem;
    border-radius: 0.5rem;
    padding-inline: 0.75rem;
    background-image: linear-gradient(to bottom, rgb(255 255 255 / 0.9), rgb(255 255 255 / 0.7));
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.site-nav {
    display: flex;
    justify-content: center;
}

.site-nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5715;
    font-weight: 500;
}

.site-theme-toggle {
    display: flex;
    flex: 1 1 0%;
    justify-content: flex-end;
}

.site-main {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 4rem;
}

.site-footer {
    border-top: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, rgb(165 180 252 / 0.4), transparent) 1;
    box-shadow: 0 1px 0 0 rgb(255 255 255 / 0.2);
}

.field-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    pointer-events: none;
    color: rgb(107 114 128 / 0.7);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: -18%;
    z-index: -1;
    pointer-events: none;
    filter: blur(90px);
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
}

body::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(99, 102, 241, 0.28), transparent 22%),
        radial-gradient(circle at 78% 20%, rgba(236, 72, 153, 0.18), transparent 18%),
        radial-gradient(circle at 52% 72%, rgba(56, 189, 248, 0.18), transparent 22%);
    opacity: 0.86;
    animation: lpAmbientFloat 28s ease-in-out infinite alternate;
}

body::after {
    background:
        radial-gradient(circle at 22% 80%, rgba(59, 130, 246, 0.14), transparent 18%),
        radial-gradient(circle at 84% 66%, rgba(129, 140, 248, 0.18), transparent 20%),
        radial-gradient(circle at 48% 12%, rgba(244, 114, 182, 0.1), transparent 16%);
    opacity: 0.7;
    animation: lpAmbientDrift 36s ease-in-out infinite alternate;
}

@keyframes lpAmbientFloat {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
    50% {
        transform: translate3d(2%, 2%, 0) scale(1.05);
    }
    100% {
        transform: translate3d(-1%, 4%, 0) scale(1.08);
    }
}

@keyframes lpAmbientDrift {
    0% {
        transform: translate3d(3%, -2%, 0) scale(1);
    }
    50% {
        transform: translate3d(-3%, 1%, 0) scale(1.08);
    }
    100% {
        transform: translate3d(1%, 3%, 0) scale(1.04);
    }
}

@keyframes lpHeroReveal {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0) scale(0.985);
        filter: blur(12px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes lpHeroGlowPulse {
    0% {
        transform: translate3d(-1%, -1%, 0) scale(0.98);
        opacity: 0.72;
    }
    100% {
        transform: translate3d(2%, 2%, 0) scale(1.04);
        opacity: 0.96;
    }
}

.site-main,
main.cgnjb {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 4rem;
}

html.dark .site-body {
    background-color: rgb(17, 24, 39);
    color: rgb(229, 231, 235);
}

html.dark .site-header,
html.dark .site-footer {
    border-image: linear-gradient(to right, transparent, rgb(165 180 252 / 0.16), transparent) 1;
    box-shadow: none;
}

html.dark .site-header-bar {
    background-image: linear-gradient(to bottom, rgb(55 65 81 / 0.8), rgb(55 65 81 / 0.7));
}

html.dark .field-icon {
    color: rgb(156 163 175 / 0.7);
}

section[id] {
    scroll-margin-top: 120px;
}

.lp-section {
    position: relative;
    padding: 0 1rem;
    z-index: 0;
}

.lp-section:not(.lp-hero) {
    margin-top: clamp(-2.35rem, -3.6vw, -3.2rem);
}

.lp-section:not(.lp-hero)::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -0.15rem;
    width: min(calc(100% - 2.5rem), 1200px);
    height: 5.25rem;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 14% 46%, rgba(99, 102, 241, 0.22), transparent 18%),
        radial-gradient(circle at 50% 28%, rgba(236, 72, 153, 0.15), transparent 16%),
        radial-gradient(circle at 84% 60%, rgba(56, 189, 248, 0.2), transparent 18%),
        linear-gradient(180deg, rgba(224, 231, 255, 0) 0%, rgba(224, 231, 255, 0.96) 52%, rgba(255, 255, 255, 0) 100%);
    filter: blur(20px);
    opacity: 0.95;
    pointer-events: none;
}

.lp-section:not(.lp-hero)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 1.2rem;
    width: min(calc(100% - 7rem), 980px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.04) 10%, rgba(99, 102, 241, 0.45) 28%, rgba(236, 72, 153, 0.42) 50%, rgba(56, 189, 248, 0.45) 72%, rgba(99, 102, 241, 0.04) 90%, transparent 100%);
    opacity: 0.9;
    pointer-events: none;
}

.lp-section:not(.lp-hero) .lp-section-shell {
    border-color: transparent;
    box-shadow: none;
}

.lp-section:not(.lp-hero) .lp-section-shell::after {
    border-color: transparent;
}

.lp-section-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--lp-border);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.74) 100%);
    box-shadow: var(--lp-shadow);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    padding: clamp(2.25rem, 5vw, 4.75rem);
}

.lp-section-shell > .cy6zq {
    width: 100%;
    max-width: none;
}

.lp-section-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 96px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.16) 38%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(90deg, rgba(99, 102, 241, 0.09), rgba(236, 72, 153, 0.06), rgba(56, 189, 248, 0.08));
}

.lp-section-shell::after {
    content: "";
    position: absolute;
    inset: 0.9rem 1rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    pointer-events: none;
}

.lp-hero {
    padding-top: 0;
}

.lp-hero-copy,
.lp-hero-form-wrap,
.lp-hero-proof {
    position: relative;
    isolation: isolate;
}

.lp-hero-form-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 40rem;
    margin: 0 auto 2.75rem;
    padding-inline: 0.25rem;
}

.lp-hero-form {
    flex: 0 1 34rem;
    width: min(100%, 34rem);
    max-width: 34rem;
    margin-inline: auto;
}

.lp-hero-form form {
    width: 100%;
}

.lp-hero-form .cacgm {
    display: grid;
    gap: 0.9rem;
    width: 100%;
    justify-items: center;
}

.lp-hero-form .cacgm > div {
    width: 100%;
}

.lp-hero-form .chuxb {
    width: 100%;
    justify-content: center;
}

.lp-hero-copy::before,
.lp-hero-form-wrap::before {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    filter: blur(34px);
    animation: lpHeroGlowPulse 12s ease-in-out infinite alternate;
}

.lp-hero-copy::before {
    inset: -16% -14% -28%;
    background:
        radial-gradient(circle at 26% 28%, rgba(99, 102, 241, 0.3), transparent 32%),
        radial-gradient(circle at 74% 34%, rgba(236, 72, 153, 0.2), transparent 26%),
        radial-gradient(circle at 48% 86%, rgba(56, 189, 248, 0.16), transparent 24%);
}

.lp-hero-form-wrap::before {
    inset: -14% -12% -18%;
    background:
        radial-gradient(circle at 24% 18%, rgba(99, 102, 241, 0.22), transparent 28%),
        radial-gradient(circle at 72% 28%, rgba(236, 72, 153, 0.16), transparent 22%),
        radial-gradient(circle at 56% 82%, rgba(56, 189, 248, 0.18), transparent 28%);
    animation-duration: 14s;
}

[data-reveal] {
    --reveal-distance: 34px;
    --reveal-scale: 0.985;
}

html.js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0) scale(var(--reveal-scale));
    filter: blur(10px);
    transition:
        opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform, filter;
}

html.js [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

html.js .lp-hero [data-reveal].is-visible {
    animation: lpHeroReveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--reveal-delay, 0s);
}

.lp-hero-shell {
    min-height: calc(100vh - 1rem);
    min-height: calc(100svh - 1rem);
    display: flex;
    align-items: center;
    border-color: var(--lp-border-strong);
    background:
        radial-gradient(circle at top left, rgba(129, 140, 248, 0.26), transparent 30%),
        radial-gradient(circle at bottom right, rgba(244, 114, 182, 0.16), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 242, 255, 0.86) 45%, rgba(255, 255, 255, 0.74) 100%);
    box-shadow: var(--lp-shadow-strong);
    padding-top: clamp(7.5rem, 14vh, 9.5rem);
    padding-bottom: clamp(3rem, 8vh, 5rem);
}

.lp-hero-shell::after {
    border-color: rgba(255, 255, 255, 0.3);
}

.lp-hero-shell > .cy6zq {
    width: 100%;
}

.lp-service-shell {
    background:
        radial-gradient(circle at left center, rgba(129, 140, 248, 0.16), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(244, 114, 182, 0.1), transparent 18%),
        radial-gradient(circle at 60% 100%, rgba(56, 189, 248, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(231, 238, 255, 0.68) 52%, rgba(242, 247, 255, 0.7) 100%);
}

.lp-updates-shell {
    background:
        radial-gradient(circle at 14% 18%, rgba(129, 140, 248, 0.14), transparent 20%),
        radial-gradient(circle at 82% 14%, rgba(56, 189, 248, 0.1), transparent 18%),
        radial-gradient(circle at 58% 88%, rgba(244, 114, 182, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(236, 242, 255, 0.66) 48%, rgba(245, 249, 255, 0.68) 100%);
}

.lp-updates-shell article[id] {
    scroll-margin-top: 120px;
}

.lp-faq-shell {
    background:
        radial-gradient(circle at 18% 12%, rgba(129, 140, 248, 0.12), transparent 20%),
        radial-gradient(circle at 50% 0%, rgba(244, 114, 182, 0.08), transparent 18%),
        radial-gradient(circle at 88% 76%, rgba(56, 189, 248, 0.1), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(236, 242, 255, 0.62) 50%, rgba(245, 249, 255, 0.64) 100%);
}

.lp-contact-shell {
    background:
        radial-gradient(circle at 12% 82%, rgba(59, 130, 246, 0.12), transparent 22%),
        radial-gradient(circle at 84% 8%, rgba(99, 102, 241, 0.14), transparent 20%),
        radial-gradient(circle at 54% 24%, rgba(244, 114, 182, 0.06), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(232, 241, 255, 0.6) 48%, rgba(244, 248, 255, 0.62) 100%);
}

.lp-card {
    border: 1px solid rgba(99, 102, 241, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 250, 252, 0.78) 100%);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.lp-faq-shell .lp-card,
.lp-contact-shell .lp-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(248, 250, 252, 0.66) 100%);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.lp-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.18);
    box-shadow: 0 18px 34px rgba(79, 70, 229, 0.08);
}

.lp-faq-list {
    display: grid;
    gap: 0.75rem;
}

.lp-faq-item {
    border: 1px solid rgba(99, 102, 241, 0.1);
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.lp-form-shell {
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(238, 242, 255, 0.68) 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    padding: clamp(1rem, 2vw, 1.25rem);
}

.lp-contact-shell .lp-form-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(238, 242, 255, 0.54) 100%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.lp-hero-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(224, 231, 255, 0.8) 100%);
}

@media (max-width: 767px) {
    .lp-section {
        padding: 0 0.75rem;
    }

    .lp-section:not(.lp-hero) {
        margin-top: -2rem;
    }

    .lp-section:not(.lp-hero)::before {
        width: calc(100% - 1.75rem);
        height: 4.25rem;
        top: 0;
        filter: blur(15px);
    }

    .lp-section:not(.lp-hero)::after {
        width: calc(100% - 4rem);
        top: 0.9rem;
    }

    .lp-section-shell {
        border-radius: 26px;
        padding: 1.75rem 1.25rem;
    }

    .lp-section-shell::after {
        inset: 0.75rem;
        border-radius: 18px;
    }

    .lp-hero-shell {
        min-height: calc(100vh - 0.75rem);
        min-height: calc(100svh - 0.75rem);
        padding-top: 7rem;
    }

    .lp-hero-form {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }

    .lp-hero-form-wrap {
        max-width: 100%;
        margin-bottom: 2.25rem;
        padding-inline: 0;
    }
}

html.dark body {
    background:
        radial-gradient(circle at 8% 4%, rgba(99, 102, 241, 0.34), transparent 28%),
        radial-gradient(circle at 92% 10%, rgba(236, 72, 153, 0.16), transparent 22%),
        radial-gradient(circle at 54% 24%, rgba(56, 189, 248, 0.12), transparent 24%),
        linear-gradient(180deg, #0f172a 0%, #111827 48%, #0b1120 100%);
}

html.dark body::before {
    opacity: 0.74;
}

html.dark body::after {
    opacity: 0.58;
}

html.dark .lp-section-shell {
    border-color: rgba(129, 140, 248, 0.1);
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.78) 0%, rgba(30, 41, 59, 0.7) 100%);
    box-shadow: 0 16px 38px rgba(2, 6, 23, 0.28);
}

html.dark .lp-section:not(.lp-hero)::before {
    background:
        radial-gradient(circle at 14% 46%, rgba(99, 102, 241, 0.22), transparent 18%),
        radial-gradient(circle at 50% 28%, rgba(236, 72, 153, 0.1), transparent 16%),
        radial-gradient(circle at 84% 60%, rgba(56, 189, 248, 0.12), transparent 18%),
        linear-gradient(180deg, rgba(99, 102, 241, 0.16) 0%, rgba(15, 23, 42, 0) 100%);
    opacity: 0.82;
}

html.dark .lp-section:not(.lp-hero)::after {
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.04) 10%, rgba(129, 140, 248, 0.34) 28%, rgba(236, 72, 153, 0.24) 50%, rgba(56, 189, 248, 0.26) 72%, rgba(99, 102, 241, 0.04) 90%, transparent 100%);
    opacity: 0.85;
}

html.dark .lp-section:not(.lp-hero) .lp-section-shell {
    border-color: transparent;
    box-shadow: none;
}

html.dark .lp-section:not(.lp-hero) .lp-section-shell::after {
    border-color: transparent;
}

html.dark .lp-section-shell::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 38%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(90deg, rgba(129, 140, 248, 0.08), rgba(236, 72, 153, 0.04), rgba(56, 189, 248, 0.06));
}

html.dark .lp-section-shell::after {
    border-color: rgba(129, 140, 248, 0.06);
}

html.dark .lp-hero-shell {
    border-color: rgba(129, 140, 248, 0.28);
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.22), transparent 28%),
        radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.12), transparent 26%),
        linear-gradient(135deg, rgba(17, 24, 39, 0.96) 0%, rgba(30, 41, 59, 0.88) 45%, rgba(17, 24, 39, 0.9) 100%);
}

html.dark .lp-hero-copy::before,
html.dark .lp-hero-form-wrap::before {
    opacity: 0.82;
    filter: blur(40px);
}

html.dark .lp-service-shell {
    background:
        radial-gradient(circle at left center, rgba(99, 102, 241, 0.18), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(236, 72, 153, 0.08), transparent 18%),
        radial-gradient(circle at 60% 100%, rgba(56, 189, 248, 0.06), transparent 22%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.68) 0%, rgba(30, 41, 59, 0.62) 100%);
}

html.dark .lp-updates-shell {
    background:
        radial-gradient(circle at 16% 16%, rgba(99, 102, 241, 0.16), transparent 20%),
        radial-gradient(circle at 82% 14%, rgba(56, 189, 248, 0.08), transparent 18%),
        radial-gradient(circle at 58% 88%, rgba(236, 72, 153, 0.06), transparent 22%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.62) 0%, rgba(30, 41, 59, 0.56) 100%);
}

html.dark .lp-faq-shell {
    background:
        radial-gradient(circle at 18% 12%, rgba(99, 102, 241, 0.12), transparent 20%),
        radial-gradient(circle at 50% 0%, rgba(236, 72, 153, 0.06), transparent 18%),
        radial-gradient(circle at 88% 76%, rgba(56, 189, 248, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.56) 0%, rgba(30, 41, 59, 0.52) 100%);
}

html.dark .lp-contact-shell {
    background:
        radial-gradient(circle at 12% 82%, rgba(59, 130, 246, 0.09), transparent 22%),
        radial-gradient(circle at 84% 8%, rgba(99, 102, 241, 0.12), transparent 20%),
        radial-gradient(circle at 54% 24%, rgba(236, 72, 153, 0.04), transparent 18%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.54) 0%, rgba(30, 41, 59, 0.5) 100%);
}

html.dark .lp-card,
html.dark .lp-faq-item,
html.dark .lp-form-shell {
    border-color: rgba(129, 140, 248, 0.12);
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.72) 0%, rgba(17, 24, 39, 0.84) 100%);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.24);
}

html.dark .lp-faq-shell .lp-card,
html.dark .lp-contact-shell .lp-card,
html.dark .lp-contact-shell .lp-form-shell {
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.54) 0%, rgba(17, 24, 39, 0.72) 100%);
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.18);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    body::before,
    body::after,
    .lp-hero-copy::before,
    .lp-hero-form-wrap::before {
        animation: none;
    }

    html.js [data-reveal],
    html.js [data-reveal].is-visible {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
        animation: none;
    }
}

@media (min-width: 640px) {
    .site-nav-list {
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .site-header {
        top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}