/* Homepage (landing_page.html) — scoped tokens and layout */
.landing-page {
    --lp-radius: 1.25rem;
    --lp-radius-sm: 1rem;
    --lp-shell-border: rgba(13, 110, 253, 0.1);
    --lp-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

.landing-page h1,
.landing-page h2.display-5,
.landing-page h2.display-6,
.landing-page .feature-grid-section h3.h2 {
    font-family: var(--lp-display);
    letter-spacing: -0.02em;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #20c997);
    z-index: 9999;
    transition: width 0.12s ease-out;
}

.typewriter-text {
    border-right: 3px solid #20c997;
    padding-right: 6px;
    padding-left: 2px;
    margin-left: 1px;
    animation: lpBlinkCaret 0.75s step-end infinite;
    /* nowrap clips long phrases in the two-column hero — wrap inside the column */
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

@keyframes lpBlinkCaret {
    from, to { border-color: transparent; }
    50% { border-color: #20c997; }
}

.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.glow-card {
    position: relative;
    background: var(--card-background);
    z-index: 1;
    overflow: visible;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
[data-bs-theme="dark"] .glow-card {
    border-color: #444;
}

.glass-section {
    position: relative;
    overflow: hidden;
}

.blob-bg {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(0, -50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.35), rgba(32, 201, 151, 0.35));
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: lpBlobFloat 12s infinite ease-in-out alternate;
    pointer-events: none;
}

@keyframes lpBlobFloat {
    0% { transform: translate(0, -50%) scale(1); }
    100% { transform: translate(-40px, -58%) scale(1.08); }
}

.calculator-card {
    background: #ffffff;
    border-radius: var(--lp-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
[data-bs-theme="dark"] .calculator-card {
    background: #2d2d2d;
    border-color: #444;
    color: #fff;
}

.calc-input {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 0.8rem;
    font-weight: 700;
    color: var(--bs-primary);
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    height: 3.5rem;
}
.calc-input:focus {
    background-color: #fff;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}
select.calc-input {
    text-align: left;
    padding-left: 1rem;
}
[data-bs-theme="dark"] .calc-input {
    background-color: #1e1e1e;
    border-color: #444;
    color: #20c997;
}
[data-bs-theme="dark"] .calc-input:focus {
    background-color: #121212;
    border-color: #20c997;
}
[data-bs-theme="dark"] .form-label.text-muted {
    color: #adb5bd !important;
}

.carousel-wrapper-outer {
    position: relative;
}

.scrolling-wrapper,
.tools-scroller {
    display: flex;
    gap: 1.25rem;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

#howWorksCarousel {
    gap: 2.5rem;
}

.scrolling-wrapper::-webkit-scrollbar,
.tools-scroller::-webkit-scrollbar {
    display: none;
}

.scroll-card {
    flex: 0 0 90%;
    scroll-snap-align: center;
    border: none;
    background: transparent;
}
.scroll-card-inner {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--lp-radius-sm);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}
[data-bs-theme="dark"] .scroll-card-inner {
    background: #2d2d2d;
    border-color: #444;
}

.scroll-card-img {
    width: 75% !important;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    display: block;
    margin: 1rem auto 0 auto;
    border-radius: 0.5rem;
    border-bottom: none;
    cursor: zoom-in;
}
[data-bs-theme="dark"] .scroll-card-img {
    opacity: 0.92;
}

.tools-scroll-item {
    flex: 0 0 18rem;
    scroll-snap-align: start;
    border: none;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}
.tools-scroll-item:active {
    transform: scale(0.98);
}
.tools-scroll-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.1) !important;
}

.swipe-hint {
    font-size: 0.8rem;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}
.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #dee2e6;
    transition: background-color 0.3s;
}
.scroll-dot.active {
    background-color: #0d6efd;
}

.carousel-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, color 0.2s;
    color: #0d6efd;
}
.carousel-nav-btn:hover {
    background: #f8f9fa;
    transform: translateY(-50%) scale(1.06);
    color: #0a58ca;
}
.carousel-nav-btn.prev { left: 0; }
.carousel-nav-btn.next { right: 0; }
[data-bs-theme="dark"] .carousel-nav-btn {
    background: #2d2d2d;
    border-color: #444;
    color: #fff;
}

@media (min-width: 992px) {
    .carousel-wrapper-outer .carousel-nav-btn { display: flex; }
    .scrolling-wrapper { padding: 0.5rem 1rem 1.5rem 1rem; }
    .scroll-card { flex: 0 0 60%; }
}

/* Hero: enhanced only inside .landing-page (login keeps base .hero-animated-bg) */
.landing-page .hero-animated-bg {
    background: linear-gradient(-45deg, #ffffff, #f0f9ff, #e6fffa, #f5f8ff);
    background-size: 400% 400%;
    animation: lpGradientHero 22s ease infinite;
    position: relative;
    padding-bottom: 3.5rem;
}

.landing-page .hero-animated-bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 65%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

[data-bs-theme="dark"] .landing-page .hero-animated-bg {
    background: linear-gradient(-45deg, #121212, #151c24, #0f1a18, #12121a);
    background-size: 400% 400%;
}
[data-bs-theme="dark"] .landing-page .hero-animated-bg::after {
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.88) 65%, #121212 100%) !important;
}

@keyframes lpGradientHero {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.landing-page .hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13, 110, 253, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 110, 253, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, black 25%, transparent 92%);
    -webkit-mask-image: linear-gradient(180deg, black 25%, transparent 92%);
    pointer-events: none;
    z-index: 0;
}
[data-bs-theme="dark"] .landing-page .hero-grid-overlay {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.landing-page .hero-device-frame {
    border-radius: calc(var(--lp-radius) + 0.35rem);
    padding: 0.6rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(240, 249, 255, 0.85));
    border: 1px solid rgba(13, 110, 253, 0.12);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 24px 48px -12px rgba(13, 110, 253, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    max-width: min(100%, 56rem);
    margin: 0 auto;
}
[data-bs-theme="dark"] .landing-page .hero-device-frame {
    background: linear-gradient(160deg, #252525, #1a2228);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.3),
        0 24px 48px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.landing-page .hero-device-screenshot {
    border-radius: var(--lp-radius-sm) !important;
    border: none !important;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-heading {
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: clamp(1.65rem, 3.2vw, 3.25rem);
    line-height: 1.15;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.landing-page .hero-heading {
    min-height: 0;
    overflow: visible;
    text-align: center;
    padding-inline: clamp(0.35rem, 2vw, 1rem);
    box-sizing: border-box;
}

.landing-page .hero-typewriter-wrap {
    min-height: 1.25em;
    margin-top: 0.15rem;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

/* Flex row: columns default min-width:auto lets long text overflow and clip */
.landing-page .hero-section .row.align-items-center > .col-lg-6 {
    min-width: 0;
}

.landing-page .hero-section .row.align-items-center > .col-lg-6:first-child {
    position: relative;
    z-index: 2;
}

.landing-page .hero-section .row.align-items-center > .col-lg-6:last-child {
    position: relative;
    z-index: 1;
}

.landing-page .hero-typewriter-wrap .text-gradient.typewriter-text {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    vertical-align: top;
    text-align: center;
    hyphens: manual;
}

@media (min-width: 992px) {
    .hero-heading { align-items: flex-start; }
    .landing-page .col-lg-6.text-center .hero-heading { align-items: center; }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
    }
    .hero-heading {
        font-size: 2.15rem;
        min-height: auto;
        margin-bottom: 0.5rem;
    }
    .hero-section p.lead {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.45;
    }
    .blob-bg { display: none !important; }
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 4px;
    display: inline-block;
}

.landing-page .hero-typewriter-wrap .text-gradient {
    /* keep gradient on wrapped lines */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hero-animate-up {
    opacity: 0;
    animation: lpFadeInUp 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-delay-1 { animation-delay: 0.08s; }
.hero-delay-2 { animation-delay: 0.16s; }
.hero-delay-3 { animation-delay: 0.24s; }

@keyframes lpFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-shimmer {
    position: relative;
    overflow: hidden;
}
.btn-shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: lpShimmer 5s ease-in-out infinite;
}
@keyframes lpShimmer {
    0% { left: -100%; }
    18% { left: 100%; }
    100% { left: 100%; }
}

.tilt-card {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.tilt-card.is-resetting { transition: transform 0.5s ease-out; }

.ai-scan-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    display: block;
}
.ai-scan-line {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(32, 201, 151, 0.85);
    box-shadow: 0 0 15px rgba(32, 201, 151, 0.9);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}
.ai-scan-container:hover .ai-scan-line {
    animation: lpScanImage 1.5s ease-in-out infinite;
}
.ai-scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}
.ai-scan-container:hover .ai-scan-overlay { opacity: 1; }
@keyframes lpScanImage {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

.marquee-container {
    background-color: var(--card-background);
    overflow: hidden;
    white-space: nowrap;
    padding: 1.35rem 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
[data-bs-theme="dark"] .marquee-container {
    border-top-color: rgba(255, 255, 255, 0.06);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--background-color), transparent);
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--background-color), transparent);
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.marquee-content {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: lpMarquee 55s linear infinite;
    will-change: transform;
}
.marquee-item {
    padding: 0 2.5rem;
    opacity: 0.55;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.05rem;
}
.marquee-item:hover { opacity: 1; color: var(--primary-color); }
.marquee-item i { font-size: 1.45rem; margin-right: 0.5rem; }
@keyframes lpMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.explained-box {
    background-color: #f8f9fa;
    border-radius: var(--lp-radius);
    border: 1px solid var(--border-color);
    padding: 3rem !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
[data-bs-theme="dark"] .explained-box {
    background-color: #1e1e1e !important;
    border-color: #2d2d2d !important;
    color: #e0e0e0 !important;
}
[data-bs-theme="dark"] .explained-box p,
[data-bs-theme="dark"] .explained-box a {
    color: #e0e0e0 !important;
}

.gallery-card img {
    cursor: zoom-in;
}

@media (max-width: 767.98px) {
    .footer { padding-bottom: 120px !important; }
}

.hero-email-input { font-size: 1rem !important; }
@media (min-width: 768px) {
    .hero-email-input { font-size: 1.25rem !important; }
}

.transition-hover {
    transition: transform 0.2s ease;
}
.transition-hover:hover {
    transform: translateY(-2px);
}

.scale-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scale-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

@media (max-width: 991.98px) {
    body:has(.landing-sticky-cta) {
        padding-bottom: 4.75rem;
    }
}

.landing-trust-band {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
    backdrop-filter: blur(8px);
}
[data-bs-theme="dark"] .landing-trust-band {
    background: linear-gradient(180deg, #1a1f24 0%, #121212 100%);
    border-bottom-color: #333;
}

.landing-trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bs-body-color);
}
.landing-trust-item i {
    font-size: 1.25rem;
    color: var(--bs-success);
    flex-shrink: 0;
}

.landing-quick-steps {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
[data-bs-theme="dark"] .landing-quick-steps {
    background: #121212;
    border-bottom-color: #333;
}

.landing-step-card {
    border-radius: var(--lp-radius-sm);
    border: 1px solid var(--lp-shell-border);
    padding: 1.35rem 1.15rem;
    height: 100%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.05);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
[data-bs-theme="dark"] .landing-step-card {
    background: #1e1e1e;
    border-color: #333;
    box-shadow: none;
}
.landing-step-card:hover {
    box-shadow: 0 0.6rem 1.5rem rgba(13, 110, 253, 0.12);
    transform: translateY(-2px);
    border-color: rgba(13, 110, 253, 0.22);
}

.landing-step-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #20c997);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.landing-testimonial-card {
    border-radius: var(--lp-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 1.5rem;
    height: 100%;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s, border-color 0.2s;
}
[data-bs-theme="dark"] .landing-testimonial-card {
    background: #1e1e1e;
    border-color: #333;
}
.landing-testimonial-card:hover {
    box-shadow: 0 10px 32px rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.15);
}

.landing-testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.55;
}

.landing-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(32, 201, 151, 0.12));
    color: #0d47a1;
    border: 1px solid rgba(13, 110, 253, 0.2);
}
[data-bs-theme="dark"] .landing-stat-pill {
    color: #9ec5fe;
    border-color: rgba(158, 197, 254, 0.3);
}

.landing-sticky-cta {
    z-index: 1040;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
[data-bs-theme="dark"] .landing-sticky-cta {
    border-top-color: #333;
}

/* Feature rows — spacing rhythm (avoid row padding + overlap) */
.landing-page #tools-section .landing-feature-shell {
    --lp-feature-pad-x: clamp(0.75rem, 2vw, 1.25rem);
    padding: 2.25rem var(--lp-feature-pad-x);
    margin-bottom: 0;
    border-radius: var(--lp-radius);
    background: var(--card-background);
    border: 1px solid var(--lp-shell-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    row-gap: 2rem !important;
    align-items: center !important;
}
[data-bs-theme="dark"] .landing-page #tools-section .landing-feature-shell {
    background: var(--card-background);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.landing-page #tools-section .landing-feature-shell + .landing-feature-shell {
    margin-top: 2rem;
}

.landing-page #tools-section #tool-ref-checker.landing-feature-shell {
    margin-bottom: 0;
}

.landing-page .landing-tools-strip-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
[data-bs-theme="dark"] .landing-page .landing-tools-strip-section {
    background-color: var(--card-background) !important;
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}
.landing-page .landing-tools-strip-section .tools-scroll-item.card {
    background: var(--card-background) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--lp-radius-sm) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
}
[data-bs-theme="dark"] .landing-page .landing-tools-strip-section .tools-scroll-item .text-dark {
    color: var(--bs-body-color) !important;
}

.landing-page .feature-card-alt {
    border-radius: var(--lp-radius-sm);
    border: 1px solid var(--border-color);
    background: var(--card-background);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.landing-page .feature-card-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(13, 110, 253, 0.1);
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    #scroll-progress { transition: none; }

    .landing-page .hero-animated-bg {
        animation: none;
        background-position: 0% 50%;
    }

    .blob-bg { animation: none; }

    .btn-shimmer::after { animation: none; }

    .marquee-content { animation: none; }

    .typewriter-text {
        animation: none;
        border-right-color: transparent;
    }

    .hero-animate-up {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .reveal.active {
        opacity: 1;
        transform: none;
    }

    .tilt-card { transition: none; }

    .ai-scan-container:hover .ai-scan-line { animation: none; }
}
