@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --fc-primary: #000000;
    --fc-primary-hover: #333333;
    --fc-accent: #00d1b2;
    --fc-bg: #ffffff;
    --fc-bg-soft: #f8f9fa;
    --fc-text: #1a1a1a;
    --fc-text-muted: #666666;
    --fc-border: #eeeeee;
    --fc-shadow: 0 4px 20px rgba(0,0,0,0.05);
    --fc-radius: 12px;
    --ph-radius: 99px; /* Pill shape */
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
    background-color: var(--fc-bg);
    color: var(--fc-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
.fc-navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--fc-border);
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.fc-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo-text {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -1px;
    color: var(--fc-text);
    text-decoration: none;
}

.fc-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fc-nav-link {
    text-decoration: none;
    color: var(--fc-text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}

.fc-nav-link:hover {
    color: var(--fc-primary);
}

/* Buttons */
.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--ph-radius);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid transparent;
}

.fc-btn-primary {
    background-color: var(--fc-primary);
    color: white !important;
}

.fc-btn-primary:hover {
    background-color: var(--fc-primary-hover);
    transform: scale(1.02);
}

.fc-btn-outline {
    background: transparent;
    border-color: var(--fc-border);
    color: var(--fc-text);
}

.fc-btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    padding: 140px 20px 100px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden; /* Fixes the 'blurry blob' by clipping the waves */
}

/* Wave Background */
.hero-waves-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(0, 209, 178, 0.05); /* Very subtle */
    opacity: 0;
    width: 200px;
    height: 200px;
    animation: wave-animation 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.wave:nth-child(2) { animation-delay: 2.5s; }
.wave:nth-child(3) { animation-delay: 5s; }

@keyframes wave-animation {
    0% { width: 100px; height: 100px; opacity: 0.8; }
    100% { width: 1200px; height: 1200px; opacity: 0; }
}

.hero-badge, .hero-title, .hero-subtitle, .fc-btn {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--fc-primary);
    color: white;
    border-radius: var(--ph-radius);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--fc-text);
}

.hero-title span {
    background: linear-gradient(90deg, var(--fc-accent), #00a1ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--fc-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Features Grid */
.feature-section {
    padding: 80px 0;
    border-top: 1px solid var(--fc-border);
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.feature-title {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--fc-text-muted);
    font-size: 14px;
}

/* Logo Strip */
.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
    opacity: 0.5;
    filter: grayscale(1);
}

.logo-item {
    font-weight: 900;
    font-size: 20px;
}

/* Forms & Auth */
.fc-split-container {
    display: flex;
    min-height: 100vh;
    background: white;
}

.fc-auth-sidebar {
    width: 40%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.fc-sidebar-content {
    max-width: 480px;
}

.fc-icon-pill {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-accent);
    font-size: 20px;
}

.fc-auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #fdfdfd;
}

.fc-auth-form-wrapper {
    width: 100%;
    max-width: 520px;
}

.fc-avatars-group {
    display: flex;
    align-items: center;
}

.fc-avatars-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -8px;
}

.fc-avatars-group img:first-child { margin-left: 0; }

.text-accent { color: var(--fc-accent); }
.fw-800 { font-weight: 800; }

.fc-auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.fc-auth-card {
    background: white;
    width: 100%;
    max-width: 500px;
    padding: 48px;
    border-radius: 4px; /* Rectangular modern feel */
    border: 1px solid var(--fc-border);
    box-shadow: var(--fc-shadow);
    transition: transform 0.3s ease;
}

.fc-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--fc-text-muted);
    margin-bottom: 8px;
}

.fc-input, .fc-select, .fc-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--fc-border);
    border-radius: 8px;
    background: var(--fc-bg-soft);
    font-size: 15px;
    color: var(--fc-text);
    transition: 0.2s;
}

.fc-input:focus {
    outline: none;
    border-color: var(--fc-primary);
    background: white;
}

/* Footer */
.fc-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-link {
    display: block;
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: 0.2s;
}

.footer-link:hover {
    color: var(--fc-accent);
    transform: translateX(4px);
}

.footer-brand-text {
    color: #999999;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 16px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #666666;
    font-size: 13px;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #666666;
    font-size: 20px;
    transition: 0.2s;
}

.social-link:hover {
    color: #ffffff;
}

/* Dashboard Mockup Animation */
.dashboard-mock {
    background: white;
    border-radius: 12px;
    height: 280px;
    box-shadow: var(--fc-shadow);
    display: flex;
    overflow: hidden;
    padding: 15px;
    gap: 15px;
}

.mock-sidebar {
    width: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mock-sidebar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 2s infinite;
}

.mock-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-header {
    height: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    width: 80%;
}

.mock-charts {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.mock-chart {
    flex: 1;
    background: linear-gradient(0deg, var(--fc-accent) 0%, #00d1b2 100%);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    animation: chart-grow 3s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.mock-chart:nth-child(1) { height: 60%; animation-delay: 0s; }
.mock-chart:nth-child(2) { height: 80%; animation-delay: 0.4s; }
.mock-chart:nth-child(3) { height: 40%; animation-delay: 0.8s; }
.mock-chart:nth-child(4) { height: 90%; animation-delay: 1.2s; }
.mock-chart:nth-child(5) { height: 50%; animation-delay: 1.6s; }

@keyframes chart-grow {
    0% { transform: scaleY(0.4); opacity: 0.4; }
    100% { transform: scaleY(1); opacity: 0.8; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mock-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-item {
    height: 12px;
    background: #f8f9fa;
    border-radius: 4px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mock-item:nth-child(2) { width: 70%; }

@media (max-width: 768px) {
    .hero-section { padding: 100px 15px 60px; }
    .hero-title { 
        font-size: 42px !important; 
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
    .hero-subtitle { 
        font-size: 16px !important; 
        margin-bottom: 30px;
    }
    .fc-nav-links { display: none; }
    .footer-bottom { justify-content: center; text-align: center; }
    
    .fc-auth-page { padding: 0; background: white; }
    .fc-auth-card {
        padding: 40px 20px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        max-width: 100%;
    }
    .fc-auth-title { font-size: 24px !important; }
    .fc-auth-subtitle { font-size: 14px !important; }
    
    .feature-item { padding: 30px 15px; }
    .section-padding { padding: 60px 0; }
}

/* Admin Panel */
.fc-admin-layout {
    display: flex;
    min-height: calc(100vh - 80px);
    background-color: var(--fc-bg-soft);
}

.fc-admin-sidebar {
    width: 260px;
    background: #ffffff;
    border-right: 1px solid var(--fc-border);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.fc-admin-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    margin: 4px 16px;
    border-radius: 10px;
    color: var(--fc-text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.fc-admin-nav-item i {
    margin-right: 14px;
    font-size: 18px;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.fc-admin-nav-item:hover {
    background: #f1f5f9;
    color: var(--fc-text);
    transform: translateX(4px);
}

.fc-admin-nav-item:hover i {
    color: var(--fc-primary);
}

.fc-admin-nav-item.active {
    background: var(--fc-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fc-admin-nav-item.active i {
    color: #ffffff;
}

.fc-admin-content {
    flex: 1;
    padding: 32px 40px;
    max-width: 1200px;
}

.fc-section-title {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 24px;
}

.fc-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--fc-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
}

.fc-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.fc-stat-label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fc-stat-value {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
}

.fc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--fc-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.fc-filter-bar {
    display: flex;
    gap: 12px;
}

.fc-filter-chip {
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid var(--fc-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fc-text-muted);
    text-decoration: none;
    transition: 0.2s;
}

.fc-filter-chip:hover {
    background: #f8f9fa;
    color: var(--fc-primary);
}

.fc-filter-chip.active {
    background: var(--fc-primary);
    color: #ffffff;
    border-color: var(--fc-primary);
}

.fc-table {
    width: 100%;
    border-collapse: collapse;
}

.fc-table th {
    padding: 12px 24px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--fc-text-muted);
    text-transform: uppercase;
    border-bottom: 2px solid var(--fc-border);
}

.fc-table td {
    padding: 16px 24px;
    vertical-align: middle;
    border-bottom: 1px solid var(--fc-border);
    font-size: 14px;
}

.fc-table tr:last-child td {
    border-bottom: none;
}

.fc-table tr:hover td {
    background-color: #fcfcfc;
}

.fc-tag {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.fc-tag-success { background: #e6f8f3; color: #00d1b2; }
.fc-tag-warning { background: #fff5e6; color: #f5a623; }
.fc-tag-danger { background: #ffebee; color: #ff3860; }
.fc-tag-primary { background: #eef3fc; color: #0d6efd; }
.fc-tag-secondary { background: #f1f3f5; color: #5a6575; }

.fc-stage-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}
.fc-stage-idea { background: #f8f9fa; color: #6c757d; }
.fc-stage-mvp { background: #eef3fc; color: #0d6efd; }
.fc-stage-beta { background: #fff5e6; color: #fd7e14; }
.fc-stage-revenue { background: #e6f8f3; color: #198754; }

@media (max-width: 768px) {
    .fc-admin-layout {
        flex-direction: column;
    }
    .fc-admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        padding: 15px 0;
    }
    .fc-admin-nav-item {
        padding: 10px 15px;
    }
    .fc-admin-content {
        padding: 20px 15px;
    }
}

