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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #121212;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Consistent section spacing */
        section {
            padding: 80px 0;
            scroll-margin-top: 80px;
        }

        /* Header */
        header {
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 0, 127, 0.2);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(135deg, #ff007f, #ff4da6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover:not(.cta-button) {
            color: #ff007f;
            transform: translateY(-1px);
        }

        .cta-button {
            background: linear-gradient(135deg, #ff007f, #ff4da6);
            color: #ffffff !important;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 127, 0.4);
            background: linear-gradient(135deg, #ff4da6, #ff007f);
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 80px;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(255, 0, 127, 0.15) 0%, rgba(18, 18, 18, 0.9) 70%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff007f" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff007f" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ff007f" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
            z-index: -1;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #ffffff, #ff007f, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .hero p {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.7;
        }

        .hero .cta-button {
            font-size: 1.1rem;
            padding: 16px 32px;
            margin-top: 20px;
        }

        /* Theatre People Callout */
        .theatre-callout {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(255, 0, 127, 0.1));
            border: 2px solid rgba(255, 0, 127, 0.3);
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .theatre-callout::before {
            content: '🎭';
            position: absolute;
            top: -20px;
            left: -20px;
            font-size: 100px;
            opacity: 0.1;
            z-index: 0;
        }

        .theatre-callout::after {
            content: '🎭';
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 100px;
            opacity: 0.1;
            z-index: 0;
        }

        .theatre-callout h3 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            color: #ff007f;
            margin-bottom: 15px;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }

        .theatre-callout p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            opacity: 0.9;
            position: relative;
            z-index: 1;
            font-style: italic;
            margin: 0;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 60px;
            background: linear-gradient(135deg, #ff007f, #ff4da6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 35px;
            border-radius: 20px;
            border: 1px solid rgba(255, 0, 127, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 0, 127, 0.4);
            box-shadow: 0 20px 40px rgba(255, 0, 127, 0.2);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            display: block;
            position: relative;
            z-index: 1;
        }

        .feature-card h3 {
            font-size: clamp(1.2rem, 2vw, 1.4rem);
            margin-bottom: 15px;
            color: #ff007f;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            opacity: 0.9;
            position: relative;
            z-index: 1;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            line-height: 1.6;
        }

        /* Premium Section */
        .premium {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(18, 18, 18, 0.95));
            border-top: 2px solid rgba(255, 215, 0, 0.3);
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
        }

        .premium .section-header {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .premium-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .premium-intro {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.7;
        }

        .premium-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .premium-feature {
            background: rgba(255, 215, 0, 0.1);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
        }

        .premium-feature:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.4);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        }

        .premium-feature-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
        }

        .premium-feature h4 {
            color: #ffd700;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .premium-feature p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        /* Enterprise Section */
        .enterprise {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.08), rgba(18, 18, 18, 0.95));
        }

        .enterprise-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            align-items: center;
        }

        .enterprise-text h3 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: #ff007f;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .enterprise-text p {
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            margin-bottom: 20px;
            opacity: 0.9;
            line-height: 1.7;
        }

        .enterprise-features {
            list-style: none;
            margin: 30px 0;
        }

        .enterprise-features li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            opacity: 0.9;
        }

        .enterprise-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ff007f;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .enterprise-cta {
            background: linear-gradient(135deg, #ff007f, #ff4da6);
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
        }

        .enterprise-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 127, 0.4);
        }

        .nonprofit-callout {
            background: rgba(255, 0, 127, 0.1);
            border: 2px solid rgba(255, 0, 127, 0.2);
            border-radius: 15px;
            padding: 25px;
            margin-top: 30px;
        }

        .nonprofit-callout h4 {
            color: #ff007f;
            margin-bottom: 15px;
            font-weight: 700;
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.05), rgba(18, 18, 18, 0.95));
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 0, 127, 0.1);
            position: relative;
            transition: all 0.4s ease;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: #ff007f;
            opacity: 0.3;
            font-family: serif;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 0, 127, 0.3);
            box-shadow: 0 15px 35px rgba(255, 0, 127, 0.15);
        }

        .testimonial-quote {
            font-size: clamp(1rem, 1.8vw, 1.1rem);
            line-height: 1.7;
            margin-bottom: 25px;
            font-style: italic;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff007f, #ff4da6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .testimonial-info h4 {
            color: #ff007f;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .testimonial-info p {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Screenshots Section */
        .screenshots {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.05), rgba(18, 18, 18, 0.95));
        }

        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

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

        .screenshot-image {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 25px;
            border: 2px solid rgba(255, 0, 127, 0.2);
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .screenshot-image:hover {
            transform: scale(1.05);
            border-color: rgba(255, 0, 127, 0.5);
            box-shadow: 0 20px 50px rgba(255, 0, 127, 0.2);
        }

        .screenshot-item p {
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Final CTA */
        .final-cta {
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(255, 0, 127, 0.15) 0%, rgba(18, 18, 18, 0.9) 70%);
        }

        .final-cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ff007f, #ff4da6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .final-cta p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 50px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .final-cta .cta-button {
            font-size: 1.2rem;
            padding: 18px 36px;
        }

        /* Footer */
        footer {
            padding: 60px 0 40px;
            text-align: center;
            border-top: 1px solid rgba(255, 0, 127, 0.2);
            background: rgba(18, 18, 18, 0.95);
        }

        footer p {
            opacity: 0.8;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        }

        footer a {
            color: #ff007f;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #ff4da6;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 24px;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            .container {
                padding: 0 15px;
            }

            .nav-links {
                gap: 20px;
            }

            .nav-links a:not(.cta-button) {
                font-size: 14px;
            }

            .cta-button {
                padding: 10px 20px;
                font-size: 14px;
            }

            .hero {
                padding: 120px 0 60px;
            }

            .theatre-callout {
                padding: 25px 20px;
                margin: 30px 0;
            }

            .features-grid, .testimonials-grid, .premium-features {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .feature-card, .testimonial-card, .premium-feature {
                padding: 25px;
            }

            .screenshot-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .enterprise-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 50px 0;
            }

            .nav-links a:not(.cta-button) {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero {
                padding: 100px 0 50px;
            }

            .theatre-callout {
                padding: 20px 15px;
            }

            .feature-card, .testimonial-card, .premium-feature {
                padding: 20px;
            }
        }