/* General Styles */
:root {
    /* Dark Theme (Default) */
    --bg-color: #010409;
    --header-bg: rgba(1, 4, 9, 0.8);
    --card-bg: #0D1117;
    --border-color: #21262D;
    --text-primary: #E6EDF3;
    --text-secondary: #848D97;
    --primary-accent: #58A6FF;
    --primary-accent-hover: #79C0FF;
    --success-color: #238636;
    --special-accent: #A371F7; /* For Oracle */
    --cyan-glow: rgba(0, 255, 255, 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    --border-radius: 6px;
    --box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    --transition-speed: 0.5s;
}

body[data-theme="light"] {
    --bg-color: #FFFFFF;
    --header-bg: rgba(255, 255, 255, 0.8);
    --card-bg: #F6F8FA;
    --border-color: #D0D7DE;
    --text-primary: #1F2328;
    --text-secondary: #656D76;
    --primary-accent: #0969DA;
    --primary-accent-hover: #2C85E8;
    --success-color: #1A7F37;
    --special-accent: #8250DF;
    --cyan-glow: rgba(0, 255, 255, 0.2);
}

body {
    font-family: var(--font-family);
    background: var(--bg-color) linear-gradient(180deg, var(--cyan-glow) 0%, rgba(255, 255, 255, 0) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding-top: 60px; /* Header height */
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-accent-hover);
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
    background-color: var(--primary-accent);
    color: #fff;
    border-color: var(--primary-accent);
}
.btn-primary:hover {
    background-color: var(--primary-accent-hover);
    border-color: var(--primary-accent-hover);
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(88, 166, 255, 0.2);
}

.btn-success {
    background-color: var(--success-color);
    color: #fff;
    border-color: var(--success-color);
}
.btn-success:hover {
    opacity: 0.9;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(35, 134, 54, 0.2);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-primary);
}
.btn-outline-light:hover {
    background-color: var(--card-bg);
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    text-decoration: none;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 12px 28px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .btn-lg {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Header */
.main-header {
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-speed) ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}
.logo img {
    width: 36px;
    height: 36px;
    transition: transform var(--transition-speed) ease;
}
.logo:hover img {
    transform: rotate(15deg);
}
.logo:hover {
    text-decoration: none;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

nav ul li a:not(.btn) {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 4px;
    transition: color var(--transition-speed) ease;
}
nav ul li a:not(.btn):hover {
    color: var(--text-primary);
    text-decoration: none;
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    padding: 6px 10px;
    border-radius: var(--border-radius);
    margin-left: 16px;
    transition: all var(--transition-speed) ease;
}
.theme-toggle:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, var(--cyan-glow), transparent), var(--bg-color);
    overflow: hidden;
    position: relative;
    transition: background 0.5s ease-out;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    animation: fadeInDown 1s both;
}
.hero .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 32px auto;
    animation: fadeInUp 1s 0.3s both;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 1s 0.6s both;
}

/* General Section Styling */
.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.section:last-of-type {
    border-bottom: none;
}
.section-bg {
    background-color: var(--card-bg);
}
.section-title {
    text-align: center;
    margin-bottom: 64px;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Oracle Announcement Section */
#oracle-announcement {
    text-align: center;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(163, 113, 247, 0.15), transparent), var(--bg-color);
}
#oracle-announcement h2 {
    color: var(--special-accent);
    font-size: 3rem;
}
.oracle-features {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 50px rgba(163, 113, 247, 0.15);
    display: inline-block;
    margin-top: 32px;
}
.oracle-features h4 {
    margin: 0 0 24px 0;
    font-size: 1.25rem;
}
.oracle-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
}
.oracle-features li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.oracle-features i {
    color: var(--success-color);
}
#oracle-announcement .fa-star {
    color: #FFD700;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-item {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.feature-item .icon {
    font-size: 2rem;
    color: var(--primary-accent);
    margin-bottom: 24px;
    display: inline-block;
    background: rgba(88, 166, 255, 0.1);
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 12px;
    transition: transform var(--transition-speed) ease;
}
.feature-item:hover .icon {
    transform: scale(1.1) rotate(10deg);
}
.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.feature-item p {
    color: var(--text-secondary);
}

/* How It Works Section */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    position: relative;
}
.how-it-works-item h4 {
    font-size: 1.2rem;
    color: var(--primary-accent);
    margin-bottom: 8px;
}
.how-it-works-item p {
    color: var(--text-secondary);
}

/* Benchmarks Section */
.chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.chart-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.chart-header h4 {
    margin: 0;
    font-size: 1.1rem;
}
.fullscreen-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
}
.chart-wrapper {
    position: relative;
    height: 350px;
}
.chart-fullscreen {
    height: 90vh !important;
    width: 100% !important;
    background: var(--bg-color);
    padding: 20px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.pricing-card .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-accent);
}
.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-secondary);
}
.pricing-card .description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.features-list i {
    color: var(--success-color);
}

/* Special styling for Oracle and Popular cards */
.pricing-card.oracle {
    border-color: var(--special-accent);
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(163, 113, 247, 0.2);
}
.pricing-card.oracle .icon, .pricing-card.oracle .price {
    color: var(--special-accent);
}
.pricing-card.popular {
    border-color: var(--primary-accent);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}
.badge.oracle-badge {
    background-color: var(--special-accent);
    color: #fff;
}
.badge.popular-badge {
    background-color: var(--primary-accent);
    color: #fff;
}

/* Model Comparison Table */
.model-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    font-size: 0.9rem;
}
.model-comparison-table th, .model-comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.model-comparison-table th {
    color: var(--text-secondary);
    font-weight: 600;
}
.model-comparison-table td {
    vertical-align: middle;
}
.model-comparison-table .model-name {
    font-weight: 600;
    font-size: 1rem;
}
.model-comparison-table .tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 8px;
}
.tag.flagship { background-color: rgba(163, 113, 247, 0.2); color: var(--special-accent); }
.tag.legacy { background-color: rgba(139, 148, 158, 0.2); color: var(--text-secondary); }

/* CTA Section */
.cta-section {
    background: var(--card-bg);
    text-align: center;
    padding: 80px 0;
}
.cta-section h2 {
    font-size: 2.2rem;
}
.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Footer */
.main-footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.main-footer a {
    color: var(--text-secondary);
}
.main-footer a:hover {
    color: var(--text-primary);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
}

/* Keyframe Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    body { padding-top: 60px; }
    .container { padding: 0 16px; }
    .hero { padding: 80px 0; }
    .hero h1 { font-size: 2.5rem; }
    .hero .lead { font-size: 1.1rem; }
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 2rem; }
    .chart-container { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.oracle { transform: scale(1); } /* Disable scale on mobile */
    .how-it-works-grid { grid-template-columns: 1fr; }

    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    .mobile-nav-toggle svg rect { fill: var(--text-primary); }

    .main-header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        border-bottom: 1px solid var(--border-color);
    }
    .main-header nav.nav-open {
        display: block;
    }
    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
    }
    nav ul li {
        text-align: center;
    }
    nav ul li a {
        display: block;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-color);
    }
    nav ul li:last-child a { border-bottom: none; }
    nav ul li a.btn {
        margin: 8px 16px;
    }
    .theme-toggle {
        width: calc(100% - 32px);
        margin: 8px 16px;
    }
    
    .model-comparison-table {
        display: block;
        width: 100%;
    }
    .model-comparison-table thead, .model-comparison-table tbody, .model-comparison-table tr {
        display: block;
    }
    .model-comparison-table thead { display: none; }
    .model-comparison-table tr {
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        margin-bottom: 16px;
    }
    .model-comparison-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        border: none;
    }
    .model-comparison-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-secondary);
    }
}
</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.

<environment_details>
# Visual Studio Code Visible Files
console.kolwrite.com/css/api_landing.css

# Visual Studio Code Open Tabs
console.kolwrite.com/index.html
console.kolwrite.com/css/api_landing.css

# Current Time
10/26/2025, 10:18:09 PM (Asia/Jerusalem, UTC+2:00)

# Context Window Usage
306,436 / 1,048.576K tokens used (29%)

# Current Mode
ACT MODE
</environment_details>

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.



New problems detected after saving the file:
console.kolwrite.com/css/api_landing.css
- [css Error] Line 680: at-rule or selector expected
- [css Error] Line 682: { expected<environment_details>
# Visual Studio Code Visible Files
console.kolwrite.com/css/api_landing.css

# Visual Studio Code Open Tabs
console.kolwrite.com/index.html
console.kolwrite.com/css/api_landing.css

# Current Time
10/26/2025, 10:28:07 PM (Asia/Jerusalem, UTC+2:00)

# Context Window Usage
319,729 / 1,048.576K tokens used (30%)

# Current Mode
ACT MODE
</environment_details>

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.



New problems detected after saving the file:
console.kolwrite.com/css/api_landing.css
- [css Error] Line 680: at-rule or selector expected
- [css Error] Line 682: { expected<environment_details>
# Visual Studio Code Visible Files
console.kolwrite.com/css/api_landing.css

# Visual Studio Code Open Tabs
console.kolwrite.com/index.html
console.kolwrite.com/css/api_landing.css

# Current Time
10/26/2025, 10:28:54 PM (Asia/Jerusalem, UTC+2:00)

# Context Window Usage
334,536 / 1,048.576K tokens used (32%)

# Current Mode
ACT MODE
</environment_details>

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.

<environment_details>
# Visual Studio Code Visible Files
console.kolwrite.com/css/api_landing.css

# Visual Studio Code Open Tabs
console.kolwrite.com/index.html
console.kolwrite.com/css/api_landing.css

# Recently Modified Files
These files have been modified since you last accessed them (file was just edited so you may need to re-read it before editing):
console.kolwrite.com/css/api_landing.css

# Current Time
10/26/2025, 10:29:04 PM (Asia/Jerusalem, UTC+2:00)

# Context Window Usage
380,915 / 1,048.576K tokens used (36%)

# Current Mode
ACT MODE
</environment_details>

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.

<environment_details>
# Visual Studio Code Visible Files
console.kolwrite.com/css/api_landing.css

# Visual Studio Code Open Tabs
console.kolwrite.com/index.html
console.kolwrite.com/css/api_landing.css

# Recently Modified Files
These files have been modified since you last accessed them (file was just edited so you may need to re-read it before editing):
console.kolwrite.com/css/api_landing.css

# Current Time
10/26/2025, 10:29:10 PM (Asia/Jerusalem, UTC+2:00)

# Context Window Usage
395,722 / 1,048.576K tokens used (38%)

# Current Mode
ACT MODE
</environment_details>

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.

<environment_details>
# Visual Studio Code Visible Files
console.kolwrite.com/css/api_landing.css

# Visual Studio Code Open Tabs
console.kolwrite.com/index.html
console.kolwrite.com/css/api_landing.css

# Current Time
10/26/2025, 10:29:54 PM (Asia/Jerusalem, UTC+2:00)

# Context Window Usage
395,515 / 1,048.576K tokens used (38%)

# Current Mode
ACT MODE
</environment_details>

</final_file_content>

IMPORTANT: For any future changes to this file, use the final_file_content shown above as your reference. This content reflects the current state of the file, including any auto-formatting (e.g., if you used single quotes but the formatter converted them to double quotes). Always base your SEARCH/REPLACE operations on this final version to ensure accuracy.

<environment_details>
# Visual Studio Code Visible Files
console.kolwrite.com/css/api_landing.css

# Visual Studio Code Open Tabs
console.kolwrite.com/index.html
console.kolwrite.com/css/api_landing.css

# Current Time
10/26/2025, 10:30:00 PM (Asia/Jerusalem, UTC+2:00)

# Context Window Usage
410,322 / 1,048.576K tokens used (39%)

# Current Mode
ACT MODE
</environment_details>
