/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-tertiary: #737373;
    --accent: #ffffff;
    --border: #262626;
    --hover: #1f1f1f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo-img {
    height: 64px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-social-icon {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-social-icon:hover {
    color: var(--text-primary);
}

.nav-social-icon svg {
    width: 20px;
    height: 20px;
}

/* Burger Menu */
.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 8rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid var(--border);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: #e1ff00;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Sections */
.section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border);
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.content-block {
    max-width: 800px;
}

.large-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--text-tertiary);
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.product-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.tag {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.625rem;
    font-weight: 500;
    border: 1px solid var(--border);
    text-transform: capitalize;
}

/* Capabilities */
.content-block {
    max-width: 900px;
}

.capability-bio {
    max-width: 900px;
}

.capability-bio-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, 1);
    letter-spacing: -0.01em;
}

/* How we do it */
.how-intro-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

.how-continuous-text {
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-top: 2rem;
}

.how-continuous-text span {
    display: inline;
}

.text-white {
    color: rgba(255, 255, 255, 1);
}

.text-lime {
    color: #e1ff00;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.how-card {
    background-color: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.how-card:hover {
    transform: translateY(-4px);
    border-color: var(--text-tertiary);
}

.how-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.how-card-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 3rem;
}

.cta-button {
    background-color: transparent;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: lowercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover,
.cta-button:active {
    background-color: #e1ff00;
    border-color: #e1ff00;
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* Team */
.team-bio {
    max-width: 900px;
}

.team-bio-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -0.01em;
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    border-top: 1px solid var(--border);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        width: 100%;
        right: -100%;
    }

    .hero {
        padding: 6rem 1rem 2rem;
        min-height: 80vh;
    }

    .section {
        padding: 4rem 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .how-card {
        padding: 1.5rem;
    }

    .founder-card {
        padding: 2rem;
    }

    .social-icons {
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling offset for fixed nav */
section {
    scroll-margin-top: 80px;
}
