/* CastKeeper Alternative Design - "Podcasts Are Forever" Theme */
/* Dark, dramatic aesthetic with privacy and permanence emphasis */

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Mode Primary Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: rgba(26, 26, 37, 0.7);

    /* Accent Colors - Purple/Blue Gradient Theme */
    --accent-primary: #8B5CF6;
    --accent-secondary: #3B82F6;
    --accent-gradient: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #06B6D4 100%);
    --accent-gradient-text: linear-gradient(135deg, #A78BFA 0%, #60A5FA 50%, #22D3EE 100%);

    /* Semantic Colors */
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.35);

    /* Borders & Effects */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(139, 92, 246, 0.3);
    --glow-primary: rgba(139, 92, 246, 0.4);
    --glow-secondary: rgba(59, 130, 246, 0.3);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px var(--glow-primary);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float-particle 20s ease-in-out infinite;
}

.particles::before {
    background: var(--accent-primary);
    top: -200px;
    right: -200px;
}

.particles::after {
    background: var(--accent-secondary);
    bottom: -200px;
    left: -200px;
    animation-delay: -10s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 18px;
}

.nav-logo img {
    border-radius: 8px;
    transition: transform var(--transition-fast);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--accent-gradient);
    padding: 10px 20px !important;
    border-radius: 100px;
    color: white !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.hero-container {
    max-width: 600px;
    z-index: 1;
    margin-left: 10%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 18px;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-gradient);
    color: white;
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 80px var(--glow-primary);
}

.btn-primary svg {
    transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero Visual - Screenshot Carousel */
.hero-visual {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.screenshot-carousel {
    position: relative;
    width: 350px;
}

.carousel-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 600px;
    background: radial-gradient(ellipse, var(--accent-primary) 0%, transparent 60%);
    opacity: 0.25;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 700px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(139, 92, 246, 0.2);
}

.slide-label {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border-subtle);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.indicator:hover {
    background: var(--text-tertiary);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--accent-gradient);
    width: 28px;
    border-radius: 10px;
}

/* Section Containers */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

/* Forever Section - Timeline */
.forever-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: var(--border-subtle);
}

.timeline-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 2px solid;
}

.timeline-icon.danger {
    border-color: var(--danger);
    color: var(--danger);
}

.timeline-icon.success {
    border-color: var(--success);
    color: var(--success);
}

.timeline-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* AI Section - Feature List */
.ai-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
}

.ai-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.ai-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.ai-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.ai-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-primary);
    font-size: 24px;
}

.ai-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.ai-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vault Section - Feature Grid */
.vault-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.vault-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.vault-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.vault-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vault-card-large {
    grid-column: 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vault-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--glow-primary) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.vault-card:hover .vault-card-glow {
    opacity: 0.1;
}

.vault-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.vault-icon-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Keep icons smaller in the large feature cards */
.vault-card-large .vault-icon-img {
    width: 128px;
    height: 128px;
}

.vault-icon-img-wide {
    width: auto;
    height: 48px;
    max-width: 140px;
    object-fit: contain;
}

.vault-icon-multi {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
}

.vault-icon-multi img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.vault-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vault-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.vault-tag {
    display: inline-block;
    margin-top: auto;
    padding: 8px 16px;
    background: var(--accent-gradient);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Privacy Section */
.privacy-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.privacy-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.privacy-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    opacity: 0.1;
    top: -200px;
    right: 0;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    opacity: 0.1;
    bottom: -100px;
    left: -100px;
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.privacy-text {
    max-width: 520px;
}

.privacy-list {
    margin: 40px 0;
}

.privacy-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.privacy-item:last-child {
    border-bottom: none;
}

.privacy-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-item strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.privacy-item p {
    font-size: 15px;
    color: var(--text-tertiary);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.link-arrow:hover {
    gap: 12px;
}

.link-arrow::after {
    content: '→';
}

/* Privacy Shield Visual */
.privacy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-container {
    position: relative;
}

.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    opacity: 0.4;
    filter: blur(40px);
    animation: shield-pulse 4s ease-in-out infinite;
}

@keyframes shield-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

.shield {
    position: relative;
    width: 160px;
    height: 200px;
}

.shield svg {
    width: 100%;
    height: 100%;
}

.shield-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
}

/* Showcase Section */
.showcase-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.showcase-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin-top: 60px;
}

.showcase-item {
    text-align: center;
}

.showcase-phone {
    position: relative;
    margin-bottom: 24px;
}

.showcase-phone img {
    width: 240px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-medium);
}

.showcase-item:hover .showcase-phone img {
    transform: translateY(-8px);
}

.showcase-item.featured .showcase-phone img {
    width: 280px;
}

.showcase-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-tertiary);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pricing-info .section-desc {
    margin-top: 16px;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
    overflow: hidden;
}

.price-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, var(--glow-primary) 0%, transparent 70%);
    opacity: 0.3;
}

.price-badge {
    display: inline-block;
    background: var(--accent-gradient);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.price-badge.sale {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

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

    50% {
        transform: scale(1.05);
    }
}

.price-original {
    margin-bottom: 8px;
}

.price-original span {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-decoration: line-through;
    text-decoration-color: var(--danger);
    text-decoration-thickness: 2px;
}

.price-amount {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 12px;
}

.price-savings {
    font-size: 14px;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 24px;
}

.currency {
    font-size: 28px;
    font-weight: 600;
    margin-top: 12px;
    color: var(--text-secondary);
}

.value {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cents {
    font-size: 32px;
    font-weight: 700;
    margin-top: 12px;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 16px;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features svg {
    flex-shrink: 0;
    color: var(--success);
}

.price-note {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Comparison Table */
.comparison-section {
    margin-top: 80px;
    text-align: center;
}

.comparison-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(26, 26, 37, 0.8);
}

.comparison-table th.feature-col {
    text-align: left;
    padding-left: 24px;
}

.comparison-table th.highlight-col {
    background: var(--accent-gradient);
    color: white;
}

.comparison-table td.feature-name {
    text-align: left;
    padding-left: 24px;
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table td.highlight-col {
    background: rgba(139, 92, 246, 0.1);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .total-row {
    background: rgba(26, 26, 37, 0.5);
}

.comparison-table .total-row td {
    padding: 24px 16px;
    font-size: 16px;
}

.included {
    color: var(--success);
    font-weight: 600;
}

.not-included {
    color: var(--danger);
    opacity: 0.6;
}

.included-with-subscription {
    color: var(--warning);
    font-weight: 500;
    font-size: 13px;
}

.price-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.best-price {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-gradient);
    border-radius: 100px;
    font-weight: 700;
    color: white;
}

.competitor-price {
    color: var(--text-tertiary);
    font-size: 14px;
}

/* Download Section */
.download-section {
    padding: 160px 24px;
    background: var(--bg-primary);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, var(--glow-primary) 0%, transparent 60%);
    opacity: 0.2;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.download-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.app-store-link {
    display: inline-block;
    transition: all var(--transition-fast);
}

.app-store-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.app-store-link img {
    height: 60px;
}

.system-reqs {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.system-reqs span {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
    max-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-logo img {
    border-radius: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-tertiary);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-container {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }

    .screenshot-carousel {
        width: 280px;
    }

    .carousel-track {
        height: 560px;
    }

    .vault-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vault-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .privacy-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .privacy-text {
        max-width: 100%;
    }

    .privacy-item {
        text-align: left;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pricing-info .section-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .screenshot-carousel {
        width: 240px;
        padding-bottom: 20px;
    }

    .carousel-track {
        height: 480px;
    }

    .carousel-indicators {
        bottom: -30px;
    }

    .vault-grid {
        grid-template-columns: 1fr;
    }

    .vault-card-large {
        grid-column: span 1;
    }

    .showcase-grid {
        flex-wrap: wrap;
    }

    .showcase-phone img {
        width: 200px !important;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .value {
        font-size: 60px;
    }
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: white;
}

::-moz-selection {
    background: var(--accent-primary);
    color: white;
}