/* CLO - Chief Life Officer Styles */

:root {
    --color-bg: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-text: #ffffff;
    --color-text-muted: #9ca3af;
    --color-accent: #8b5cf6;
    --color-self: #8b5cf6;
    --color-relationships: #f97316;
    --color-home: #22c55e;
    --color-border: rgba(255, 255, 255, 0.1);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'DM Serif Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-icon {
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--color-accent);
    color: var(--color-text) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
}

.nav-cta:hover {
    filter: brightness(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.15) 0%, 
        rgba(249, 115, 22, 0.1) 30%,
        rgba(34, 197, 94, 0.05) 60%,
        transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-icon {
    margin-bottom: 2rem;
}

/* CLO Orb Animation */
.clo-orb {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: orbit 10s linear infinite;
}

.orb-ring-self {
    width: 100%;
    height: 100%;
    border-color: var(--color-self);
    opacity: 0.6;
    animation-duration: 8s;
}

.orb-ring-relationships {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border-color: var(--color-relationships);
    opacity: 0.6;
    animation-duration: 6s;
    animation-direction: reverse;
}

.orb-ring-home {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-color: var(--color-home);
    opacity: 0.6;
    animation-duration: 4s;
}

.orb-core {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--color-self), var(--color-relationships), var(--color-home));
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--color-self), var(--color-relationships), var(--color-home));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-self), var(--color-relationships));
    color: var(--color-text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Section Styles */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Problem Section */
.problem {
    background: var(--color-bg-secondary);
    border-radius: 24px;
    margin: 2rem;
    max-width: calc(1200px - 4rem);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.problem-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.problem-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

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

/* Three Worlds Section */
.worlds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.world-card {
    background: var(--color-bg-secondary);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.world-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.world-self::before {
    background: var(--color-self);
}

.world-relationships::before {
    background: var(--color-relationships);
}

.world-home::before {
    background: var(--color-home);
}

.world-card:hover {
    transform: translateY(-5px);
}

.world-self:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.world-relationships:hover {
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.world-home:hover {
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.world-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.world-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.1em;
}

.world-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.world-description {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.world-features {
    list-style: none;
}

.world-features li {
    padding: 0.75rem 0;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.world-features li strong {
    color: var(--color-text);
}

/* Fluid Intelligence Section */
.fluid {
    text-align: center;
}

.fluid-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.fluid-card {
    background: var(--color-bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.fluid-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.flow-icon {
    font-size: 2rem;
}

.flow-arrow {
    color: var(--color-accent);
    font-size: 1.5rem;
}

.fluid-card p {
    color: var(--color-text-muted);
}

.fluid-card strong {
    color: var(--color-text);
}

/* Why CLO Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
}

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

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1), 
        rgba(249, 115, 22, 0.1), 
        rgba(34, 197, 94, 0.1));
    border-radius: 24px;
    margin: 2rem;
    max-width: calc(1200px - 4rem);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-tagline {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 1rem;
}

.waitlist-form input::placeholder {
    color: var(--color-text-muted);
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-note {
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 3rem 2rem;
    text-align: center;
}

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

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .world-card {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}
