/* ========================================
   VoxWzrd Product Page
   ======================================== */

/* ========================================
   Hero
   ======================================== */

.vox-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(80px + var(--spacing-xl)) var(--spacing-xl) var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.vox-back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-xl);
    transition: color var(--transition-base);
}

.vox-back-link:hover {
    color: var(--color-text);
}

.vox-hero-icon {
    margin-bottom: var(--spacing-lg);
}

.vox-icon-img {
    width: 256px;
    height: 256px;
    object-fit: contain;
    border-radius: 48px;
    filter: drop-shadow(0 0 50px rgba(6, 182, 212, 0.4)) drop-shadow(0 0 100px rgba(6, 182, 212, 0.2));
    animation: floatCrystal 6s ease-in-out infinite;
}

.vox-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

.vox-hero-gradient {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
}

.vox-hero-desc {
    max-width: 600px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.vox-hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.vox-platforms {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.vox-badge {
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* ========================================
   Features
   ======================================== */

.vox-features {
    padding: var(--spacing-3xl) var(--spacing-xl);
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, var(--color-bg-elevated) 50%, transparent 100%);
}

.vox-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.vox-feature-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
}

.vox-feature-block:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
}

.vox-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.vox-feature-icon-accent {
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-secondary);
}

.vox-feature-icon svg {
    width: 28px;
    height: 28px;
}

.vox-feature-block h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
}

.vox-feature-tagline {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.vox-feature-block:nth-child(2) .vox-feature-tagline {
    color: var(--color-secondary);
}

.vox-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.vox-feature-list li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.vox-feature-list li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 0.8rem;
}

.vox-feature-block:nth-child(2) .vox-feature-list li::before {
    color: var(--color-secondary);
}

/* ========================================
   Privacy
   ======================================== */

.vox-privacy {
    padding: var(--spacing-3xl) var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.vox-privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.vox-privacy-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.vox-privacy-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
}

.vox-privacy-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-secondary);
}

.vox-privacy-icon svg {
    width: 100%;
    height: 100%;
}

.vox-privacy-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: var(--spacing-sm);
}

.vox-privacy-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========================================
   Pricing
   ======================================== */

.vox-pricing {
    padding: var(--spacing-3xl) var(--spacing-xl);
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, var(--color-bg-elevated) 50%, transparent 100%);
}

.vox-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.vox-pricing-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.vox-pricing-card:hover {
    transform: translateY(-6px);
}

.vox-pricing-featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.vox-pricing-featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.vox-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.vox-pricing-badge-accent {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.vox-pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

.vox-price {
    margin-bottom: var(--spacing-xs);
}

.vox-price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
}

.vox-price-period {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.vox-price-annual {
    color: var(--color-text-subtle);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-md);
}

.vox-price-annual s {
    color: var(--color-text-subtle);
}

.vox-pricing-features {
    list-style: none;
    text-align: left;
    margin: var(--spacing-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.vox-pricing-features li {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.vox-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 600;
}

.vox-pricing-btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--spacing-sm);
}

/* ========================================
   Download CTA
   ======================================== */

.vox-download {
    padding: var(--spacing-3xl) var(--spacing-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.vox-download-content {
    max-width: 500px;
    margin: 0 auto;
}

.vox-download-text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
}

.vox-appstore-link {
    display: inline-block;
    transition: transform var(--transition-base);
}

.vox-appstore-link:hover {
    transform: scale(1.05);
}

.vox-appstore-badge {
    width: 180px;
    height: 60px;
}

.vox-download-note {
    color: var(--color-text-subtle);
    font-size: 0.85rem;
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .vox-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .vox-privacy-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .vox-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .vox-pricing-featured {
        transform: none;
    }

    .vox-pricing-featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .vox-hero {
        padding-top: calc(60px + var(--spacing-lg));
        min-height: auto;
    }

    .vox-icon-img {
        width: 180px;
        height: 180px;
        border-radius: 36px;
    }

    .vox-hero-title {
        font-size: 2.5rem;
    }

    .vox-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .vox-hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .vox-features,
    .vox-privacy,
    .vox-pricing,
    .vox-download {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
}
