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

:root {
    --primary-emerald: #009C7A;
    --muted-emerald: #18795F;
    --deep-emerald: #0F574C;
    --deep-black: #0A0A0A;
    --slate-grey: #1B1B1B;
    --off-white: #F9F7F2;
    --gradient-glow: #00FFC2;
    --glass-bg: rgba(27, 27, 27, 0.15);
    --glass-border: rgba(0, 156, 122, 0.2);
    --gradient-primary: linear-gradient(135deg, #0A0A0A 0%, #1B1B1B 100%);
    --gradient-accent: linear-gradient(135deg, #009C7A 0%, #0F574C 100%);
    --gradient-glow-effect: linear-gradient(135deg, #009C7A 0%, #00FFC2 100%);
    --gradient-card: linear-gradient(135deg, rgba(27, 27, 27, 0.8) 0%, rgba(15, 87, 76, 0.6) 100%);
    --text-primary: #F9F7F2;
    --text-secondary: #009C7A;
    --text-muted: rgba(249, 247, 242, 0.7);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: var(--gradient-primary);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 32px;
    width: auto;
    filter: brightness(0.8) contrast(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
    vertical-align: middle;
}

.logo-image:hover {
    transform: scale(1.02);
    filter: brightness(1.0) contrast(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-emerald);
}

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

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

.nav-cta {
    background: var(--gradient-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    color: var(--slate-grey);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 156, 122, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 156, 122, 0.4);
}

/* Launch App Dropdown */
.launch-app-dropdown {
    position: relative;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.launch-app-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 280px;
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.98) 0%, rgba(15, 87, 76, 0.95) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 156, 122, 0.3);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.launch-app-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: rgba(0, 156, 122, 0.1);
    transform: translateX(5px);
}

.dropdown-item.coming-soon-item {
    cursor: default;
    opacity: 0.6;
}

.dropdown-item.coming-soon-item:hover {
    background: transparent;
    transform: none;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--slate-grey);
    flex-shrink: 0;
    overflow: hidden;
}

.network-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.solana-icon {
    background: rgba(0, 156, 122, 0.1);
    border: 1px solid var(--glass-border);
}


.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.network-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.network-url {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.network-url.coming-soon {
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.7;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-emerald);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 194, 0.08) 0%, rgba(0, 156, 122, 0.05) 40%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 156, 122, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Network Buttons */
.network-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.network-btn:hover {
    transform: translateY(-3px);
    border-color: var(--primary-emerald);
    box-shadow: 0 8px 25px rgba(0, 156, 122, 0.3);
}

.network-btn.coming-soon-btn {
    cursor: default;
    opacity: 0.6;
    background: rgba(27, 27, 27, 0.3);
    border-color: rgba(0, 156, 122, 0.1);
    white-space: nowrap;
    font-size: 0.9rem;
}

.network-btn.coming-soon-btn:hover {
    transform: none;
    border-color: rgba(0, 156, 122, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.network-btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.network-btn-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}


.solana-btn .network-btn-icon {
    background: rgba(0, 156, 122, 0.1);
}


.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--slate-grey);
    box-shadow: 0 8px 25px rgba(0, 156, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 156, 122, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(0, 156, 122, 0.1);
    border-color: var(--primary-emerald);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-emerald);
    text-shadow: 0 0 20px rgba(0, 156, 122, 0.5);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.2) 0%, rgba(15, 87, 76, 0.15) 100%);
    border: 1px solid rgba(0, 156, 122, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    width: 300px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-card:hover {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.3) 0%, rgba(15, 87, 76, 0.25) 100%);
    border-color: rgba(0, 156, 122, 0.4);
    box-shadow: 0 12px 40px rgba(0, 156, 122, 0.2);
    transform: translateY(-5px);
}

.floating-card.card-1 {
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

.floating-card.card-4 {
    top: 25%;
    right: 2%;
    animation-delay: 1s;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    gap: 1.5rem;
}

.card-title-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-title {
    font-weight: 600;
    color: var(--text-primary);
}

.card-network-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.card-network-icon:hover {
    opacity: 1;
}

.card-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
}

.card-change.positive {
    background: rgba(0, 156, 122, 0.2);
    color: var(--primary-emerald);
}

.card-change.negative {
    background: rgba(255, 136, 136, 0.2);
    color: #ff8888;
}

.card-change.neutral {
    background: rgba(134, 184, 206, 0.2);
    color: var(--muted-emerald);
}

.card-change.price {
    background: rgba(0, 255, 194, 0.15);
    color: var(--gradient-glow);
    font-weight: 700;
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.card-price-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-emerald);
}

.card-market-cap {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.9;
    font-weight: 500;
    white-space: nowrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Trust / Ecosystem Strip */
.trust-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 500;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.partner-logo {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-3px) scale(1.05);
}

.partner-logo a {
    display: block;
    text-decoration: none;
}

.partner-logo a:hover {
    text-decoration: none;
}

.partner-logo-img,
.partner-logo-svg {
    max-width: 130px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.8) contrast(1.1) opacity(0.8);
}

.partner-logo:hover .partner-logo-img,
.partner-logo:hover .partner-logo-svg {
    filter: brightness(1) contrast(1.2) opacity(1);
}

.logo-fallback {
    font-weight: 600;
    color: #9CA3AF;
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-fallback {
    color: var(--primary-emerald);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Products Overview Section */
.products-overview {
    padding: 6rem 0;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.95) 0%, rgba(15, 87, 76, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 156, 122, 0.1), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 156, 122, 0.25), 0 8px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-emerald);
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.98) 0%, rgba(15, 87, 76, 0.9) 100%);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--slate-grey);
    box-shadow: 0 8px 25px rgba(0, 156, 122, 0.3);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-cta {
    background: transparent;
    border: 2px solid var(--primary-emerald);
    color: var(--primary-emerald);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.product-cta:hover {
    background: var(--primary-emerald);
    color: var(--slate-grey);
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--gradient-primary);
    position: relative;
}

.simple-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.flow-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-simple {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--slate-grey);
    box-shadow: 0 8px 25px rgba(0, 156, 122, 0.3);
    transition: all 0.3s ease;
}

.step-simple:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 156, 122, 0.4);
}

.step-simple h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.flow-arrow {
    color: var(--primary-emerald);
    font-size: 1.5rem;
    opacity: 0.7;
    flex-shrink: 0;
}


/* Why Splyce Section */
.why-splyce {
    padding: 6rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.why-tile {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.95) 0%, rgba(15, 87, 76, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.why-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 156, 122, 0.1), transparent);
    transition: left 0.5s;
}

.why-tile:hover::before {
    left: 100%;
}

.why-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 156, 122, 0.25), 0 8px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-emerald);
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.98) 0%, rgba(15, 87, 76, 0.9) 100%);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--slate-grey);
    box-shadow: 0 6px 20px rgba(0, 156, 122, 0.3);
}

.why-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.why-description {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* RWA and dETFs Detail Sections */
.rwa-detail, .detfs-detail {
    padding: 6rem 0;
    background: var(--gradient-primary);
}

.detail-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Learn Section */
.learn {
    padding: 6rem 0;
    background: var(--gradient-primary);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.learn-card {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.95) 0%, rgba(15, 87, 76, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 380px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.learn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 156, 122, 0.1), transparent);
    transition: left 0.5s;
}

.learn-card:hover::before {
    left: 100%;
}

.learn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 156, 122, 0.25), 0 8px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-emerald);
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.98) 0%, rgba(15, 87, 76, 0.9) 100%);
}

.learn-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--slate-grey);
    box-shadow: 0 4px 15px rgba(0, 156, 122, 0.3);
}

.learn-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.learn-top {
    display: flex;
    flex-direction: column;
}

.learn-teaser {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.learn-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.learn-category {
    display: inline-block;
    background: rgba(0, 156, 122, 0.1);
    color: var(--primary-emerald);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 156, 122, 0.2);
    align-self: flex-start;
}

.learn-link {
    color: var(--primary-emerald);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.learn-card:hover .learn-link {
    gap: 0.75rem;
}

/* Coming Soon styles for Learn cards */
.learn-card.coming-soon {
    cursor: default;
    opacity: 0.7;
}

.learn-card.coming-soon::before {
    display: none;
}

.learn-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 156, 122, 0.1);
    border-color: rgba(0, 156, 122, 0.3);
}


.coming-soon-link {
    color: var(--text-muted) !important;
    cursor: default;
}

.learn-card.coming-soon:hover .learn-link {
    gap: 0.5rem;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 156, 122, 0.1) 0%, rgba(15, 87, 76, 0.05) 100%);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 194, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-network-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn.primary {
    background: var(--gradient-accent);
    color: var(--slate-grey);
    border: none;
    box-shadow: 0 8px 25px rgba(0, 156, 122, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 156, 122, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-emerald);
    border: 2px solid var(--primary-emerald);
    backdrop-filter: blur(20px);
}

.cta-btn.secondary:hover {
    background: rgba(0, 156, 122, 0.1);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--gradient-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.95) 0%, rgba(15, 87, 76, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 156, 122, 0.1), transparent);
    transition: left 0.5s;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    border-color: var(--primary-emerald);
    box-shadow: 0 12px 40px rgba(0, 156, 122, 0.2), 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.98) 0%, rgba(15, 87, 76, 0.9) 100%);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-emerald);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-emerald);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: var(--deep-black);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.social-link:hover {
    background: rgba(0, 156, 122, 0.1);
    border-color: var(--primary-emerald);
    color: var(--primary-emerald);
    transform: translateY(-2px);
}

.x-icon {
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: var(--primary-emerald);
    transform: translateX(5px);
}

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

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

.footer-link-disabled {
    color: var(--text-muted) !important;
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.footer-link-disabled:hover {
    transform: none !important;
}

.footer-link-disabled::after {
    display: none !important;
}

.coming-soon {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.7;
    font-style: italic;
    margin-left: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.copyright {
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.legal-link:hover {
    color: var(--primary-emerald);
    transform: translateY(-2px);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #0A0A0A 0%, #1B1B1B 100%);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(0, 156, 122, 0.2);
        z-index: 999;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        color: var(--text-primary);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        min-width: auto;
        width: 100%;
    }
    
    .dropdown-item {
        padding: 1rem 0;
        border-radius: 8px;
        background: rgba(0, 156, 122, 0.1);
        margin-bottom: 0.5rem;
    }
    
    .network-name {
        font-size: 0.95rem;
    }
    
    .network-url {
        font-size: 0.75rem;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 85vh;
        display: flex;
        align-items: center;
        padding-bottom: 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 16px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .floating-card {
        display: none !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .network-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        gap: 0.5rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .network-btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .network-btn-logo {
        width: 16px;
        height: 16px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .trust-section {
        padding: 4rem 0 4rem;
    }
    
    .products-overview,
    .how-it-works,
    .why-splyce,
    .learn,
    .faq {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 auto;
    }
    
    .product-card {
        padding: 2rem 1.5rem;
        margin: 0 16px;
    }
    
    .flow-diagram {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 16px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }
    
    .step-simple {
        max-width: 100%;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 16px;
    }
    
    .why-tile {
        margin: 0;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 16px;
    }
    
    .learn-card {
        height: auto;
        min-height: 320px;
        margin: 0;
    }
    
    .cta-headline {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-network-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partners-grid {
        gap: 2.5rem;
        padding: 1rem 16px;
    }
    
    .partner-logo-img,
    .partner-logo-svg {
        max-width: 100px;
        max-height: 65px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .faq-container {
        padding: 0 16px;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 1rem 12px;
    }
    
    .logo-image {
        height: 24px;
    }
    
    .hero {
        padding-top: 90px;
        min-height: 90vh;
        padding-bottom: 4rem;
    }
    
    .hero-container {
        padding: 0 12px;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .floating-card {
        display: none !important;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .trust-section {
        padding: 5rem 0 4rem;
    }
    
    .network-btn {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        min-height: 48px;
        max-width: 260px;
    }
    
    .products-overview,
    .how-it-works,
    .why-splyce,
    .learn,
    .faq {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .product-card,
    .why-tile,
    .learn-card {
        padding: 1.5rem 1.25rem;
        margin: 0 12px;
        height: auto;
        min-height: 280px;
    }
    
    .product-icon,
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .product-description,
    .why-description {
        font-size: 1rem;
    }
    
    .product-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .flow-diagram {
        gap: 1rem;
        padding: 0 12px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-simple h4 {
        font-size: 1rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 12px;
    }
    
    .learn-grid {
        padding: 0 12px;
    }
    
    .learn-title {
        font-size: 1.1rem;
    }
    
    .learn-teaser {
        font-size: 0.85rem;
    }
    
    .cta-headline {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .partners-grid {
        gap: 1.5rem;
        padding: 0.5rem 12px;
    }
    
    .partner-logo-img,
    .partner-logo-svg {
        max-width: 75px;
        max-height: 50px;
    }
    
    .trust-tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        padding: 0 12px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-container {
        padding: 0 12px;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-emerald);
}

/* ===== LEGAL DOCUMENT STYLES ===== */
.legal-document {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0A0A0A 0%, #1B1B1B 100%);
    color: #FFFFFF;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 1.1rem;
    color: #A0A9B8;
    font-weight: 500;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-emerald);
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 156, 122, 0.2);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-emerald);
    margin: 24px 0 16px;
}

.legal-section p {
    font-size: 1rem;
    color: #E5E7EB;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 1rem;
    color: #E5E7EB;
    margin-bottom: 8px;
    list-style-type: disc;
}

.legal-section strong {
    color: var(--primary-emerald);
    font-weight: 600;
}

/* Mobile responsiveness for legal documents */
@media (max-width: 768px) {
    .legal-document {
        padding: 100px 0 60px;
    }
    
    .legal-title {
        font-size: 2.2rem;
    }
    
    .legal-content {
        padding: 0 20px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

