/* ========================================
   RESET & BASE STYLES
======================================== */

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

html {
    scroll-behavior: smooth;
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */

/* Sections will be animated by JavaScript */
section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ECEDEE;
    background-color: #0A0B0F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 156, 108, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 156, 108, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

/* ========================================
   CONTAINER & LAYOUT
======================================== */

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ========================================
   NAVIGATION
======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 11, 15, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ECEDEE;
}

.launch-pill {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 156, 108, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 156, 108, 0.3);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #009C6C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: subtlePulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 156, 108, 0.2);
}

@keyframes subtlePulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 20px rgba(0, 156, 108, 0.2);
    }
    50% { 
        opacity: 0.85;
        box-shadow: 0 0 30px rgba(0, 156, 108, 0.3);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #ECEDEE;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 156, 108, 0.95) 0%, rgba(0, 214, 143, 0.95) 100%);
    padding: 10px 22px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(0, 156, 108, 0.35);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #00B97C 0%, #00D68F 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 156, 108, 0.45);
    opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 11, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 24px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 12px 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(0, 229, 153, 0.1);
    }
    
    .launch-pill {
        font-size: 9px;
        padding: 3px 8px;
        letter-spacing: 0.3px;
    }
}

/* ========================================
   BUTTONS
======================================== */

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #009C6C 0%, #00B97C 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 156, 108, 0.4), 
                0 0 40px rgba(0, 156, 108, 0.2),
                0 1px 1px rgba(255, 255, 255, 0.2) inset;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #00D68F, #009C6C, #00D68F);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: shimmer 3s linear infinite;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00B97C 0%, #00D68F 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 156, 108, 0.5), 
                0 0 60px rgba(0, 156, 108, 0.3),
                0 1px 1px rgba(255, 255, 255, 0.3) inset;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover::after {
    left: 100%;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Secondary Button */
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #C5C9CE;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: #FFFFFF;
    border-color: rgba(0, 229, 153, 0.4);
    background: rgba(0, 229, 153, 0.08);
    transform: translateY(-2px);
}

/* Hero Trust Pill */
.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 229, 153, 0.08);
    border: 1px solid rgba(0, 229, 153, 0.25);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-trust-pill span:first-child,
.hero-trust-pill span:nth-child(4) {
    font-size: 16px;
    line-height: 1;
}

.pill-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    padding: 180px 0 120px;
    background: #0A0B0F;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 156, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 24px;
    background: rgba(0, 156, 108, 0.14);
    border: 1px solid rgba(0, 214, 143, 0.35);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #00D68F;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 156, 108, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #C5C9CE;
    margin-bottom: 48px;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0 24px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(21, 22, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    list-style: none;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero-stats li {
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #00D68F;
}

.stat-label {
    font-size: 13px;
    letter-spacing: 0.3px;
    color: #7F878C;
    text-transform: uppercase;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 12px 20px;
    background: rgba(0, 156, 108, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 156, 108, 0.25);
    border-radius: 16px;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(0, 156, 108, 0.15),
                0 1px 1px rgba(255, 255, 255, 0.1) inset;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.solana-badge {
    height: 24px;
    width: auto;
    filter: brightness(1.1);
}

.badge-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #E0E4E8;
    white-space: nowrap;
}

.badge-subtext {
    font-size: 12px;
    color: #7F878C;
}

.hero-social-proof {
    font-size: 14px;
    color: #9BA1A6;
    margin-top: 16px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-launch-status {
    font-size: 14px;
    color: #009C6C;
    margin-top: 12px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-cta-group {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-badge-container {
    margin-top: 24px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.solana-dapp-store-badge-hero {
    height: 56px;
    width: auto;
    display: block !important;
    max-width: 220px;
    min-width: 180px;
    object-fit: contain;
    image-rendering: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Removed hover effect since badge is no longer a link */

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.phone-mockup {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(0, 156, 108, 0.2));
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    filter: drop-shadow(0 25px 70px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 50px rgba(0, 156, 108, 0.3));
    transform: scale(1.02);
}

@media (max-width: 968px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        padding: 16px 18px;
        gap: 20px;
    }

    .hero-stats li {
        text-align: center;
        align-items: center;
    }
    
    .phone-mockup {
        max-width: 240px;
        max-height: 310px;
        object-fit: cover;
        object-position: top center;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(0, 156, 108, 0.15));
    }
    
    .hero-image {
        margin-top: -10px;
    }
    
    .hero-badge-container {
        margin-top: 20px;
    }
    
    .solana-dapp-store-badge-hero {
        height: 45px;
    }
}

/* ========================================
   WHY DINARIO SECTION
======================================== */

.why-dinario {
    padding: 100px 0;
    background: #0A0B0F;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 48px 32px;
    background: rgba(21, 22, 32, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.why-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.why-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.why-card:hover {
    border-color: rgba(0, 156, 108, 0.3);
    transform: translateY(-4px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 156, 108, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.why-card:hover {
    border-color: rgba(0, 156, 108, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 156, 108, 0.25), 
                0 0 32px rgba(0, 156, 108, 0.15),
                0 1px 1px rgba(255, 255, 255, 0.2) inset;
    background: rgba(21, 22, 32, 0.7);
}

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

.why-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    margin-bottom: 18px;
    background: rgba(0, 156, 108, 0.12);
    border: 1px solid rgba(0, 156, 108, 0.35);
    border-radius: 999px;
    color: #00D68F;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.why-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 156, 108, 0.3));
}

.why-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.why-description {
    font-size: 15px;
    color: #AAB0B6;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-dinario {
        padding: 60px 0;
    }

    .why-card {
        gap: 10px;
    }
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #009C6C, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 156, 108, 0.5);
}

@media (max-width: 968px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

/* ========================================
   TRUST STRIP
======================================== */

.trust-strip {
    padding: 40px 0;
    background: #0A0B0F;
}

.trust-strip-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(0, 229, 153, 0.05);
    border: 1px solid rgba(0, 229, 153, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(0, 229, 153, 0.08);
    border-color: rgba(0, 229, 153, 0.3);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 24px;
    line-height: 1;
}

.trust-text {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .trust-strip {
        padding: 24px 0;
    }
    
    .trust-strip-content {
        gap: 12px;
    }
    
    .trust-badge {
        padding: 10px 18px;
    }
    
    .trust-icon {
        font-size: 18px;
    }
    
    .trust-text {
        font-size: 13px;
    }
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */

.how-it-works {
    padding: 100px 0;
    background: #0A0B0F;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.flow-step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.flow-step:nth-child(1).visible {
    transition-delay: 0.1s;
}

.flow-step:nth-child(2).visible {
    transition-delay: 0.2s;
}

.flow-step:nth-child(3).visible {
    transition-delay: 0.3s;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #009C6C 0%, #00D68F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 156, 108, 0.4);
    z-index: 10;
}

.step-image {
    margin-bottom: 32px;
    position: relative;
}

.screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.flow-step:hover .screenshot {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(0, 214, 143, 0.2);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #9BA1A6;
}

@media (max-width: 968px) {
    .how-it-works {
        padding: 80px 0;
    }
    
    .flow-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 48px;
    }
}

/* ========================================
   FOOTER CTA SECTION
======================================== */

.footer-cta {
    padding: 100px 0;
    background: #0A0B0F;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: #C5C9CE;
    margin-bottom: 32px;
}

.cta-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Solana badge is now just an image, not a link */

.solana-dapp-store-badge {
    height: 56px;
    width: auto;
    display: block !important;
    max-width: 220px;
    min-width: 180px;
    object-fit: contain;
    image-rendering: auto;
}

.cta-social-proof {
    font-size: 15px;
    color: #687076;
    margin-bottom: 32px;
    font-weight: 500;
}

@media (max-width: 968px) {
    .footer-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .solana-dapp-store-badge {
        height: 50px;
    }
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: #0A0B0F;
    padding: 40px 0 32px;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 15px;
    color: #9BA1A6;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: #00E599;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    font-size: 20px;
    color: #9BA1A6;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-social a:hover {
    color: #00E599;
    background: rgba(0, 229, 153, 0.1);
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .footer-nav {
        gap: 20px;
        width: 100%;
    }
    
    .footer-nav a {
        font-size: 14px;
    }
}

/* ========================================
   LEGAL DISCLAIMER
======================================== */

.legal-disclaimer {
    max-width: 900px;
    margin: 0 auto 40px;
    padding-top: 40px;
}

.disclaimer-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disclaimer-toggle:hover .disclaimer-title {
    color: #009C6C;
}

.disclaimer-title {
    font-size: 14px;
    font-weight: 700;
    color: #9BA1A6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.disclaimer-icon {
    font-size: 24px;
    font-weight: 300;
    color: #009C6C;
    transition: transform 0.3s ease;
    line-height: 1;
}

.disclaimer-toggle[aria-expanded="true"] .disclaimer-icon {
    transform: rotate(45deg);
}

.disclaimer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0;
}

.disclaimer-content.active {
    max-height: 1200px;
    padding: 16px 0;
}

.disclaimer-text {
    font-size: 12px;
    color: #687076;
    line-height: 1.6;
    margin-bottom: 12px;
}

.disclaimer-text strong {
    color: #9BA1A6;
    font-weight: 600;
}

.disclaimer-text a {
    color: #009C6C;
    text-decoration: underline;
}

.disclaimer-text a:hover {
    opacity: 0.8;
}

/* ========================================
   FOOTER BOTTOM
======================================== */

.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: #687076;
}

