html {
    scroll-behavior: smooth;
}

::selection {
    background-color: rgba(255, 150, 51, 0.3);
}

/* Hero gradient backdrop */
.hero-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255, 122, 13, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* City marquee animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    display: flex;
    animation: marquee 60s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-track-reverse {
    display: flex;
    animation: marquee-reverse 55s linear infinite;
    width: max-content;
}

.marquee-track-reverse:hover {
    animation-play-state: paused;
}

/* Fade edges for marquee */
.marquee-container {
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

/* Subtle float animation for badge */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.float-badge {
    animation: float 3s ease-in-out infinite;
}

/* Pricing card glow */
.pricing-glow {
    position: relative;
}

.pricing-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 122, 13, 0.25), rgba(255, 122, 13, 0.03), rgba(255, 122, 13, 0.25));
    z-index: -1;
}

/* Step number circle */
.step-number {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 122, 13, 0.15), rgba(255, 122, 13, 0.03));
    border: 1px solid rgba(255, 150, 51, 0.3);
    font-weight: 600;
    color: rgb(255, 150, 51);
    flex-shrink: 0;
}

/* Feature emoji sizing */
.feature-emoji {
    font-size: 1.75rem;
    line-height: 1;
}

/* Checkmark list */
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-list li::before {
    content: '✓';
    color: rgb(255, 150, 51);
    font-weight: 700;
    flex-shrink: 0;
}

/* App mockup */
.app-mockup {
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 80px -20px rgba(255, 122, 13, 0.08);
    backdrop-filter: blur(20px);
}

.app-mockup-search {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.app-mockup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.app-mockup-row:last-child {
    border-bottom: none;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-working { background: #34d399; }
.status-annoying { background: #fbbf24; }
.status-sleeping { background: #f87171; }

/* Slider track */
.slider-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    position: relative;
}

.slider-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Working hours bar */
.hours-bar {
    height: 6px;
    border-radius: 3px;
    display: flex;
    overflow: hidden;
}

.hours-bar-segment {
    height: 100%;
}
