/* css/style.css *//* Reset & Base Styles */
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root
{
    --primary-color: #4f46e5;
    --secondary-color: #3b82f6;
    --accent-color: #06b6d4;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --shadow: 0 10px 30px rgba(0,0,0,.1);
    --transition: all .3s ease;
    --border-radius: 12px;
    --container-width: 1200px;
}
body
{
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}
body.dark-theme
{
    --dark-color: #f8fafc;
    --light-color: #0f172a;
    --gray-color: #94a3b8;
    --shadow: 0 10px 30px rgba(0,0,0,.5);
    --primary-color: #6366f1;
    --secondary-color: #3b82f6;
    --accent-color: #22d3ee;
}
.container
{
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4
{
    font-family: 'Outfit', 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
p
{
    margin-bottom: 1rem;
}
a
{
    text-decoration: none;
    color: inherit;
}
.text-gradient
{
    background: linear-gradient(90deg,var(--primary-color),var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.btn-primary, .btn-secondary, .btn-pricing
{
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}
.btn-primary
{
    background: linear-gradient(90deg,var(--primary-color),var(--secondary-color));
    color: #fff;
}
.btn-primary:hover
{
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.btn-secondary
{
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover
{
    background-color: var(--primary-color);
    color: #fff;
}
.section-title
{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.section-subtitle
{
    text-align: center;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 3rem;
}/* Navigation */
.navbar
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255,255,255,.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    transition: var(--transition);
}
.navbar body.dark-theme .navbar
{
    background-color: rgba(26,26,46,.95);
}
.nav-container
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo
{
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
}
.logo i
{
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 2rem;
}
.logo-highlight
{
    color: var(--accent-color);
}
.menu-toggle
{
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}
.nav-links
{
    display: flex;
    list-style: none;
}
.nav-link
{
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}
.nav-link::after
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after
{
    width: 100%;
}
.nav-btn
{
    padding: 10px 25px;
    font-size: .9rem;
}/* Hero Section */
.hero
{
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero-bg-video
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.hero .container
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}
.hero-content
{
    flex: 1;
}
.hero-title
{
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.hero-subtitle
{
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    max-width: 600px;
}
.hero-buttons
{
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}
.btn-hero
{
    padding: 15px 35px;
    font-size: 1.1rem;
}
.btn-hero i
{
    margin-right: 10px;
}
.hero-stats
{
    display: flex;
    gap: 40px;
}
.stat-item
{
    text-align: center;
}
.stat-number
{
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.stat-label
{
    font-size: .9rem;
    color: var(--gray-color);
}
.hero-visual
{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.crypto-orbits
{
    position: relative;
    width: 400px;
    height: 400px;
}
.central-orb
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 120px;
    height: 120px;
    background: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
    box-shadow: none;
}
.central-glow
{
    display: none;
}
.orbit
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    border: 2px dashed rgba(108,92,231,.3);
}
.orbit-1
{
    width: 300px;
    height: 300px;
    animation: orbit-rotate 20s linear infinite;
}
.orbit-2
{
    width: 220px;
    height: 220px;
    animation: orbit-rotate 15s linear infinite reverse;
}
.orbit-3
{
    width: 140px;
    height: 140px;
    animation: orbit-rotate 10s linear infinite;
}
.crypto-icon
{
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: var(--shadow);
}
.orbit-1 .crypto-icon
{
    top: -30px;
    left: calc(50% - 30px);
}
.orbit-2 .crypto-icon
{
    top: -30px;
    right: -30px;
}
.orbit-3 .crypto-icon
{
    bottom: -30px;
    left: calc(50% - 30px);
}
.scroll-indicator
{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mouse
{
    width: 30px;
    height: 50px;
    border: 2px solid var(--gray-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}
.wheel
{
    width: 4px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}
.arrow
{
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin-top: 5px;
    animation: scroll-arrow 2s infinite;
}/* Features Section */
.features
{
    padding: 100px 0;
    background-color: rgba(108,92,231,.03);
}
.features-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}
.feature-card
{
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
body.dark-theme .feature-card
{
    background-color: #2d2d44;
}
body.dark-theme .navbar
{
    background-color: rgba(0,0,0,.95);
}
.feature-card:hover
{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}
.feature-icon
{
    width: 70px;
    height: 70px;
    background: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    overflow: hidden;
}
.feature-title
{
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.feature-description
{
    color: var(--gray-color);
    margin-bottom: 20px;
}
.feature-animation
{
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mini-chart
{
    width: 100%;
    height: 60px;
    background-color: rgba(108,92,231,.05);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.mini-chart::after
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(108,92,231,.2),transparent);
    animation: chart-shine 3s infinite;
}
.device-showcase
{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}
.device
{
    background-color: var(--dark-color);
    border-radius: 8px;
}
.device-desktop
{
    width: 80px;
    height: 50px;
}
.device-tablet
{
    width: 40px;
    height: 60px;
}
.device-mobile
{
    width: 25px;
    height: 45px;
}
.speedometer
{
    width: 100px;
    height: 50px;
    border: 5px solid var(--gray-color);
    border-top: 5px solid var(--success-color);
    border-radius: 100px 100px 0 0;
    position: relative;
}
.speedometer-needle
{
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: 40px;
    background-color: var(--primary-color);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-45deg);
    animation: speedometer-needle 3s infinite alternate;
}
.color-palette
{
    display: flex;
    gap: 10px;
}
.color
{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.color-1
{
    background-color: var(--primary-color);
}
.color-2
{
    background-color: var(--secondary-color);
}
.color-3
{
    background-color: var(--accent-color);
}
.color-4
{
    background-color: var(--success-color);
}
.code-snippet
{
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 5px;
    padding: 15px;
}
body.dark-theme .code-snippet
{
    background-color: #3d3d5c;
}
.code-line
{
    height: 8px;
    background-color: var(--gray-color);
    margin-bottom: 10px;
    border-radius: 2px;
}
.code-line:nth-child(1)
{
    width: 90%;
}
.code-line:nth-child(2)
{
    width: 70%;
}
.code-line:nth-child(3)
{
    width: 80%;
}
.shield
{
    font-size: 3rem;
    color: var(--accent-color);
    animation: shield-pulse 2s infinite;
}
.ecosystem-section
{
    padding: 60px 0;
    background: var(--light-color);
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
body.dark-theme .ecosystem-section
{
    background: #0f172a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ecosystem-label
{
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}
.ecosystem-carousel-wrapper
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ecosystem-track
{
    display: flex;
    gap: 30px;
    width: max-content;
}
.track-left
{
    animation: scroll-left 40s linear infinite;
}
.track-right
{
    animation: scroll-right 40s linear infinite;
}
.partner-card
{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark-color);
    white-space: nowrap;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
body.dark-theme .partner-card
{
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}
.partner-card:hover
{
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
    border-color: var(--primary-color);
}
.partner-card i
{
    font-size: 1.2rem;
}
@keyframes scroll-left
{
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scroll-right
{
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.ecosystem-carousel-wrapper:hover .ecosystem-track
{
    animation-play-state: paused;
}/* Demo Section */
.demo
{
    padding: 100px 0;
    overflow: hidden;
}
.demo-showcase
{
    display: flex;
    gap: 50px;
    align-items: center;
}
.demo-devices
{
    flex: 2;
    max-width: 100%;
}
.demo-desktop
{
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 15px;
    padding: 15px;
    position: relative;
    box-shadow: var(--shadow);
}
body.dark-theme .demo-desktop
{
    background-color: #3d3d5c;
}
.device-screen
{
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
body.dark-theme .device-screen
{
    background-color: #2d2d44;
}
.screen-content
{
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.demo-nav
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
body.dark-theme .demo-nav
{
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.demo-logo
{
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}
.demo-nav-items
{
    display: flex;
    gap: 20px;
}
.demo-nav-item
{
    font-size: .9rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
}
.demo-nav-item.active
{
    background-color: rgba(108,92,231,.1);
    color: var(--primary-color);
}
.demo-crypto-list
{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.demo-crypto-item
{
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: rgba(108,92,231,.05);
    border-radius: 10px;
}
body.dark-theme .demo-crypto-item
{
    background-color: rgba(255,255,255,.05);
}
.demo-crypto-icon
{
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}
.demo-crypto-info
{
    flex: 1;
}
.demo-crypto-name
{
    font-weight: 600;
    margin-bottom: 5px;
}
.demo-crypto-price
{
    font-size: .9rem;
    color: var(--gray-color);
}
.demo-crypto-change
{
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: .9rem;
}
.positive
{
    background-color: rgba(0,184,148,.1);
    color: var(--success-color);
}
.negative
{
    background-color: rgba(214,48,49,.1);
    color: var(--danger-color);
}
.demo-chart-container
{
    flex: 1;
    background-color: rgba(108,92,231,.05);
    border-radius: 10px;
    padding: 15px;
}
.demo-chart
{
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.demo-chart::after
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(108,92,231,.1),transparent);
    animation: chart-shine 3s infinite;
}
.demo-controls
{
    flex: 1;
}
.control-title
{
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.control-buttons
{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.control-btn
{
    padding: 15px 20px;
    background-color: #fff;
    border: 2px solid rgba(108,92,231,.1);
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}
body.dark-theme .control-btn
{
    background-color: #2d2d44;
    border-color: rgba(255,255,255,.1);
    color: #fff;
}
.control-btn:hover
{
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
.control-btn i
{
    margin-right: 10px;
    color: var(--primary-color);
}
.control-info
{
    background-color: rgba(108,92,231,.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}
body.dark-theme .control-info
{
    background-color: rgba(108,92,231,.1);
}/* Statistics Section */
.stats
{
    padding: 100px 0;
    background-color: rgba(108,92,231,.03);
}
.stats-container
{
    display: flex;
    gap: 50px;
    align-items: stretch;
}
.stats-card
{
    flex: 1;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}
body.dark-theme .stats-card
{
    background-color: #2d2d44;
}
.stats-header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
body.dark-theme .stats-header
{
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.stats-title
{
    font-size: 1.5rem;
}
.stats-update
{
    font-size: .9rem;
    color: var(--gray-color);
    background-color: rgba(108,92,231,.1);
    padding: 5px 10px;
    border-radius: 20px;
}
.stat-large
{
    text-align: center;
    margin-bottom: 30px;
}
.stat-large-value
{
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.stat-large-label
{
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 10px;
}
.stat-large-change
{
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}
.stat-details
{
    display: flex;
    justify-content: space-between;
}
.stat-detail
{
    text-align: center;
}
.detail-label
{
    font-size: .9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}
.detail-value
{
    font-size: 1.2rem;
    font-weight: 600;
}
.stats-visualization
{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.crypto-bars
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.crypto-bar
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bar-label
{
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
}
.bar-container
{
    height: 20px;
    background-color: rgba(108,92,231,.1);
    border-radius: 10px;
    overflow: hidden;
}
.bar-fill
{
    height: 100%;
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}
.btc-fill
{
    background-color: #f7931a;
}
.eth-fill
{
    background-color: #627eea;
}
.other-fill
{
    background: linear-gradient(90deg,#00cec9,#6c5ce7);
}
.market-sentiment
{
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
body.dark-theme .market-sentiment
{
    background-color: #2d2d44;
}
.sentiment-title
{
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.sentiment-meter
{
    position: relative;
    height: 40px;
    background: linear-gradient(90deg,var(--danger-color),var(--warning-color),var(--success-color));
    border-radius: 20px;
    margin-bottom: 10px;
}
.meter-scale
{
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--gray-color);
    padding: 10px;
    opacity: 0;
}
.meter-indicator
{
    position: absolute;
    top: -10px;
    left: 70%;
    transform: translateX(-50%);
    transition: left 2s ease;
}
.indicator-dot
{
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 auto 5px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.indicator-label
{
    font-size: .8rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}/* Crypto Map Section */
.crypto-map {
    padding: 100px 0;
}
.map-container {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: stretch;
}
.world-map {
    flex: 2;
    height: 450px;
    background-color: #0f172a; /* Deep dark blue */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background-image: url('../image/photo-1486312338219-ce68d2c6f44d.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Abstract Grid Background */
.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.8) 100%, transparent 0%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    pointer-events: none;
}
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, #0f172a 90%);
    pointer-events: none;
}

/* Connection Lines */
.map-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.connection-line {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-dasharray: 10;
    opacity: 0.4;
    animation: dash 30s linear infinite;
}
@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

/* Map Points */
.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.point-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--primary-color);
    z-index: 2;
}
.point-ring {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: ripple 2s infinite;
}

/* Point Colors */
.map-point[data-status="friendly"] .point-dot { background-color: var(--success-color); box-shadow: 0 0 10px var(--success-color); }
.map-point[data-status="friendly"] .point-ring { border-color: var(--success-color); }

.map-point[data-status="restrictive"] .point-dot { background-color: var(--danger-color); box-shadow: 0 0 10px var(--danger-color); }
.map-point[data-status="restrictive"] .point-ring { border-color: var(--danger-color); }

.map-point[data-status="moderate"] .point-dot { background-color: var(--warning-color); box-shadow: 0 0 10px var(--warning-color); }
.map-point[data-status="moderate"] .point-ring { border-color: var(--warning-color); }

@keyframes ripple {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 50px; height: 50px; opacity: 0; }
}

/* Tooltip */
.point-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(15, 23, 42, 0.9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.map-point:hover .point-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Legend */
.map-legend {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body.dark-theme .map-legend {
    background: #1e293b;
}
.legend-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}
body.dark-theme .legend-title {
    border-bottom-color: rgba(255,255,255,0.05);
}
.legend-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.3s;
}
.legend-item:hover {
    background: rgba(0,0,0,0.02);
}
body.dark-theme .legend-item:hover {
    background: rgba(255,255,255,0.02);
}
.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}
.legend-color::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.3;
}
.legend-color.friendly { background-color: var(--success-color); color: var(--success-color); }
.legend-color.moderate { background-color: var(--warning-color); color: var(--warning-color); }
.legend-color.restrictive { background-color: var(--danger-color); color: var(--danger-color); }

.legend-info {
    display: flex;
    flex-direction: column;
}
.legend-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color);
}
body.dark-theme .legend-label {
    color: #fff;
}
.legend-desc {
    font-size: 0.8rem;
    color: var(--gray-color);
}
.crypto-timeline
{
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}
body.dark-theme .crypto-timeline
{
    background-color: #2d2d44;
}
.timeline-title
{
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.timeline
{
    position: relative;
    padding-left: 30px;
}
.timeline::before
{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: rgba(108,92,231,.3);
    border-radius: 3px;
}
.timeline-item
{
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}
.timeline-item:last-child
{
    margin-bottom: 0;
}
.timeline-item::before
{
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}
.timeline-year
{
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.timeline-content h4
{
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.timeline-content p
{
    color: var(--gray-color);
    font-size: .95rem;
}

/* =========================================
   Business Model Section (Bento Grid)
   ========================================= */
.business-model-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light-color);
}
body.dark-theme .business-model-section {
    background-color: #0f172a;
}

.model-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.bento-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}
body.dark-theme .bento-item {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.05);
}

.bento-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.item-core {
    grid-column: span 3;
    background: rgba(79, 70, 229, 0.04);
    border-color: rgba(79, 70, 229, 0.15);
}

.item-ai,
.item-rwa,
.item-defi {
    grid-column: span 1;
}

.bento-bg-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.08;
    filter: blur(40px);
    pointer-events: none;
    transition: opacity 0.4s;
}
.bento-item:hover .bento-bg-glow {
    opacity: 0.16;
}

.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.bento-tag {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}
.bento-icon-lg {
    font-size: 40px;
    color: rgba(79, 70, 229, 0.2);
}

.bento-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}
body.dark-theme .bento-title {
    color: #fff;
}
.item-core .bento-title {
    font-size: 32px;
}

.bento-desc,
.bento-text {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 15px;
}
body.dark-theme .bento-desc,
body.dark-theme .bento-text {
    color: #cbd5e1;
}

.bento-flow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    background: rgba(79, 70, 229, 0.06);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
body.dark-theme .bento-flow-container {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.05);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}
.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    border: 1px solid rgba(79, 70, 229, 0.2);
    transition: all 0.3s ease;
}
.bento-item:hover .step-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}
.step-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
}
body.dark-theme .step-text {
    color: #fff;
}

.flow-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 15px;
    position: relative;
    top: -12px;
    opacity: 0.5;
}
.flow-line::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: flow-dot 2s infinite linear;
    box-shadow: 0 0 10px var(--primary-color);
}
@keyframes flow-dot {
    0% { left: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.bento-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border: 1px solid rgba(79, 70, 229, 0.12);
}

.bento-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
}
body.dark-theme .bento-subtitle {
    color: #fff;
}

@media (max-width: 991px) {
    .model-bento-grid {
        grid-template-columns: 1fr;
    }

    .item-core,
    .item-ai,
    .item-rwa,
    .item-defi {
        grid-column: span 1;
    }

    .bento-flow-container {
        flex-direction: column;
        gap: 20px;
    }

    .flow-line {
        width: 2px;
        height: 30px;
        margin: 0;
        top: 0;
    }

    .flow-line::after {
        top: 0;
        left: -4px;
        animation: flow-dot-vertical 2s infinite linear;
    }
}
@keyframes flow-dot-vertical {
    0% { top: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@media (max-width: 768px) {
    .bento-item {
        padding: 28px;
    }
}

/* Contact Section */
.contact
{
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(79, 70, 229, 0.12), transparent 60%), radial-gradient(900px 500px at 110% 10%, rgba(6, 182, 212, 0.1), transparent 55%), var(--light-color);
}
body.dark-theme .contact
{
    background: radial-gradient(1200px 600px at 10% -10%, rgba(99, 102, 241, 0.18), transparent 60%), radial-gradient(900px 500px at 110% 10%, rgba(34, 211, 238, 0.12), transparent 55%), #0f172a;
}
.contact::before
{
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent 0, transparent 23px, rgba(79, 70, 229, 0.08) 24px), linear-gradient(90deg, transparent 0, transparent 23px, rgba(79, 70, 229, 0.08) 24px);
    background-size: 24px 24px;
    opacity: 0.35;
    pointer-events: none;
}
body.dark-theme .contact::before
{
    opacity: 0.2;
}
.contact-container
{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.contact-info
{
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(79, 70, 229, 0.12);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}
body.dark-theme .contact-info
{
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.contact-title
{
    font-size: 1.8rem;
    margin-bottom: 24px;
}
.contact-details
{
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}
.contact-item
{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(79, 70, 229, 0.12);
    transition: var(--transition);
}
body.dark-theme .contact-item
{
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(99, 102, 241, 0.18);
}
.contact-item:hover
{
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.15);
}
.contact-icon
{
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.25);
}
.contact-text h4
{
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.contact-text p
{
    color: var(--gray-color);
}
.contact-social h4
{
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.contact-social p
{
    color: var(--gray-color);
    font-weight: 600;
    letter-spacing: 0.2px;
}
.contact-form-container
{
    background: linear-gradient(145deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.08));
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    position: relative;
    overflow: hidden;
}
body.dark-theme .contact-form-container
{
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.7));
    border-color: rgba(99, 102, 241, 0.2);
}
.contact-form-container::before
{
    content: '';
    position: absolute;
    inset: -40% -20% auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3), transparent 70%);
    opacity: 0.6;
}
.contact-form-container .contact-details
{
    margin: 0;
}
.contact-form-container .contact-item
{
    background: rgba(255, 255, 255, 0.75);
}
body.dark-theme .contact-form-container .contact-item
{
    background: rgba(15, 23, 42, 0.7);
}
@media (max-width: 991px)
{
    .contact-container
    {
        grid-template-columns: 1fr;
    }
}
/* Footer */
.footer
{
    background-color: var(--dark-color);
    color: #fff;
    padding: 70px 0 30px;
}
body.dark-theme .footer
{
    background-color: #0f0f1a;
}
.footer-row
{
    display: flex;
}
.footer-content
{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo
{
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}
.footer-logo i
{
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 2rem;
}
.footer-description
{
    max-width: 500px;
    color: rgba(255,255,255,.7);
}
.footer-links
{
    display: flex;
    gap: 50px;
}
.footer-column
{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-column h4
{
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}
.footer-column a
{
    color: rgba(255,255,255,.7);
    transition: var(--transition);
}
.footer-column a:hover
{
    color: var(--accent-color);
    padding-left: 5px;
}
.footer-bottom
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.copyright
{
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}
.footer-actions
{
    display: flex;
    gap: 15px;
}
.footer-btn
{
    padding: 8px 15px;
    background-color: rgba(255,255,255,.1);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: .9rem;
    cursor: pointer;
    transition: var(--transition);
}
.footer-btn:hover
{
    background-color: var(--accent-color);
}
.footer-btn i
{
    margin-right: 5px;
}/* Modal */
.modal-overlay
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal-overlay.active
{
    opacity: 1;
    visibility: visible;
}
.modal
{
    background-color: #fff;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    transform: translateY(50px);
    transition: transform .5s ease;
}
body.dark-theme .modal
{
    background-color: #2d2d44;
}
.modal-overlay.active .modal
{
    transform: translateY(0);
}
.modal-header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
body.dark-theme .modal-header
{
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.modal-title
{
    font-size: 1.5rem;
    color: var(--primary-color);
}
.modal-close
{
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}
.modal-close:hover
{
    color: var(--danger-color);
    transform: rotate(90deg);
}
.modal-body
{
    padding: 30px;
    text-align: center;
}
.modal-icon
{
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}
.modal-message
{
    font-size: 1.1rem;
    color: var(--dark-color);
}
body.dark-theme .modal-message
{
    color: #fff;
}
.modal-footer
{
    padding: 20px 30px;
    border-top: 1px solid rgba(0,0,0,.1);
    text-align: center;
}
body.dark-theme .modal-footer
{
    border-top: 1px solid rgba(255,255,255,.1);
}/* Animations */
@keyframes orbit-rotate
{
    0%
    {
        transform: translate(-50%,-50%) rotate(0deg);
    }
    100%
    {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}
@keyframes scroll-wheel
{
    0%
    {
        transform: translateY(0);
        opacity: 1;
    }
    100%
    {
        transform: translateY(20px);
        opacity: 0;
    }
}
@keyframes scroll-arrow
{
    0%, 100%
    {
        opacity: .2;
    }
    50%
    {
        opacity: 1;
    }
}
@keyframes chart-shine
{
    0%
    {
        transform: translateX(-100%);
    }
    100%
    {
        transform: translateX(100%);
    }
}
@keyframes speedometer-needle
{
    0%
    {
        transform: translateX(-50%) rotate(-45deg);
    }
    100%
    {
        transform: translateX(-50%) rotate(45deg);
    }
}
@keyframes shield-pulse
{
    0%, 100%
    {
        transform: scale(1);
    }
    50%
    {
        transform: scale(1.1);
    }
}
@keyframes pulse
{
    0%
    {
        transform: scale(1);
        opacity: .5;
    }
    100%
    {
        transform: scale(2);
        opacity: 0;
    }
}/* Responsive Styles */
@media(max-width: 1200px)
{
    .hero .container
    {
        flex-direction: column;
        text-align: center;
    }
    .hero-visual
    {
        order: -1;
        margin-bottom: 50px;
    }
    .crypto-orbits
    {
        width: 300px;
        height: 300px;
    }
    .hero-title
    {
        font-size: 2.8rem;
    }
    .logo
    {
        font-size: 16px;
    }
    .nav-link
    {
        margin: 0 5px;
    }
}
@media(max-width: 992px)
{
    .section-title
    {
        font-size: 2rem;
    }
    .demo-showcase
    {
        flex-direction: column;
    }
    .stats-container
    {
        flex-direction: column;
    }
    .map-container
    {
        flex-direction: column;
    }
    .pricing-cards
    {
        flex-direction: column;
    }
    .pricing-card.featured
    {
        transform: none;
    }
    .pricing-card.featured:hover
    {
        transform: translateY(-10px);
    }
    .contact-container
    {
        flex-direction: column;
    }
    .footer .hero-visual
    {
        display: none;
    }
    .nav-link, .logo, .logo i
    {
        font-size: 14px;
    }
    .nav-btn
    {
        padding: 6px 14px;
    }
}
@media(max-width: 768px)
{
    .menu-toggle
    {
        display: block;
    }
    .nav-links
    {
        position: fixed;
        top: 54px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    body.dark-theme .nav-links
    {
        background-color: #2d2d44;
    }
    .nav-links.active
    {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link
    {
        margin: 10px 0;
        font-size: 1.1rem;
    }
    .nav-btn
    {
        display: none;
    }
    .hero-title
    {
        font-size: 2.2rem;
    }
    .hero-stats
    {
        flex-direction: column;
        gap: 30px;
    }
    .hero-buttons
    {
        flex-direction: column;
        align-items: center;
    }
    .btn-hero
    {
        width: 100%;
        max-width: 300px;
    }
    .features-grid
    {
        grid-template-columns: 1fr;
    }
    .pricing-info
    {
        flex-direction: column;
    }
    .footer-links
    {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom
    {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
@media(max-width: 576px)
{
    .hero
    {
        padding: 120px 0 80px;
    }
    .hero-title
    {
        font-size: 1.8rem;
    }
    .section-title
    {
        font-size: 1.6rem;
    }
    .demo-desktop
    {
        height: 300px;
    }
}

/* Partners Carousel */
.partners-section {
    padding: 30px 0;
    background-color: var(--light-color);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.dark-theme .partners-section {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.partners-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    align-items: center;
}
.partners-track:hover {
    animation-play-state: paused;
}
.partner-logo {
    margin: 0 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.6;
    transition: var(--transition);
    user-select: none;
}
.partner-logo:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateY(-2px);
}
.partner-logo i {
    font-size: 1.8rem;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Team Section */
.team
{
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.team-grid
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.team-card
{
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover
{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.1);
}
.team-icon
{
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.team-role
{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}
.team-location
{
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}
.team-desc
{
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media(max-width: 992px)
{
    .team-grid
    {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 576px)
{
    .team-grid
    {
        grid-template-columns: 1fr;
    }
}
