        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: #080A0E;
            color: #B8C8DC;
            font-family: 'DM Mono', monospace;
            font-size: 14px;
            line-height: 1.6;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 229, 160, 0.018) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 229, 160, 0.018) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
            z-index: 0;
        }

        header {
            position: relative;
            z-index: 10;
            background: linear-gradient(180deg, #080A0E 0%, rgba(13, 16, 23, 0.8) 100%);
            border-bottom: 0.5px solid #232D3F;
            padding: 20px 0;
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, #0D1017, #131820);
            border: 0.5px solid #232D3F;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .logo-text {
            font-family: 'Syne', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #E8F0FA;
            letter-spacing: -0.02em;
        }

        .logo-sub {
            font-size: 10px;
            color: #4A5A72;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-top: -2px;
        }

        nav {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        nav a {
            font-size: 13px;
            color: #B8C8DC;
            text-decoration: none;
            transition: color 0.2s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: #00E5A0;
            transition: width 0.2s;
        }

        nav a:hover {
            color: #E8F0FA;
        }

        nav a:hover::after {
            width: 100%;
        }

        .github-btn {
            padding: 8px 16px;
            border: 0.5px solid #232D3F;
            border-radius: 8px;
            background: transparent;
            color: #B8C8DC;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'DM Mono', monospace;
            text-decoration: none;
        }

        .github-btn:hover {
            border-color: #00E5A0;
            color: #00E5A0;
            background: rgba(0, 229, 160, 0.05);
        }

        main {
            position: relative;
            z-index: 1;
        }

        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
        }

        .hero-title {
            font-family: 'Syne', sans-serif;
            font-size: 52px;
            font-weight: 800;
            color: #E8F0FA;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .hero-accent {
            color: #00E5A0;
        }

        .hero-subtitle {
            font-size: 16px;
            color: #7A8FA8;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 10px;
            font-family: 'DM Mono', monospace;
            font-size: 13px;
            letter-spacing: 0.04em;
            cursor: pointer;
            transition: all 0.2s;
            border: 0.5px solid;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-primary {
            background: #00E5A0;
            color: #080A0E;
            border-color: #00E5A0;
            font-weight: 500;
        }

        .btn-primary:hover {
            box-shadow: 0 6px 24px rgba(0, 229, 160, 0.3);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: #B8C8DC;
            border-color: #232D3F;
        }

        .btn-secondary:hover {
            border-color: #00E5A0;
            color: #00E5A0;
            background: rgba(0, 229, 160, 0.05);
        }

        .features {
            max-width: 1200px;
            margin: 80px auto 0;
            padding: 0 20px 80px;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #E8F0FA;
            letter-spacing: -0.02em;
            margin-bottom: 48px;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .feature-card {
            background: #131820;
            border: 0.5px solid #232D3F;
            border-radius: 12px;
            padding: 24px;
            transition: all 0.2s;
        }

        .feature-card:hover {
            border-color: #2E3D55;
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(0, 229, 160, 0.1), rgba(0, 184, 124, 0.05));
            border: 0.5px solid rgba(0, 229, 160, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
        }

        .feature-name {
            font-family: 'Syne', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #E8F0FA;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .feature-desc {
            font-size: 12px;
            color: #7A8FA8;
            line-height: 1.7;
        }

        .apps-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            border-top: 0.5px solid #232D3F;
            border-bottom: 0.5px solid #232D3F;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .app-card {
            background: linear-gradient(135deg, #0D1017, #131820);
            border: 0.5px solid #232D3F;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.2s;
            text-decoration: none;
            display: block;
        }

        .app-card.disabled {
            cursor: default;
        }

        .app-card:not(.disabled):hover {
            border-color: #00E5A0;
            box-shadow: 0 0 20px rgba(0, 229, 160, 0.15);
            transform: translateY(-6px);
        }

        .app-icon-big {
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            background: linear-gradient(135deg, #1A2130, #0D1017);
            border-bottom: 0.5px solid #232D3F;
        }

        .app-info {
            padding: 16px;
        }

        .app-name {
            font-family: 'Syne', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #E8F0FA;
            margin-bottom: 6px;
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .app-card:not(.disabled) .app-name::after {
            content: '↗';
            font-size: 14px;
            color: #4A5A72;
            transition: color 0.2s;
        }

        .app-card:not(.disabled):hover .app-name::after {
            color: #00E5A0;
        }

        .app-desc {
            font-size: 11px;
            color: #7A8FA8;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .app-status {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 10px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-weight: 500;
        }

        .status-live {
            background: rgba(0, 229, 160, 0.15);
            color: #00E5A0;
            border: 0.5px solid rgba(0, 229, 160, 0.3);
        }

        .status-beta {
            background: rgba(255, 184, 48, 0.1);
            color: #FFB830;
            border: 0.5px solid rgba(255, 184, 48, 0.3);
        }

        .izzy-banner-container {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .izzy-banner {
            display: flex;
            align-items: center;
            gap: 16px;
            background: linear-gradient(135deg, #0D1017, #131820);
            border: 0.5px solid #232D3F;
            border-radius: 12px;
            padding: 16px 28px;
            text-decoration: none;
            transition: all 0.2s;
            max-width: 500px;
            width: 100%;
        }

        .izzy-banner:hover {
            border-color: #FFB830;
            box-shadow: 0 0 20px rgba(255, 184, 48, 0.1);
            transform: translateY(-2px);
        }

        .izzy-logo {
            font-size: 32px;
            background: rgba(255, 184, 48, 0.1);
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            border: 0.5px solid rgba(255, 184, 48, 0.2);
        }

        .izzy-text-content {
            text-align: left;
        }

        .izzy-title {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 15px;
            color: #E8F0FA;
            margin-bottom: 2px;
        }

        .izzy-subtitle {
            font-size: 11px;
            color: #7A8FA8;
        }

        .izzy-subtitle span {
            color: #FFB830;
        }

        .values {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .value-card {
            background: #131820;
            border: 0.5px solid #232D3F;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .value-emoji {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .value-title {
            font-family: 'Syne', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #E8F0FA;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .value-text {
            font-size: 11px;
            color: #7A8FA8;
            line-height: 1.7;
        }

        footer {
            background: #0D1017;
            border-top: 0.5px solid #232D3F;
            padding: 40px 20px;
            text-align: center;
            margin-top: 80px;
            position: relative;
            z-index: 10;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .footer-links a {
            font-size: 12px;
            color: #7A8FA8;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #00E5A0;
        }

        .footer-divider {
            height: 0.5px;
            background: #232D3F;
            margin: 20px 0;
        }

        .footer-text {
            font-size: 11px;
            color: #4A5A72;
            line-height: 1.8;
        }

        @media (max-width: 768px) {
            nav {
                gap: 12px;
                font-size: 12px;
            }

            .hero-title {
                font-size: 36px;
            }

            .section-title {
                font-size: 24px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .apps-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            header .github-btn {
                display: none;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero, .features, .apps-section, .values {
            animation: fadeIn 0.6s ease-out;
        }

        .feature-card, .app-card, .value-card, .izzy-banner {
            animation: fadeIn 0.6s ease-out forwards;
            opacity: 0;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }

        .app-card:nth-child(1) { animation-delay: 0.1s; }
        .app-card:nth-child(2) { animation-delay: 0.2s; }
        .izzy-banner { animation-delay: 0.3s; }

        .value-card:nth-child(1) { animation-delay: 0.1s; }
        .value-card:nth-child(2) { animation-delay: 0.2s; }
        .value-card:nth-child(3) { animation-delay: 0.3s; }
        .value-card:nth-child(4) { animation-delay: 0.4s; }
