:root {
    --primary-color: #c95938;
    --primary-hover: #a1472d;
    --secondary-color: #c8c7c8;
    --accent-color: #dd9f61;
    --dark-color: #2b2b2b;
    --text-color: #2b2b2b;
    --light-text: #555555;
    --light-color: #f5eee1;
    --gray-color: #c8c7c8;
    --border-color: #c8c7c8;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    --heading-font: 'Geist', sans-serif;
    --body-font: 'Inter', sans-serif;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    font-size: 1.05rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: 2.25rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
    color: var(--light-text);
}

li {
    margin-bottom: 0.5rem;
}

strong {
    color: var(--dark-color);
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-hover);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 5rem 0 2rem;
}

.logo {
    max-width: 160px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.section-title i {
    margin-right: 0.75rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.highlight {
    background-color: rgba(0, 112, 243, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 112, 243, 0.15);
}

.quote {
    background-color: var(--secondary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
}

.quote p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.quote-author {
    font-weight: 600;
    color: var(--dark-color);
    text-align: right;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-size: 1.15rem;
}

.faq-question i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.footer {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem 0;
    color: var(--light-text);
    border-top: 1px solid var(--border-color);
}

hr {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 4rem 0;
}

.code {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    font-family: 'SF Mono', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    margin: 1.5rem 0;
    white-space: pre-wrap;
    font-size: 0.95rem;
    color: var(--dark-color);
    line-height: 1.5;
}

/* Hero section styling */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0 0;
}

.hero h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-img-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.hero-img {
    max-width: 360px;
    margin: 1rem auto 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Testimonial styling */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.testimonial p {
    font-style: italic;
    color: var(--text-color);
    flex-grow: 1;
}

.testimonial-author {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
}

.author-role {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* CTA section */
.cta-section {
    background-color: var(--primary-color);
    padding: 4rem;
    margin: 5rem 0;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 2rem;
}

.cta-section li {
    list-style: none;
}

.cta-section h2,
.cta-section p,
.cta-section li,
.cta-section strong {
    color: var(--light-color);
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

/* Code blocks */
pre {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 2rem;
}

code {
    font-family: 'SF Mono', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.9rem;
}

/* Image styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #3b82f6;
        --primary-hover: #2563eb;
        --secondary-color: #1f2937;
        --dark-color: #f9fafb;
        --text-color: #e5e7eb;
        --light-text: #9ca3af;
        --light-color: #111827;
        --gray-color: #374151;
        --border-color: #374151;
    }
    
    body {
        background-color: var(--light-color);
    }
    
    .section, .feature-card, .testimonial, .feature {
        background-color: #1f2937;
        border-color: #374151;
    }
    
    .code {
        background-color: #111827;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .feature-grid, .testimonials {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 2rem;
    }
}

@media (min-width: 769px) {
    #getWaitlistContainer {
        /* Width for desktop */
        width: 50% !important;
    }
}

#getWaitlistContainer {
    /* Default width for mobile */
    width: 100%;
    margin: 0 auto 2rem;
}

/* Add Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
/* Add Geist font */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

.intro-text {
    font-size: 1.15rem;
    color: var(--text-color);
    max-width: 720px;
    margin: 0 auto 2rem; /* Consistent margin */
}