/* Enhanced Dark SaaS Design - Inspired by WebStyle.webp */

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

:root {
    /* Dark Colors */
    --bg-dark: #0B1120;
    --bg-card: #151E2D;
    --bg-card-hover: #1A2332;
    --border-color: #1F2937;

    /* Accent Colors */
    --accent-green: #B4F648;
    --accent-green-hover: #9FDB3D;

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-gray: #9CA3AF;
    --text-dark-gray: #6B7280;
}

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

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

/* Navigation */
.navbar {
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.35rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    max-width: 120px;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--accent-green);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 246, 72, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--accent-green);
    background: rgba(180, 246, 72, 0.1);
    color: var(--accent-green);
}

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

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
    z-index: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0.6;
}

.wave-1 {
    background: radial-gradient(ellipse at 30% 100%, rgba(90, 127, 63, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 100%, rgba(61, 90, 47, 0.3) 0%, transparent 50%);
    filter: blur(40px);
}

.wave-2 {
    background: radial-gradient(ellipse at 50% 100%, rgba(180, 246, 72, 0.2) 0%, transparent 60%);
    filter: blur(60px);
    animation: wave-float 15s ease-in-out infinite;
}

.wave-3 {
    background: radial-gradient(ellipse at 40% 90%, rgba(30, 58, 44, 0.5) 0%, transparent 50%);
    filter: blur(80px);
    animation: wave-float 20s ease-in-out infinite reverse;
}

@keyframes wave-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(180, 246, 72, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 246, 72, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(180, 246, 72, 0.15);
    color: var(--accent-green);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(180, 246, 72, 0.3);
}

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

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--accent-green);
    border-bottom: 2px solid var(--accent-green);
    transform: rotate(-45deg);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateY(10px) rotate(-45deg);
    }
}

/* Stats Section */
.stats-section {
    padding: 3rem 2rem 5rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-top: -2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--accent-green);
    background: rgba(180, 246, 72, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(180, 246, 72, 0.15);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.about-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(180, 246, 72, 0.1);
    color: var(--accent-green);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.about-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(180, 246, 72, 0.3);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
    background: rgba(180, 246, 72, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Ventures Section */
.ventures {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center .section-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header-center h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-header-center p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.venture-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.venture-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.3s;
    position: relative;
}

.venture-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(180, 246, 72, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.venture-number {
    position: absolute;
    top: -1.5rem;
    right: 3rem;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(180, 246, 72, 0.08);
    line-height: 1;
    user-select: none;
}

.venture-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.venture-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.venture-info p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.badge {
    padding: 0.5rem 1.25rem;
    background: rgba(180, 246, 72, 0.2);
    color: var(--accent-green);
    border: 1px solid rgba(180, 246, 72, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.badge-light {
    background: rgba(156, 163, 175, 0.1);
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.venture-details p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* App Tiles */
.app-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.app-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: rgba(180, 246, 72, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.app-tile:hover {
    background: rgba(180, 246, 72, 0.1);
    border-color: rgba(180, 246, 72, 0.4);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 24px rgba(180, 246, 72, 0.15);
}

.app-tile.coming-soon-tile {
    opacity: 0.5;
    cursor: default;
}

.app-tile.coming-soon-tile:hover {
    transform: none;
    background: rgba(180, 246, 72, 0.05);
    border-color: var(--border-color);
    box-shadow: none;
}

.app-tile-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.app-tile-icon-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.placeholder-icon {
    font-size: 2.5rem;
    color: var(--text-dark-gray);
    font-weight: 300;
}

.app-tile-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.app-tile-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Coming Soon Preview */
.coming-soon-preview {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.preview-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: rgba(180, 246, 72, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.preview-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: rgba(180, 246, 72, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    transition: all 0.3s;
}

.preview-icon svg {
    width: 24px;
    height: 24px;
}

.preview-item:hover .preview-icon {
    background: rgba(180, 246, 72, 0.15);
    border-color: rgba(180, 246, 72, 0.4);
    transform: scale(1.1);
}

.preview-item span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(180, 246, 72, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

.contact-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    color: var(--accent-green);
    background: rgba(180, 246, 72, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-icon svg {
    width: 36px;
    height: 36px;
}

.contact-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.contact-card > p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: rgba(180, 246, 72, 0.05);
    border: 1px solid rgba(180, 246, 72, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-info a {
    font-size: 1.5rem;
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.contact-info a:hover {
    color: var(--accent-green-hover);
}

.contact-card .btn-primary {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.875rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent-green);
}

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

.footer-bottom p {
    color: var(--text-dark-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coming-soon-preview {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 5rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .about {
        padding: 4rem 1.5rem;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1.15rem;
    }

    .features {
        padding: 4rem 1.5rem;
    }

    .ventures {
        padding: 4rem 1.5rem;
    }

    .section-header-center h2 {
        font-size: 2.25rem;
    }

    .venture-item {
        padding: 2rem;
    }

    .venture-number {
        font-size: 4rem;
        top: -1rem;
        right: 2rem;
    }

    .venture-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .app-tiles {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 4rem 1.5rem;
    }

    .contact-card {
        padding: 3rem 2rem;
    }

    .contact-card h2 {
        font-size: 2.25rem;
    }

    .contact-info a {
        font-size: 1.15rem;
        word-break: break-all;
    }

    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .venture-number {
        font-size: 3rem;
    }
}
