/*
        -----------------------------------
        1. CSS Reset & Typography
        -----------------------------------
        */
        :root {
            --color-dark: #222222;       /* Deep Charcoal */
            --color-white: #FFFFFF;
            --color-accent: #FF9900;     /* Vibrant Marigold */
            /*--color-accent: #FF8605;     !* OUR ORANGE *!*/
            --color-light-gray: #F7F7F7;
            --font-primary: 'Inter', 'Helvetica Neue', sans-serif;
            --field-background: #505050;
            --color-white-secondary: #b8b9c3;
        }

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

        body {
            font-family: var(--font-primary);
            line-height: 1.6;
            color: var(--color-dark);
            background-color: var(--color-white);
            overflow-x: hidden;
        }

        h1, h2, h3 {
            line-height: 1.2;
            font-weight: 800;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.5rem; font-weight: 700; color: var(--color-accent); }

        p {
            font-size: 1.15rem;
            color: #555555;
            max-width: 750px;
            margin: 0 auto;
        }

        /* Utility Classes */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: 700;
            border-radius: 4px;
            transition: background-color 0.3s, opacity 0.3s;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background-color: var(--color-accent);
            color: var(--color-dark);
            border: 2px solid var(--color-accent);
        }
        .btn-primary:hover {
            background-color: #e68a00; /* Slightly darker orange */
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-white);
            margin-left: 1rem;
        }
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            opacity: 0.9;
        }

        /*
        -----------------------------------
        2. Layout & Sections
        -----------------------------------
        */
        section {
            padding: 4rem 0;
            position: relative;
        }

        /* Navigation Bar */
        .navbar {
            background-color: var(--color-dark);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .navbar a {
            color: var(--color-white);
            text-decoration: none;
            font-weight: 600;
            margin-left: 2rem;
            opacity: 0.9;
            transition: opacity 0.2s;
        }
        .navbar a:hover { opacity: 1; }
        .logo {
          display: flex;
          align-items: center;
          gap: 1.5rem;
        }

        .logo img {
          width: 50px;
          height: 60px;
          transition: transform 0.3s ease;
        }

        .logo img:hover {
          transform: scale(1.1);
        }

        .logo span {
          font-size: 1.5rem;
          font-weight: 800;
          color: var(--color-white);
          text-transform: uppercase;
          letter-spacing: 1px;
          line-height: 1;
        }

        /* Hero Section (Dark Theme) */
        #hero {
            background-color: var(--color-dark);
            color: var(--color-white);
            padding: 4rem 0 6rem 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
            text-align: center;
        }
        #hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        #hero p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
        }
        #contact {
            background-color: var(--color-dark);
        }

        #contact h2, #contact p {
            color: #fff;
        }

        .hero-cta {
            margin-bottom: 5rem;
        }
        .platform-screenshot {
            max-width: 1000px;
            width: 90%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            display: block;
            margin: 0 auto;
        }

        /* Features Section (Core Value) */
        #features {
            background-color: var(--color-light-gray);
            padding-top: 10rem;
            padding-bottom: 10rem;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            margin-top: 4rem;
        }
        .feature-card {
            background: var(--color-white);
            padding: 2.5rem;
            border-radius: 6px;
            text-align: left;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            border-top: 4px solid var(--color-accent);
        }
        .feature-card h3 {
            color: var(--color-dark);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            border-bottom: none;
        }
        .feature-card p {
            font-size: 1rem;
            color: #777;
            max-width: none;
            margin: 0;
        }
        .feature-card i {
            font-size: 2rem;
            color: var(--color-accent);
            margin-bottom: 1rem;
        }

        /* Team Section (Leadership) */
        #team {
            text-align: center;
        }
        .team-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }
        .team-member {
            max-width: 250px;
            text-align: center;
        }
        .team-member img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--color-light-gray);
            transition: border-color 0.3s;
            cursor: pointer;
        }
        .team-member img:hover {
            border-color: var(--color-accent);
        }
        .team-member h4 {
            font-size: 1.2rem;
            margin-top: 1rem;
            font-weight: 700;
        }
        .team-member p {
            font-size: 0.9rem;
            color: #999;
            margin: 0;
        }

        /* CTA Section (Final Call - Dark Theme) */
        #final-cta {
            background-color: var(--color-dark);
            color: var(--color-white);
            text-align: center;
            padding: 8rem 0;
        }
        #final-cta h2 {
            color: var(--color-white);
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        #final-cta p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
        }

        /* Footer */
        .footer {
            background-color: var(--color-dark);
            color: rgba(255, 255, 255, 0.6);
            padding: 3rem 0;
            font-size: 0.9rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--color-accent);
        }

        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
          }
        .contact-info h3 {
            margin-bottom: 2rem;
            color: var(--color-white);
          }

          .contact-info p {
            margin-bottom: 1rem;
            color: #cdcdcd !important;
          }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
          }

          .contact-form input,
          .contact-form textarea {
            padding: 1rem;
            background: var(--field-background);
            border: 2px solid var(--color-accent);
            border-radius: 5px;
            color: var(--color-white);
          }

          .contact-form textarea {
            height: 150px;
            resize: vertical;
          }

          .contact-form button {
            align-self: flex-start;
          }

          .cta-button {
            background: var(--color-accent);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
          }

          .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
          }

          .cta-button:hover::before {
            left: 100%;
          }

          .modal-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
        }

        .modal-backdrop.active {
            display: block;
        }

        .bio-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            padding: 40px;
            max-width: 700px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            z-index: 1000;
        }

        .bio-popup p {
            color: #fff;
            font-size: 18px;
        }

        .bio-popup.active {
            display: block;
            background: #565656;
        }

        .bio-popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            cursor: pointer;
            font-size: 24px;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            border-radius: 50%;
            background: #3A3A3A;
            color: white;
        }

        .bio-popup-close:hover {
          background: #fff;
          color: #3A3A3A;
        }

        /* Responsive Adjustments */
        @media (max-width: 900px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2rem; }
            section { padding: 6rem 0; }
            .navbar a { margin-left: 1rem; }
            .team-grid { gap: 1.5rem; }
            .btn { padding: 0.8rem 2rem; }
        }
        @media (max-width: 600px) {
            h1 { font-size: 2.5rem; }
            .navbar { flex-direction: column; }
            .navbar-links { margin-top: 1rem; }
        }

