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

:root {
    --primary-color: #00d9ff;
    --secondary-color: #a855f7;
    --accent-color: #ec4899;
    --bg-primary: #0a0a1a;
    --bg-secondary: #12121f;
    --bg-tertiary: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b4b4c8;
    --text-tertiary: #8888a0;
    --border-color: #2a2a45;
    --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #00b4d8 50%, #0096c7 100%);
    --gradient-secondary: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 150, 199, 0.1) 100%);
    --gradient-hero: linear-gradient(180deg, #0a0a1a 0%, #0f1628 15%, #1a1f3a 30%, #2d2550 45%, #4a2d6b 60%, #7c3a9e 75%, #a855f7 90%, #ec4899 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links .btn-primary {
    color: #000000 !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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);
}

/* Buttons */
.btn-primary {
    background: #00d9ff;
    color: #000000;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 217, 255, 0.6);
    background: #00f0ff;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a1a 0%, #0f1628 15%, #1a1f3a 30%, #2d2550 45%, #4a2d6b 60%, #7c3a9e 75%, #a855f7 90%, #ec4899 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #00d9ff;
    top: -250px;
    left: -250px;
    animation-delay: 0s;
    opacity: 0.15;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #a855f7;
    top: 20%;
    right: -200px;
    animation-delay: 5s;
    opacity: 0.2;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: #ec4899;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 10s;
    opacity: 0.25;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00d9ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease 1s backwards;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-tertiary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-tertiary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

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

/* Ticker Section */
.ticker-section {
    padding: 0;
    background: #0a0a1a;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.ticker {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    width: fit-content;
    animation: ticker-scroll 15s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    padding: 20px 0;
    flex-shrink: 0;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-transform: uppercase;
    border-right: 2px solid var(--border-color);
    flex-shrink: 0;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

/* Pause animation on hover */
.ticker-track:hover {
    animation-play-state: paused;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Roadmap Section */
.roadmap {
    padding: 120px 0;
    background: linear-gradient(180deg, 
        #050510 0%, 
        #0a0a1a 10%, 
        #0f0f2d 30%, 
        #1a1550 50%, 
        #2a1a6b 70%, 
        #4a2d8f 85%, 
        #7c3aed 95%,
        #a855f7 100%
    );
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.roadmap::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.25) 0%, rgba(0, 217, 255, 0.15) 30%, transparent 70%);
    top: -100px;
    right: -200px;
    pointer-events: none;
    animation: float-orb 20s ease-in-out infinite;
}

.roadmap::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(168, 85, 247, 0.15) 30%, transparent 70%);
    bottom: -100px;
    left: -200px;
    pointer-events: none;
    animation: float-orb-reverse 25s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes float-orb-reverse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.15); }
}

.roadmap .section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #00d9ff 0%, 
        #00e5ff 25%, 
        #7c3aed 75%, 
        #8b5cf6 100%
    );
    transform: translateX(-50%);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 0 60px rgba(0, 217, 255, 0.4);
    animation: glow-line 3s ease-in-out infinite;
}

@keyframes glow-line {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 0 60px rgba(0, 217, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 217, 255, 1), 0 0 80px rgba(0, 217, 255, 0.6);
    }
}

.roadmap-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

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

.roadmap-item.left .roadmap-card {
    grid-column: 1;
    text-align: right;
}

.roadmap-item.right .roadmap-card {
    grid-column: 3;
    text-align: left;
}

.timeline-dot {
    grid-column: 2;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #00d9ff 0%, #00f0ff 50%, #7c3aed 100%);
    border-radius: 50%;
    border: 5px solid #0a0a1a;
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 1), 
        0 0 60px rgba(0, 217, 255, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(0, 217, 255, 1), 
            0 0 60px rgba(0, 217, 255, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 
            0 0 50px rgba(0, 217, 255, 1), 
            0 0 100px rgba(0, 217, 255, 0.8),
            inset 0 0 30px rgba(255, 255, 255, 0.8);
    }
}

.roadmap-card {
    background: linear-gradient(135deg, 
        rgba(15, 15, 45, 0.95) 0%, 
        rgba(20, 20, 60, 0.9) 50%,
        rgba(25, 15, 70, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 217, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.roadmap-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.15) 0%, 
        rgba(124, 58, 237, 0.15) 50%,
        rgba(139, 92, 246, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.roadmap-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 217, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.roadmap-card:hover {
    border-color: #00d9ff;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 217, 255, 0.4),
        0 0 40px rgba(0, 217, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.roadmap-card:hover::after {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.roadmap-quarter {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #00d9ff 0%, 
        #00f0ff 30%,
        #7c3aed 70%,
        #8b5cf6 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
    position: relative;
    z-index: 1;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.roadmap-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.roadmap-description {
    font-size: 16px;
    color: rgba(180, 180, 200, 0.95);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Security Section */
.security {
    background: var(--bg-secondary);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

.security-item {
    text-align: center;
}

.security-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--gradient-secondary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid var(--primary-color);
}

.security-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.security-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Community Section */
.community {
    text-align: center;
}

.community-description {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 64px;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 64px;
}

.community-stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 16px;
    color: var(--text-tertiary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-link {
    padding: 12px 32px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Download Section */
.download {
    background: var(--bg-secondary);
    text-align: center;
}

.download-description {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 48px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.download-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 217, 255, 0.3);
}

.download-btn svg {
    width: 48px;
    height: 48px;
}

.download-btn-text {
    text-align: left;
}

.download-subtitle {
    font-size: 12px;
    color: var(--text-tertiary);
}

.download-title {
    font-size: 20px;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo .logo-image {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #00d9ff 0%, #00f0ff 100%);
    border-color: #00d9ff;
    color: #0a0a1a;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.4);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-tertiary);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 56px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

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

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

    /* Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 24px;
        color: var(--text-primary);
        transform: translateY(20px);
        opacity: 0;
        animation: slideIn 0.3s ease forwards;
    }

    .nav-links.active a:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links.active a:nth-child(4) {
        animation-delay: 0.4s;
    }

    @keyframes slideIn {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar {
        padding: 16px 0;
    }

    /* Hero */
    .hero {
        padding: 140px 0 80px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 13px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat {
        flex-direction: row;
        gap: 16px;
        align-items: center;
    }

    .stat-value {
        font-size: 18px;
    }

    .stat-label {
        font-size: 13px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    /* Sections */
    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
    }

    /* Features */
    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 24px;
    }

    /* Roadmap */
    .roadmap {
        padding: 80px 0;
    }

    .roadmap-timeline {
        padding: 20px 0;
    }

    .roadmap-item {
        grid-template-columns: 1fr 32px;
        gap: 16px;
        margin-bottom: 32px;
    }

    .roadmap-item.left .roadmap-card,
    .roadmap-item.right .roadmap-card {
        grid-column: 1;
        text-align: left;
    }

    .timeline-dot {
        grid-column: 2;
        width: 20px;
        height: 20px;
        border: 3px solid #0a0a1a;
    }

    .timeline-line {
        left: auto;
        right: 12px;
        transform: none;
        width: 3px;
    }

    .roadmap-card {
        padding: 20px;
    }

    .roadmap-quarter {
        font-size: 28px;
    }

    .roadmap-title {
        font-size: 18px;
    }

    .roadmap-description {
        font-size: 14px;
    }

    /* Security */
    .security {
        padding: 60px 0;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .security-item {
        padding: 24px;
    }

    .security-number {
        font-size: 32px;
    }

    /* Community */
    .community {
        padding: 60px 0;
    }

    .community-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-number {
        font-size: 40px;
    }

    .social-links {
        flex-direction: column;
        gap: 12px;
    }

    .social-link {
        width: 100%;
        text-align: center;
    }

    /* Download */
    .download {
        padding: 60px 0;
    }

    .download-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .download-btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 60px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    /* Ticker */
    .ticker-item {
        font-size: 16px;
        padding: 0 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .roadmap-quarter {
        font-size: 24px;
    }

    .roadmap-title {
        font-size: 16px;
    }

    .btn-large {
        font-size: 14px;
        padding: 14px 24px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
    }

    .gradient-orb {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .page-hero {
        padding: 120px 0 60px;
        min-height: 50vh;
    }

    .btn-large svg {
        display: none;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .roadmap-quarter {
        font-size: 20px;
    }

    .roadmap-card {
        padding: 16px;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
    }

    .footer-social-icon svg {
        width: 18px;
        height: 18px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-image {
        height: 32px;
    }

    .nav-content {
        padding: 14px 0;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* App Page Styles */
.app-hero {
    padding: 160px 0 100px;
    min-height: auto;
}

.app-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-hero-text {
    max-width: 600px;
}

.app-download-buttons {
    display: flex;
    gap: 16px;
    margin: 32px 0;
}

.app-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.app-stat-item {
    text-align: left;
}

.app-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.app-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Phone Mockup */
.app-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 0 0 12px rgba(255, 255, 255, 0.05),
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #0a0a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mockup-content {
    padding: 60px 24px 24px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-primary);
}

.mockup-balance {
    text-align: center;
    margin-bottom: 40px;
}

.balance-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.balance-change {
    font-size: 14px;
    color: var(--accent-color);
}

.mockup-actions {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    margin-top: 40px;
}

.action-btn {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.action-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.action-label {
    font-size: 12px;
    color: var(--text-secondary);
}

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

/* App Features Section */
.app-features {
    padding: 100px 0;
    background: #0a0a1a;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.app-feature-item {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.app-feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.app-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.app-feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.app-feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a1a 0%, #0f0f1e 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.tech-flow {
    margin-top: 80px;
    position: relative;
}

.flow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.flow-step:nth-child(3) { animation-delay: 0.1s; }
.flow-step:nth-child(5) { animation-delay: 0.2s; }
.flow-step:nth-child(7) { animation-delay: 0.3s; }
.flow-step:nth-child(9) { animation-delay: 0.4s; }

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    position: relative;
}

.step-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateX(8px);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.step-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 48px;
    opacity: 0.3;
}

.flow-connector {
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
    margin: -20px 0 -20px 38px;
    position: relative;
}

.flow-connector::before {
    content: '↓';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 20px;
}

/* Architecture Section */
.architecture-section {
    margin-top: 100px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.architecture-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    top: 0;
    left: 0;
}

.architecture-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.architecture-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.architecture-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.arch-node {
    display: flex;
    align-items: center;
    gap: 12px;
}

.node-label {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid var(--primary-color);
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
}

.node-label:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.node-sublabel {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
    font-weight: 400;
}

.arch-node .node-label {
    position: relative;
    padding-bottom: 12px;
}

.node-arrow {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
}

/* How It Works Responsive */
@media (max-width: 768px) {
    .flow-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .step-content {
        padding: 24px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }

    .step-icon {
        font-size: 36px;
        top: 24px;
        right: 24px;
    }

    .flow-connector {
        margin-left: 28px;
    }

    .architecture-section {
        padding: 40px 24px;
    }

    .architecture-flow {
        flex-direction: column;
        gap: 20px;
    }

    .arch-node {
        flex-direction: column;
        width: 100%;
    }

    .node-label {
        width: 100%;
        text-align: center;
    }

    .node-arrow {
        transform: rotate(90deg);
    }

    .node-sublabel {
        position: static;
        transform: none;
        margin-top: 8px;
    }
}

/* Screenshots Section */
.app-screenshots {
    padding: 100px 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.screenshot-card {
    position: relative;
    aspect-ratio: 9/16;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3), 0 0 40px rgba(0, 217, 255, 0.15);
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.screenshot-card:hover .screenshot-image {
    transform: scale(1.05);
}

.screenshot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.95), transparent);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.screenshot-card:hover .screenshot-label {
    opacity: 1;
    transform: translateY(0);
}

/* Requirements Section */
.app-requirements {
    padding: 100px 0;
    background: #0a0a1a;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 64px;
}

.requirement-group {
    margin-bottom: 40px;
}

.requirement-group h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.requirement-list {
    list-style: none;
    padding: 0;
}

.requirement-list li {
    padding: 12px 0;
    padding-left: 28px;
    color: var(--text-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.requirement-list li:last-child {
    border-bottom: none;
}

.requirement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.changelog {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.version {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.release-date {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.changelog-list {
    list-style: none;
    padding: 0;
}

.changelog-list li {
    padding: 8px 0;
    padding-left: 28px;
    color: var(--text-secondary);
    position: relative;
}

.changelog-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent-color);
    font-size: 20px;
    line-height: 1;
}

/* Download CTA Section */
.download-cta {
    padding: 100px 0;
    text-align: center;
}

.download-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 20px 0 40px;
}

.download-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* App Page Responsive */
@media (max-width: 1024px) {
    .app-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .phone-mockup {
        margin: 0 auto;
    }

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

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

    .requirements-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .app-hero {
        padding: 120px 0 60px;
    }

    .app-download-buttons {
        flex-direction: column;
    }

    .app-stats {
        flex-direction: column;
        gap: 20px;
    }

    .phone-frame {
        width: 280px;
        height: 560px;
    }

    .balance-amount {
        font-size: 36px;
    }

    .app-features-grid {
        grid-template-columns: 1fr;
    }

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

/* Documentation Page Styles */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 60vh;
    overflow: hidden;
}

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

.docs-viewer-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.docs-viewer-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.pdf-viewer-container {
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    height: 800px;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.1);
}

.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.docs-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.sidebar-action {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-action:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
    transform: translateX(4px);
}

.action-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.action-text {
    flex: 1;
}

.action-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.action-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

.sidebar-info {
    padding: 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

.info-list li {
    padding: 10px 0;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d9ff;
    font-weight: 700;
}

/* Resources Section */
.resources-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

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

.resource-card {
    padding: 40px 32px;
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.resource-card:hover {
    background: rgba(10, 10, 26, 0.8);
    border-color: #00d9ff;
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.2);
}

.resource-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.resource-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.resource-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.resource-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #00d9ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    transform: translateX(4px);
}

.docs-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.docs-actions .btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Docs Page Responsive */
@media (max-width: 1024px) {
    .docs-viewer-wrapper {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: static;
    }

    .sidebar-actions {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .pdf-viewer-container {
        height: 600px;
    }

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

@media (max-width: 768px) {
    .pdf-viewer-container {
        height: 500px;
    }

    .sidebar-actions {
        grid-template-columns: 1fr;
    }

    .docs-actions {
        flex-direction: column;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .resource-card {
        padding: 32px 24px;
    }
}

/* Legal Page Styles */
.legal-nav-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.legal-section {
    padding: 80px 0;
}

.legal-section:nth-child(odd) {
    background: #0a0a1a;
}

.legal-section:nth-child(even) {
    background: #0f0f1e;
}

.legal-doc-title {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.legal-doc-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-nav-buttons {
        flex-direction: column;
    }
    
    .legal-doc-title {
        font-size: 32px;
    }
}

/* Docs Page Styles (Fogo-style) */
.docs-body {
    background: linear-gradient(180deg, #0a0a1a 0%, #0f0f1e 50%, #1a1f3a 100%);
    color: #d4d4d4;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
}

.docs-body::before {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
    z-index: 0;
}

.docs-body::after {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
    z-index: 0;
}

/* Docs Header */
.docs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    z-index: 100;
}

.docs-header-content {
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.docs-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

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

.docs-close {
    color: #888;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.2s;
}

.docs-close:hover {
    color: #ffffff;
}

/* Docs Layout */
.docs-layout {
    display: flex;
    padding-top: 64px;
    min-height: 100vh;
}

/* Docs Sidebar */
.docs-sidebar {
    position: fixed;
    left: 0;
    top: 64px;
    width: 280px;
    height: calc(100vh - 64px);
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(0, 217, 255, 0.1);
    overflow-y: auto;
    padding: 32px 0;
    z-index: 10;
}

.docs-nav {
    padding: 0 24px;
}

.docs-nav-section {
    margin-bottom: 32px;
}

.docs-nav-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 12px;
    padding-left: 12px;
}

.docs-nav-link {
    display: block;
    padding: 8px 12px;
    color: #d4d4d4;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s;
    margin-bottom: 4px;
}

.docs-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.docs-nav-link.active {
    background: linear-gradient(135deg, #00d9ff 0%, #00f0ff 100%);
    color: #0a0a1a;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

/* Docs Main Content */
.docs-main {
    margin-left: 280px;
    flex: 1;
    padding: 48px 64px;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.docs-content {
    max-width: 800px;
}

.docs-section {
    margin-bottom: 64px;
}

/* Typography */
.docs-h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.docs-accent {
    background: linear-gradient(135deg, #00d9ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.docs-h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 48px;
    margin-bottom: 20px;
}

.docs-h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 32px;
    margin-bottom: 16px;
}

.docs-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: #d4d4d4;
    margin-bottom: 20px;
}

.docs-list {
    margin: 20px 0;
    padding-left: 24px;
}

.docs-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #d4d4d4;
    margin-bottom: 12px;
}

.docs-list li strong {
    color: #ffffff;
}

/* Download Card */
.docs-download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}

.docs-download-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.docs-download-card:hover::before {
    opacity: 1;
}

.download-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.download-card-icon {
    font-size: 48px;
}

.download-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.download-card-description {
    font-size: 14px;
    color: #d4d4d4;
    margin: 0;
}

.download-card-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #00d9ff 0%, #00f0ff 100%);
    color: #0a0a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.download-card-btn:hover {
    background: linear-gradient(135deg, #00f0ff 0%, #8b5cf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4);
}

/* CTA Box */
.docs-cta-box {
    padding: 32px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    margin: 32px 0;
    text-align: center;
}

.cta-box-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.cta-box-text {
    font-size: 16px;
    color: #d4d4d4;
    margin-bottom: 20px;
}

.cta-box-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #00d9ff 0%, #8b5cf6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-box-btn:hover {
    background: linear-gradient(135deg, #00f0ff 0%, #a855f7 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4);
}

/* Docs Navigation Footer */
.docs-nav-footer {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 64px;
}

.docs-nav-next {
    display: inline-block;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.docs-nav-next:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
    transform: translateX(4px);
}

.nav-next-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 4px;
}

.nav-next-title {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #00d9ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Docs Responsive */
@media (max-width: 1024px) {
    .docs-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .docs-main {
        margin-left: 0;
        padding: 32px 24px;
    }

    .docs-h1 {
        font-size: 36px;
    }

    .docs-h2 {
        font-size: 28px;
    }

    .docs-h3 {
        font-size: 20px;
    }

    .docs-download-card {
        flex-direction: column;
        text-align: center;
    }

    .download-card-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .docs-main {
        padding: 24px 16px;
    }

    .docs-h1 {
        font-size: 28px;
    }

    .docs-h2 {
        font-size: 24px;
    }
}


