/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #000000;
    --accent: #3b82f6;
    --dark-bg: #000000;
    --light-bg: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    background: #ffffff !important;
    padding: 15px 0;
    transition: 0.3s;
    border-bottom: 1px solid #f1f5f9;
}

.navbar-brand .logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #000;
}

.navbar-brand .tagline {
    font-size: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-top: -5px;
    font-weight: 500;
}

.nav-link {
    font-weight: 500;
    color: #334155 !important;
    margin: 0 15px;
    font-size: 15px;
}

.btn-get-started {
    background: #000;
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    border: 2px solid #000;
}

.btn-get-started:hover {
    background: transparent;
    color: #000;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(circle at top right, #1e293b 0%, #000000 100%);
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-mission {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-mission:hover {
    background: #fff;
    color: #000;
}

/* Animated Globe CSS */
.globe-animation-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.coded-globe {
    width: 100%;
    height: auto;
}

.orbit {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 1;
    transform-origin: center;
}

.orbit-1 { animation: rotate-globe 20s linear infinite; stroke-dasharray: 10 5; }
.orbit-2 { animation: rotate-globe 30s linear infinite reverse; stroke-dasharray: 5 10; }

.grid-line {
    fill: none;
    stroke: rgba(255,255,255,0.05);
    stroke-width: 1;
    transform-origin: center;
}

.pulse-dot {
    filter: drop-shadow(0 0 5px #fff);
    animation: pulse-dot 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes rotate-globe {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Platform Section */
.platform-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(50px);
    z-index: 0;
}

.platform-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    z-index: 0;
}

.platform-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(241, 245, 249, 0.8);
    position: relative;
    z-index: 1;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(59, 130, 246, 0.2);
}

.platform-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.platform-card:hover .platform-icon-wrapper {
    background: #eff6ff;
}

.platform-name {
    font-size: 14px;
    color: #475569;
    font-weight: 600;
    margin: 0;
}

/* Footer */
footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-description {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}
