﻿:root {
            --primary: rgb(108,92,231);
            --primary-glow: rgba(108,92,231, 0.3);
            --glacier-blue: #1D7BFF;
            --glacier-glow: rgba(29, 123, 255, 0.25);
            --silver-white: #F8FAFC;
            --deep-ocean: #0B132B;
            --ocean-light: #1C2541;
            --text-dark: #1E293B;
            --text-light: #64748B;
            --border-color: #E2E8F0;
            --card-bg: #FFFFFF;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        body {
            background-color: var(--silver-white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
        }

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

        
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            height: 70px;
            display: flex;
            align-items: center;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

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

        .logo img {
            display: block;
            height: 40px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .logo span {
            display: inline-block;
            font-size: 18px;
            font-weight: 800;
            line-height: 1;
            color: var(--deep-ocean);
            white-space: nowrap;
        }

        .nav-list {
            display: flex;
            gap: 24px;
            align-items: center;
            list-style: none;
        }

        .nav-list a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            padding: 8px 12px;
            border-radius: 6px;
        }

        .nav-list a:hover {
            color: var(--primary);
            background: rgba(108,92,231, 0.05);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-dark);
        }

        
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 19, 43, 0.5);
            backdrop-filter: blur(4px);
            z-index: 199;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }

        .drawer-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-drawer {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background: #ffffff;
            z-index: 200;
            box-shadow: 4px 0 20px rgba(0,0,0,0.1);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            padding: 24px;
        }

        .mobile-drawer.active {
            left: 0;
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-color);
        }

        .drawer-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--text-light);
        }

        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .drawer-nav a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
            padding: 10px 14px;
            border-radius: 8px;
            display: block;
        }

        .drawer-nav a:hover {
            background: rgba(108,92,231, 0.05);
            color: var(--primary);
        }

        
        .hero {
            background: radial-gradient(circle at 50% 0%, var(--ocean-light) 0%, var(--deep-ocean) 100%);
            color: #ffffff;
            padding: 100px 0 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--glacier-glow) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-layout-01 .hero-content-wrapper {
            position: relative;
            z-index: 5;
            max-width: 850px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(29, 123, 255, 0.15);
            border: 1px solid var(--glacier-blue);
            color: #60A5FA;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero-title span {
            background: linear-gradient(135deg, #ffffff 30%, #93C5FD 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 18px;
            color: #94A3B8;
            margin-bottom: 36px;
            line-height: 1.6;
        }

        .hero-btn-group {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--glacier-blue) 0%, var(--primary) 100%);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(29, 123, 255, 0.4);
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(29, 123, 255, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

        
        .hero-visual-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            margin-top: 40px;
        }

        .hero-main-panel {
            background: rgba(28, 37, 65, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 2;
        }

        .hero-main-panel-inner {
            border: 1px dashed rgba(29, 123, 255, 0.3);
            border-radius: 12px;
            padding: 30px;
            background: rgba(11, 19, 43, 0.5);
        }

        .panel-brand-icon {
            width: 70px;
            height: 70px;
            background: radial-gradient(circle, var(--glacier-blue) 0%, var(--primary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            box-shadow: 0 0 20px var(--glacier-glow);
        }

        .panel-brand-icon svg {
            width: 32px;
            height: 32px;
            fill: #fff;
        }

        .panel-title {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .panel-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid #10B981;
            color: #34D399;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background-color: #10B981;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.9); opacity: 0.6; }
            50% { transform: scale(1.2); opacity: 1; }
            100% { transform: scale(0.9); opacity: 0.6; }
        }

        
        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 16px;
            width: 180px;
            text-align: left;
            z-index: 3;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .floating-card:hover {
            transform: translateY(-5px);
            border-color: var(--glacier-blue);
            box-shadow: 0 15px 30px var(--glacier-glow);
        }

        .card-icon {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--glacier-blue);
        }

        .card-title {
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .card-desc {
            font-size: 11px;
            color: #94A3B8;
        }

        
        .fc-1 { top: -20px; left: -60px; }
        .fc-2 { top: -20px; right: -60px; }
        .fc-3 { bottom: -20px; left: -60px; }
        .fc-4 { bottom: -20px; right: -60px; }

        
        .trust-banner {
            background: #ffffff;
            padding: 30px 0;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 10;
        }

        .trust-wrapper {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .trust-item-icon {
            color: var(--primary);
            font-size: 24px;
        }

        .trust-item-text {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
        }

        
        .features-section {
            padding: 100px 0;
            background: var(--silver-white);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-tag {
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--deep-ocean);
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-light);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
            border-color: var(--primary);
        }

        .feat-icon-box {
            width: 50px;
            height: 50px;
            background: rgba(108,92,231, 0.1);
            color: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 22px;
        }

        .feat-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--deep-ocean);
            margin-bottom: 12px;
        }

        .feat-desc {
            font-size: 14px;
            color: var(--text-light);
        }

        
        .content-section {
            padding: 100px 0;
            background: #ffffff;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        
        .article-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: var(--primary);
        }

        .article-img-wrapper {
            position: relative;
            padding-bottom: 56.25%; 
            background-color: var(--border-color);
            overflow: hidden;
        }

        .article-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .article-card:hover .article-img {
            transform: scale(1.05);
        }

        .article-card-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 12px;
        }

        .article-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--deep-ocean);
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-desc {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }

        .article-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .article-tag {
            font-size: 12px;
            background: rgba(108,92,231, 0.08);
            color: var(--primary);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 500;
        }

        .article-more {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        
        .cta-section {
            background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-light) 100%);
            color: #ffffff;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -50%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 650px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-desc {
            font-size: 16px;
            color: #94A3B8;
            margin-bottom: 32px;
        }

        
        .footer {
            background: var(--deep-ocean);
            color: #94A3B8;
            padding: 80px 0 30px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand .logo span {
            color: #ffffff;
        }

        .footer-brand-desc {
            font-size: 14px;
            margin-top: 16px;
            line-height: 1.6;
        }

        .footer-heading {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            font-size: 14px;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        
        @media (max-width: 1024px) {
            .hero-title { font-size: 40px; }
            .floating-card { display: none; }
            .grid-3, .articles-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .header .nav-list { display: none; }
            .menu-toggle { display: block; }
            .hero-title { font-size: 32px; }
            .hero-desc { font-size: 15px; }
            .grid-3, .articles-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }