/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: #1a1a1a;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px);
    pointer-events: none;
    z-index: 0;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.2));
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #f59e0b;
    transform: translateY(-2px);
}

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

.social-icons {
    display: flex;
    gap: 20px;
    margin-left: 24px;
}

.social-icon {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.social-icon:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.hero-glow-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse-glow-1 12s ease-in-out infinite;
}

.hero-glow-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    bottom: -300px;
    right: 10%;
    animation: pulse-glow 12s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-glow-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation: pulse-glow 10s ease-in-out infinite;
    animation-delay: 4s;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(245, 158, 11, 0.6);
    border-radius: 50%;
    animation: float-particle 20s infinite;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.particle:nth-child(1) {
    left: 20%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 60%;
    top: 40%;
    animation-delay: 3s;
    animation-duration: 18s;
    background: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.particle:nth-child(3) {
    left: 80%;
    top: 60%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 30%;
    top: 70%;
    animation-delay: 9s;
    animation-duration: 16s;
    background: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.particle:nth-child(5) {
    left: 50%;
    top: 30%;
    animation-delay: 12s;
    animation-duration: 20s;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.15);
    }
}

@keyframes pulse-glow-1 {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translateX(-50%) scale(1.15);
        opacity: 0.4;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}


.hero-title {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: -5px;
    line-height: 1.05;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-align: center;
    position: relative;
}

.title-line-1 {
    background: linear-gradient(90deg, #F59E0B 0%, #EC4899 30%, #8B5CF6 50%, #EC4899 70%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-line-2 {
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}


.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    max-width: 760px;
    margin: 0 auto 56px;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s both;
    letter-spacing: -0.3px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    min-width: 160px;
    white-space: nowrap;
}


.hero-key-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 auto;
    max-width: 1100px;
    animation: fadeInUp 0.8s ease 0.8s both;
    width: 100%;
}

.key-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, rgba(37, 37, 37, 0.85) 0%, rgba(42, 42, 42, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    width: 100%;
}

.key-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.key-point::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.key-point:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.key-point:hover::after {
    opacity: 1;
}

.key-point:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow:
        0 8px 32px rgba(245, 158, 11, 0.25),
        0 0 0 1px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(47, 47, 47, 0.9) 100%);
}

.key-point-icon {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.key-point:hover .key-point-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.key-point-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.key-point-text strong {
    font-size: 21px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.key-point:hover .key-point-text strong {
    background: linear-gradient(135deg, #f59e0b, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.key-point-text span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.1px;
}


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

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

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

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

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #8b5cf6 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.arrow {
    margin-left: 8px;
    font-size: 18px;
    font-weight: 400;
}


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

.section-title {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1.2;
    position: relative;
}

.section-title.left-align {
    text-align: left;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #CCCCCC;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
    font-weight: 400;
}

.section-description.left-align {
    text-align: left;
    margin: 0 0 40px 0;
    max-width: 100%;
}

.section-label {
    background: linear-gradient(135deg, #8b5cf6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 16px;
    display: block;
}

.section-label.left-align {
    text-align: left;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(37, 37, 37, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 8px 32px rgba(245, 158, 11, 0.2),
        0 0 0 1px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.card-icon {
    font-size: 56px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #f59e0b, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
    width: 56px;
    height: 56px;
    stroke: #f59e0b;
    fill: none;
}

.icon-sustainable {
    font-size: 64px;
    font-weight: 300;
    font-family: 'Times New Roman', serif;
    line-height: 1;
}

.icon-evm svg {
    fill: #f59e0b;
    stroke: none;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.card-description {
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.6;
    font-weight: 400;
}

/* Steps Section */
.steps {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    max-width: 320px;
    flex: 1;
    min-width: 250px;
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border: 3px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.step-description {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.6;
    font-weight: 400;
}

/* Performance Cards */
.performance-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.performance-card {
    background: linear-gradient(135deg, rgba(37, 37, 37, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.performance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.performance-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 8px 32px rgba(245, 158, 11, 0.2),
        0 0 0 1px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.performance-card>* {
    position: relative;
    z-index: 1;
}

/* Developers Section */
.developers-section {
    padding: 120px 0;
}

.developers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.developers-left .section-label {
    text-align: left;
    margin-bottom: 16px;
}

.developer-list {
    list-style: none;
    margin-bottom: 48px;
}

.developer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 16px;
    color: #CCCCCC;
    font-weight: 400;
    line-height: 1.5;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: #f59e0b;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, rgba(37, 37, 37, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.benefit-card:hover {
    border-color: rgba(245, 158, 11, 0.25);
    transform: translateX(10px);
    box-shadow:
        0 8px 32px rgba(245, 158, 11, 0.2),
        0 0 0 1px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 36px;
    color: #f59e0b;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    stroke: #f59e0b;
    fill: none;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.benefit-description {
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.6;
    font-weight: 400;
}

/* Governance Section */
.governance-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.governance-card {
    background: linear-gradient(135deg, rgba(37, 37, 37, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.governance-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #f59e0b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.governance-card:hover::after {
    transform: scaleX(1);
}

.governance-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 8px 32px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left .logo-section {
    margin-bottom: 24px;
}

.footer-left .logo-icon img {
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.2));
}

.copyright {
    font-size: 14px;
    color: #CCCCCC;
    font-weight: 400;
    line-height: 1.5;
}

.footer-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-link:hover {
    color: #f59e0b;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .developers-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .performance-cards {
        flex-direction: column;
        align-items: center;
    }

    .performance-card {
        max-width: 100%;
    }

    .governance-cards {
        flex-direction: column;
        align-items: center;
    }

    .governance-card {
        max-width: 100%;
    }

    .hero-key-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .key-point {
        padding: 28px 20px;
    }


    .hero {
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 64px;
        letter-spacing: -3.5px;
        margin-bottom: 32px;
    }

    .hero-description {
        font-size: 20px;
        margin-bottom: 48px;
    }

    .hero-cta {
        margin-bottom: 64px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    .title-line-1 {
        font-size: 48px;
    }

    .title-line-2 {
        font-size: 48px;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
    }

    .hero-key-points {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .title-line-1 {
        font-size: 40px;
    }

    .title-line-2 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-cta {
        margin-bottom: 48px;
        gap: 16px;
    }

    .key-point {
        padding: 28px 20px;
    }

    .key-point-icon {
        width: 60px;
        height: 60px;
        font-size: 40px;
        margin-bottom: 20px;
    }

    .key-point-text strong {
        font-size: 18px;
    }

    .key-point-text span {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .footer-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}