<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-bg: #191919;
    --text-light: #f0f0eb;
    --accent-purple: #d96dfd;
    --accent-green: #5ebe74;
    --button-radius: 1584px;
    --section-padding: 96px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.background-triangles {
    width: 100%;
    height: 100%;
    animation: float 20s ease-in-out infinite;
}

.background-triangles polygon {
    animation: pulse 8s ease-in-out infinite;
}

.background-triangles polygon:nth-child(2n) {
    animation-delay: -2s;
}

.background-triangles polygon:nth-child(3n) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.navbar {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    font-family: "Arizona Mix", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 400;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-purple);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid transparent;
    border-radius: var(--button-radius);
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(217, 109, 253, 0.2);
    color: var(--accent-purple);
}

.btn-primary {
    background: var(--accent-purple);
    color: var(--primary-bg);
    border: 1px solid var(--accent-purple);
    border-radius: var(--button-radius);
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-purple);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--accent-green);
    color: var(--primary-bg);
    border: 1px solid var(--accent-green);
    border-radius: var(--button-radius);
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: transparent;
    color: var(--accent-green);
    transform: translateY(-2px);
}

.hero-section {
    padding: var(--section-padding) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: "Arizona Mix", sans-serif;
    font-size: 3.125rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(240, 240, 235, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 400px;
}

.logo-item {
    background: rgba(240, 240, 235, 0.1);
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    color: rgba(240, 240, 235, 0.7);
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: rgba(217, 109, 253, 0.2);
    color: var(--accent-purple);
}

.news-banner {
    background: var(--accent-purple);
    padding: 1rem 0;
    margin-bottom: 4rem;
}

.news-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--primary-bg);
}

.news-label {
    background: rgba(25, 25, 25, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.why-section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    font-family: "Arizona Mix", sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.highlight {
    color: var(--accent-purple);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    border-bottom: 1px solid rgba(240, 240, 235, 0.1);
    padding-bottom: 2rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-item p {
    color: rgba(240, 240, 235, 0.7);
    line-height: 1.6;
}

.integration-diagram {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram-center {
    position: absolute;
    z-index: 2;
}

.center-logo {
    width: 120px;
    height: 120px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Arizona Mix", sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--primary-bg);
}

.integration-points {
    position: relative;
    width: 400px;
    height: 400px;
}

.integration-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.integration-point.top-left {
    top: 0;
    left: 0;
}

.integration-point.top-right {
    top: 0;
    right: 0;
}

.integration-point.bottom-left {
    bottom: 0;
    left: 0;
}

.integration-point.bottom-right {
    bottom: 0;
    right: 0;
}

.integration-point.right {
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

.point-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.integration-point span {
    font-size: 0.875rem;
    color: rgba(240, 240, 235, 0.7);
    text-align: center;
}

.stats-section {
    background: rgba(240, 240, 235, 0.05);
    padding: 4rem 0;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: "Arizona Mix", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(240, 240, 235, 0.7);
    font-size: 1rem;
}

.technical-section {
    padding: var(--section-padding) 0;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(240, 240, 235, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

.code-demo {
    background: rgba(240, 240, 235, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.code-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    padding: 0;
}

.tab-btn {
    background: transparent;
    border: none;
    color: rgba(240, 240, 235, 0.7);
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--accent-purple);
    color: var(--primary-bg);
}

.code-content {
    padding: 2rem;
}

.code-block {
    margin-bottom: 2rem;
}

.code-line {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.code-keyword {
    color: #ff79c6;
}

.code-variable {
    color: #8be9fd;
}

.code-function {
    color: #50fa7b;
}

.code-string {
    color: #f1fa8c;
}

.code-property {
    color: #bd93f9;
}

.output-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
}

.output-title {
    color: rgba(240, 240, 235, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.output-content {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
}

.output-item {
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.output-key {
    color: #8be9fd;
}

.output-string {
    color: #f1fa8c;
}

.output-number {
    color: #bd93f9;
}

.solutions-section {
    padding: var(--section-padding) 0;
}

.solution-card {
    background: rgba(240, 240, 235, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    background: rgba(217, 109, 253, 0.1);
    transform: translateY(-5px);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-bg);
}

.solution-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.solution-card p {
    color: rgba(240, 240, 235, 0.7);
    line-height: 1.6;
}

.cta-section {
    background: var(--accent-green);
    padding: 4rem 0;
    margin: 4rem 0;
}

.cta-title {
    font-family: "Arizona Mix", sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-bg);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(25, 25, 25, 0.8);
}

.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-brand .logo {
    font-family: "Arizona Mix", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
}

.footer h5 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(240, 240, 235, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-purple);
}

.contact-info p {
    color: rgba(240, 240, 235, 0.7);
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--accent-purple);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(240, 240, 235, 0.1);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(240, 240, 235, 0.5);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .integration-diagram {
        height: 300px;
    }
    
    .integration-points {
        width: 250px;
        height: 250px;
    }
    
    .center-logo {
        width: 80px;
        height: 80px;
        font-size: 1rem;
    }
    
    .point-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 48px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-card {
    background: rgba(240, 240, 235, 0.05);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(240, 240, 235, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(240, 240, 235, 0.08);
}

.pricing-card.featured {
    border: 2px solid var(--accent-purple);
    background: rgba(217, 109, 253, 0.1);
}

.pricing-card.premium {
    border: 2px solid var(--accent-green);
    background: rgba(94, 190, 116, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-purple);
    color: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--button-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card.premium .pricing-badge {
    background: var(--accent-green);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-purple);
    font-family: "Arizona Mix", sans-serif;
}

.pricing-card.premium .price {
    color: var(--accent-green);
}

.price span {
    font-size: 1rem;
    color: rgba(240, 240, 235, 0.7);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(240, 240, 235, 0.8);
}

.pricing-features li i {
    color: var(--accent-green);
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
}

.features-section {
    padding: var(--section-padding) 0;
    background: rgba(240, 240, 235, 0.02);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(240, 240, 235, 0.8);
}

.feature-list li i {
    color: var(--accent-purple);
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
}

.guarantee-section {
    padding: var(--section-padding) 0;
}

.guarantee-text {
    font-size: 1.125rem;
    color: rgba(240, 240, 235, 0.8);
    margin-bottom: 3rem;
}

.guarantee-features {
    margin-top: 3rem;
}

.guarantee-item {
    text-align: center;
    padding: 1.5rem;
}

.guarantee-item i {
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-bg);
}

.guarantee-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    color: rgba(240, 240, 235, 0.7);
}

.contact-section {
    padding: var(--section-padding) 0;
}

.contact-form-container {
    background: rgba(240, 240, 235, 0.05);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(240, 240, 235, 0.1);
}

.contact-form .form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    background: rgba(240, 240, 235, 0.1);
    border: 1px solid rgba(240, 240, 235, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(240, 240, 235, 0.15);
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 0.2rem rgba(217, 109, 253, 0.25);
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: rgba(240, 240, 235, 0.5);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    background: rgba(240, 240, 235, 0.1);
    border: 1px solid rgba(240, 240, 235, 0.3);
    margin-right: 0.75rem;
}

.form-check-input:checked {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.form-check-label {
    color: rgba(240, 240, 235, 0.8);
    cursor: pointer;
}

.thank-you-message {
    background: rgba(240, 240, 235, 0.05);
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(240, 240, 235, 0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-bg);
}

.success-icon i {
    width: 40px;
    height: 40px;
}

.thank-you-message h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thank-you-message .lead {
    color: rgba(240, 240, 235, 0.8);
    margin-bottom: 1.5rem;
}

.thank-you-message p {
    color: rgba(240, 240, 235, 0.7);
    margin-bottom: 2rem;
}

.thank-you-message a {
    color: var(--accent-purple);
    text-decoration: none;
}

.thank-you-message a:hover {
    text-decoration: underline;
}

.contact-info-section {
    padding: var(--section-padding) 0;
    background: rgba(240, 240, 235, 0.02);
}

.contact-info-card {
    background: rgba(240, 240, 235, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(240, 240, 235, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background: rgba(240, 240, 235, 0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-bg);
}

.contact-info-card h4 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: rgba(240, 240, 235, 0.7);
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-info-card address {
    color: rgba(240, 240, 235, 0.7);
    font-style: normal;
    line-height: 1.6;
}

.legal-section {
    padding: var(--section-padding) 0;
}

.legal-title {
    font-family: "Arizona Mix", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: rgba(240, 240, 235, 0.7);
    margin-bottom: 3rem;
}

.legal-content {
    background: rgba(240, 240, 235, 0.05);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(240, 240, 235, 0.1);
}

.legal-content h2 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: rgba(240, 240, 235, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: rgba(240, 240, 235, 0.8);
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: rgba(240, 240, 235, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0;
}

.contact-details a {
    color: var(--accent-purple);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}
</pre></body></html>