:root {
    --ig-gradient-1: #833ab4;
    --ig-gradient-2: #fd1d1d;
    --ig-gradient-3: #fcb045;
    --bg-dark: #0f111a;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --text-main: #f8f9fa;
    --text-muted: #a0aec0;
    --text-gradient: linear-gradient(135deg, #fd1d1d, #fcb045);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 12px 48px rgba(253, 29, 29, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
body { background: var(--bg-dark); color: var(--text-main); line-height: 1.6; position: relative; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }

/* Animated Glass Background */
.glass-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; background: radial-gradient(circle at 50% 50%, #1a1525 0%, #0f111a 100%); }
.glass-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; animation: orbit 20s infinite linear; }
.blob-1 { top: 10%; left: 20%; width: 400px; height: 400px; background: var(--ig-gradient-1); }
.blob-2 { bottom: 20%; right: 10%; width: 500px; height: 500px; background: var(--ig-gradient-2); animation-direction: reverse; animation-duration: 25s; }
.blob-3 { top: 40%; left: 60%; width: 300px; height: 300px; background: var(--ig-gradient-3); animation-duration: 15s; }
@keyframes orbit { 0% { transform: rotate(0deg) translate(50px) rotate(0deg); } 100% { transform: rotate(360deg) translate(50px) rotate(-360deg); } }

/* Universal Glass Panel Component */
.glass-panel { background: var(--glass-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--glass-border); border-top: 1px solid var(--glass-highlight); border-left: 1px solid var(--glass-highlight); box-shadow: var(--shadow-soft); border-radius: 24px; position: relative; overflow: hidden; }
.glass-panel::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: 0.7s; z-index: 1; pointer-events: none; }
.glass-panel:hover::before { left: 200%; }

/* Navigation */
.nav { background: rgba(15, 17, 26, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); position: sticky; top: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; height: 70px; }
.nav-brand { font-size: 24px; font-weight: 800; background: var(--text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 0.5px; }
.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text-main); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--text-gradient); transition: 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-btn { background: rgba(255,255,255,0.1) !important; color: var(--text-main) !important; padding: 8px 24px; border-radius: 30px; border: 1px solid var(--glass-border) !important; }
.nav-btn::after { display: none; }
.nav-btn:hover { background: rgba(255,255,255,0.2) !important; }

/* Hero Section */
.hero { padding: 120px 20px 80px; text-align: center; max-width: 900px; margin: 0 auto; position: relative; z-index: 10; }
.hero-tag { display: inline-block; padding: 6px 20px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 30px; font-size: 12px; font-weight: 600; color: #fcb045; margin-bottom: 30px; letter-spacing: 2px; text-transform: uppercase; }
.hero h1 { font-size: 64px; font-weight: 800; letter-spacing: -2px; line-height: 1.1; margin-bottom: 25px; color: var(--text-main); }
.hero h1 span { background: var(--text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; font-weight: 400; line-height: 1.8; max-width: 700px; margin-inline: auto; }

/* Buttons */
.btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 16px 36px; border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; transition: 0.3s; display: inline-flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.btn-primary { background: linear-gradient(135deg, #fd1d1d, #fcb045); color: white; border: none; box-shadow: 0 10px 25px rgba(253, 29, 29, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(253, 29, 29, 0.4); }
.btn-secondary { background: var(--glass-bg); color: var(--text-main); border: 1px solid var(--glass-highlight); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); transform: translateY(-3px); }

/* Stats */
.stats { display: flex; justify-content: center; gap: 25px; padding: 0 20px 80px; flex-wrap: wrap; }
.stat-box { padding: 30px 40px; text-align: center; min-width: 220px; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.stat-box:hover { transform: translateY(-10px) scale(1.02); }
.stat-box h3 { font-size: 36px; font-weight: 800; margin-bottom: 5px; background: var(--text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-box p { font-size: 13px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Layout & Typography */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px 80px; position: relative; z-index: 10; }
.section-title { font-size: 36px; font-weight: 800; text-align: center; margin-bottom: 60px; color: var(--text-main); letter-spacing: -1px; }
.section-title span { background: var(--text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* About Box */
.about-box { padding: 60px; margin-bottom: 80px; text-align: center; }
.about-box p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.9; }
.about-box p:last-child { margin-bottom: 0; }

/* Feature Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 80px; }
.card { padding: 40px 30px; transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; text-align: left; }
.card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.2); box-shadow: var(--shadow-hover); }
.card-icon { font-size: 32px; margin-bottom: 25px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-main); }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Image Showcase */
.img-wrapper { margin-bottom: 80px; border-radius: 24px; padding: 10px; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); box-shadow: var(--shadow-soft); }
.showcase-img { width: 100%; display: block; border-radius: 16px; filter: brightness(0.9) contrast(1.1); transition: 0.5s; }
.img-wrapper:hover .showcase-img { filter: brightness(1) contrast(1.05); }

/* List Component */
.list-wrapper { max-width: 800px; margin: 0 auto 80px; }
.list-item { padding: 30px 40px; margin-bottom: 25px; display: flex; gap: 30px; align-items: flex-start; transition: transform 0.3s ease; }
.list-item:hover { transform: translateX(10px); border-left-color: #fd1d1d; }
.list-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); border: 1px solid var(--glass-highlight); display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fcb045; font-weight: bold; flex-shrink: 0; box-shadow: inset 0 2px 4px rgba(255,255,255,0.1); }
.list-text h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.list-text p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Footer */
.footer { background: rgba(15, 17, 26, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--glass-border); padding: 50px 20px; text-align: center; position: relative; z-index: 10; }
.footer-links { display: flex; justify-content: center; gap: 40px; margin-bottom: 25px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.footer-links a:hover { color: var(--text-main); }
.footer p { color: #5a6475; font-size: 12px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 42px; }
    .glass-panel::before { display: none; }
    .list-item { flex-direction: column; gap: 15px; }
    .btn-group { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn { width: 100%; }
}