* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --tertiary-color: #10b981;
    --beige-bg: #f5f1e8;
    --cream-bg: #faf8f3;
    --dark-text: #2d2d2d;
    --light-text: #6b6b6b;
    --border-color: #e5e0d5;
    --white: #ffffff;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--beige-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--cream-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.logo-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--dark-text);
}

/* Hero Section */
.hero {
    background: var(--cream-bg);
    padding: 6rem 0 5rem;
    text-align: center;
}

.hero-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--light-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #ff6b6b;
    color: var(--white);
    border-color: #ff6b6b;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: #db2777;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.btn-tertiary {
    background: var(--tertiary-color);
    color: var(--white);
    border-color: var(--tertiary-color);
}

.btn-tertiary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: var(--beige-bg);
}

.info-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: var(--card-shadow);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.info-content p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--cream-bg);
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 1.05rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
    font-weight: 600;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--beige-bg);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    color: var(--dark-text);
    font-weight: 700;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
    font-weight: 600;
}

.step p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Use Cases Section */
.use-cases {
    padding: 5rem 0;
    background: var(--cream-bg);
}

.use-cases h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
    font-weight: 700;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.use-case {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.use-case:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
}

.use-case h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
    font-weight: 600;
}

.use-case p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Demo Section */
.demo {
    padding: 5rem 0 6rem;
    background: var(--beige-bg);
}

.demo h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 700;
}

.demo-container {
    max-width: 900px;
    margin: 0 auto;
}

.demo-input {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    margin-top: 2.5rem;
}

.demo-input input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    outline: none;
    background: var(--white);
    transition: border-color 0.3s;
}

.demo-input input:focus {
    border-color: var(--primary-color);
}

.btn-search {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background: #5558e3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.demo-output {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    min-height: 280px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-placeholder {
    color: var(--light-text);
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0 6rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.contact-form {
    display: flex;
    gap: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
}

.contact-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 50px;
    outline: none;
}

.contact-form .btn {
    border-radius: 50px;
    background: var(--white);
    color: var(--primary-color);
    white-space: nowrap;
}

.contact-form .btn:hover {
    background: var(--cream-bg);
}

.waitlist-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Footer */
footer {
    background: var(--cream-bg);
    color: var(--dark-text);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.footer-section p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .demo-input {
        flex-direction: column;
    }
    
    .contact-form {
        flex-direction: column;
    }
}

/* Page Hero for subpages */
.page-hero {
    background: var(--cream-bg);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 700;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Content Section for subpages */
.content-section {
    padding: 4rem 0;
    background: var(--beige-bg);
    min-height: 60vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.content-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-weight: 600;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-wrapper ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-wrapper ul li {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--beige-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.price {
    margin-bottom: 2rem;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--light-text);
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
}

.price .period {
    font-size: 1rem;
    color: var(--light-text);
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

/* Documentation Styles */
.content-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--dark-text);
}

.sidebar h3:first-child {
    margin-top: 0;
}

.sidebar ul {
    list-style: none;
    margin-left: 0;
}

.sidebar ul li {
    margin-bottom: 0.5rem;
}

.sidebar a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.sidebar a:hover {
    color: var(--primary-color);
}

.main-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.main-content article {
    margin-bottom: 3rem;
}

.main-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.main-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.main-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.main-content ol li {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.code-block {
    background: var(--beige-bg);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin: 1rem 0;
}

.code-block code {
    font-family: 'Courier New', monospace;
    color: var(--dark-text);
    font-size: 0.9rem;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Jobs List */
.jobs-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.job-card {
    background: var(--beige-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s;
}

.job-card:hover {
    border-color: var(--primary-color);
}

.job-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.job-card p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for subpages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .content-wrapper {
        padding: 2rem;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Coming Soon Styles */
.coming-soon-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon-icon {
    margin-bottom: 2rem;
}

.coming-soon-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-weight: 700;
}

.coming-soon-container > p {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.coming-soon-features {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.feature-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.feature-preview ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.feature-preview ul li {
    padding: 0.8rem 0;
    color: var(--light-text);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.feature-preview ul li:last-child {
    border-bottom: none;
}

.cta-section {
    margin-top: 3rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}
