html.is-landing-preload .site-nav,
html.is-landing-preload .hero-section .split-text,
html.is-landing-preload .hero-section p,
html.is-landing-preload .hero-section .beam-btn,
html.is-landing-preload .hero-shot-wrap,
html.is-landing-preload section:not(.hero-section),
html.is-landing-preload .site-footer {
    opacity: 0;
    visibility: hidden;
}

html,
body {
    cursor: default;
}
a[href],
button,
[role="button"],
summary,
label[for] {
    cursor: pointer;
}
input,
textarea,
[contenteditable=""],
[contenteditable="true"],
[contenteditable="plaintext-only"] {
    cursor: text;
}

/* Custom Styles & Utilities */
:root {
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --font-sf: "Cal Sans Text", sans-serif;
    --landing-nav-link: #d7dfeb;
    --landing-copy: #b8c4d4;
    --landing-copy-soft: #a6b4c7;
    --landing-footer-copy: #9aaac0;
    --landing-footer-link: #cbd5e1;
}

html,
body {
    background-color: #09090b;
}

.arch-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(59, 130, 246, 0.15),
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.02) 80%,
        rgba(59, 130, 246, 0.15)
    );
    z-index: 0;
    pointer-events: none;
    top: 0;
    bottom: 0;
}
html[data-theme="light"] .arch-line {
    background: linear-gradient(
        to bottom,
        rgba(59, 130, 246, 0.3),
        rgba(0, 0, 0, 0.05) 20%,
        rgba(0, 0, 0, 0.02) 80%,
        rgba(59, 130, 246, 0.3)
    );
}

p {
    font-family: var(--font-open-sans);
}

.hero-section,
.site-footer {
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            72% 58% at 50% 0%,
            rgba(96, 165, 250, 0.34) 0%,
            rgba(59, 130, 246, 0.2) 34%,
            transparent 72%
        ),
        linear-gradient(
            180deg,
            rgba(59, 130, 246, 0.26) 0%,
            rgba(18, 33, 62, 0.28) 30%,
            rgba(9, 9, 11, 0.82) 72%,
            #09090b 100%
        );
    z-index: 0;
    pointer-events: none;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            72% 84% at 50% 100%,
            rgba(96, 165, 250, 0.28) 0%,
            rgba(59, 130, 246, 0.18) 34%,
            transparent 72%
        ),
        linear-gradient(
            180deg,
            #09090b 0%,
            rgba(9, 9, 11, 0.92) 34%,
            rgba(23, 37, 84, 0.48) 76%,
            rgba(59, 130, 246, 0.28) 100%
        );
    z-index: 0;
    pointer-events: none;
}

.site-footer > * {
    position: relative;
    z-index: 1;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    user-select: none;
    -webkit-user-select: none;
}

.nav-auth-link {
    font-family: var(--font-brand);
                font-size: 0.88rem;
                font-weight: 500;
                letter-spacing: -0.02em;
    color: rgba(244, 244, 245, 0.8);
    text-decoration: none;
    transition: color 0.24s var(--ease-out-expo);
}
.site-nav .lg\:flex a {
    color: var(--landing-nav-link);
    filter: none;
    transition:
        color 0.24s var(--ease-out-expo),
        filter 0.24s var(--ease-out-expo);
}
.site-nav .lg\:flex a:hover {
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.28));
}
.nav-auth-link:hover {
    color: #ffffff;
}

.beam-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    overflow: hidden;
    transition:
        background 0.3s var(--ease-out-expo),
        color 0.3s var(--ease-out-expo),
        border-color 0.3s var(--ease-out-expo),
        box-shadow 0.3s var(--ease-out-expo);
}
.beam-btn::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -100%;
    width: 50%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.8),
        transparent
    );
    transition: left 0.5s ease-in-out;
    opacity: 0;
}
.beam-btn:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}
.beam-btn:hover::before {
    left: 200%;
    opacity: 1;
}

.card-flashlight {
    position: relative;
    background: rgba(24, 24, 27, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
}
.card-flashlight::before {
    content: "";
    position: absolute;
    top: var(--mouse-y, 0px);
    left: var(--mouse-x, 0px);
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle closest-side,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}
.card-flashlight:hover::before {
    opacity: 1;
}
.card-flashlight::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        400px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.3),
        transparent 40%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card-flashlight:hover::after {
    opacity: 1;
}
.card-content {
    position: relative;
    z-index: 10;
}

.pricing-stage {
    position: relative;
    border-radius: 2.25rem;
    padding: clamp(1.3rem, 2.5vw, 2.2rem);
}
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 3px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(24, 24, 27, 0.6);
    box-shadow: none;
    backdrop-filter: blur(8px);
}
.billing-toggle-btn {
    border: 1px solid transparent;
    background: transparent;
    color: #71717a;
    border-radius: 999px;
    padding: 0.54rem 1.08rem;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background-color 0.25s var(--ease-out-expo),
        color 0.25s var(--ease-out-expo),
        border-color 0.25s var(--ease-out-expo),
        box-shadow 0.25s var(--ease-out-expo);
}
.billing-toggle-btn[aria-pressed="true"] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fafafa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.billing-toggle-btn:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.78);
    outline-offset: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
}
@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }
}
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: clamp(38rem, 58vw, 48rem);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2.25rem;
    background: linear-gradient(
        180deg,
        rgba(24, 24, 27, 0.4) 0%,
        rgba(9, 9, 11, 0.6) 100%
    );
    backdrop-filter: blur(8px);
    overflow: hidden;
}
.pricing-card-popular {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(
        180deg,
        rgba(39, 39, 42, 0.4) 0%,
        rgba(24, 24, 27, 0.6) 100%
    );
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
}
.pricing-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.pricing-plan-meta {
    display: flex;
    flex-direction: column;
    gap: 0.52rem;
}
.pricing-plan-title {
    margin: 0;
    color: #f4f4f5;
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.pricing-plan-description {
    margin: 0;
    color: var(--landing-copy-soft);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}
.pricing-plan-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #e4e4e7;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.6rem;
}
.pricing-cycle-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding-top: 0.22rem;
    background: transparent;
    border: none;
    cursor: pointer;
}
.pricing-cycle-label {
    color: var(--landing-copy-soft);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.pricing-cycle-switch {
    position: relative;
    width: 2rem;
    height: 1.1rem;
    border-radius: 999px;
    border: 1px solid #3B82F6;
    background: #3B82F6;
    transition: background 0.22s var(--ease-out-expo), border-color 0.22s var(--ease-out-expo);
}
.pricing-cycle-switch::after {
    content: "";
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    background: #0B0B0B;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateX(0.9rem);
    transition: transform 0.22s var(--ease-out-expo), background-color 0.22s var(--ease-out-expo);
}
html[data-pricing-billing="monthly"] .pricing-cycle-switch {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}
html[data-pricing-billing="monthly"] .pricing-cycle-switch::after {
    transform: translateX(0);
    background: #a1a1aa;
}
.pricing-separator {
    margin: 2.2rem 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.pricing-price {
    margin: 0;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 500;
}
.pricing-price-suffix {
    color: var(--landing-footer-copy);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
}
.pricing-note {
    margin: 0;
    color: var(--landing-footer-copy);
    font-size: 0.85rem;
    font-weight: 400;
}
.pricing-feature-kicker {
    margin: 0 0 1.25rem;
    color: #d4d4d8;
    font-family: "Outfit", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0;
}
.pricing-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--landing-copy);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
}
.pricing-feature-icon {
    margin-top: 0.1rem;
    width: 1rem;
    height: 1rem;
    color: #e4e4e7;
    flex-shrink: 0;
}
.pricing-card-footer {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fafafa;
    font-family: "Outfit", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition:
        background-color 0.25s var(--ease-out-expo),
        color 0.25s var(--ease-out-expo),
        border-color 0.25s var(--ease-out-expo);
    box-shadow: none;
}
.pricing-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.pricing-cta-primary {
    background: #3B82F6;
    color: #ffffff;
    border: none;
}
.pricing-cta-primary:hover {
    background: #2563EB;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.pricing-footnote {
    margin: 0;
    text-align: center;
    color: var(--landing-footer-copy);
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 400;
}
@media (max-width: 1024px) {
    .pricing-card {
        min-height: 0;
        aspect-ratio: auto;
    }
    .pricing-cycle-indicator {
        gap: 0.58rem;
    }
}
@media (max-width: 768px) {
    .pricing-stage {
        border-radius: 1.6rem;
        padding: 1rem;
    }
    .billing-toggle-btn {
        padding: 0.6rem 0.95rem;
        font-size: 0.76rem;
    }
    .pricing-card {
        padding: 1.45rem;
        border-radius: 1.5rem;
    }
    .pricing-plan-description {
        font-size: 1rem;
    }
    .pricing-feature-kicker {
        font-size: 1.35rem;
    }
    .pricing-footnote {
        font-size: 0.95rem;
    }
}

.text-clip {
    overflow: visible;
    display: inline-block;
    vertical-align: top;
}
.text-clip-inner {
    display: inline-block;
    transform: translateY(25%);
    opacity: 0;
}

.sonar-icon {
    position: relative;
}
.sonar-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: sonar 2s ease-out infinite;
}
@keyframes sonar {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.arch-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.05) 10%,
        rgba(255, 255, 255, 0.05) 90%,
        transparent
    );
    z-index: 0;
}

.webgl-columns {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.webgl-col {
    flex: 1;
    height: 150vh;
    background-size: cover;
    background-position: center;
    will-change: transform;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}
.webgl-col:last-child {
    border-right: none;
}

.tracking-ultra {
    letter-spacing: -0.06em;
}

.site-nav {
    --nav-surface-rgb: 9, 9, 11;
    --nav-surface-alpha: 0;
    --nav-line-rgb: 255, 255, 255;
    --nav-line-alpha: 0;
    --nav-transform-duration: 0.52s;
    top: -1px;
    z-index: 120;
    isolation: isolate;
    border-bottom: 1px solid
        rgba(var(--nav-line-rgb), var(--nav-line-alpha));
    background-color: rgba(
        var(--nav-surface-rgb),
        var(--nav-surface-alpha)
    );
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    mix-blend-mode: normal;
    transform: translateY(0);
    will-change: transform, background-color, border-color, backdrop-filter;
    transition:
        border-color 0.42s var(--ease-out-expo),
        background-color 0.42s var(--ease-out-expo),
        backdrop-filter 0.42s var(--ease-out-expo),
        transform var(--nav-transform-duration)
        var(--ease-out-expo);
}
.site-nav.is-hiding {
    --nav-transform-duration: 0.78s;
}

.site-nav.is-scrolled {
    --nav-line-alpha: 0.16;
    --nav-surface-alpha: 0.85;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.site-nav.is-hiding-from-top {
    --nav-line-alpha: 0;
    --nav-surface-alpha: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}
.site-nav.is-hidden {
    transform: translateY(-100%);
}

.hero-panel-shot {
    will-change: transform;
}

.site-footer {
    will-change: transform;
}
.site-footer [class*="text-zinc-500"] {
    color: var(--landing-footer-copy) !important;
    font-weight: 400;
}
.site-footer [class*="text-zinc-600"] {
    color: var(--landing-footer-copy) !important;
}
.site-footer [class*="text-zinc-400"] {
    color: var(--landing-footer-link) !important;
    font-weight: 400;
}
.site-footer .status-indicator:hover {
    color: #ffffff !important;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none !important;
}
.status-dot {
    position: relative;
    top: 1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #52525b;
    transition: background-color 0.3s ease;
}
.status-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: inherit;
    animation: status-pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes status-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(3.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}
.status-indicator:hover .status-dot {
    background-color: #10b981;
}

.theme-switcher {
    --theme-index: 1;
    margin-top: 0;
    display: inline-flex;
}
.theme-switcher-track {
    position: relative;
    width: 80px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    border-radius: 999px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(24, 24, 27, 0.6);
    box-shadow: none;
    isolation: isolate;
}
.theme-switcher-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc((100% - 6px) / 2);
    height: 26px;
    border-radius: 999px;
    transform: translateX(calc(var(--theme-index) * 100%));
    transition:
        transform 260ms var(--ease-out-expo),
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    z-index: 0;
}
.theme-switcher-option {
    position: relative;
    z-index: 1;
    border: 0;
    background: transparent;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa;
    cursor: pointer;
    transition: color 0.22s ease, transform 0.2s ease;
}
.theme-switcher-option[aria-pressed="true"] {
    color: #fafafa;
}
.theme-switcher-option svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.theme-switcher-option:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.78);
    outline-offset: 2px;
}

.theme-switcher-option:active {
    transform: scale(0.94);
}
.theme-switcher:hover .theme-switcher-thumb {
    background-color: #3B82F6 !important;
    border-color: #3B82F6 !important;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}
.theme-switcher:hover .theme-switcher-option[aria-pressed="true"] {
    color: #09090b !important;
}
.theme-switcher-option:hover:not([aria-pressed="true"]) {
    color: #3B82F6;
}

html[data-theme-mode="light"] .theme-switcher-thumb {
    background-color: #ffffff;
    border-color: #e4e4e7;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
html[data-theme-mode="dark"] .theme-switcher-thumb {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

html[data-theme="light"] {
    background: #f4f7fb;
    color: #0f172a;
}
html[data-theme="light"] body {
    background-color: #f4f7fb;
}
html[data-theme="light"] .hero-section::before {
    background:
        radial-gradient(
            72% 58% at 50% 0%,
            rgba(191, 219, 254, 0.7) 0%,
            rgba(147, 197, 253, 0.24) 38%,
            transparent 74%
        ),
        linear-gradient(
            180deg,
            rgba(59, 130, 246, 0.14) 0%,
            rgba(244, 247, 251, 0.52) 34%,
            rgba(244, 247, 251, 0.9) 76%,
            #f4f7fb 100%
        );
}
html[data-theme="light"] .site-footer::before {
    background:
        radial-gradient(
            72% 84% at 50% 100%,
            rgba(96, 165, 250, 0.16) 0%,
            rgba(59, 130, 246, 0.1) 38%,
            transparent 74%
        ),
        linear-gradient(
            180deg,
            rgba(244, 247, 251, 0.96) 0%,
            rgba(244, 247, 251, 0.92) 34%,
            rgba(219, 234, 254, 0.7) 76%,
            rgba(147, 197, 253, 0.3) 100%
        );
}
html[data-theme="light"] .site-nav {
    --nav-surface-rgb: 245, 247, 251;
    --nav-line-rgb: 15, 23, 42;
}
html[data-theme="light"] .site-nav.is-scrolled {
    --nav-line-alpha: 0.18;
    --nav-surface-alpha: 0.99;
}
html[data-theme="light"] .site-nav .lg\:flex a {
    color: #526275;
    filter: none;
}
html[data-theme="light"] .site-nav .lg\:flex a:hover {
    color: #0f172a;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.12));
}
html[data-theme="light"] 
html[data-theme="light"] .nav-auth-link {
    color: #64748b;
}
html[data-theme="light"] .nav-auth-link:hover {
    color: #0f172a;
}
html[data-theme="light"] .beam-btn {
    background: #f4f4f5;
    color: #09090b;
    border: 1px solid #e4e4e7;
    box-shadow: none;
}
html[data-theme="light"] .beam-btn::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.8),
        transparent
    );
}
html[data-theme="light"] .beam-btn:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: #3B82F6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}
html[data-theme="light"] .card-flashlight {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(148, 163, 184, 0.28);
}
html[data-theme="light"] .card-flashlight::before {
    background: radial-gradient(
        circle closest-side,
        rgba(15, 23, 42, 0.08),
        transparent
    );
}
html[data-theme="light"] .card-flashlight::after {
    background: radial-gradient(
        400px circle at var(--mouse-x) var(--mouse-y),
        rgba(15, 23, 42, 0.22),
        transparent 40%
    );
}
html[data-theme="light"] .billing-toggle {
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    box-shadow: none;
}
html[data-theme="light"] .billing-toggle-btn {
    color: #64748b;
    border-color: transparent;
}
html[data-theme="light"] .billing-toggle-btn[aria-pressed="true"] {
    background-color: #ffffff;
    border-color: #e4e4e7;
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
html[data-theme="light"] .pricing-stage {
    border-color: rgba(148, 163, 184, 0.22);
    background:
        radial-gradient(
            120% 90% at 50% -15%,
            rgba(59, 130, 246, 0.12),
            transparent 58%
        ),
        rgba(248, 250, 252, 0.84);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 30px 60px -52px rgba(15, 23, 42, 0.28);
}
html[data-theme="light"] .pricing-card {
    border-color: rgba(148, 163, 184, 0.3);
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(248, 250, 252, 0.94) 52%,
        rgba(241, 245, 249, 0.94) 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 24px 44px -36px rgba(15, 23, 42, 0.28);
}
html[data-theme="light"] .pricing-card::before {
    background: radial-gradient(
        95% 80% at 0% 0%,
        rgba(59, 130, 246, 0.1),
        transparent 56%
    );
}
html[data-theme="light"] .pricing-card-popular {
    border-color: rgba(59, 130, 246, 0.48);
    background: linear-gradient(
        160deg,
        rgba(240, 249, 255, 0.97) 0%,
        rgba(232, 244, 255, 0.95) 54%,
        rgba(219, 234, 254, 0.95) 100%
    );
    box-shadow:
        0 22px 48px -36px rgba(14, 116, 144, 0.36),
        inset 0 0 0 1px rgba(59, 130, 246, 0.28);
}
html[data-theme="light"] .pricing-card-popular::before {
    background: radial-gradient(
        100% 85% at 0% 0%,
        rgba(59, 130, 246, 0.14),
        transparent 58%
    );
}
html[data-theme="light"] .pricing-plan-title {
    color: #0f172a;
}
html[data-theme="light"] .pricing-plan-description {
    color: #475569;
}
html[data-theme="light"] .pricing-plan-badge {
    border-color: rgba(59, 130, 246, 0.36);
    background: rgba(59, 130, 246, 0.12);
    color: #1D4ED8;
}
html[data-theme="light"] .pricing-plan-badge::before {
    background: #2563EB;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
html[data-theme="light"] .pricing-cycle-label {
    color: #475569;
}
html[data-theme="light"] .pricing-cycle-switch {
    border-color: #3B82F6;
    background: #3B82F6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
html[data-theme="light"][data-pricing-billing="monthly"] .pricing-cycle-switch {
    border-color: rgba(148, 163, 184, 0.4);
    background: rgba(148, 163, 184, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
html[data-theme="light"] .pricing-cycle-switch::after {
    background: #FAFAFA;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
html[data-theme="light"][data-pricing-billing="monthly"] .pricing-cycle-switch::after {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .pricing-separator {
    border-color: rgba(148, 163, 184, 0.28);
}
html[data-theme="light"] .pricing-feature-kicker {
    color: #0f172a;
}
html[data-theme="light"] .pricing-feature-item {
    color: #1e293b;
}
html[data-theme="light"] .pricing-feature-icon {
    color: #52525b;
}
html[data-theme="light"] .pricing-price {
    color: #09090b;
}
html[data-theme="light"] .pricing-price-suffix {
    color: #52525b;
}
html[data-theme="light"] .pricing-note {
    color: #71717a;
}
html[data-theme="light"] .pricing-cta {
    background: rgba(9, 9, 11, 0.05);
    color: #09090b;
    border: 1px solid rgba(9, 9, 11, 0.1);
    box-shadow: none;
}
html[data-theme="light"] .pricing-cta:hover {
    background: rgba(9, 9, 11, 0.1);
    border-color: rgba(9, 9, 11, 0.2);
    box-shadow: none;
}
html[data-theme="light"] .pricing-cta-primary {
    background: #3B82F6;
    color: #ffffff;
    border: none;
    box-shadow: none;
}
html[data-theme="light"] .pricing-cta-primary:hover {
    background: #2563EB;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
html[data-theme="light"] .pricing-footnote {
    color: #71717a;
}
html[data-theme="light"] .theme-switcher-track {
    background: #f4f4f5;
    border-color: #e4e4e7;
    box-shadow: none;
}
html[data-theme="light"] .theme-switcher-option {
    color: #64748b;
}
html[data-theme="light"] .theme-switcher-option[aria-pressed="true"] {
    color: #0f172a;
}
html[data-theme="light"] .theme-switcher:hover .theme-switcher-thumb {
    background-color: #3B82F6 !important;
    border-color: #3B82F6 !important;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
}
html[data-theme="light"] .theme-switcher:hover .theme-switcher-option[aria-pressed="true"] {
    color: #09090b !important;
}
html[data-theme="light"] .theme-switcher-option:hover:not([aria-pressed="true"]) {
    color: #3B82F6;
}
html[data-theme="light"] .webgl-columns {
    opacity: 0.16 !important;
}
html[data-theme="light"] [class~="bg-zinc-950"] {
    background-color: #f4f7fb !important;
}
html[data-theme="light"] [class~="bg-zinc-900"] {
    background-color: #ffffff !important;
}
html[data-theme="light"] [class*="bg-zinc-950/"] {
    background-color: rgba(244, 247, 251, 0.84) !important;
}
html[data-theme="light"] [class*="bg-zinc-900/"] {
    background-color: rgba(255, 255, 255, 0.78) !important;
}
html[data-theme="light"] [class*="text-zinc-50"] {
    color: #0f172a !important;
}
html[data-theme="light"] [class*="text-zinc-200"] {
    color: #334155 !important;
}
html[data-theme="light"] [class*="text-zinc-300"] {
    color: #475569 !important;
}
html[data-theme="light"] [class*="text-zinc-400"] {
    color: #64748b !important;
}
html[data-theme="light"] [class*="text-zinc-500"] {
    color: #64748b !important;
}
html[data-theme="light"] [class*="text-zinc-600"] {
    color: #94a3b8 !important;
}
html[data-theme="light"] [class~="text-white"] {
    color: #0f172a !important;
}
html[data-theme="light"] [class*="text-white/"] {
    color: #334155 !important;
}
html[data-theme="light"] [class*="border-white/"] {
    border-color: rgba(148, 163, 184, 0.26) !important;
}
html[data-theme="light"] [class*="from-zinc-950"] {
    --tw-gradient-from: #f8fafc var(--tw-gradient-from-position)
        !important;
    --tw-gradient-to: rgb(248 250 252 / 0) var(
        --tw-gradient-to-position
    ) !important;
}
html[data-theme="light"] [class*="via-zinc-900"] {
    --tw-gradient-stops:
        var(--tw-gradient-from), #ffffff var(
        --tw-gradient-via-position
    ), var(--tw-gradient-to) !important;
}
html[data-theme="light"] [class*="to-zinc-950"] {
    --tw-gradient-to: #f8fafc var(--tw-gradient-to-position)
        !important;
}
