.home-lux {
    position: relative;
    background-color: transparent;
    color: #f5f5f7;
    font-family: var(--font-primary);
    padding-bottom: 0;
}

.lux-ambient {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(200, 24, 128, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.lux-hero {
    position: relative;
    z-index: 10;
    padding: 0;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.lux-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.lux-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
}

.lux-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-copy-intro .lux-title,
.hero-copy-intro .lux-subtitle,
.hero-copy-intro .lux-form {
    opacity: 0;
    transform: translateY(20px);
    animation: heroCopyFadeUp 0.8s var(--ease-smooth) forwards;
    will-change: opacity, transform;
}

.hero-copy-intro .lux-title {
    animation-delay: 0.18s;
}

.hero-copy-intro .lux-subtitle {
    animation-delay: 0.32s;
}

.hero-copy-intro .lux-form {
    animation-delay: 0.46s;
}

@keyframes heroCopyFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lux-title {
    font-size: clamp(3.2rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--color-white);
}

    .lux-title .text-gradient {
        background: linear-gradient(135deg, var(--color-accent-bright) 0%, var(--color-accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        padding-right: 0.1em;
        padding-bottom: 0.1em;
        margin-bottom: -0.1em;
        margin-right: -0.1em;
    }

.lux-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 520px;
    margin-bottom: 48px;
    font-weight: 400;
}

    .lux-subtitle strong {
        color: var(--color-white);
    }

.lux-form {
    width: 100%;
    max-width: 620px;
}

.lux-form-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lux-input-wrapper {
    display: flex;
    align-items: center;
    background: #0f1115;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 8px 8px 24px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.8);
    cursor: text;
}

    .lux-input-wrapper:focus-within {
        border-color: var(--color-accent);
        box-shadow: 0 0 0 1px var(--color-accent), 0 20px 40px -10px rgba(200, 24, 128, 0.2);
        transform: translateY(-2px);
    }

.lux-prefix, .lux-suffix {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    transition: color 0.3s ease;
}

.lux-suffix {
    margin-right: 16px;
}

.lux-input-wrapper:focus-within .lux-prefix,
.lux-input-wrapper:focus-within .lux-suffix {
    color: rgba(255, 255, 255, 0.6);
}

.lux-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 800;
    padding: 0 12px 0 4px;
}

    .lux-input::placeholder {
        color: rgba(255, 255, 255, 0.15);
        font-weight: 400;
    }

.lux-submit {
    height: 54px;
    padding: 0 36px;
    border-radius: 14px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(200, 24, 128, 0.4);
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lux-submit:hover {
        background: var(--color-accent-bright);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(200, 24, 128, 0.6);
    }

.lux-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.lux-phone-hero {
    position: relative;
    width: min(100%, 340px);
    aspect-ratio: 1 / 2.16;
    background: #000;
    border-radius: 46px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,1), inset 0 0 0 2px rgba(255,255,255,0.1), inset 0 0 0 8px #050505;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    transform: rotate3d(1, -1, 0, 10deg);
    transition: transform 0.7s ease, box-shadow 0.6s ease;
    will-change: transform, opacity;
}

    .lux-phone-hero.hero-phone-intro {
        opacity: 0;
        transform: translate3d(28px, 60px, 0) rotate3d(1, -1, 0, 24deg) scale(0.88);
        animation: phoneHeroIntro 0.95s var(--ease-smooth) 0.12s forwards;
    }

    .lux-phone-hero.hero-phone-float {
        animation: phoneHeroFloat 8s ease-in-out infinite;
    }

    .lux-phone-hero.hero-phone-intro .lux-wallpaper {
        opacity: 0;
        transform: scale(1.14);
        animation: heroWallpaperIntro 1s var(--ease-smooth) 0.24s forwards;
    }

    .lux-phone-hero.hero-phone-intro .lux-phone-glass,
    .lux-phone-hero.hero-phone-intro .lux-lock-icon,
    .lux-phone-hero.hero-phone-intro .lux-lockscreen-time,
    .lux-phone-hero.hero-phone-intro .lux-lockscreen-date,
    .lux-phone-hero.hero-phone-intro .lux-lock-widgets,
    .lux-phone-hero.hero-phone-intro .lux-ios-notification {
        opacity: 0;
        transform: translate3d(0, 24px, 0) scale(0.96);
        will-change: transform, opacity;
    }

    .lux-phone-hero.hero-phone-intro .lux-lock-icon,
    .lux-phone-hero.hero-phone-intro .lux-home-indicator {
        opacity: 0;
        will-change: transform, opacity;
    }

    .lux-phone-hero.hero-phone-intro .lux-lock-icon {
        transform: translateX(-50%) translateY(24px) scale(0.96);
    }

    .lux-phone-hero.hero-phone-intro .lux-home-indicator {
        transform: translateX(-50%) translateY(24px) scale(0.96);
    }

    .lux-phone-hero.hero-phone-intro .lux-lock-icon {
        animation: heroPhoneCenteredElementIntro 0.72s var(--ease-smooth) 0.44s forwards;
    }

    .lux-phone-hero.hero-phone-intro .lux-home-indicator {
        animation: heroPhoneCenteredElementIntro 0.72s var(--ease-smooth) 1.02s forwards;
    }

    .lux-phone-hero.hero-phone-intro .lux-phone-glass {
        animation: heroPhoneElementIntro 0.78s var(--ease-smooth) 0.34s forwards;
    }

    .lux-phone-hero.hero-phone-intro .lux-lockscreen-time {
        animation: heroPhoneElementIntro 0.72s var(--ease-smooth) 0.54s forwards;
    }

    .lux-phone-hero.hero-phone-intro .lux-lockscreen-date {
        animation: heroPhoneElementIntro 0.72s var(--ease-smooth) 0.62s forwards;
    }

    .lux-phone-hero.hero-phone-intro .lux-lock-widgets {
        animation: heroPhoneElementIntro 0.72s var(--ease-smooth) 0.74s forwards;
    }

    .lux-phone-hero.hero-phone-intro .lux-ios-notification {
        animation: heroPhoneElementIntro 0.78s var(--ease-smooth) 0.88s forwards;
    }

    .lux-phone-hero.hero-phone-float:hover {
        transform: rotate3d(0, 0, 0, 0deg);
        animation-play-state: paused;
    }

@keyframes phoneHeroIntro {
    from {
        opacity: 0;
        transform: translate3d(28px, 60px, 0) rotate3d(1, -1, 0, 24deg) scale(0.88);
    }

    to {
        opacity: 1;
        transform: rotate3d(1, -1, 0, 10deg) scale(1);
    }
}

@keyframes heroWallpaperIntro {
    from {
        opacity: 0;
        transform: scale(1.14);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroPhoneElementIntro {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes heroPhoneCenteredElementIntro {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(24px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes phoneHeroFloat {
    0%, 100% {
        transform: rotate3d(1, -1, 0, 10deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate3d(1, -1, 0, 8deg) translate3d(0, -10px, 0);
    }
}

.lux-lockscreen-time {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 4.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1;
    margin-top: 10px;
}

.lux-lockscreen-date {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.lux-lockscreen-bottom {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.lux-lock-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lux-home-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 4px;
    background: var(--color-white);
    border-radius: 10px;
    z-index: 5;
}

.lux-lock-icon {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.lux-lock-widgets {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 30px;
    z-index: 5;
    position: relative;
}

.widget-anim {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lux-widget-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

    .lux-widget-item:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }

.promo-icon {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
    display: block;
    overflow: visible;
}

.text-free {
    color: var(--color-accent-bright);
}

.lux-notifications-stack {
    position: relative;
    margin: 0 16px;
    flex-grow: 1;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 50px;
    padding-top: 40px;
    height: 100%;
}

.dynamic-notif {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-anim {
    position: absolute;
    top: auto;
    bottom: 8px;
    left: 0;
    right: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.idle-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.action-hidden {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
}

.lux-ios-notification {
    position: relative;
    color: #000;
}

.lux-ios-notification-shell {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 0 rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(1);
    transform-origin: center center;
    filter: brightness(1);
    text-align: left;
}

.pulsing-notif .lux-ios-notification-shell {
    animation: luxPulse 2.2s ease-in-out infinite both;
}

@keyframes luxPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 0 rgba(255, 255, 255, 0.12);
        filter: brightness(1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    50% {
        transform: scale(1.01);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 14px 2px rgba(255, 255, 255, 0.2);
        filter: brightness(1.02);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

.lux-notif-progress {
    height: 3px;
    background: var(--color-accent);
    width: 0%;
    margin-top: 8px;
    border-radius: 4px;
    opacity: 0.8;
}

@keyframes notifTimer {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.lux-ios-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.lux-ios-app {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(0,0,0,0.6);
}

.lux-ios-icon {
    width: 18px;
    height: 18px;
    background: var(--color-accent);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 800;
}

.system-icon {
    background: #333 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lux-ios-time {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.5);
}

.lux-ios-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.lux-ios-body {
    font-size: 0.9rem;
    line-height: 1.35;
    color: rgba(0,0,0,0.8);
}


.lux-features-section {
    padding: 80px 0;
}

.lux-features-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lux-features-subtitle {
    margin-bottom: 60px;
    color: var(--color-text-secondary);
    font-size: 1.15rem;
}

.lux-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lux-feature-box {
    background: #0a0b0f;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 48px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .lux-feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .lux-feature-box:hover {
        transform: translateY(-8px);
        border-color: rgba(200, 24, 128, 0.4);
        box-shadow: 0 20px 40px rgba(200, 24, 128, 0.1);
    }

        .lux-feature-box:hover::before {
            opacity: 1;
        }

.lux-box-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 24, 128, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-bright);
    margin-bottom: 24px;
}

.lux-feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.lux-feature-box p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.lux-comparison-section {
    padding: 80px 0;
}

.lux-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: #0a0b0f;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 48px;
    position: relative;
}

    .comparison-card.new-way {
        background: linear-gradient(180deg, rgba(200, 24, 128, 0.05) 0%, rgba(10, 11, 15, 1) 100%);
        border-color: rgba(200, 24, 128, 0.3);
        box-shadow: 0 20px 60px -10px rgba(200, 24, 128, 0.15);
    }

.comp-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1c23;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.active-badge {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent-bright);
    box-shadow: 0 4px 12px rgba(200, 24, 128, 0.4);
}

.comparison-card h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .comp-list li {
        display: flex;
        gap: 16px;
        margin-bottom: 24px;
    }

        .comp-list li:last-child {
            margin-bottom: 0;
        }

.comp-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

    .comp-icon.bad {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }

    .comp-icon.good {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
    }

.comp-list strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--color-white);
}

.comp-list p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: var(--color-text-secondary);
}

.lux-steps-section {
    padding: 80px 0;
}

.lux-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: left;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
    line-height: 1;
    margin-bottom: -20px;
    margin-left: -10px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px -5px rgba(200, 24, 128, 0.4);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.step-card p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.lux-final {
    padding: 50px 0 120px 0;
    margin-top: 0;
    position: relative;
}

    .lux-final .container {
        position: relative;
        z-index: 1;
        background: linear-gradient(180deg, rgba(15, 17, 26, 0.6) 0%, rgba(5, 5, 5, 1) 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 32px;
        padding: 80px 40px;
        box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
    }

.lux-form-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.lux-input-wrapper {
    display: flex;
    align-items: center;
    background: #0f1115;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 8px 8px 24px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.8);
    cursor: text;
}

.lux-ios-app-name {
    font-weight: 700;
}

.lux-final-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.lux-final-subtitle {
    margin-bottom: 40px;
}

.lux-btn-final {
    padding: 18px 48px;
    font-size: 1.1rem;
    border-radius: 999px;
}

.enterprise-box {
    margin-top: 60px;
}

    .enterprise-box h3 {
        margin-bottom: 24px;
    }

    .enterprise-box p {
        margin-bottom: 30px;
    }

.lux-notif-progress-anim {
    animation: notifTimer 4000ms linear forwards;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-700 {
    font-weight: 700;
}

@media (max-width: 1080px) {
    .lux-hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lux-hero-content {
        align-items: center;
    }

    .lux-form {
        margin: 0 auto;
    }

    .lux-feature-grid {
        grid-template-columns: 1fr;
    }

    .lux-comparison-grid,
    .lux-steps-grid,
    .lux-pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.pro {
        transform: scale(1);
    }
}

.scroll-prompt-mobile {
    display: none;
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline !important;
    }

    .lux-hero-visual {
        display: none;
    }

    .lux-hero {
        padding-top: 80px;
        min-height: auto;
    }

    .lux-title {
        font-size: clamp(2.8rem, 13vw, 4rem);
        margin-bottom: 20px;
        line-height: 1;
        letter-spacing: -0.04em;
    }

        .lux-title .text-gradient {
            display: inline-block;
            line-height: 0.95;
            margin-top: 0.15em;
            padding-bottom: 0.2em;
            margin-bottom: -0.2em;
        }

    .scroll-prompt-mobile {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 24px;
        color: var(--color-accent-bright);
        opacity: 0.8;
        padding-bottom: 10px;
        animation: heroCopyFadeUp 0.8s var(--ease-smooth) forwards;
        animation-delay: 0.6s;
    }

    .arrow-bounce {
        animation: bounceArrow 2s infinite ease-in-out;
    }

    .lux-phone-hero {
        transform: rotate3d(0,0,0,0);
        margin-top: 20px;
        width: min(100%, 300px);
        min-height: 600px;
        aspect-ratio: 1 / 2.25;
        padding-top: 30px;
    }

    .lux-lock-widgets {
        margin-bottom: 10px;
    }

    .lux-notifications-stack {
        padding-top: 0;
        padding-bottom: 25px;
    }

    .lux-lockscreen-time {
        font-size: 3.5rem;
    }

    .lux-subtitle {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    .lux-form-label {
        font-size: 0.75rem;
        white-space: normal;
    }

    .lux-input-wrapper {
        border-radius: 20px;
        padding: 12px;
        flex-wrap: wrap;
    }

    .lux-prefix {
        font-size: 1.05rem;
    }

    .lux-input {
        font-size: 1.1rem;
        padding: 0 4px 0 8px;
        flex: 1;
        min-width: 100px;
        height: 40px;
    }

    .lux-suffix {
        font-size: 1.1rem;
        margin-right: 4px;
        line-height: 40px;
    }

    .lux-submit {
        width: 100%;
        margin-top: 12px;
        height: 50px;
        font-size: 1.05rem;
        padding: 0;
    }

    .lux-phone-hero {
        transform: rotate3d(0,0,0,0);
        margin-top: 40px;
        width: min(100%, 280px);
        padding-top: 30px;
    }

    .lux-ios-body {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .lux-lockscreen-time {
        font-size: 3.5rem;
    }

    .lux-feature-box {
        text-align: center;
        padding: 40px 24px;
    }

    .lux-box-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 24px auto;
    }

    .lux-features-section,
    .lux-comparison-section,
    .lux-steps-section,
    .lux-pricing-section {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .lux-features-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .step-card {
        text-align: center;
    }

    .step-icon {
        margin: 0 auto 24px auto;
    }

    .step-number {
        margin-left: 0;
        text-align: center;
        width: 100%;
        display: block;
    }

    .comparison-card {
        padding: 30px 24px;
    }

        .comparison-card h3 {
            font-size: 1.5rem;
        }

    .lux-step-section {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .lux-final-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .lux-final .container {
        padding: 40px 24px;
        border-radius: 24px;
        margin: 0 24px;
        width: auto;
    }
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes heroCopyIntro {
    0% {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
