html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Synonym', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 20px 0;
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
}

.logo-text {
    color: #000000;
    font-size: 20px;
    font-family: 'Chillax', sans-serif;
}

.nav-logo a {
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #666666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.nav-link:hover {
    color: #000000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: #ffffff;
}


.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: #000000;
    line-height: 1.2;
    font-family: 'Chillax', sans-serif;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #666666;
    margin-bottom: 48px;
    line-height: 1.6;
    font-family: 'Synonym', sans-serif;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #FF416C, #FF4B2B);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #FF4B2B, #FF416C);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Chillax', sans-serif;
}

.section-description, .section-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-family: 'Synonym', sans-serif;
}

/* About Section */
.about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Chillax', sans-serif;
}

.about-card p {
    color: #a0a0a0;
    line-height: 1.6;
    font-family: 'Synonym', sans-serif;
}

/* Products Section */
.products-minimal {
    padding: 40px 0;
    background: #ffffff;
}

.product-text {
    font-size: 1.2rem;
    color: #666666;
    text-align: center;
    font-family: 'Synonym', sans-serif;
}

.inline-link {
    color: #000000;
    text-decoration: underline;
}

.inline-link:hover {
    color: #333333;
}

.product-showcase {
    margin-top: 60px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card.featured {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px;
    margin-bottom: 40px;
}

.product-image {
    flex-shrink: 0;
}

.product-image img {
    width: 200px;
    height: auto;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Chillax', sans-serif;
}

.product-tagline {
    font-size: 1.1rem;
    color: #667eea;
    margin-bottom: 20px;
}

.product-description {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Synonym', sans-serif;
}

.product-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #764ba2;
}

.coming-soon {
    text-align: center;
    padding: 60px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.coming-soon h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Chillax', sans-serif;
}

.coming-soon p {
    color: #a0a0a0;
    font-family: 'Synonym', sans-serif;
}

/* Hero Backers */
.hero-backers {
    margin-top: 60px;
    text-align: center;
}

.hero-backers .backers-text {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 10px;
}

.hero-backers .backers-logos {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-backers .backers-logos img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    filter: invert(1) grayscale(100%);
}

/* Careers Section */
.careers-section {
    background: #ffffff;
    padding: 80px 0;
    scroll-margin-top: 80px;
}

.careers-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Chillax', sans-serif;
}

.careers-section .company-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.careers-section .company-intro p {
    color: #333333;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: 'Synonym', sans-serif;
}

.backers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.backer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.backer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    filter: invert(1) grayscale(100%);
}

.experience-section {
    text-align: center;
    margin-top: 60px;
}

.experience-section h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #a0a0a0;
}

.experience-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.experience-logos img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.experience-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-family: 'Chillax', sans-serif;
}

.cta-section p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    font-family: 'Synonym', sans-serif;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 40px 0 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Chillax', sans-serif;
}

.footer-section p {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: block;
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

.social-links img {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: #999999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-backers {
        text-align: center;
    }
    
    .hero-backers .backers-logos {
        justify-content: center;
    }
    
    .product-card.featured {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .product-image img {
        width: 150px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-logos {
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

:root {
    --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-family-serif: "Georgia", "Times New Roman", serif;
    --background-color: #ffffff;
    --text-color: #333333;
    --heading-color: #1a1a1a;
    --accent-color: #007bff;
    --border-color: #e0e0e0;
    --container-width: 800px;
}

body {
    background-color: var(--background-color);
    font-family: var(--font-family-sans);
    color: var(--text-color);
    line-height: 1.7;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Blog Index Page */
.blog-hero {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.blog-title {
    font-family: 'Chillax', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.blog-subtitle {
    font-family: 'Synonym', sans-serif;
    font-size: 1.1rem;
    color: #666666;
}

.blog-posts {
    padding: 40px 0;
}

.post-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: background-color 0.2s ease;
    border-radius: 8px;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.post-card-link:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

.post-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.post-card-link:last-child .post-card {
    border-bottom: none;
}

.post-thumbnail {
    flex-shrink: 0;
}

.post-thumbnail img {
    width: 160px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-thumbnail img:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.post-content {
    flex: 1;
    min-width: 0;
}

.post-meta {
    font-family: var(--font-family-sans);
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 0.5rem;
}

.post-title {
    font-family: 'Chillax', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    transition: color 0.3s ease;
}

.post-card-link:hover .post-title {
    color: var(--accent-color);
}

.post-excerpt {
    font-family: 'Synonym', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 0.5rem;
}

/* Single Post Page */
.post-header {
    padding: 80px 0;
    text-align: center;
}

.post-full-title {
    font-family: 'Chillax', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-full-meta {
    font-family: var(--font-family-sans);
    font-size: 1rem;
    color: #666666;
}

.post-cover {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
}

.post-body {
    font-family: 'Synonym', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-body h2 {
    font-family: 'Chillax', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body a {
    color: var(--accent-color);
    text-decoration: underline;
}

.post-body a:hover {
    color: #0056b3;
}

.post-body img,
.post-body iframe {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
}

/* List Styling */
.post-body ul,
.post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body ul {
    list-style-type: disc;
}

.post-body ol {
    list-style-type: decimal;
}

.post-body li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

.post-body li:last-child {
    margin-bottom: 0;
}

/* Nested lists */
.post-body ul ul,
.post-body ol ol,
.post-body ul ol,
.post-body ol ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.post-body ul ul {
    list-style-type: circle;
}

.post-body ul ul ul {
    list-style-type: square;
}

/* Better spacing for content around lists */
.post-body p + ul,
.post-body p + ol {
    margin-top: 1rem;
}

.post-body ul + p,
.post-body ol + p {
    margin-top: 1.5rem;
}

/* Enhanced typography */
.post-body h3 {
    font-family: 'Chillax', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.post-body h4 {
    font-family: 'Chillax', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.post-body blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color);
    background-color: #f8f9fa;
    font-style: italic;
    color: #555;
}

.post-body code {
    background-color: #f1f3f4;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
}

.post-body pre {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.post-body pre code {
    background-color: transparent;
    padding: 0;
}

/* Better emphasis styling */
.post-body strong {
    font-weight: 600;
    color: var(--heading-color);
}

.post-body em {
    font-style: italic;
    color: #444;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .post-body ul,
    .post-body ol {
        padding-left: 1.5rem;
    }
    
    .post-body li {
        padding-left: 0.25rem;
    }
    
    .post-full-title {
        font-size: 2.2rem;
    }
    
    .post-body h2 {
        font-size: 1.6rem;
    }
    
    .post-body h3 {
        font-size: 1.4rem;
    }
    
    .post-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .post-thumbnail img {
        width: 100%;
        height: 120px;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
}
