/* ============================================================================
   WATCH LANDING PAGE - SPECIFIC STYLES
   Supplement to style.css — only Watch-specific overrides
   ============================================================================ */

/* === WATCH BADGE (above hero title) === */
.watch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: var(--text-small);
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.watch-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent-green);
}

/* === WATCH HERO VISUAL === */
.watch-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.watch-hero-image {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(76, 175, 80, 0.3);
    position: relative;
    z-index: 2;
}

.watch-hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    animation: glow-pulse 4s ease-in-out infinite;
}

/* === WATCH FEATURES GRID (2x2) === */
.watch-features-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* === WATCH STEPS (horizontal 3-column) === */
.watch-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.watch-steps .step {
    grid-template-columns: 1fr;
    text-align: center;
}

.watch-steps .step-number {
    margin: 0 auto var(--spacing-sm);
}

.watch-steps .step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === WATCH STEP SCREENSHOTS === */
.watch-step-image {
    margin-top: var(--spacing-md);
}

.watch-screenshot {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(76, 175, 80, 0.2);
}

/* === WATCH PRIVACY (single column, no visual) === */
.watch-privacy {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.watch-privacy .privacy-features {
    grid-template-columns: 1fr;
}

/* === PLANS CTA (centered button below pricing) === */
.plans-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ============================================================================
   RESPONSIVE — WATCH PAGE
   ============================================================================ */

@media (max-width: 768px) {
    .watch-steps {
        grid-template-columns: 1fr;
    }

    .watch-features-grid {
        grid-template-columns: 1fr;
    }

    .watch-hero-image {
        max-width: 260px;
        border-radius: 24px;
    }

    .watch-screenshot {
        max-width: 160px;
        border-radius: 20px;
    }

    .watch-hero-glow {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .watch-hero-image {
        max-width: 220px;
        border-radius: 20px;
    }

    .watch-hero-glow {
        width: 250px;
        height: 250px;
    }

    .watch-badge {
        font-size: var(--text-caption);
        padding: 6px 12px;
    }
}
