        /* Custom Font Definitions */
        @font-face {
            font-family: 'Lastica';
            src: url('fonts/lastica.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Lastica';
            src: url('fonts/lastica-bold.woff2') format('woff2');
            font-weight: bold;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Anonymous Pro';
            src: url('fonts/anonymous-pro-regular.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Anonymous Pro';
            src: url('fonts/anonymous-pro-bold.woff2') format('woff2');
            font-weight: bold;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Anonymous Pro';
            src: url('fonts/anonymous-pro-italic.woff2') format('woff2');
            font-weight: normal;
            font-style: italic;
            font-display: swap;
        }

        @font-face {
            font-family: 'Anonymous Pro';
            src: url('fonts/anonymous-pro-bold-italic.woff2') format('woff2');
            font-weight: bold;
            font-style: italic;
            font-display: swap;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Anonymous Pro', 'Courier New', monospace;
            line-height: 1.6;
            color: #ffffff;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            overflow-x: hidden;
        }

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

        /* Header */
        header {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            font-family: 'Lastica', 'Anonymous Pro', monospace;
            color: #00d4ff;
        }

        .logo img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
            font-family: 'Anonymous Pro', monospace;
            position: relative;
        }

        .nav-links a:hover {
            color: #00d4ff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #00d4ff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

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

        /* Section Styling */
        .section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0;
            position: relative;
        }

        .section-content {
            width: 100%;
            z-index: 2;
        }

        .section-title {
            font-size: 3rem;
            font-family: 'Lastica', 'Anonymous Pro', monospace;
            font-weight: bold;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(45deg, #00d4ff, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.3rem;
            font-family: 'Lastica', 'Anonymous Pro', monospace;
            text-align: center;
            color: #e2e8f0;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: bold;
            font-family: 'Lastica', 'Anonymous Pro', monospace;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #00d4ff, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-tagline {
            font-size: 1.8rem;
            font-family: 'Lastica', 'Anonymous Pro', monospace;
            margin-bottom: 2rem;
            color: #e2e8f0;
            font-weight: normal;
        }

        .hero-image {
            width: 250px;
            height: 250px;
            margin: 3rem auto;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #00d4ff;
            box-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
            transition: transform 0.3s ease;
        }

        .hero-image:hover {
            transform: scale(1.05);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-description {
            font-size: 1.3rem;
            line-height: 1.8;
            margin: 3rem auto;
            max-width: 800px;
            color: #e2e8f0;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #00d4ff, #a855f7);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 2rem;
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        /* About Section */
        .about {
            background: rgba(0, 0, 0, 0.2);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .about-text h3 {
            color: #a855f7;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #e2e8f0;
        }

        .highlight-box {
            background: rgba(168, 85, 247, 0.15);
            border-left: 4px solid #a855f7;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 8px;
            font-weight: 500;
        }

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

        .about-visual img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Methodology Section */
        .methodology {
            background: rgba(168, 85, 247, 0.05);
        }

        .methodology-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .methodology-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(168, 85, 247, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .methodology-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #00d4ff, #a855f7);
        }

        .methodology-card:hover {
            transform: translateY(-10px);
            border-color: #a855f7;
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
        }

        .methodology-card h3 {
            color: #a855f7;
            margin-bottom: 2rem;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .methodology-card p {
            color: #e2e8f0;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .tech-highlight {
            background: rgba(0, 212, 255, 0.15);
            border-left: 4px solid #00d4ff;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
            font-weight: 500;
        }

        /* Choice Architecture Section */
        .choice-architecture {
            background: rgba(0, 212, 255, 0.05);
        }

        .choice-intro {
            margin: 3rem 0;
        }

        .choice-strategies {
            margin: 4rem 0;
        }

        .choice-section-title {
            font-size: 2.2rem;
            font-family: 'Lastica', 'Anonymous Pro', monospace;
            font-weight: bold;
            color: #00d4ff;
            margin: 3rem 0 2rem 0;
            text-align: center;
        }

        .choice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .choice-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .choice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(45deg, #00d4ff, #a855f7);
        }

        .choice-card:hover {
            transform: translateY(-8px);
            border-color: #00d4ff;
            box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
        }

        .choice-card h4 {
            color: #00d4ff;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-family: 'Lastica', 'Anonymous Pro', monospace;
        }

        .choice-card p {
            color: #e2e8f0;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .choice-card ul {
            list-style: none;
            padding: 0;
        }

        .choice-card li {
            color: #e2e8f0;
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
        }

        .choice-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #a855f7;
            font-weight: bold;
        }

        .reframe-examples {
            margin-top: 1.5rem;
        }

        .reframe-item {
            display: block;
            margin-bottom: 1rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            border-left: 3px solid #a855f7;
        }

        .old-frame {
            display: block;
            color: #ff6b6b;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .new-frame {
            display: block;
            color: #51cf66;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .implementation-framework {
            margin: 4rem 0;
        }

        .framework-phases {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .phase-card {
            background: rgba(168, 85, 247, 0.1);
            backdrop-filter: blur(15px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(168, 85, 247, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .phase-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(45deg, #a855f7, #00d4ff);
        }

        .phase-card:hover {
            transform: translateY(-8px);
            border-color: #a855f7;
            box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
        }

        .phase-card h4 {
            color: #a855f7;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-family: 'Lastica', 'Anonymous Pro', monospace;
        }

        .phase-card p {
            color: #e2e8f0;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .phase-card ul {
            list-style: none;
            padding: 0;
        }

        .phase-card li {
            color: #e2e8f0;
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
        }

        .phase-card li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #a855f7;
            font-weight: bold;
        }

        .choice-outcome {
            margin: 4rem 0 2rem 0;
            text-align: center;
        }

        /* Services Section */
        .services {
            background: rgba(0, 0, 0, 0.2);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(45deg, #00d4ff, #a855f7);
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: #00d4ff;
            box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
        }

        .service-card h3 {
            color: #00d4ff;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .service-card p {
            color: #e2e8f0;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* Speaking section specific styles */
        .speaking-card a {
            transition: all 0.3s ease;
            border-radius: 6px;
            padding: 0.5rem 1rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .speaking-card a:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: #00d4ff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
        }

        /* Contact Section */
        .contact {
            background: rgba(168, 85, 247, 0.05);
            text-align: center;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(168, 85, 247, 0.3);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: #a855f7;
        }

        .contact-card h3 {
            color: #a855f7;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .contact-card p {
            color: #e2e8f0;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.6);
            text-align: center;
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content p {
            margin-bottom: 0.5rem;
        }

        .footer-tagline {
            font-family: 'Lastica', 'Anonymous Pro', monospace;
            font-style: italic;
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* Particle background effect */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #00d4ff;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
                opacity: 0.4; 
            }
            50% { 
                transform: translateY(-30px) rotate(180deg); 
                opacity: 1; 
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

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

            .hero h1 {
                font-size: 3rem;
            }

            .hero-tagline {
                font-size: 1.4rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .about-grid,
            .methodology-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-image {
                width: 200px;
                height: 200px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .choice-grid,
            .framework-phases {
                grid-template-columns: 1fr;
            }

            .choice-card,
            .phase-card {
                padding: 2rem;
            }

            .section {
                padding: 80px 0;
            }

            .methodology-card,
            .service-card,
            .contact-card {
                padding: 2rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 1s ease-out;
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #00d4ff;
            font-size: 2rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
