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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
    background-color: #0a0a0a;
    color: #e5e5e5;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Added rotating title styles */
.rotating-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.rotating-title-static {
    color: #ffffff;
}

.rotating-title-word {
    color: #44f63b;
    /* min-width: 200px; */
    display: inline-block;
}

.blinker {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Navigation Bullets */
.nav-bullets {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-bullets ul {
    list-style: none;
}

.nav-bullets li {
    margin: 1.5rem 0;
}

.nav-dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #404040;
    border: 2px solid #404040;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-dot:hover {
    background-color: #606060;
    border-color: #606060;
    transform: scale(1.2);
}

.nav-dot.active {
    background-color: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

/* Section Styles */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

/* Hero Section */
/* Changed hero to left-aligned layout */
.hero-content {
    max-width: 1280px;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.text-accent {
    color: #3b82f6;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 42rem;
}

/* Removed blue background from primary button, using border style instead */
.hero-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #1a1a1a;
    color: #e5e5e5;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: rgba(26, 26, 26, 0.8);
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #1a1a1a;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2a2a2a;
}

.icon {
    width: 32px;
    height: 32px;
    color: #e5e5e5;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
}

.section-description {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 50rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #2a2a2a;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: #404040;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Code Example */
.code-example {
    background-color: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-example pre {
    margin: 0;
}

.code-example code {
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-description {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 0.75rem;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    min-width: 300px;
}

.contact-link:hover {
    border-color: #404040;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #e5e5e5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-bullets {
        left: 1rem;
    }

    .section {
        padding: 3rem 1.5rem 3rem 4rem;
        /* Changed padding to account for nav dots */
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

    .contact-link {
        min-width: 100%;
    }
}
