/* Base styles */
:root {
    --primary-color: #2CE1AB;
    --background-color: #090E0A;
    --text-color: #ffffff;
    --gradient-start: rgba(44, 225, 171, 0.05);
    --gradient-end: rgba(9, 14, 10, 0.95);
    --nav-blur-bg: rgba(9, 14, 10, 0.8);
}

/* Add static gradient backgrounds */
body {
    position: relative;
    background-color: var(--background-color);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(circle at 15% 15%, rgba(44, 225, 171, 0.03), transparent 35%),
        radial-gradient(circle at 85% 85%, rgba(44, 225, 171, 0.03), transparent 35%),
        radial-gradient(circle at 75% 25%, rgba(44, 225, 171, 0.02), transparent 25%),
        radial-gradient(circle at 25% 75%, rgba(44, 225, 171, 0.02), transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(44, 225, 171, 0.01), transparent 55%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.03em;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
}

/* Navigation styles */
nav {
    position: fixed;
    width: 100%;
    padding: 1.5rem 4rem;
    z-index: 1000;
    background: var(--nav-blur-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 2.8rem;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 500;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons .icon {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-icons .dex-icon {
    width: 1.2rem;
    height: 1.2rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.nav-icons .icon:hover .dex-icon {
    filter: brightness(0) saturate(100%) invert(88%) sepia(19%) saturate(1095%) hue-rotate(113deg) brightness(97%) contrast(88%);
    opacity: 1;
}

.nav-icons .icon:hover {
    color: var(--primary-color);
    background: rgba(44, 225, 171, 0.1);
    border-color: rgba(44, 225, 171, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 225, 171, 0.15);
}

/* Update responsive styles for nav-icons */
@media (max-width: 768px) {
    .nav-icons .icon {
        font-size: 1.1rem;
        width: 2.2rem;
        height: 2.2rem;
    }
    
    .nav-icons .dex-icon {
        width: 1.1rem;
        height: 1.1rem;
    }
    
    .nav-icons {
        gap: 1rem;
    }
}

/* Hero section styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(9, 14, 10, 0.65) 0%,
        rgba(9, 14, 10, 0.75) 100%
    );
}

.hero-content {
    max-width: 1100px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 600;
}

.hero span, .features h2 span, .about h2 span, .mission-text h2 span {
    background: repeating-linear-gradient(
        to bottom,
        #f5faf8 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(159, 204, 191, 0.1);
    font-weight: 600;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.primary-btn, .secondary-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        rgba(44, 225, 171, 0.8) 100%
    );
    box-shadow: 0 4px 20px rgba(44, 225, 171, 0.15);
    color: var(--background-color);
    font-weight: 600;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-color);
}

.primary-btn:hover {
    box-shadow: 0 6px 25px rgba(44, 225, 171, 0.25);
}

.secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive design */
@media (max-width: 1024px) {
    nav {
        padding: 1.2rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-icons {
        gap: 1rem;
    }

    .nav-icons .icon {
        width: 2.2rem;
        height: 2.2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-container {
        position: relative;
    }
    
    .logo img {
        height: 2.2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--nav-blur-bg);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .nav-icons {
        gap: 0.8rem;
    }
    
    .nav-icons .icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .nav-icons .dex-icon {
        width: 1rem;
        height: 1rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.8rem 1rem;
    }
    
    .logo img {
        height: 2rem;
    }
    
    .nav-icons {
        gap: 0.5rem;
    }
    
    .nav-icons .icon {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.9rem;
    }
    
    .nav-icons .dex-icon {
        width: 0.9rem;
        height: 0.9rem;
    }
}

/* Add Inter font import at the top */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* Add property definition */
@property --angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.benefit-item {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        165deg,
        rgba(76, 175, 147, 0.15) 0%,
        rgba(44, 225, 171, 0.08) 50%,
        rgba(76, 175, 147, 0.04) 100%
    );
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
    transform: translateY(0);
}

.inner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: all 0.5s ease;
    background: linear-gradient(
        165deg,
        #0C1F15 0%,
        #091410 50%,
        #070D0A 100%
    );
    border-radius: 22px;
    padding: 3rem;
    z-index: 3;
}

.benefit-item::before,
.benefit-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from var(--angle),
        transparent 70%,
        var(--primary-color),
        transparent
    );
    animation: spin 3s linear infinite;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.benefit-item::after {
    filter: blur(24px);
    opacity: 0;
    z-index: 0;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover::after {
    opacity: 0.5;
}

.benefit-item:hover .inner-content {
    background: linear-gradient(
        165deg,
        #0E2318 0%,
        #0A1712 50%,
        #080F0C 100%
    );
}

@keyframes spin {
    from {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}

.benefit-icon {
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: rgba(44, 225, 171, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 225, 171, 0.1);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: rgba(44, 225, 171, 0.15);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(44, 225, 171, 0.2);
}

.benefit-item:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
    margin: 0 auto;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover h3 {
    color: var(--primary-color);
}

.benefit-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item:hover .inner-content {
    background: linear-gradient(
        165deg,
        #0E2318 0%,
        #0A1712 50%,
        #080F0C 100%
    );
}

.benefit-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(44, 225, 171, 0.1);
}

.features h2 span {
    background: repeating-linear-gradient(
        to bottom,
        #f5faf8 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(159, 204, 191, 0.1);
}

.tech-circle svg {
    filter: drop-shadow(0 0 20px rgba(44, 225, 171, 0.2));
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(44, 225, 171, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(44, 225, 171, 0.5));
    }
}

/* Common section styles */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

/* Features section styles */
.features {
    padding: 10rem 4rem;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.2;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.features h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 500;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    position: relative;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(44, 225, 171, 0.1);
    box-shadow: 0 10px 30px rgba(44, 225, 171, 0.05);
}

.feature-icon {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(44, 225, 171, 0.03);
    border-radius: 12px;
    display: inline-block;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 225, 171, 0.1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(44, 225, 171, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 225, 171, 0.15);
}

.feature-item:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.8;
    color: #f5faf8;
}

/* About section styles */
.about {
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.1;
}

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

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

.about h2 {
    font-size: 3.6rem;
    line-height: 1.2;
    font-weight: 600;
}

.about h2 span {
    background: repeating-linear-gradient(
        to bottom,
        #f5faf8 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(159, 204, 191, 0.1);
}

.about-main {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(44, 225, 171, 0.05);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: blur(10px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text {
    position: relative;
}

.about-text .lead {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f5faf8;
    font-weight: 500;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(245, 250, 248, 0.8);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

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

.icon-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-icon {
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(44, 225, 171, 0.4));
}

.pulsating-circles {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.pulse-circle {
    stroke-width: 1.5;
    transition: all 0.3s ease;
    transform-origin: 50% 50%;
}

.pulse-circle:nth-child(3) {
    animation: pulse 4s ease-in-out infinite;
}

.pulse-circle:nth-child(2) {
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 1.3s;
}

.pulse-circle:nth-child(1) {
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 2.6s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.35;
    }
    50% {
        opacity: 0.05;
    }
}

.rotating-dot {
    transform-origin: 200px 200px;
    animation: rotate 12s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Update responsive styles for the about visual */
@media (max-width: 768px) {
    .icon-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .main-icon {
        width: 140px;
        height: 140px;
    }
    
    .pulsating-circles {
        transform: scale(0.75);
    }
}

@media (max-width: 480px) {
    .icon-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .main-icon {
        width: 120px;
        height: 120px;
    }
    
    .pulsating-circles {
        transform: scale(0.6);
    }
}

/* Mission section styles */
.mission {
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.1;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.mission-text {
    position: relative;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(44, 225, 171, 0.1);
    backdrop-filter: blur(10px);
}

.mission-text h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.mission-text h2 span {
    background: repeating-linear-gradient(
        to bottom,
        #f5faf8 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(159, 204, 191, 0.1);
}

.mission-statement {
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(245, 250, 248, 0.9);
    margin-bottom: 3rem;
}

.mission-highlight {
    position: relative;
    padding: 2rem 0;
    border-top: 1px solid rgba(44, 225, 171, 0.1);
}

.mission-highlight p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--primary-color);
    font-weight: 500;
}

.mission-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circuit-grid {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(9, 14, 10, 0.3);
    border-radius: 24px;
    overflow: hidden;
}

.circuit-grid::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(165deg, rgba(44, 225, 171, 0.1), transparent);
    border-radius: 24px;
    z-index: 0;
}

.circuit-grid-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    position: relative;
}

/* Add responsive styles for the circuit grid */
@media (max-width: 768px) {
    .circuit-grid {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .circuit-grid {
        width: 240px;
        height: 240px;
    }
}

/* Responsive styles for all sections */
@media (max-width: 1024px) {
    .about, .mission, .features, .why-choose {
        padding: 6rem 3rem;
    }

    .about h2, .mission h2, .features h2, .why-choose h2 {
        font-size: 3rem;
    }

    .about-main, .mission-text {
        padding: 3rem;
    }

    .about-text .lead {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mission-statement {
        font-size: 1.2rem;
    }

    .mission-highlight p {
        font-size: 1.4rem;
    }

    .tech-circle svg {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about, .mission, .features, .why-choose {
        padding: 4rem 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-main, .mission-text {
        padding: 2rem;
    }

    .about h2, .mission h2, .features h2, .why-choose h2 {
        font-size: 2.4rem;
    }

    .about-text .lead {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .tech-circle svg {
        width: 300px;
        height: 300px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .mission-text h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .mission-statement {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .mission-highlight p {
        font-size: 1.2rem;
    }

    .circuit-grid {
        transform: scale(0.7);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 1rem;
    }

    .about-main {
        padding: 1.5rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .about-text .lead {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .tech-circle svg {
        width: 250px;
        height: 250px;
    }

    .about h2 {
        font-size: 2rem;
    }
}

/* Why Choose section styles */
.why-choose {
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.1;
}

.why-choose-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.why-choose h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.why-choose h2 span {
    background: repeating-linear-gradient(
        to bottom,
        #f5faf8 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(159, 204, 191, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-item {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        165deg,
        rgba(76, 175, 147, 0.15) 0%,
        rgba(44, 225, 171, 0.08) 50%,
        rgba(76, 175, 147, 0.04) 100%
    );
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
    transform: translateY(0);
}

.inner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: all 0.5s ease;
    background: linear-gradient(
        165deg,
        #0C1F15 0%,
        #091410 50%,
        #070D0A 100%
    );
    border-radius: 22px;
    padding: 3rem;
    z-index: 3;
}

.benefit-item::before,
.benefit-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from var(--angle),
        transparent 70%,
        var(--primary-color),
        transparent
    );
    animation: spin 3s linear infinite;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.benefit-item::after {
    filter: blur(24px);
    opacity: 0;
    z-index: 0;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover::after {
    opacity: 0.5;
}

.benefit-item:hover .inner-content {
    background: linear-gradient(
        165deg,
        #0E2318 0%,
        #0A1712 50%,
        #080F0C 100%
    );
}

.benefit-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(44, 225, 171, 0.1);
}

.features h2 span {
    background: repeating-linear-gradient(
        to bottom,
        #f5faf8 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(159, 204, 191, 0.1);
}

.tech-circle svg {
    filter: drop-shadow(0 0 20px rgba(44, 225, 171, 0.2));
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(44, 225, 171, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(44, 225, 171, 0.5));
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Why Join section styles */
.why-join {
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.why-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.1;
}

.why-join-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.why-join h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.why-join h2 span {
    background: repeating-linear-gradient(
        to bottom,
        #f5faf8 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(159, 204, 191, 0.1);
}

.why-join .benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.why-join .benefit-item h3 span {
    background: var(--primary-color);
    color: var(--background-color);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.why-join .benefit-item:hover h3 span {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 225, 171, 0.2);
}

.why-join .benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
    margin: 1.5rem auto 0;
    transition: all 0.3s ease;
    text-align: center;
}

.why-join .benefit-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Update responsive styles */
@media (max-width: 768px) {
    .why-join .benefit-item h3 {
        font-size: 1.1rem;
    }
    
    .why-join .benefit-item p {
        font-size: 0.95rem;
    }
}

/* How It Works section styles */
.how-it-works {
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.1;
}

.how-it-works-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.how-it-works h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.how-it-works h2 span {
    background: repeating-linear-gradient(
        to bottom,
        #f5faf8 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(159, 204, 191, 0.1);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step-item {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        165deg,
        rgba(76, 175, 147, 0.15) 0%,
        rgba(44, 225, 171, 0.08) 50%,
        rgba(76, 175, 147, 0.04) 100%
    );
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
    transform: translateY(0);
}

.step-item .inner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: all 0.5s ease;
    background: linear-gradient(
        165deg,
        #0C1F15 0%,
        #091410 50%,
        #070D0A 100%
    );
    border-radius: 22px;
    padding: 3rem;
    z-index: 3;
}

.step-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--background-color);
    background: var(--primary-color);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.step-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
    margin: 0 auto;
    transition: all 0.3s ease;
    text-align: center;
}

.step-item::before,
.step-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from var(--angle),
        transparent 70%,
        var(--primary-color),
        transparent
    );
    animation: spin 3s linear infinite;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.step-item::after {
    filter: blur(24px);
    opacity: 0;
    z-index: 0;
}

.step-item:hover::before {
    opacity: 1;
}

.step-item:hover::after {
    opacity: 0.5;
}

.step-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(44, 225, 171, 0.1);
}

.step-item:hover .inner-content {
    background: linear-gradient(
        165deg,
        #0E2318 0%,
        #0A1712 50%,
        #080F0C 100%
    );
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(44, 225, 171, 0.2);
}

.step-item:hover h3 {
    color: var(--primary-color);
}

.step-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Add responsive styles for How It Works section */
@media (max-width: 1024px) {
    .how-it-works {
        padding: 6rem 3rem;
    }

    .how-it-works h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 4rem 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-it-works h2 {
        font-size: 2.4rem;
    }

    .step-item {
        min-height: auto;
    }

    .step-item h3 {
        font-size: 1.3rem;
    }

    .step-item p {
        font-size: 0.95rem;
    }
}

/* What You'll Get section styles */
.what-you-get {
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.what-you-get::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.1;
}

.what-you-get-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.what-you-get h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.what-you-get h2 span {
    background: repeating-linear-gradient(
        to bottom,
        #f5faf8 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(159, 204, 191, 0.1);
}

.benefits-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(
        165deg,
        rgba(76, 175, 147, 0.08) 0%,
        rgba(44, 225, 171, 0.04) 100%
    );
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 225, 171, 0.1);
}

.benefit-number {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
    min-width: 60px;
}

.benefit-details {
    flex: 1;
}

.benefit-card h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.benefit-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
    background: linear-gradient(
        165deg,
        rgba(76, 175, 147, 0.12) 0%,
        rgba(44, 225, 171, 0.06) 100%
    );
    border-color: rgba(44, 225, 171, 0.2);
    box-shadow: 0 10px 30px rgba(44, 225, 171, 0.1);
}

.benefit-card:hover .benefit-number {
    opacity: 1;
    transform: scale(1.1);
}

.benefit-card:hover h3 {
    color: var(--primary-color);
}

.benefit-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Add responsive styles for What You'll Get section */
@media (max-width: 1024px) {
    .what-you-get {
        padding: 6rem 3rem;
    }

    .what-you-get h2 {
        font-size: 3rem;
    }

    .benefit-card h3 {
        font-size: 1.6rem;
    }

    .benefit-number {
        font-size: 2rem;
        min-width: 50px;
    }
}

@media (max-width: 768px) {
    .what-you-get {
        padding: 4rem 2rem;
    }

    .what-you-get h2 {
        font-size: 2.4rem;
    }

    .benefit-card {
        padding: 2rem;
        gap: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 1.4rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }

    .benefit-number {
        font-size: 1.8rem;
        min-width: 40px;
    }

    .benefit-card:hover {
        transform: translateX(5px);
    }
}

/* Join Ecosystem section styles */
.join-ecosystem {
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.join-ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.1;
}

.join-ecosystem-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.join-ecosystem h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.join-ecosystem h2 span {
    background: repeating-linear-gradient(
        to bottom,
        #f5faf8 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(159, 204, 191, 0.1);
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 4rem;
}

.join-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(
        165deg,
        rgba(44, 225, 171, 0.03) 0%,
        rgba(9, 14, 10, 0.8) 100%
    );
    border-radius: 32px;
    border: 1px solid rgba(44, 225, 171, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.vision-block, .manifesto-block {
    padding: 2.5rem;
    background: linear-gradient(
        165deg,
        rgba(76, 175, 147, 0.08) 0%,
        rgba(44, 225, 171, 0.02) 100%
    );
    border-radius: 24px;
    border: 1px solid rgba(44, 225, 171, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vision-block::before, .manifesto-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(76, 175, 147, 0.12) 0%,
        rgba(44, 225, 171, 0.04) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vision-block:hover::before, .manifesto-block:hover::before {
    opacity: 1;
}

.vision-block:hover, .manifesto-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(44, 225, 171, 0.1);
    border-color: rgba(44, 225, 171, 0.15);
}

.join-text h3 {
    font-size: 2rem;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.8rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.join-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
}

.join-text p:last-child {
    margin-bottom: 0;
}

.join-text .highlight-text {
    font-size: 1.4rem;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        #9fccbf 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin-top: auto;
}

/* Update responsive styles */
@media (max-width: 1024px) {
    .join-text {
        padding: 2.5rem;
        gap: 1.5rem;
    }

    .vision-block, .manifesto-block {
        padding: 2rem;
    }

    .join-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .join-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .join-text .highlight-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .join-text {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }

    .vision-block, .manifesto-block {
        padding: 1.8rem;
    }

    .join-text h3 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .join-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .join-text .highlight-text {
        font-size: 1.2rem;
    }
}

/* Footer styles */
.footer {
    padding: 4rem;
    background: linear-gradient(
        to bottom,
        var(--background-color) 0%,
        rgba(12, 31, 21, 0.95) 100%
    );
    border-top: 1px solid rgba(44, 225, 171, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.footer-logo img {
    height: 2.4rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

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

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin: 1.5rem 0;
}

.footer-social .icon {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social .dex-icon {
    width: 1.1rem;
    height: 1.1rem;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-social .icon:hover {
    color: var(--primary-color);
    background: rgba(44, 225, 171, 0.1);
    border-color: rgba(44, 225, 171, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 225, 171, 0.15);
}

.footer-social .icon:hover .dex-icon {
    filter: brightness(0) saturate(100%) invert(88%) sepia(19%) saturate(1095%) hue-rotate(113deg) brightness(97%) contrast(88%);
    opacity: 1;
}

/* Update responsive footer styles */
@media (max-width: 768px) {
    .footer-social {
        gap: 1rem;
    }
    
    .footer-social .icon {
        font-size: 1rem;
        width: 2rem;
        height: 2rem;
    }
    
    .footer-social .dex-icon {
        width: 1rem;
        height: 1rem;
    }
}

/* Main content responsive styles */
@media (max-width: 1024px) {
    .hero {
        padding: 8rem 2rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

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

    .section-header h2 {
        font-size: 3rem;
    }

    .features, .about, .mission, .why-choose, .why-join, .how-it-works, .what-you-get, .join-ecosystem {
        padding: 6rem 2rem;
    }

    .features-grid, .about-grid, .benefits-grid, .steps-grid {
        gap: 2rem;
    }

    .benefit-item, .step-item {
        min-height: 300px;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .features, .about, .mission, .why-choose, .why-join, .how-it-works, .what-you-get, .join-ecosystem {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .features-grid, .about-grid, .benefits-grid, .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item, .step-item {
        min-height: auto;
        padding: 1.5rem;
    }

    .join-text {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features, .about, .mission, .why-choose, .why-join, .how-it-works, .what-you-get, .join-ecosystem {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefit-item, .step-item {
        padding: 1.2rem;
    }

    .benefit-item h3, .step-item h3 {
        font-size: 1.2rem;
    }

    .benefit-item p, .step-item p {
        font-size: 0.9rem;
    }
}

/* Hamburger menu styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:first-child {
        transform: translateY(9.5px) rotate(45deg);
    }

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

    .menu-toggle.active span:last-child {
        transform: translateY(-9.5px) rotate(-45deg);
    }
} 