/* Full Potential AI - Landing Page Styles */

:root {
    /* Colors - Matching Dashboard */
    --primary-color: #64ffda;
    --primary-dark: #00e5a0;
    --secondary-color: #7c3aed;
    --accent-color: #ff6b9d;
    --success-color: #2ed573;

    /* Backgrounds */
    --dark-bg: #0a0e1a;
    --dark-surface: #1a1f35;
    --dark-elevated: #222840;

    /* Text */
    --text-color: #ffffff;
    --light-text: #f1f5f9;
    --muted-text: #cbd5e1;

    /* Effects */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 100%);
    --shadow-glow: 0 0 30px rgba(100, 255, 218, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background:
        radial-gradient(ellipse at top, rgba(100, 255, 218, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
        var(--dark-bg);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

/* Live Progress Widget */
.live-progress {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(26, 31, 53, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(100, 255, 218, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.progress-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.progress-metric {
    margin-bottom: 1.5rem;
}

.metric-value {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.metric-label {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-top: 0.5rem;
    font-weight: 600;
}

.progress-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    font-size: 2rem;
    color: var(--muted-text);
    opacity: 0.3;
}

.progress-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #0a0e1a;
    box-shadow: 0 4px 20px rgba(100, 255, 218, 0.3);
}

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

.btn-secondary {
    background: var(--dark-elevated);
    color: #ffffff;
    border: 2px solid rgba(100, 255, 218, 0.3);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(100, 255, 218, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* Sections */
section {
    padding: 6rem 2rem;
}

section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* Vision Grid */
.vision-section {
    background: var(--dark-surface);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-card {
    padding: 2.5rem;
    background: var(--dark-bg);
    border-radius: 16px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.vision-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Sacred Loop */
.difference-section {
    background: var(--dark-bg);
}

.loop-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.loop-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-surface);
    border-radius: 12px;
    border: 2px solid rgba(100, 255, 218, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.loop-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.loop-back {
    transform: rotate(180deg);
}

.cta-centered {
    text-align: center;
}

/* Pathways */
.pathways-section {
    background: var(--dark-surface);
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pathway-card {
    padding: 2.5rem;
    background: var(--dark-bg);
    border-radius: 16px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.pathway-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
}

.pathway-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.pathway-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pathway-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pathway-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.pathway-link:hover {
    color: var(--primary-dark);
}

/* State Section */
.state-section {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(79, 172, 254, 0.05) 100%);
}

.state-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--dark-surface);
    border-radius: 20px;
    border: 2px solid rgba(100, 255, 218, 0.2);
    text-align: center;
}

.state-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.state-card p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--dark-surface);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.footer-copyright {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .loop-container {
        flex-direction: column;
    }

    .loop-arrow {
        transform: rotate(90deg);
    }

    .loop-back {
        transform: rotate(270deg);
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
