* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff3a00;
    --secondary-color: #3c1f56;
    --accent-purple: #582c7e;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #fafafa;
    --border-subtle: #e5e7eb;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    position: sticky;
    top: 0;
    padding: 0.25rem 1rem;
    text-align: center;
    background-color: var(--background);
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 6rem;
    background: linear-gradient(160deg, #fafafa 0%, #f5f3ff 50%, #fef2f2 100%);
    overflow: hidden;
    min-height: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 44, 126, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-visual {
    position: relative;
    margin-top: 0;
    z-index: 1;
    opacity: 1;
}

.tagline {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Satoshi', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.tagline-primary {
    color: var(--primary-color);
}

.tagline-secondary {
    color: #444444;
}

.tagline-accent {
    color: var(--accent-purple);
}

.subtitle {
    font-size: 1.5rem;
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 1.75rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 58, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 58, 0, 0.3);
    background-color: #e63400;
}

/* Data Flow Visualization */
.data-flow {
    width: 800px;
    height: 200px;
}

.node {
    transition: all 0.3s ease;
}

.flow-path {
    stroke-dasharray: 5, 5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.particle {
    filter: drop-shadow(0 0 4px currentColor);
}

.info-section {
    padding: 4rem 6rem;
    background-color: var(--background);
    border-top: 1px solid var(--border-subtle);
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-content h3 {
    font-size: 2.5rem;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.info-description {
    font-size: 1.1rem;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.95rem;
    
}

.contact-label {
    color: var(--text-light);
    font-weight: 500;
}

.contact-link {
    color: var(--primary-color);
    font-family: 'Satoshi', sans-serif;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer {
    padding: 2rem;
    text-align: center;
    background-color: var(--background);
    border-top: 1px solid var(--border-subtle);
}

.footer p {
    font-size: 0.85rem;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-light);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 3rem 2rem;
        min-height: 500px;
    }
    
    .data-flow {
        width: 600px;
        height: 300px;
    }
    
    .tagline {
        font-size: 3rem;
    }
    
    .info-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.25rem 1rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .tagline {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .info-content h3 {
        font-size: 2rem;
    }
    
    .info-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.25rem 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero {
        padding: 2rem 1.5rem;
    }
    
    .tagline {
        font-size: 1.75rem;
    }
    
    .data-flow {
        width: 400px;
        height: 200px;
    }
    
    .info-section {
        padding: 2.5rem 1.5rem;
    }
}
