/* Wavelet Action Plan - Lean & Fast */

:root {
    --green: #64ee85;
    --cyan: #00ddeb;
    --dark: #0a192f;
    --darker: #020d18;
    --card: #0f2942;
    --text: #e2e8f0;
    --text-dim: #94a3b8;
    --text-muted: #64748b;
    --orange: #f97316;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Grid Background */
.grid-background {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(100, 238, 133, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 238, 133, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(100, 238, 133, 0.1);
    padding: 20px 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.status-badge {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

/* Hero */
.hero {
    padding: 80px 0 60px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
}

/* Sections */
.section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    color: var(--green);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.card {
    background: var(--card);
    border: 1px solid rgba(100, 238, 133, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 10px 40px rgba(100, 238, 133, 0.15);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    text-decoration: none;
    padding: 12px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(100, 238, 133, 0.05);
    transition: all 0.2s ease;
}

.link:hover {
    color: var(--green);
    padding-left: 10px;
}

.link span {
    color: var(--green);
    font-weight: 700;
}

.note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -8px;
    margin-bottom: 15px;
    padding-left: 0;
}

/* Next Actions */
.next-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.next-card {
    background: var(--card);
    border: 1px solid rgba(100, 238, 133, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.next-card.high {
    border-color: var(--green);
    box-shadow: 0 0 30px rgba(100, 238, 133, 0.1);
}

.next-card.medium {
    border-color: var(--cyan);
}

.badge {
    display: inline-block;
    background: rgba(100, 238, 133, 0.15);
    color: var(--green);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.next-card.medium .badge {
    background: rgba(0, 221, 235, 0.15);
    color: var(--cyan);
}

.next-card.low .badge {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-dim);
}

.next-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.next-card ul {
    list-style: none;
}

.next-card li {
    color: var(--text-dim);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.next-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(100, 238, 133, 0.1);
    margin-top: 60px;
    text-align: center;
}

.footer p {
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .card-grid,
    .next-grid {
        grid-template-columns: 1fr;
    }
}