/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-amber: #f59e0b;
    --primary-orange: #ea580c;
    --dark-900: #0f172a;
    --dark-800: #1e293b;
    --dark-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-900);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

nav.scrolled {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 10;
}

.logo-image {
    height: 48px;
    width: auto;
}

.logo-fallback {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-amber) 0%, var(--primary-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text-always {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-left: 0.5rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--slate-200);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-amber), var(--primary-orange));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fbbf24;
}

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

.nav-cta {
    background: linear-gradient(90deg, var(--primary-amber) 0%, var(--primary-orange) 100%);
    color: #ffffff;
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 10;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.mobile-menu {
    display: none;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-link {
    display: block;
    color: var(--slate-200);
    text-decoration: none;
    padding: 0.875rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid rgba(100, 116, 139, 0.1);
}

.mobile-link:hover {
    color: #fbbf24;
    padding-left: 0.5rem;
}

.mobile-cta {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, var(--primary-amber) 0%, var(--primary-orange) 100%);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 1.5rem 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient-1 {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    animation: float 15s ease-in-out infinite reverse;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #fbbf24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite, fadeInUp 0.8s ease 0.2s both;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

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

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: var(--slate-300);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.625rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-amber) 0%, var(--primary-orange) 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    border: 2px solid rgba(245, 158, 11, 0.4);
    color: #ffffff;
    background: rgba(245, 158, 11, 0.05);
}

.btn-secondary:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.6);
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-large {
    padding: 1.375rem 3rem;
    font-size: 1.1875rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245, 158, 11, 0.8), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Sections */
section {
    position: relative;
    padding: 6rem 1.5rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    color: var(--primary-amber);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.text-amber {
    color: #fbbf24;
}

.text-orange {
    color: #f97316;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--slate-300);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: 
        radial-gradient(ellipse 100% 50% at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        var(--dark-900);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    color: var(--slate-300);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-amber);
    font-weight: 600;
}

/* Ecosystem Section */
.ecosystem {
    position: relative;
}

.ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(245, 158, 11, 0.2), transparent);
}

.ecosystem-grid {
    display: grid;
    gap: 2.5rem;
}

.ecosystem-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(100, 116, 139, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ecosystem-card:hover::before {
    opacity: 1;
}

.card-image {
    height: 16rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-800) 100%);
}

.card-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ecosystem-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ecosystem-card:hover .card-overlay {
    opacity: 1;
}

.card-icon {
    color: var(--primary-amber);
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4));
    transition: transform 0.4s ease;
}

.ecosystem-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-amber);
    margin-bottom: 0.5rem;
}

.card-tagline {
    font-size: 1rem;
    color: #fb923c;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.card-section {
    margin-bottom: 1.5rem;
}

.card-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-200);
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--slate-300);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-badge {
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    color: var(--primary-amber);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Why Section */
.why-section {
    background: 
        radial-gradient(ellipse 100% 50% at 50% 0%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        var(--dark-900);
}

.why-grid {
    display: grid;
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 1.25rem;
    border: 1px solid rgba(100, 116, 139, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-5px);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary-amber) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-desc {
    color: var(--slate-400);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Market Watch Section */
.market-watch-section {
    position: relative;
    background: 
        radial-gradient(ellipse 100% 50% at 50% 0%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        var(--dark-900);
}

.tradingview-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: #0F0F0F;
}

.tradingview-widget-container {
    height: 100%;
    width: 100%;
}

.tradingview-widget-container__widget {
    height: calc(100% - 32px);
    width: 100%;
}

.tradingview-widget-copyright {
    font-size: 13px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    color: var(--slate-400);
    background: rgba(15, 23, 42, 0.5);
    padding: 0 1rem;
}

.tradingview-widget-copyright a {
    color: var(--primary-amber);
    text-decoration: none;
}

.tradingview-widget-copyright a:hover {
    color: var(--primary-orange);
}

.tradingview-widget-copyright .blue-text {
    color: var(--primary-amber);
}

.tradingview-widget-copyright .trademark {
    color: var(--slate-400);
}

/* Results Carousel */
.results-section {
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 300px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background: var(--dark-800);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.carousel-slide.placeholder .slide-placeholder {
    display: flex;
}

.slide-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    gap: 1rem;
}

.slide-placeholder svg {
    opacity: 0.5;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(245, 158, 11, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--primary-amber);
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.5);
}

/* CTA Section */
.cta-section {
    padding: 8rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(100px);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--slate-300);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-900);
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid rgba(100, 116, 139, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-desc {
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.footer-copyright {
    color: var(--slate-400);
    font-size: 0.9375rem;
}

.footer-title {
    font-weight: 700;
    color: var(--primary-amber);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--slate-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.footer-link:hover {
    color: var(--primary-amber);
    padding-left: 0.5rem;
}

.footer-contact-text {
    color: var(--slate-400);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-email {
    color: var(--primary-amber);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-email:hover {
    color: #fb923c;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-300);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    color: var(--primary-amber);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-amber) 0%, var(--primary-orange) 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tradingview-container {
        height: 500px;
    }

    .carousel-wrapper {
        height: 350px;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tradingview-container {
        height: 550px;
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .carousel-wrapper {
        height: 450px;
    }

    .tradingview-container {
        height: 600px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .nav-cta,
    .mobile-menu-btn,
    .hero-buttons,
    .carousel-btn,
    .cta-section {
        display: none;
    }
}
