/* L00P Network Landing Page - Vibrant Social Compass Theme */

:root {
    /* L00P Brand Colors */
    --coral: #FF6B6B;
    --coral-light: #FF8E8E;
    --coral-dim: rgba(255, 107, 107, 0.2);
    --coral-glow: rgba(255, 107, 107, 0.5);

    --purple-deep: #1a0a1e;
    --purple-dark: #2d1b36;
    --purple-mid: #4a2c5a;
    --purple-light: #7c4d8a;

    --bg-dark: #0f0a12;
    --bg-card: #1a1220;
    --bg-card-hover: #251a2e;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);

    --border: rgba(255, 255, 255, 0.1);
    --border-coral: rgba(255, 107, 107, 0.3);

    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --gradient-hero: linear-gradient(135deg, #1a0a1e 0%, #2d1b36 50%, #1a0a1e 100%);
    --gradient-coral: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 50%, #FF6B6B 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #FF6B6B 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* ===== FIXED HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: linear-gradient(180deg, rgba(15, 10, 18, 0.95) 0%, rgba(15, 10, 18, 0) 100%);
    transition: background 0.3s;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.header-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--coral);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s;
}

.header-cta:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: url('assets/hero.png') center center / cover no-repeat;
    text-align: center;
    padding: 80px 24px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 10, 30, 0.7) 0%,
            rgba(26, 10, 30, 0.85) 50%,
            rgba(15, 10, 18, 0.98) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--coral-dim);
    border: 1px solid var(--coral);
    padding: 10px 20px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--coral);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: badge-glow 3s infinite;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--coral-dim);
    }

    50% {
        box-shadow: 0 0 40px var(--coral-glow);
    }
}

.hero-title {
    margin-bottom: 28px;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.title-accent {
    display: block;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-text strong {
    color: var(--coral);
}

.hero-text em {
    font-style: italic;
    color: var(--text-primary);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-coral);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px var(--coral-dim);
}

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

.btn-primary.large {
    font-size: 1.25rem;
    padding: 20px 40px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.scroll-hint:hover {
    opacity: 1;
}

.scroll-hint span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--coral);
    border-bottom: 2px solid var(--coral);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(8px);
    }
}

/* ===== PROBLEM/SOLUTION ===== */
.problem-solution {
    padding: 100px 0;
    background: var(--gradient-hero);
}

.problem-solution .container {
    display: flex;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card,
.solution-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 40px;
    border-radius: 24px;
}

.problem-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
}

.solution-card {
    background: var(--coral-dim);
    border: 1px solid var(--coral);
}

.problem-card h3,
.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.problem-card ul,
.solution-card ul {
    list-style: none;
}

.problem-card li,
.solution-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.problem-card li:last-child,
.solution-card li:last-child {
    border-bottom: none;
}

.solution-card li strong {
    color: var(--coral-light);
}

.arrow-divider {
    display: flex;
    align-items: center;
    font-size: 3rem;
    color: var(--coral);
}

/* ===== SECTION STYLES ===== */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-dark);
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 36px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: var(--border-coral);
}

.step-card.highlight {
    border-color: var(--coral);
    box-shadow: 0 0 60px var(--coral-dim);
}

.step-number {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--coral);
    opacity: 0.7;
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--purple-deep) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-card p em {
    color: var(--coral-light);
    font-style: normal;
}

/* ===== STORY ===== */
.story {
    padding: 100px 0;
    background: var(--purple-deep);
}

.story-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-card blockquote {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 32px;
    position: relative;
    padding: 0 40px;
}

.story-card blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 5rem;
    color: var(--coral);
    opacity: 0.3;
    font-family: serif;
}

.story-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.story-badge {
    display: inline-block;
    background: var(--coral-dim);
    color: var(--coral);
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 100px;
}

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

/* ===== CTA ===== */
.cta {
    padding: 140px 0;
    background: radial-gradient(ellipse at center, var(--coral-dim) 0%, var(--bg-dark) 70%);
}

.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content>p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.footer-social a:hover {
    transform: scale(1.2);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 80px;
    }

    .problem-solution .container {
        flex-direction: column;
    }

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

    .steps-grid {
        gap: 20px;
    }

    .step-card {
        padding: 36px 28px;
    }

    .story-card blockquote {
        font-size: 1.125rem;
        padding: 0 20px;
    }

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

@media (max-width: 480px) {
    .cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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