/* ========================================
   LUXE - Premium Crypto Landing Page
   Redesigned: Luxury + Futuristic Aesthetic
   ======================================== */

:root {
    --bg-primary: #030305;
    --bg-secondary: #08080c;
    --bg-tertiary: #0c0c12;
    --bg-card: rgba(12, 12, 18, 0.6);
    
    --accent-primary: #E0C080;
    --accent-secondary: #A08040;
    --accent-tertiary: #E0E0A0;
    --accent-gold: #E0C080;
    --accent-pink: #E0E0A0;
    --accent-green: #E0E0A0;
    
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    
    --gradient-primary: linear-gradient(135deg, #E0C080 0%, #A08040 50%, #E0E0A0 100%);
    --gradient-secondary: linear-gradient(135deg, #A08040 0%, #E0C080 100%);
    --gradient-gold: linear-gradient(135deg, #E0C080 0%, #E0E0A0 100%);
    --gradient-hero: linear-gradient(180deg, rgba(3, 3, 5, 0.3) 0%, rgba(3, 3, 5, 0.8) 100%);
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-highlight: rgba(255, 255, 255, 0.08);
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(224, 192, 128, 0.5), 0 2px 10px rgba(224, 192, 128, 0.3);
    transition: width 0.1s linear;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(3, 3, 5, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.875rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-mark {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s var(--transition-smooth);
}

.logo:hover .logo-text {
    letter-spacing: 0.18em;
    filter: drop-shadow(0 0 8px rgba(224, 192, 128, 0.4));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-mobile-socials {
    display: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--accent-primary);
    transform: translateY(-1px);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 24px rgba(224, 192, 128, 0.3), 0 0 0 1px rgba(224, 192, 128, 0.1) inset;
    font-weight: 600;
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 45px rgba(224, 192, 128, 0.45), 0 0 0 1px rgba(224, 192, 128, 0.2) inset;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--transition-smooth);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(12px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
    border-radius: inherit;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(224, 192, 128, 0.4);
    box-shadow: 0 4px 20px rgba(224, 192, 128, 0.2);
    transform: translateY(-2px);
}

.btn-secondary:hover::after {
    opacity: 0.05;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-ghost svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--transition-smooth);
}

.btn-ghost:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
    border-radius: inherit;
}

.btn-outline:hover {
    border-color: rgba(224, 192, 128,0.5);
    background: rgba(224, 192, 128, 0.08);
    box-shadow: 0 4px 16px rgba(224, 192, 128, 0.15);
    transform: translateY(-2px);
}

.btn-outline:hover::after {
    opacity: 0.08;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(1.1) contrast(1.1);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(3, 3, 5, 0.4) 0%,
        rgba(3, 3, 5, 0.2) 40%,
        rgba(3, 3, 5, 0.6) 100%
    );
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(160, 128, 64, 0.08) 0%, transparent 60%);
    z-index: -1;
}

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

.hero-glow-1 {
    top: 10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: rgba(224, 192, 128, 0.15);
    animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
    bottom: 20%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: rgba(224, 224, 160, 0.1);
    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(30px, -20px) scale(1.15);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 var(--spacing-md);
    animation: fadeInUp 1s var(--transition-smooth) backwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge:hover {
    border-color: rgba(224, 192, 128, 0.3);
    box-shadow: 0 6px 20px rgba(224, 192, 128, 0.15);
    transform: translateY(-2px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224, 224, 160, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(224, 224, 160, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.85rem, 6.7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 40px rgba(224, 192, 128, 0.2);
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s var(--transition-smooth) 0.3s backwards;
}

.contract-box {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: nowrap;
    padding: 1.25rem 1.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(24px);
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.contract-box:hover {
    border-color: rgba(224, 192, 128, 0.4);
    box-shadow: 0 12px 50px rgba(224, 192, 128, 0.2), inset 0 0 40px rgba(224, 192, 128, 0.05);
    transform: translateY(-2px);
}

.contract-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contract-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
}

.contract-network {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
    background: rgba(224, 224, 160, 0.12);
    border: 1px solid rgba(224, 224, 160, 0.25);
    border-radius: var(--radius-sm);
    color: var(--accent-tertiary);
    transition: all 0.3s var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.contract-network:hover {
    background: rgba(224, 224, 160, 0.18);
    border-color: rgba(224, 224, 160, 0.35);
    transform: scale(1.05);
}

.contract-address-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.contract-address {
    font-family: 'SF Mono', 'Monaco', monospace;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.copy-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: rgba(224, 192, 128, 0.15);
    border: 1px solid rgba(224, 192, 128, 0.25);
    border-radius: var(--radius-sm);
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.copy-btn:hover {
    background: rgba(224, 192, 128, 0.25);
    box-shadow: 0 4px 20px rgba(224, 192, 128, 0.3);
    transform: scale(1.05);
}

.copy-btn.copied {
    background: rgba(224, 224, 160, 0.15);
    border-color: rgba(224, 224, 160, 0.25);
    color: var(--accent-green);
}

.copy-icon {
    width: 14px;
    height: 14px;
}

.copied-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 0.375rem 0.75rem;
    background: var(--accent-green);
    color: var(--bg-primary);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s var(--transition-smooth);
}

.copied-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--accent-green);
}

.copy-btn.copied .copied-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: var(--glass-border);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0% { top: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s var(--transition-smooth) backwards;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(224, 192, 128, 0.1);
    border: 1px solid rgba(224, 192, 128, 0.25);
    border-radius: var(--radius-xl);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--transition-smooth);
}

.section-tag:hover {
    background: rgba(224, 192, 128, 0.15);
    border-color: rgba(224, 192, 128, 0.35);
    transform: translateY(-2px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.split-layout.reverse .split-content {
    order: 2;
}

.split-content {
    max-width: 520px;
}

.split-content .section-title {
    text-align: left;
}

.split-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s var(--transition-smooth);
}

.image-frame:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 192, 128, 0.2) inset;
    transform: translateY(-4px);
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.image-frame:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(3, 3, 5, 0.6) 100%);
    pointer-events: none;
}

.frame-angled {
    transform: rotate(-2deg);
    transition: all 0.5s var(--transition-smooth);
}

.frame-angled:hover {
    transform: rotate(0deg) translateY(-4px);
}

/* ========================================
   THE SHIFT SECTION
   ======================================== */
.shift-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.shift-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.content-block p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.highlight-box {
    display: inline-flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 2.5rem 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(24px);
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.highlight-box:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 192, 128, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(224, 192, 128, 0.1) inset;
}

.highlight-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
}

.highlight-value {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    background: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    position: relative;
    padding: 2.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(24px);
    transition: all 0.5s var(--transition-smooth);
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 192, 128, 0.3);
    background: rgba(224, 192, 128, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(224, 192, 128, 0.1) inset;
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 192, 128, 0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s var(--transition-smooth);
    pointer-events: none;
}

.problem-card:hover .card-glow {
    opacity: 1;
}

.problem-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 192, 128, 0.1);
    border: 1px solid rgba(224, 192, 128, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--transition-smooth);
}

.problem-card:hover .problem-icon {
    background: rgba(224, 192, 128, 0.15);
    border-color: rgba(224, 192, 128, 0.3);
    transform: scale(1.05);
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: all 0.3s var(--transition-smooth);
}

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

.problem-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: all 0.3s var(--transition-smooth);
}

.problem-card:hover p {
    color: var(--text-primary);
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution-section {
    background: var(--bg-tertiary);
}

.solution-intro {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 0.75rem 0;
    transition: all 0.3s var(--transition-smooth);
}

.solution-features li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.solution-features li:hover .feature-check {
    background: rgba(224, 224, 160, 0.2);
    transform: scale(1.1);
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(224, 224, 160, 0.1);
    border-radius: 50%;
    color: var(--accent-green);
    font-size: 0.6875rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s var(--transition-smooth);
}

.solution-tagline {
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    background: var(--glass-bg);
    border: 1px solid rgba(224, 192, 128, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
    backdrop-filter: blur(24px);
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.solution-tagline:hover {
    border-color: rgba(224, 192, 128, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.solution-tagline span {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 600;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-section {
    background: var(--bg-secondary);
}

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

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.2;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    background: var(--bg-tertiary);
    border: 2px solid rgba(224, 192, 128, 0.25);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--accent-primary);
    box-shadow: 0 8px 30px rgba(224, 192, 128, 0.2);
    transition: all 0.4s var(--transition-smooth);
}

.step:hover .step-number {
    background: rgba(224, 192, 128, 0.12);
    border-color: rgba(224, 192, 128, 0.4);
    box-shadow: 0 12px 50px rgba(224, 192, 128, 0.35);
    transform: scale(1.08);
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: all 0.3s var(--transition-smooth);
}

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

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: all 0.3s var(--transition-smooth);
}

.step:hover .step-content p {
    color: var(--text-primary);
}

/* ========================================
   TOKEN SECTION
   ======================================== */
.token-section {
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.token-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(224, 192, 128, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.token-card {
    position: relative;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(24px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.7;
}

.token-card:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 192, 128, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(224, 192, 128, 0.15) inset;
}

.token-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    transition: all 0.3s var(--transition-smooth);
}

.token-card:hover .token-header {
    color: var(--accent-primary);
    letter-spacing: 0.18em;
}

.token-icon {
    color: var(--accent-primary);
    font-size: 0.875rem;
    transition: all 0.3s var(--transition-smooth);
}

.token-card:hover .token-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(224, 192, 128, 0.4));
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.875rem 0.9375rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(224, 192, 128, 0.12);
    border-radius: var(--radius-md);
    transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(224, 192, 128, 0.25);
    box-shadow: 0 4px 16px rgba(224, 192, 128, 0.1);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: all 0.3s var(--transition-smooth);
}

.stat-item:hover .stat-label {
    color: var(--accent-primary);
}

.stat-value {
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s var(--transition-smooth);
}

.stat-item:hover .stat-value {
    color: var(--accent-primary);
    transform: scale(1.05);
}

.utility-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.utility-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 0.75rem 0.875rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(224, 192, 128, 0.1);
    border-radius: var(--radius-md);
    transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
    cursor: pointer;
}

.utility-list li:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(224, 192, 128, 0.22);
    box-shadow: 0 4px 16px rgba(224, 192, 128, 0.1);
}

.utility-icon {
    color: var(--accent-gold);
    font-size: 0.625rem;
}

/* ========================================
   TOKENOMICS SECTION
   ======================================== */
.tokenomics-section {
    background: var(--bg-secondary);
}

.tokenomics-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.tokenomics-chart-container {
    position: relative;
    width: 240px;
    height: 240px;
}

.pie-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.pie-segment {
    stroke-dasharray: 0 440;
    transition: stroke-dasharray 1s var(--transition-smooth);
}

.tokenomics-wrapper.in-view .pie-segment:nth-child(2) { stroke-dasharray: 153.9 440; }
.tokenomics-wrapper.in-view .pie-segment:nth-child(3) { stroke-dasharray: 87.9 440; stroke-dashoffset: -153.9; }
.tokenomics-wrapper.in-view .pie-segment:nth-child(4) { stroke-dasharray: 65.9 440; stroke-dashoffset: -241.8; }
.tokenomics-wrapper.in-view .pie-segment:nth-child(5) { stroke-dasharray: 43.9 440; stroke-dashoffset: -307.7; }
.tokenomics-wrapper.in-view .pie-segment:nth-child(6) { stroke-dasharray: 43.9 440; stroke-dashoffset: -351.6; }
.tokenomics-wrapper.in-view .pie-segment:nth-child(7) { stroke-dasharray: 43.9 440; stroke-dashoffset: -395.5; }

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.chart-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tokenomics-legend {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s var(--transition-smooth);
}

.legend-item:hover {
    transform: translateX(5px);
}

.legend-item:hover .legend-color {
    transform: scale(1.15);
    box-shadow: 0 0 12px currentColor;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.3s var(--transition-smooth);
}

.legend-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    flex: 1;
    min-width: 180px;
}

.legend-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.tokenomics-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ========================================
   ROADMAP SECTION
   ======================================== */
.roadmap-section {
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(224, 192, 128, 0.05) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.7;
}

.roadmap-timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(180deg,
        rgba(224, 192, 128, 0.2) 0%,
        rgba(224, 192, 128, 0.6) 10%,
        rgba(224, 192, 128, 0.6) 90%,
        rgba(224, 192, 128, 0.2) 100%);
    z-index: 0;
    box-shadow: 0 0 20px rgba(224, 192, 128, 0.3);
}

.timeline-phase {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.5s var(--transition-smooth);
    z-index: 1;
}

.timeline-phase:nth-child(even) {
    direction: rtl;
}

.timeline-phase:nth-child(even) > * {
    direction: ltr;
}

.timeline-phase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--bg-secondary);
    border: 4px solid var(--accent-primary);
    border-radius: 50%;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 0 0 0 rgba(224, 192, 128, 0.4), 0 0 20px rgba(224, 192, 128, 0.3);
    z-index: 3;
}

.timeline-phase:hover::before {
    background: var(--accent-primary);
    box-shadow: 0 0 0 12px rgba(224, 192, 128, 0.15), 0 0 40px rgba(224, 192, 128, 0.6);
    transform: translate(-50%, -50%) scale(1.15);
}

.timeline-phase::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(224, 192, 128, 0.4), rgba(224, 192, 128, 0.1));
    transition: all 0.4s var(--transition-smooth);
    z-index: 2;
}

.timeline-phase:nth-child(odd)::after {
    left: 50%;
    margin-left: 12px;
}

.timeline-phase:nth-child(even)::after {
    right: 50%;
    margin-right: 12px;
    background: linear-gradient(90deg, rgba(224, 192, 128, 0.1), rgba(224, 192, 128, 0.4));
}

.timeline-phase:hover::after {
    background: linear-gradient(90deg, rgba(224, 192, 128, 0.6), rgba(224, 192, 128, 0.3));
}

.timeline-phase:nth-child(even):hover::after {
    background: linear-gradient(90deg, rgba(224, 192, 128, 0.3), rgba(224, 192, 128, 0.6));
}

.phase-marker {
    display: none;
}

.phase-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.phase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(224, 192, 128, 0.3);
    transition: all 0.4s var(--transition-smooth);
    margin-bottom: 1rem;
}

.timeline-phase:hover .phase-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 40px rgba(224, 192, 128, 0.5);
}

.phase-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    transition: all 0.3s var(--transition-smooth);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.timeline-phase:hover .phase-title {
    color: var(--accent-primary);
}

.timeline-phase:nth-child(odd) .phase-header {
    text-align: right;
}

.timeline-phase:nth-child(odd) .phase-number {
    margin-left: auto;
}

.timeline-phase:nth-child(even) .phase-header {
    text-align: left;
}

.phase-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem;
    backdrop-filter: blur(24px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s var(--transition-smooth);
}

.timeline-phase:hover .phase-list {
    border-color: rgba(224, 192, 128, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(224, 192, 128, 0.2) inset;
    transform: translateY(-6px);
}

.timeline-phase:nth-child(odd) .phase-list {
    margin-right: auto;
}

.timeline-phase:nth-child(even) .phase-list {
    margin-left: auto;
}

.phase-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: all 0.3s var(--transition-smooth);
}

.phase-list li:hover {
    color: var(--text-primary);
    transform: translateX(6px);
}

.phase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 0 10px rgba(224, 192, 128, 0.5);
}

.phase-list li:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 16px rgba(224, 192, 128, 0.7);
}

.phase-list li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--accent-tertiary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s var(--transition-smooth);
    animation: ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.phase-list li:hover::after {
    animation-play-state: paused;
}

/* ========================================
   SECURITY SECTION
   ======================================== */
.security-section {
    background: var(--bg-secondary);
}

.security-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.security-intro {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.security-item {
    padding: 1.75rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--transition-smooth);
}

.security-item:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 192, 128, 0.2);
}

.security-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(224, 192, 128, 0.08);
    border-radius: var(--radius-md);
}

.security-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-primary);
}

.security-item h3 {
    font-size: 0.9375rem;
    font-weight: 600;
}

.security-footer {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ========================================
   COMMUNITY SECTION
   ======================================== */
.community-section {
    background: var(--bg-tertiary);
    text-align: center;
}

.community-content {
    max-width: 700px;
    margin: 0 auto;
}

.community-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.community-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.4s var(--transition-smooth);
}

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

.social-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.social-btn.telegram:hover {
    border-color: #E0C080;
    background: rgba(224, 192, 128, 0.1);
}

.social-btn.twitter:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.social-btn.dexscreener:hover {
    border-color: #E0C080;
    background: rgba(224, 192, 128, 0.1);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    backdrop-filter: blur(24px);
}

.faq-item:hover {
    border-color: rgba(224, 192, 128, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(224, 192, 128, 0.3);
    background: rgba(224, 192, 128, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all 0.3s var(--transition-smooth);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform 0.3s var(--transition-smooth);
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    background: var(--bg-tertiary);
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

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

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(224, 192, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(224, 192, 128, 0.1);
    border: 1px solid rgba(224, 192, 128, 0.25);
    border-radius: var(--radius-xl);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--transition-smooth);
}

.cta-tag:hover {
    background: rgba(224, 192, 128, 0.15);
    border-color: rgba(224, 192, 128, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 192, 128, 0.2);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

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

.cta-buttons .btn svg {
    width: 18px;
    height: 18px;
}

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

.cta-community span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cta-copyright {
    margin-top: 2rem;
    margin-bottom: -0.4rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    opacity: 1;
    text-align: center;
}

.cta-socials {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all 0.3s var(--transition-smooth);
    backdrop-filter: blur(12px);
}

.social-icon:hover {
    background: rgba(224, 192, 128, 0.1);
    border-color: rgba(224, 192, 128, 0.4);
    color: var(--accent-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(224, 192, 128, 0.25);
}

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

.social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-icon:hover {
    color: var(--text-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    background: rgba(224, 192, 128, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    display: inline-block;
}

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

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(3px);
}

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

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all 0.3s var(--transition-smooth);
}

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

.footer-social:hover {
    color: var(--text-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color 0.3s var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-down"] {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

[data-aos="fade-down"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
    
    .section-header {
        margin-bottom: 3.5rem;
    }
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .split-content {
        max-width: 100%;
    }
    
    .split-layout.reverse .split-content {
        order: 0;
    }
    
    .content-block {
        margin-bottom: 2rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .security-item {
        padding: 1.5rem 1rem;
    }
    
    .security-intro {
        margin-bottom: 2.5rem;
        font-size: 1.375rem;
    }
    
    .security-footer {
        margin-top: 2rem;
    }
    
    .faq-container {
        gap: 0.875rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }
    
    .roadmap-timeline::before {
        left: 40px;
        transform: none;
    }
    
    .timeline-phase {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 3rem;
        padding-left: 80px;
    }
    
    .timeline-phase:last-child {
        margin-bottom: 0;
    }
    
    .timeline-phase::before {
        left: 40px;
        transform: translateX(-50%);
    }
    
    .timeline-phase::after {
        left: 52px;
        width: 28px;
    }
    
    .timeline-phase:nth-child(even) {
        direction: ltr;
    }
    
    .timeline-phase:nth-child(odd) .phase-header,
    .timeline-phase:nth-child(even) .phase-header {
        text-align: left;
    }
    
    .timeline-phase:nth-child(odd) .phase-number,
    .timeline-phase:nth-child(even) .phase-number {
        margin-left: 0;
    }
    
    .phase-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .tokenomics-wrapper {
        gap: 4rem;
    }
    
    .highlight-box {
        padding: 2.25rem 2.5rem;
    }
    
    .solution-tagline {
        margin-top: 3.5rem;
        padding: 2.25rem 2.5rem;
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 5rem;
        --spacing-lg: 3rem;
        --spacing-md: 1.5rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-tag {
        margin-bottom: 1.25rem;
    }
    
    .section-title {
        margin-bottom: 1rem;
    }
    
    .section-desc {
        margin-top: 0.875rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.4s var(--transition-smooth);
        border-left: 1px solid var(--glass-border);
        z-index: 1001;
    }

    .nav-mobile-socials {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-glow {
        display: none;
    }
    
    .hero-bg-img {
        filter: brightness(0.4) saturate(1.1) contrast(1.1);
        transform: scale(1);
    }
    
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(3, 3, 5, 0.65) 0%,
            rgba(3, 3, 5, 0.5) 40%,
            rgba(3, 3, 5, 0.75) 100%
        );
    }
    
    .contract-box {
        padding: 1rem 1.25rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .hero-scroll-indicator {
        bottom: 1.25rem;
    }
    
    .solution-features {
        gap: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .solution-intro {
        margin-bottom: 1.75rem;
    }
    
    .contract-address-wrapper {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .contract-address {
        font-size: 0.6875rem;
        word-break: normal;
        text-align: left;
    }
    
    .token-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .token-card {
        padding: 1.5rem;
    }
    
    .tokenomics-wrapper {
        gap: 3rem;
    }
    
    .problem-grid {
        gap: 1.25rem;
    }
    
    .problem-card {
        padding: 1.75rem 1.5rem;
    }
    
    .roadmap-timeline::before {
        left: 20px;
        transform: none;
        width: 2px;
    }
    
    .roadmap-timeline {
        padding: 1.5rem 0;
        max-width: 100%;
    }
    
    .timeline-phase {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 3rem;
        padding-left: 56px;
        padding-right: 0;
    }
    
    .timeline-phase:last-child {
        margin-bottom: 0;
    }
    
    .timeline-phase::before {
        left: 20px;
        width: 18px;
        height: 18px;
        border-width: 3px;
        transform: translateX(-50%);
    }
    
    .timeline-phase::after {
        left: 29px;
        width: 27px;
        margin-left: 0;
    }
    
    .timeline-phase:nth-child(even) {
        direction: ltr;
    }
    
    .timeline-phase:nth-child(even)::after {
        left: 29px;
        margin-right: 0;
        background: linear-gradient(90deg, rgba(224, 192, 128, 0.4), rgba(224, 192, 128, 0.1));
    }
    
    .timeline-phase:nth-child(odd) .phase-header,
    .timeline-phase:nth-child(even) .phase-header {
        text-align: left;
    }
    
    .timeline-phase:nth-child(odd) .phase-number,
    .timeline-phase:nth-child(even) .phase-number {
        margin-left: 0;
        margin-right: auto;
    }
    
    .timeline-phase:nth-child(odd) .phase-list,
    .timeline-phase:nth-child(even) .phase-list {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .phase-number {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    
    .phase-title {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
    
    .phase-header {
        margin-bottom: 1.25rem;
    }
    
    .phase-list {
        padding: 1.5rem 1.5rem;
        gap: 0.875rem;
    }
    
    .phase-list li {
        font-size: 0.875rem;
        padding-left: 1.5rem;
    }
    
    .phase-list li:hover {
        transform: translateX(4px);
    }
    
    .content-block {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .highlight-box {
        padding: 2rem 2rem;
    }
    
    .solution-tagline {
        margin-top: 3rem;
        padding: 2rem 2rem;
    }
    
    .community-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2.5rem;
    }
    
    .social-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.875rem 1.75rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-community {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .cta-copyright {
        margin-top: 1.75rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1.25rem;
        --spacing-xl: 4rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .hero {
        padding: 4rem 0 2.5rem;
    }
    
    .hero-content {
        padding: 0 1.25rem;
    }
    
    .hero-glow {
        display: none;
    }
    
    .hero-bg-img {
        filter: brightness(0.45) saturate(1.1) contrast(1.1);
        transform: scale(1);
    }
    
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(3, 3, 5, 0.7) 0%,
            rgba(3, 3, 5, 0.55) 40%,
            rgba(3, 3, 5, 0.8) 100%
        );
    }
    
    .hero-cta {
        gap: 0.875rem;
        margin-bottom: 1.75rem;
    }
    
    .contract-box {
        padding: 0.875rem 1rem;
        gap: 0.625rem;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .section-tag {
        margin-bottom: 1rem;
        padding: 0.375rem 1rem;
        font-size: 0.625rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .problem-card {
        padding: 1.5rem 1.25rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .security-item {
        padding: 1.25rem 1rem;
    }
    
    .security-intro {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .security-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.875rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        text-align: left;
    }
    
    .step-number {
        margin: 0 0 1.25rem 0;
        width: 56px;
        height: 56px;
    }
    
    .tokenomics-legend {
        width: 100%;
    }
    
    .tokenomics-wrapper {
        gap: 2.5rem;
    }
    
    .tokenomics-chart-container {
        width: 200px;
        height: 200px;
    }
    
    .legend-item {
        justify-content: space-between;
        gap: 0.75rem;
    }
    
    .legend-label {
        min-width: auto;
        font-size: 0.875rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        gap: 0.875rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        margin-bottom: 1.75rem;
    }
    
    .cta-buttons {
        margin-bottom: 2rem;
        gap: 0.875rem;
    }
    
    .cta-community {
        margin-top: 1.5rem;
    }
    
    .token-card {
        padding: 1.25rem;
    }
    
    .token-header {
        margin-bottom: 1.25rem;
    }
    
    .token-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.875rem;
    }
    
    .utility-list {
        gap: 0.75rem;
    }
    
    .utility-list li {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .highlight-box {
        padding: 1.75rem 1.5rem;
    }
    
    .solution-tagline {
        margin-top: 2.5rem;
        padding: 1.75rem 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1rem;
    }
    
    .roadmap-timeline::before {
        left: 16px;
    }
    
    .roadmap-timeline {
        padding: 1.25rem 0;
    }
    
    .timeline-phase {
        margin-bottom: 2.5rem;
        padding-left: 48px;
        padding-right: 0;
    }
    
    .timeline-phase:last-child {
        margin-bottom: 0;
    }
    
    .timeline-phase::before {
        left: 16px;
        width: 16px;
        height: 16px;
        border-width: 2.5px;
    }
    
    .timeline-phase::after {
        left: 24px;
        width: 24px;
    }
    
    .timeline-phase:nth-child(even)::after {
        left: 24px;
    }
    
    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .phase-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .phase-header {
        margin-bottom: 1rem;
    }
    
    .phase-list {
        padding: 1.25rem 1.25rem;
        gap: 0.75rem;
    }
    
    .phase-list li {
        padding-left: 1.35rem;
        font-size: 0.8125rem;
        line-height: 1.6;
    }
    
    .phase-list li::before {
        width: 7px;
        height: 7px;
        top: 0.55rem;
    }
    
    .phase-list li:hover {
        transform: translateX(3px);
    }
    
    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.8125rem;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

::selection {
    background: rgba(224, 192, 128, 0.3);
    color: var(--text-primary);
}