/* ===================================
   WOWC.AI - Modern Premium Design
   =================================== */

:root {
    --black: #000000;
    --white: #ffffff;
    --orange-primary: #FF6B00;
    --orange-light: #FF8533;
    --orange-dark: #CC5500;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-900: #111827;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --easing: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

/* ==================== INTRO ANIMATION ==================== */
.intro-animation {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1.2s ease-out, visibility 1.2s;
    visibility: visible;
    overflow: hidden;
}

.intro-animation.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

#particleBg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.06) 0%, transparent 50%);
    animation: gradientMove 15s ease-in-out infinite;
}

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

.intro-shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.intro-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 40px;
}

.text-animation-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.main-title {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    letter-spacing: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
}

.title-char {
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #FFAA66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.3));
}

.title-char.animate {
    animation: charFlyIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes charFlyIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg) scale(0.5);
    }
    60% {
        transform: translateY(-10px) rotateX(0deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.title-dot {
    display: inline-block;
    color: #FF6B00;
    font-size: 120px;
    opacity: 0;
    transform: scale(0);
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.8));
}

.title-dot.animate {
    animation: dotPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes dotPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(360deg);
    }
}

.title-line-effect {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF6B00, transparent);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
    opacity: 0;
}

.title-line-effect.animate {
    animation: lineExpand 1s ease-out 1.5s forwards;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        max-width: 600px;
        opacity: 1;
    }
}

.intro-tagline {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 4px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.intro-tagline.animate {
    animation: fadeUp 0.8s ease-out 2s forwards;
}

.tagline-word {
    display: inline-block;
    opacity: 0;
}

.tagline-word.animate {
    animation: wordFadeIn 0.6s ease-out forwards;
}

.tagline-word:nth-child(1).animate {
    animation-delay: 2s;
}

.tagline-word:nth-child(3).animate {
    animation-delay: 2.3s;
}

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

.tagline-sep {
    margin: 0 20px;
    color: rgba(255, 107, 0, 0.6);
    font-weight: 300;
}

.intro-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
}

.intro-subtitle.animate {
    animation: fadeUp 0.8s ease-out 2.6s forwards;
}

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

/* 响应式 */
@media (max-width: 768px) {
    .main-title {
        font-size: 60px;
        letter-spacing: 4px;
    }
    
    .title-dot {
        font-size: 60px;
    }
    
    .intro-tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .intro-subtitle {
        font-size: 12px;
    }
}

body {
    font-family: var(--font-main);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
    animation: bgFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

section {
    position: relative;
    z-index: 1;
}

/* ==================== CURSOR ==================== */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    transition: transform 0.15s var(--easing);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 107, 0, 0.5);
    border-radius: 50%;
    transition: all 0.2s var(--easing);
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--easing);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

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

.nav-logo .logo-img {
    height: 40px;
    transition: all 0.3s var(--easing);
}

.nav-logo:hover .logo-img {
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.8));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s var(--easing);
    position: relative;
}

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

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

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

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.lang-dropdown {
    position: relative;
}

.lang-switch {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-main);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--easing);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    justify-content: space-between;
}

.lang-switch:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    transform: translateY(-2px);
}

.lang-switch.active {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--orange-primary);
}

.lang-icon {
    color: var(--orange-primary);
    flex-shrink: 0;
}

.lang-text {
    font-weight: 700;
    letter-spacing: 1px;
    flex: 1;
    text-align: left;
}

.lang-arrow {
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    transition: transform 0.3s var(--easing);
}

.lang-switch.active .lang-arrow {
    transform: rotate(180deg);
    color: var(--orange-primary);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--easing);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.lang-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s var(--easing);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(255, 107, 0, 0.15);
    color: var(--orange-primary);
}

.lang-check {
    color: var(--orange-primary);
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s;
}

.lang-option.active .lang-check {
    opacity: 1;
}

/* ==================== BUTTONS ==================== */
.btn-primary, .btn-secondary, .btn-glass, .btn-large {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--easing);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--orange-primary);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange-primary);
}

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

/* Link buttons */
a.btn-primary, a.btn-secondary, a.btn-glass, a.btn-large {
    text-decoration: none;
    color: inherit;
}

a.btn-primary {
    color: var(--black);
}

a.btn-glass, a.btn-secondary {
    color: var(--white);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#particleCanvas {
    width: 100%;
    height: 100%;
}

/* 浮动币动画 - 增强版 */
.float-coin {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.6;
    animation: floatCoin3D 20s infinite ease-in-out;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 0, 0.3));
    transition: all 0.3s var(--easing);
}

.float-coin:hover {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 8px 24px rgba(255, 107, 0, 0.8));
}

.coin-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.coin-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.coin-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.coin-4 {
    top: 30%;
    right: 10%;
    animation-delay: 6s;
    animation-duration: 24s;
}

@keyframes floatCoin3D {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: translate3d(30px, -30px, 20px) rotateY(90deg) rotateX(10deg);
    }
    50% {
        transform: translate3d(0, -60px, 40px) rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: translate3d(-30px, -30px, 20px) rotateY(270deg) rotateX(-10deg);
    }
}

/* 添加粒子轨迹效果 */
.float-coin::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3), transparent 70%);
    animation: particleGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

#typingText2 {
    font-size: clamp(32px, 4vw, 52px);
    display: inline-block;
    white-space: nowrap;
}

.wowc-logo-text {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #FFAA66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: wowcGlow 3s ease-in-out infinite, gradientFlow 4s ease infinite;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.5));
}

@keyframes wowcGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 107, 0, 0.8)) drop-shadow(0 0 60px rgba(255, 107, 0, 0.4));
        transform: scale(1.05);
    }
}

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

.gradient-text {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #FFAA66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

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

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-weight: 400;
}

.hero-slogan {
    min-height: 40px;
}

#typingSlogan {
    opacity: 0;
}

.slogan-reveal {
    animation: sloganWave 3s ease-in-out infinite;
}

@keyframes sloganWave {
    0%, 100% {
        opacity: 1;
        background: linear-gradient(90deg, 
            rgba(255, 255, 255, 0.6) 0%,
            rgba(255, 255, 255, 0.8) 25%,
            rgba(255, 107, 0, 0.8) 50%,
            rgba(255, 255, 255, 0.8) 75%,
            rgba(255, 255, 255, 0.6) 100%
        );
        background-size: 200% 100%;
        background-position: 0% 0%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
    }
    50% {
        background-position: 100% 0%;
    }
}

.typing::after {
    content: '|';
    color: var(--orange-primary);
    animation: blink 0.8s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange-primary), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { height: 0; }
    50% { height: 40px; }
    100% { height: 0; }
}

/* ==================== SECTIONS ==================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
}

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

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
}

.section-header.centered .section-desc {
    margin: 0 auto;
}

/* ==================== INTRO SECTION ==================== */
.intro-section {
    padding: 120px 40px;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.03), transparent 70%);
}

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

.intro-title-main {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, #FFF, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-content-left {
    text-align: left;
}

.intro-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-visual {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(255, 107, 0, 0.3));
    border-radius: 20px;
    transition: all 0.5s var(--easing);
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.intro-visual:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 30px 80px rgba(255, 107, 0, 0.5));
}

.intro-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #FFF, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.intro-values {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.value-icon-wrapper {
    position: relative;
    display: inline-block;
}

.value-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.5));
    transition: all 0.3s var(--easing);
    position: relative;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.4), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.value-item:hover .value-icon {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.8));
}

.value-item:hover .icon-glow {
    opacity: 1;
    transform: scale(1.3);
}

.value-item span:last-child {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange-primary);
}

/* ==================== MARKET SECTION ==================== */
.market-section {
    padding: 120px 40px;
    background: var(--black);
}

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

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

.market-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 20px;
}

.market-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.market-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.market-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.5), rgba(255, 107, 0, 0), rgba(255, 107, 0, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    from { background-position: 0% 0%; }
    to { background-position: 200% 200%; }
}

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

.market-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.market-card:hover::after {
    width: 400px;
    height: 400px;
}

.market-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3), 0 0 30px rgba(255, 107, 0, 0.2);
}

.market-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.5));
    transition: all 0.3s var(--easing);
}

.market-card:hover .market-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.8));
}

.market-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.market-stat {
    font-size: 32px;
    font-weight: 900;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.market-card p:last-child {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ==================== PAINPOINTS SECTION ==================== */
.painpoints-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, #000 0%, rgba(255, 107, 0, 0.05) 50%, #000 100%);
}

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

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

.painpoints-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 20px;
}

.painpoints-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
}

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

.painpoint-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 25px;
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.painpoint-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.painpoint-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    animation: rotateSlow 8s linear infinite;
    pointer-events: none;
}

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

.painpoint-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--orange-primary);
    background: rgba(255, 107, 0, 0.05);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3), inset 0 0 30px rgba(255, 107, 0, 0.1);
}

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

.painpoint-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--orange-primary);
    opacity: 0.3;
    margin-bottom: 20px;
}

.painpoint-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.painpoint-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ==================== SOLUTIONS SECTION ==================== */
.solutions-section {
    padding: 120px 40px;
    background: var(--black);
}

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

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

.solutions-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 20px;
}

.solutions-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solution-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 25px;
    transition: all 0.4s var(--easing);
    align-items: flex-start;
}

.solution-item:hover {
    transform: translateX(20px);
    border-color: var(--orange-primary);
    background: rgba(255, 107, 0, 0.05);
}

.solution-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.5));
    transition: all 0.3s var(--easing);
}

.solution-item:hover .solution-icon {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.8));
}

.solution-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.solution-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ==================== CORE BANNER ==================== */
.core-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000 0%, transparent 50%, #000 100%);
}

/* ==================== THREE PILLARS ==================== */
.pillars-section {
    padding: 100px 40px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.1), transparent 70%);
}

.pillars-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.pillar {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 30px;
    transition: all 0.5s var(--easing);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s var(--easing);
}

.pillar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

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

.pillar:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--orange-primary);
    box-shadow: 0 30px 80px rgba(255, 107, 0, 0.3), 0 0 60px rgba(255, 107, 0, 0.2);
}

.pillar:hover::before {
    opacity: 1;
}

.pillar-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    position: relative;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.5));
    transition: all 0.5s var(--easing-bounce);
}

.pillar:hover .pillar-image img {
    transform: scale(1.2) translateY(-10px);
    filter: drop-shadow(0 20px 50px rgba(255, 107, 0, 0.8));
}

.pillar h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFF, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pillar p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ==================== ECOSYSTEM ==================== */
.ecosystem-section {
    padding: 150px 40px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.05), transparent 80%);
    position: relative;
    overflow: hidden;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
    animation: waveMove 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.eco-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

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

.eco-device {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 30px 80px rgba(255, 107, 0, 0.4));
    animation: deviceFloat 6s ease-in-out infinite;
}

.eco-screen {
    position: absolute;
    width: 70%;
    max-width: 280px;
    border-radius: 25px;
    opacity: 1;
    object-fit: contain;
    padding: 20px;
}

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

.eco-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 50px;
}

.eco-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.eco-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 107, 0, 0.05);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s var(--easing);
}

.eco-stat:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.stat-num {
    font-size: 42px;
    font-weight: 900;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.eco-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-primary);
    color: var(--black);
    border-radius: 50%;
    font-weight: 900;
    font-size: 16px;
}

/* ==================== TOKEN ECONOMICS ==================== */
.token-economics-section {
    position: relative;
    padding: 150px 40px;
    background: linear-gradient(180deg, #000 0%, rgba(255, 107, 0, 0.05) 50%, #000 100%);
    overflow: hidden;
}

.token-bg-float {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-token {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    animation: floatDrift 30s infinite ease-in-out;
    color: var(--orange-primary);
    stroke-width: 2.5;
}

.ft-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.ft-2 {
    top: 30%;
    right: 10%;
    animation-delay: 5s;
}

.ft-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

.ft-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 15s;
}

@keyframes floatDrift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
        opacity: 0.25;
    }
}

.token-economics-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.token-main-title {
    font-size: clamp(52px, 7vw, 90px);
    font-weight: 900;
    margin-bottom: 20px;
}

.token-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
}

/* Token Info Cards */
.token-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.token-info-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.token-info-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    animation: rotate 4s linear infinite;
    pointer-events: none;
}

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

.token-info-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 23px;
    z-index: -1;
}

.token-info-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--orange-primary);
    background: rgba(255, 107, 0, 0.05);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3), 0 0 40px rgba(255, 107, 0, 0.2);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.5));
    transition: all 0.4s var(--easing);
}

.token-info-card:hover .info-icon img {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.8));
}

.token-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 26px;
    font-weight: 900;
    color: var(--orange-primary);
    margin-bottom: 8px;
}

.info-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Distribution Section */
.token-distribution-section {
    margin-bottom: 100px;
}

.section-subtitle {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #FFF, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.distribution-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.distribution-visual {
    display: flex;
    justify-content: center;
}

.token-circle-display {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-token {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(255, 107, 0, 0.8));
    animation: slowRotate 30s linear infinite;
    position: relative;
    z-index: 2;
}

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

.circle-rings {
    position: absolute;
    inset: -30px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.circle-rings::before,
.circle-rings::after {
    content: '';
    position: absolute;
    inset: -40px;
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 50%;
}

.circle-rings::after {
    inset: -80px;
    border-color: rgba(255, 107, 0, 0.1);
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dist-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s var(--easing);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

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

.dist-item:hover::before {
    left: 100%;
}

.dist-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.5), rgba(255, 107, 0, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.dist-item:hover::after {
    opacity: 1;
}

.dist-item:hover {
    transform: translateX(10px) scale(1.02);
    border-color: var(--orange-primary);
    background: rgba(255, 107, 0, 0.05);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.2), 0 0 20px rgba(255, 107, 0, 0.1);
}

.dist-left {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
}

.dist-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
    flex-shrink: 0;
}

.dist-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.dist-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.dist-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--orange-primary);
    white-space: nowrap;
}

/* Token Utility */
.token-utility-section {
    margin-bottom: 100px;
}

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

.utility-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 0, 0.15);
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.utility-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 107, 0, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

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

.utility-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.utility-card:hover::after {
    width: 300px;
    height: 300px;
}

.utility-card:hover {
    transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
    border-color: var(--orange-primary);
    background: rgba(255, 107, 0, 0.08);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3), 0 0 40px rgba(255, 107, 0, 0.2);
}

.utility-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.5));
    transition: all 0.3s var(--easing);
}

.utility-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.utility-icon.iconify {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.utility-card:hover .utility-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.8));
}

.utility-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.utility-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Value Capture */
.value-capture-section {
    margin-bottom: 50px;
}

.capture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.capture-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.02));
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
}

.capture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.capture-card:hover::before {
    left: 100%;
}

.capture-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.4);
}

.capture-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--orange-primary);
    opacity: 0.3;
    margin-bottom: 15px;
}

.capture-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.capture-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ==================== ADVANTAGES ==================== */
.advantages-section {
    padding: 120px 40px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.05), transparent 80%);
}

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

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

.advantages-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 20px;
}

.advantages-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
}

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

.advantage-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s var(--easing);
}

.advantage-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--orange-primary);
    background: rgba(255, 107, 0, 0.08);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 25px;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.5));
    transition: all 0.3s var(--easing);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.8));
}

.advantage-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ==================== VISION ROADMAP ==================== */
.vision-roadmap-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, #000 0%, rgba(255, 107, 0, 0.03) 50%, #000 100%);
}

.vision-roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.vision-roadmap-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 20px;
}

.vision-roadmap-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
}

.roadmap-timeline-new {
    position: relative;
    padding-left: 80px;
}

.roadmap-timeline-new::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--orange-primary) 0%, rgba(255, 107, 0, 0.3) 100%);
}

.roadmap-phase {
    position: relative;
    margin-bottom: 60px;
}

.phase-marker {
    position: absolute;
    left: -62px;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange-primary);
    border: 4px solid #000;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
    animation: phasePulse 2s infinite;
}

@keyframes phasePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(255, 107, 0, 1);
    }
}

.phase-content {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 25px;
    transition: all 0.4s var(--easing);
}

.roadmap-phase:hover .phase-content {
    transform: translateX(15px);
    border-color: var(--orange-primary);
    background: rgba(255, 107, 0, 0.05);
}

.phase-period {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.phase-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.phase-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.phase-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-size: 20px;
}

/* ==================== JOIN ==================== */
.join-section {
    padding: 150px 40px;
    background: radial-gradient(circle at 70% 50%, rgba(255, 107, 0, 0.1), transparent 70%);
}

.join-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: center;
}

.join-robot {
    display: flex;
    justify-content: center;
}

.join-robot img,
.join-robot .join-icon,
.join-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 80px rgba(255, 107, 0, 0.5));
    animation: robotFloat 8s ease-in-out infinite;
    transition: all 0.5s var(--easing);
}

.join-logo:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 40px 100px rgba(255, 107, 0, 0.7));
}

.join-icon {
    color: var(--orange-primary);
    stroke-width: 3;
}

@keyframes robotFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg);
    }
    75% {
        transform: translateY(20px) rotate(5deg);
    }
}

.join-content h2 {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FFF, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.join-content p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    line-height: 1.6;
}

.join-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

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

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s var(--easing);
    backdrop-filter: blur(10px);
}

.social-link .iconify {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--easing);
}

.social-link:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--orange-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.social-link:hover .iconify {
    transform: scale(1.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: all 0.2s var(--easing);
}

.link-group a:hover {
    color: var(--orange-primary);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s var(--easing);
}

.footer-legal a:hover {
    color: var(--orange-primary);
}

/* ==================== ANIMATIONS ==================== */
[data-aos] {
    opacity: 0;
    transition: all 0.8s var(--easing);
}

[data-aos="fade"] {
    opacity: 0;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .intro-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .intro-content-left {
        text-align: center;
    }
    
    .intro-visual {
        max-width: 500px;
    }
    
    .intro-title-main {
        font-size: clamp(36px, 8vw, 56px);
    }
    
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .painpoints-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .eco-content,
    .join-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .token-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .distribution-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .utility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .capture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roadmap-timeline-new {
        padding-left: 60px;
    }
    
    .phase-marker {
        left: -48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 16px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .intro-section,
    .market-section,
    .painpoints-section,
    .solutions-section,
    .pillars-section,
    .ecosystem-section,
    .token-economics-section,
    .advantages-section,
    .vision-roadmap-section,
    .join-section {
        padding: 80px 24px;
    }
    
    .market-grid,
    .painpoints-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .roadmap-timeline-new {
        padding-left: 40px;
    }
    
    .roadmap-timeline-new::before {
        left: 15px;
    }
    
    .phase-marker {
        left: -30px;
        width: 16px;
        height: 16px;
    }
    
    .pillar {
        padding: 40px 24px;
    }
    
    .pillar-image {
        width: 120px;
        height: 120px;
    }
    
    .eco-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .eco-device {
        max-width: 300px;
    }
    
    .token-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .token-info-card {
        padding: 30px 20px;
    }
    
    .float-token {
        width: 80px;
        height: 80px;
    }
    
    .token-circle-display {
        width: 280px;
        height: 280px;
    }
    
    .center-token {
        width: 200px;
        height: 200px;
    }
    
    .dist-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dist-left {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dist-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .dist-amount {
        font-size: 18px;
    }
    
    .utility-grid,
    .capture-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    .float-coin {
        width: 50px;
        height: 50px;
    }
    
    .join-robot img {
        max-width: 250px;
    }
}

/* ==================== VIDEO MODAL ==================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.show .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.video-modal-close:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    transform: rotate(90deg);
}

.video-modal-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-modal-iframe-container iframe,
.video-modal-iframe-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-modal-iframe-container video {
    object-fit: contain;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}


