:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #ec4899;
    --background: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --acc-green: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

body::after {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    width: 50vw;
    height: 50vw;
    animation-delay: -10s;
    animation-duration: 25s;
}

@keyframes drift {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(-60%, -40%) scale(1.1) rotate(10deg);
    }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-fade-up.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-size: 0.8rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.lang-selector option {
    background: #1e293b;
    color: white;
}

.nav-cta {
    background: white;
    color: black;
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

header.scrolled .nav-cta {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .nav-cta {
        display: none;
    }
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}


/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 0 2rem;
    }
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .cta-group {
        align-items: center;
    }
}

/* Hero CTA container */
.hero-cta-container {
    margin-top: 2rem;
}

/* Store badges row (Play badge + QR side by side) */
.store-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Google Play Badge */
.google-play-badge {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
    max-width: 200px;
}

.google-play-badge img {
    width: 100%;
    height: auto;
}

.google-play-badge:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Desktop QR Code */
.desktop-qr {
    display: none;
    /* Hidden on mobile */
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.qr-box {
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qr-box img {
    display: block;
    width: 100px;
    height: 100px;
    animation: qrpulse 3s ease-in-out infinite;
}

@keyframes qrpulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.qr-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 80px;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .desktop-qr {
        display: flex;
    }

    .cta-group {
        flex-direction: row;
        align-items: center;
    }
}

.klipy-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.klipy-badge strong {
    color: white;
    letter-spacing: 0.1em;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.carousel-container {
    width: 100%;
    max-width: 320px;
    position: relative;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: floating 6s ease-in-out infinite;
}

@media (max-width: 480px) {
    .carousel-container {
        max-width: 260px;
    }
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 40px;
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.pro-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pro-asset-streaks {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    border-radius: 20px;
}

.streak-visual-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}


/* Section Styling */
section.steps {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section.steps {
        padding: 3rem 0;
    }
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-head p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 900;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
}

/* Streaks Section */
.streaks {
    margin: 4rem 0;
}

.streak-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(236, 72, 115, 0.1) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 3rem;
    border-radius: 32px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .streak-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
}

.streak-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.5));
}

.streak-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.streak-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

/* Features Grid */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    background: var(--glass);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    overflow: hidden;
}

.feature-item.large {
    min-height: 440px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.05);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.pro-tag {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 0.75rem;
}

.feature-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.feature-visual {
    width: 100%;
    height: 250px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transition: transform 0.5s ease;
    padding: 1rem;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.feature-item:hover .feature-visual img {
    transform: scale(1.05) translateY(-5px);
}

/* Before/After Slider */
.slider-visual {
    position: relative;
    padding: 0;
    border: none;
    height: 350px;
    background: #0f172a;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-image.before img {
    filter: grayscale(100%) brightness(0.7) contrast(0.8);
}

.slider-image.after {
    clip-path: inset(0 0 0 50%);
    z-index: 2;
}

.slider-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    z-index: 3;
    pointer-events: none;
}

.slider-divider::before {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
}

/* Trust Section */
.trust-banner {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: 6rem;
    /* Separation from Waitlist */
    flex-direction: column;
    /* Stack content vertically inside banner */
    align-items: center;
    /* Center everything */
    text-align: center;
}

@media (max-width: 768px) {
    .trust-banner {
        padding: 2.5rem;
    }
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trust-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.trust-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.trust-item svg {
    color: #22c55e;
    /* Green Checkmark */
    width: 24px;
    height: 24px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.badge-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.badge-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.3);
}

.badge-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.badge-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.badge-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    flex-grow: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
}

.avatar.gradient-1 {
    background: linear-gradient(135deg, #fca5a5, #f87171);
}

.avatar.gradient-2 {
    background: linear-gradient(135deg, #86efac, #22c55e);
}

.avatar.gradient-3 {
    background: linear-gradient(135deg, #93c5fd, #3b82f6);
}

.user-info span {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Separate cards */
}

details.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    /* Ensure rounded corners */
}


details.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

details.faq-item[open] {
    background: rgba(255, 255, 255, 0.08);
    /* Distinct active bg */
    border-color: rgba(79, 70, 229, 0.5);
    /* Primary Border Highlight */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

summary.faq-question {
    list-style: none;
    /* Hide default marker */
    padding: 1.5rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

summary.faq-question::-webkit-details-marker {
    display: none;
    /* Hide marker in WebKit */
}

summary.faq-question:hover {
    color: var(--primary);
}

/* Custom Chevron Icon */
.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -4px;
    /* Optical center */
}

details[open] .faq-icon::after {
    transform: rotate(-135deg);
    border-color: var(--primary);
    margin-top: 4px;
}

/* Smooth Expansion Animation (Grid Hack) */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    /* Ensure closed state is hidden */
}

details[open] .faq-answer {
    grid-template-rows: 1fr;
    /* content revealed seamlessly */
}

.faq-answer-inner {
    min-height: 0;
    padding: 0 1.5rem 2.5rem 1.5rem;
    /* Generous bottom padding */
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 100%;
}

/* Accessibility Focus */
summary.faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Download Section */
.waitlist-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 5rem;
    text-align: center;
    backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
    .waitlist-card {
        padding: 3rem 1.5rem;
    }
}

.waitlist-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.waitlist-content p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}


/* Footer */
footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 90%;
    max-width: 400px;
    opacity: 0;
    animation: fadeUpSticky 0.5s ease-out 0.5s forwards;
}

@media (min-width: 768px) {
    .mobile-sticky-cta {
        display: none;
    }
}

.sticky-button {
    display: block;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 99px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.sticky-button:active {
    transform: scale(0.95);
}


@keyframes fadeUpSticky {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Hero Button Enhancements - Pop Color */
.hero-button {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    color: white !important;
    padding: 1.25rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.6);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 4rem;
    }
}

/* Klipy Attribution */
.klipy-attribution {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    position: relative;
    z-index: 100;
}

.klipy-attribution a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    padding: 10px;
}

.klipy-attribution a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.klipy-logo-img {
    height: 1.8rem;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Visually hidden (honeypot, screen-reader only) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.skip-link:focus {
    top: 1rem;
}


/* Backdrop filter vendor prefix */
.step-card,
.streak-card,
.testimonial-card,
.waitlist-card {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

header.scrolled {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}