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

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

html {
    overscroll-behavior: none;
    background: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #000000;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    overscroll-behavior-y: none;
    min-height: 100vh;
    line-height: 1.6;
}

/* Typography */
h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #014a33;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    letter-spacing: -0.01em;
}

p {
    font-size: 1.05rem;
    color: #4b5563;
    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: #6b7280;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.demo-iframe {
    width: 133.33%;
    height: 133.33%;
    border: none;
    transform: scale(0.75);
    transform-origin: top left;
    display: block;
    margin-top: -2px;
}

/* 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;
    }

    .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;
    }

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

/* Color Highlight Utilities */
.text-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.text-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.text-orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.text-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.text-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.text-cyan {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.text-pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.text-yellow {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.highlight-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.highlight-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.highlight-cyan {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.highlight-orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.highlight-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}

.highlight-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 600;
}
