:root {
    --gold: #C4A962;
    --dark-bg: #0A0A0A;
    --text-color: #FFFFFF;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 4rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
}

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

.nav-right a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero {
    text-align: center;
    padding: 8rem 2rem;
}

.subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-text {
    color: #888;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@keyframes buttonGradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-button {
    background: linear-gradient(
        90deg,
        #2B4C5E 0%,
        #34647A 50%,
        #2B4C5E 100%
    );
    background-size: 200% auto;
    color: var(--gold);
    border: none;
    border-radius: 4px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    animation: buttonGradientFlow 4s linear infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 76, 94, 0.3);
}

.products-wrapper {
    position: relative;

}

h2::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    width: 100vw;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
}

.products {
    position: relative;
    padding-bottom: 1px;
}

.products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
}

.product-card {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.product-card:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
}

.product-card h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.product-card p {
    color: #888;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.product-link {
    color: #4A8DB7;
    text-decoration: none;
    font-size: 0.9rem;
}

.product-link:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    font-size: 0.9rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 24px;
    height: 24px;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo-text {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-page {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    line-height: 1.8;
}

.about-content h1 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 3rem;
    text-align: left;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    width: 100vw;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
}

.about-content h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.about-content p:first-of-type {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #888;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #888;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-content li {
    margin-bottom: 1rem;
    color: #888;
}

.about-content em {
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

/* Updated responsive styles */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    .logo {
        width: auto;
        justify-content: flex-start;
    }
    
    .nav-right {
        width: auto;
        gap: 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-right a {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .logo-icon {
        width: 20px;
        height: 20px;
    }

    /* Adjust main content to account for taller navbar */
    body {
        padding-top: 6rem;
    }

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

    .hero h1 br {
        display: none; /* Remove line break between "Scaling" and "Exponential" */
    }
    
    .hero-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-text br {
        display: none; /* Remove forced line break in description */
    }
}

/* For very small screens */
@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }
    
    .nav-right {
        gap: 0.75rem;
    }
    
    .nav-right a {
        padding: 0.5rem 0.75rem;
    }

    /* Additional padding for even taller navbar */
    body {
        padding-top: 8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 6rem 1rem; /* Slightly reduce padding on very small screens */
    }
}

/* Add animation to hero heading */
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        #E5D5A8 50%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientFlow 4s linear infinite;
    display: inline-block;
} 