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

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', 'Poppins', sans-serif;
            background: #f5f3f0;
            color: #1f2a3e;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        header {
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #eae6e0;
        }

        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 20px 0;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-icon {
            font-size: 32px;
            font-weight: 800;
            background: #d64b2c;
            -webkit-background-clip: text;
            background-clip: text;
            color: #d64b2c;
            line-height: 1;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.7rem;
            color: #2c3e2f;
            letter-spacing: -0.5px;
        }

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

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #4a5b6e;
            transition: 0.2s;
            font-size: 1rem;
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #d64b2c;
            border-bottom-color: #d64b2c;
        }

        .btn-download-nav {
            background: #d64b2c;
            color: white !important;
            padding: 8px 28px;
            border-radius: 40px;
            font-weight: 600;
            border-bottom: none !important;
            box-shadow: 0 2px 8px rgba(214, 75, 44, 0.2);
            text-decoration: none;
            display: inline-block;
        }

        .btn-download-nav:hover {
            background: #b83e22;
            transform: translateY(-1px);
        }

        .hero {
            display: grid;
            grid-template-columns: 1fr 0.9fr;
            gap: 60px;
            padding: 70px 0 50px;
            align-items: center;
            background: radial-gradient(circle at 20% 30%, rgba(214, 75, 44, 0.03) 0%, transparent 50%);
        }

        .hero-left h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            color: #2c3e2f;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .hero-left .accent {
            color: #d64b2c;
            border-bottom: 4px solid #f5bc9c;
            display: inline-block;
        }

        .hero-desc {
            font-size: 1.15rem;
            color: #5b6e7c;
            max-width: 540px;
            margin-bottom: 36px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn-primary {
            background: #d64b2c;
            color: white;
            padding: 12px 32px;
            border-radius: 48px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 18px rgba(214, 75, 44, 0.25);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #b83e22;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(214, 75, 44, 0.3);
        }

        .btn-secondary {
            background: transparent;
            border: 1.5px solid #d64b2c;
            color: #d64b2c;
            padding: 12px 28px;
            border-radius: 48px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-secondary:hover {
            background: rgba(214, 75, 44, 0.08);
            border-color: #b83e22;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-block h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #d64b2c;
            line-height: 1.2;
        }

        .stat-block p {
            color: #5b6e7c;
            font-size: 0.9rem;
        }

        .hero-right {
            background: #fffcf8;
            border-radius: 48px;
            padding: 32px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0e4d8;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .floating-pill {
            background: #ffffff;
            border-radius: 60px;
            padding: 14px 28px;
            margin: 8px 0;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
            border: 1px solid #efe3d9;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: float 3s ease-in-out infinite;
        }

        .floating-pill:nth-child(2) {
            animation-delay: 0.5s;
        }
        .floating-pill:nth-child(3) {
            animation-delay: 1s;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-6px); }
            100% { transform: translateY(0px); }
        }

        .section {
            padding: 50px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 48px;
            color: #2c3e2f;
            letter-spacing: -0.3px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #d64b2c;
            border-radius: 4px;
            margin: 16px auto 0;
        }

        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }

        .knowledge-card {
            background: #ffffff;
            border-radius: 32px;
            padding: 28px 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid #ece2d9;
            transition: all 0.25s;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .knowledge-card:hover {
            transform: translateY(-5px);
            border-color: #d64b2c;
            box-shadow: 0 18px 28px -12px rgba(214, 75, 44, 0.18);
        }

        .knowledge-icon {
            font-size: 2.4rem;
        }

        .knowledge-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e2f;
        }

        .knowledge-card p {
            font-size: 0.95rem;
            color: #4a5b6e;
            flex: 1;
        }

        .knowledge-card .card-link {
            font-weight: 600;
            color: #d64b2c;
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: auto;
        }

        .core-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
        }

        .core-card {
            background: #fefaf7;
            border-radius: 28px;
            padding: 32px 24px;
            border: 1px solid #efe3d9;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: 0.2s;
        }

        .core-card:hover {
            background: #ffffff;
            border-color: #d64b2c;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
        }

        .core-icon {
            font-size: 2.4rem;
        }

        .core-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #3b5240;
        }

        .core-card p {
            color: #4a5b6e;
            font-size: 0.95rem;
        }

        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
            margin-top: 24px;
        }

        .download-card {
            border-radius: 36px;
            padding: 36px 28px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all 0.25s;
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            text-decoration: none;
        }

        .download-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
        }

        .download-card.blue {
            background: linear-gradient(135deg, #1e3a5f, #2b5a8c);
        }
        .download-card.purple {
            background: linear-gradient(135deg, #4b2b6b, #6a3f96);
        }
        .download-card.green {
            background: linear-gradient(135deg, #1e4a2e, #2f6b44);
        }
        .download-card.orange {
            background: linear-gradient(135deg, #b6491a, #d45d2c);
        }

        .download-card .dl-icon {
            font-size: 2.4rem;
        }

        .download-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
        }

        .download-card p {
            font-size: 0.95rem;
            opacity: 0.9;
            flex: 1;
        }

        .download-card .dl-btn {
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(8px);
            border-radius: 40px;
            padding: 10px 24px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: fit-content;
            transition: 0.2s;
        }

        .download-card:hover .dl-btn {
            background: rgba(255, 255, 255, 0.3);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
        }

        .feature-card {
            background: #fefaf7;
            border-radius: 28px;
            padding: 32px 28px;
            transition: all 0.25s ease;
            border: 1px solid #efe3d9;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
        }

        .feature-card:hover {
            transform: translateY(-6px);
            border-color: #d64b2c;
            background: #ffffff;
            box-shadow: 0 20px 30px -12px rgba(214, 75, 44, 0.12);
        }

        .feature-icon {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #3b5240;
        }

        .cta-section {
            background: linear-gradient(105deg, #d64b2c 0%, #b83e22 100%);
            border-radius: 48px;
            padding: 56px 40px;
            margin: 60px 0 50px;
            text-align: center;
            color: white;
            box-shadow: 0 18px 36px rgba(214, 75, 44, 0.3);
        }

        .cta-section h2 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 36px;
        }

        .btn-cta {
            background: #ffffff;
            color: #d64b2c;
            padding: 16px 48px;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.1rem;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-cta:hover {
            background: #faeae5;
            transform: scale(1.02);
        }

        .sponsor-section {
            background: #fff7f2;
            border-radius: 48px;
            padding: 44px 32px;
            margin: 50px 0 70px;
            text-align: center;
            border: 1px solid #ffe0cf;
        }

        .footer {
            background: #1e2a23;
            color: #bfcfc5;
            padding: 48px 0 28px;
            border-top-left-radius: 32px;
            border-top-right-radius: 32px;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .footer-col h4 {
            color: #ffffff;
            margin-bottom: 16px;
        }
        .footer-col a {
            color: #bfcfc5;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }
        .footer-col a:hover {
            color: #ffffff;
        }

        .footer-copyright {
            text-align: center;
            padding-top: 44px;
            font-size: 0.85rem;
            border-top: 1px solid #3e5348;
            margin-top: 28px;
        }

        @media (max-width: 860px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-left h1 {
                font-size: 2.5rem;
            }
            .nav-links {
                gap: 22px;
                margin-top: 12px;
            }
            .nav-bar {
                flex-direction: column;
                align-items: stretch;
            }
        }