/* Common Page Styles - Shared across all content pages */

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

html {
    overscroll-behavior: none;
    background: #00120d;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #00120d 0%, #001510 30%, #001f1a 60%, #002d24 80%, #00120d 100%);
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    overscroll-behavior-y: none;
    min-height: 100vh;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 800px 600px at 50% 10%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        radial-gradient(circle 600px at 15% 20%, rgba(6, 78, 59, 0.18) 0%, transparent 60%),
        radial-gradient(circle 500px at 85% 30%, rgba(4, 120, 87, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Typography */
h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #10b981;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    letter-spacing: -0.01em;
}

p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Layout */
.hero {
    padding: 8rem 2rem 4rem 2rem;
    position: relative;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-header {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 4rem;
}

/* Lists */
.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 5rem 0 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 78, 59, 0.25) 100%);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

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

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

/* Demo Section */
.demo-section {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.demo-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.demo-iframe {
    width: 153.85%;
    height: 153.85%;
    border: none;
    transform: scale(0.65);
    transform-origin: top left;
    display: block;
}

/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .subtitle {
        font-size: 1.15rem;
        line-height: 1.65;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
        margin: 4rem 0 3rem 0;
    }

    .cta-section p {
        font-size: 1.05rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
    }

    .demo-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .demo-iframe-wrapper {
        height: 400px;
    }

    .content-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.35rem;
        margin-top: 1.5rem;
    }

    p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero {
        padding: 5rem 1rem 2rem 1rem;
    }

    .subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-section {
        padding: 2rem 1rem;
        margin: 3rem 0 2rem 0;
        border-radius: 12px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .demo-section {
        padding: 1rem;
        border-radius: 12px;
    }

    .demo-iframe-wrapper {
        height: 300px;
        border-radius: 8px;
    }

    .feature-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}
