:root {
    --navy: #0A1628;
    --navy-light: #1A2B45;
    --navy-dark: #050B14;
    --gold: #C9A961;
    --gold-light: #E6C97F;
    --gold-dark: #8B7329;
    --slate: #64748b;
    --white: #FFFFFF;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--navy);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-title-light {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.nav-glass {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.1);
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.6);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.btn-gold-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
}

.btn-gold-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.6);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold-light);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(201, 169, 97, 0.3);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.trust-metrics {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Crimson Pro', serif;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    animation: bounce 2s infinite;
}

/* Trust Cards */
.trust-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.trust-icon {
    margin-bottom: 1.5rem;
}

.trust-card-title {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.trust-card-text {
    color: var(--slate);
    line-height: 1.7;
}

/* Leadership Section */
.leadership-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), rgba(201, 169, 97, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.stats-visual {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Navy Section */
.bg-navy {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    position: relative;
}

.bg-navy::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 90% 20%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.feature-highlight {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateX(10px);
}

.feature-icon-small {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

/* Platform Visual */
.platform-visual {
    position: relative;
}

.device-mockup {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 1.5rem;
    border-radius: 24px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.mockup-screen {
    background: var(--navy-dark);
    border-radius: 16px;
    overflow: hidden;
}

.mockup-content {
    padding: 2rem;
}

.balance-card {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: white;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

/* Footer */
.footer-section {
    background: var(--navy-dark);
    padding: 4rem 0 2rem;
    color: white;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Utility Classes */
.section-padding {
    padding: 6rem 0;
}

/* Mobile Menu */
.mobile-menu {
    background: var(--navy);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.nav-link-mobile {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large,
    .btn-gold-large {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .trust-metrics {
        grid-template-columns: 1fr;
    }
    
    .metric-value {
        font-size: 2rem;
    }
}

/* Page-specific styles will be added in subsequent files */
.content-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.icon-feature {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.icon-feature:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}
