:root {
    --bg-main: #070709;
    --text-primary: #FAFAFA;
    --text-muted: #A1A1AA;
    --accent-orange: #FF4D00;
    
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.logo .dot {
    color: var(--accent-orange);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-explore {
    background-color: var(--accent-orange);
    color: #000;
    border: none;
    padding: 0.75rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 77, 0, 0.3);
}

.hero {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.eyebrow {
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.highlight {
    color: var(--accent-orange);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
    margin-left: -15px;
    background: #333;
}

.avatar:first-child {
    margin-left: 0;
    background: linear-gradient(45deg, #FF4D00, #FF8A00);
}

.a2 { background: linear-gradient(45deg, #00E5FF, #007BFF); }
.a3 { background: linear-gradient(45deg, #B026FF, #651FFF); }

.proof-text {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-weight: 700;
    font-size: 1.2rem;
}

.proof-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-footer {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    max-width: 500px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: none;
}

.glass-card {
    position: absolute;
    width: 260px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-back {
    right: 15%;
    top: 0;
    transform: rotate(10deg);
    z-index: 1;
}

.card-front {
    right: 35%;
    top: 20%;
    transform: rotate(-5deg);
    z-index: 2;
    border-color: rgba(255, 77, 0, 0.2);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.coin-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.btc { background: #F7931A; }
.eth { background: #627EEA; }

.card-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.chart-line {
    height: 60px;
    width: 100%;
    border-bottom: 2px solid var(--accent-orange);
    border-radius: 50%;
    margin-top: 4rem;
}

.chart-line.alt {
    border-bottom: 2px solid #00E5FF;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-visual {
        display: block;
    }
}
.features {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.features-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    max-width: 600px;
}

.features-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
}

@media (min-width: 768px) {
    .features-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr 1.2fr 1fr;
        align-items: center;
    }
}

.feat-card {
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    transition: transform 0.3s ease;
}

.feat-card:hover {
    transform: translateY(-5px);
}

.dark {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight {
    background: var(--accent-orange);
    color: #000;
    min-height: 320px;
    box-shadow: 0 20px 40px rgba(255, 77, 0, 0.15);
}

.feat-num {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.dark .feat-num {
    color: var(--text-muted);
}

.highlight .feat-num {
    color: rgba(0, 0, 0, 0.5);
}

.feat-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feat-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.highlight .feat-text {
    color: rgba(0, 0, 0, 0.8);
}

.feat-link {
    margin-top: auto;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.network {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(255, 77, 0, 0.03));
}

.network-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .network-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 6rem;
    }
}

.network-text {
    max-width: 500px;
}

.network-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.network-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.network-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.network-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 77, 0, 0.1);
    border: 1px solid var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.check::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    border-radius: 50%;
}

.network-visual {
    position: relative;
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.chart-curve path {
    fill: none;
    stroke: var(--accent-orange);
    stroke-width: 3;
    filter: drop-shadow(0 10px 10px rgba(255, 77, 0, 0.3));
}

.stat-card {
    position: absolute;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.top-stat {
    top: 10%;
    left: 5%;
}

.bottom-stat {
    bottom: 15%;
    right: 5%;
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.stat-trend {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
}
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(0deg, rgba(255, 77, 0, 0.05), transparent);
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

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

.btn-secondary {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}
/* --- Mobile Menu & Hamburger --- */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000; /* Stays above the overlay */
}

.bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-btn {
    display: none; /* Hide standard button on phones */
}

/* The Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(7, 7, 9, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateY(-100%); /* Hides it above the screen */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1500;
}

.mobile-menu.active {
    transform: translateY(0); /* Slides it down */
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent-orange);
}

/* Hamburger to X Animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Desktop Adjustments */
@media (min-width: 992px) {
    .hamburger { display: none; }
    .mobile-menu { display: none; }
    .desktop-btn { display: block; }
}
