/* Landing Page Specific Styles */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
}

.series-name {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--pace-text-dark);
}

.divider {
    color: var(--pace-secondary);
}

.powered-by {
    font-size: 0.9rem;
    color: var(--pace-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pace-text {
    color: var(--pace-primary);
    font-weight: bold;
    font-family: var(--font-title);
}

/* Hero */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.highlight {
    color: var(--pace-primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(235, 145, 16, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.app-card {
    background: var(--pace-card-dark);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-card:hover {
    transform: translateY(-8px);
    border-color: var(--pace-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--pace-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.app-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    margin-bottom: 1.5rem;
    color: var(--pace-primary);
}

.app-card h3 {
    font-size: 1.75rem;
    margin: 0 0 1rem;
    color: var(--pace-text-dark);
}

.app-card p {
    color: #9ca3af;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-link {
    color: var(--pace-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Placeholders */
.app-card.placeholder {
    opacity: 0.6;
    border-style: dashed;
    cursor: default;
}

.app-card.placeholder:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255,255,255,0.1);
}

.status-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    align-self: flex-start;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--pace-bg-dark), #1a1f2e);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--pace-text-dark);
}

.cta-section p {
    color: #9ca3af;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}
