:root {
    --bg-color: #0b0f19;
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--bg-color);
    background-image: radial-gradient(rgba(99, 102, 241, 0.25) 1.5px, transparent 1.5px);
    background-size: 35px 35px;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 120%);
    z-index: 1;
    pointer-events: none;
}

.hero-split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.greeting {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.greeting .accent {
    color: var(--accent-color);
    font-weight: 600;
}

.glitch-text {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.roles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.ghost-button.with-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
}

.ghost-button.with-icon svg {
    margin-left: 0.2rem;
}

.image-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 0 60px rgba(236, 72, 153, 0.5);
    z-index: -1;
    animation: rotate-pulse 10s linear infinite;
}

.profile-img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
    border: 6px solid var(--bg-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
}

.floating-socials {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.follow-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icons a {
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.role-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.role-badge:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(99, 102, 241, 0.4);
}

/* Sections General */
section {
    padding: 8rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* About */
.about-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 1.5;
}

.about-text-left {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Tabs Component */
.tabs-header {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    overflow-x: auto;
}

.tab-link {
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    padding-bottom: 0.8rem;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.tab-link:hover {
    color: var(--text-main);
}

.tab-link.active {
    color: var(--primary-color);
}

.tab-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-link.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

.timeline-item {
    margin-bottom: 2rem;
}

.timeline-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.timeline-item p {
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
}

.timeline-item p .label {
    width: 120px;
    flex-shrink: 0;
    color: var(--text-muted);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-split {
        flex-direction: column;
        gap: 2rem;
    }
}

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

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.interactive-card:hover::before {
    left: 100%;
}

.interactive-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.glass-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

/* Feature Sections */
.feature-section {
    position: relative;
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-section.reverse .feature-container {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-image-wrapper {
    flex: 1;
    position: relative;
}

.feature-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    height: 100%;
}

.grid-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.grid-image:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate-pulse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.05);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

.neon-title {
    font-size: 3rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.startup-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.ghost-button {
    padding: 0.8rem 2rem;
    background: transparent;
    color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ghost-button:hover {
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tag {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

/* Contact Section */
.contact-section {
    background: #23262d;
    padding: 4rem 0;
    /* Reduced from 6rem for a more compact look */
}

.contact-section .container {
    max-width: 1100px;
    /* Section-specific width for better focus */
}

.contact-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info .logo {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.contact-icons {
    display: flex;
    gap: 2rem;
}

.contact-icons a {
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-container {
    flex: 1.2;
    background: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1.2rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background-color: #2a2d35;
    border: none;
    border-radius: 6px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.contact-form .submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}



@media (max-width: 768px) {
    .contact-split {
        flex-direction: column;
        gap: 3rem;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 1.2rem;
    }

    .contact-form-container {
        padding: 0;
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form .submit-btn {
        padding: 1.2rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .contact-section {
        padding: 4rem 2rem;
        /* Matches standard container padding */
    }

    .contact-info .logo {
        justify-content: flex-start;
        margin-bottom: 1.5rem;
    }

    .contact-info p {
        text-align: left;
        margin-bottom: 2rem;
        width: 100%;
    }

    .contact-icons {
        justify-content: flex-start;
    }
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-info h3 span {
    color: var(--primary-color);
}

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

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {

    .feature-container,
    .feature-section.reverse .feature-container {
        flex-direction: column;
    }

    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .roles {
        justify-content: center;
    }

    .glitch-text {
        font-size: 3rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(11, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-btn div {
        width: 25px;
        height: 3px;
        background-color: var(--text-main);
        margin: 5px;
        transition: all 0.3s ease;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-btn.toggle .line2 {
        opacity: 0;
    }

    .mobile-menu-btn.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}